content
stringlengths 1
1.04M
| input_ids
listlengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
import numpy as np
from collections import deque
from blist import blist
from pyBreakDown import explanation as e
class Explainer:
"""
Explainer object.
Parameters
----------
clf : np.array
Sklearn predicition model (regression or classification).
data : np.array
Baseline dataset for algorithm.
colnames : np.array
Dataset feature names.
"""
def explain (self, observation, direction, useIntercept = False, baseline=0):
"""
Make explanation for given observation and dataset.
Method works with any sklearn prediction model
Parameters
----------
observation : np.array
Observation to explain.
direction : str
Could be "up" or "down". Decides the direction of algorithm.
useIntercept : bool
If set, baseline argument will be ignored and baseline will be set to intercept.
baseline : float
Baseline of explanation.
Returns
-------
Explanation
Object that contains influences and descriptions of each relevant attribute.
"""
data = np.copy(self.data)
assert direction in ["up","down"]
observation = self._transform_observation(observation) #expand dims from 1D to 2D if necessary
assert len(self.colnames) == observation.shape[1]
if direction=="up":
exp = self._explain_up(observation, baseline, data)
if direction=="down":
exp = self._explain_down(observation, baseline, data)
mean_prediction = np.mean(self.clf.predict(data))
if useIntercept:
baseline = mean_prediction
bcont = 0
else:
bcont = mean_prediction - baseline
exp.add_intercept(bcont)
exp.add_baseline(baseline)
exp.make_final_prediction()
return exp
|
[
11748,
299,
32152,
355,
45941,
198,
6738,
17268,
1330,
390,
4188,
198,
6738,
698,
396,
1330,
698,
396,
198,
6738,
12972,
31737,
8048,
1330,
7468,
355,
304,
198,
198,
4871,
5905,
10613,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5905,
10613,
2134,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
537,
69,
1058,
45941,
13,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3661,
35720,
41219,
653,
2746,
357,
2301,
2234,
393,
17923,
737,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
1058,
45941,
13,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6455,
4470,
27039,
329,
11862,
13,
198,
220,
220,
220,
220,
220,
220,
220,
951,
14933,
1058,
45941,
13,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16092,
292,
316,
3895,
3891,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4727,
357,
944,
11,
13432,
11,
4571,
11,
779,
9492,
984,
796,
10352,
11,
14805,
28,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6889,
7468,
329,
1813,
13432,
290,
27039,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11789,
2499,
351,
597,
1341,
35720,
17724,
2746,
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,
13432,
1058,
45941,
13,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11086,
13208,
284,
4727,
13,
198,
220,
220,
220,
220,
220,
220,
220,
4571,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10347,
307,
366,
929,
1,
393,
366,
2902,
1911,
4280,
1460,
262,
4571,
286,
11862,
13,
198,
220,
220,
220,
220,
220,
220,
220,
779,
9492,
984,
1058,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
900,
11,
14805,
4578,
481,
307,
9514,
290,
14805,
481,
307,
900,
284,
15788,
13,
198,
220,
220,
220,
220,
220,
220,
220,
14805,
1058,
12178,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6455,
4470,
286,
7468,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
50125,
341,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9515,
326,
4909,
16717,
290,
16969,
286,
1123,
5981,
11688,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
45941,
13,
30073,
7,
944,
13,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
4571,
287,
14631,
929,
2430,
2902,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
13432,
796,
2116,
13557,
35636,
62,
672,
3168,
341,
7,
672,
3168,
341,
8,
1303,
11201,
392,
5391,
82,
422,
352,
35,
284,
362,
35,
611,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
944,
13,
4033,
14933,
8,
6624,
13432,
13,
43358,
58,
16,
60,
628,
220,
220,
220,
220,
220,
220,
220,
611,
4571,
855,
1,
929,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
2116,
13557,
20676,
391,
62,
929,
7,
672,
3168,
341,
11,
14805,
11,
1366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4571,
855,
1,
2902,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
2116,
13557,
20676,
391,
62,
2902,
7,
672,
3168,
341,
11,
14805,
11,
1366,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1612,
62,
28764,
2867,
796,
45941,
13,
32604,
7,
944,
13,
565,
69,
13,
79,
17407,
7,
7890,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
779,
9492,
984,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14805,
796,
1612,
62,
28764,
2867,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
3642,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
3642,
796,
1612,
62,
28764,
2867,
532,
14805,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
2860,
62,
3849,
984,
7,
65,
3642,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
2860,
62,
12093,
4470,
7,
12093,
4470,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
15883,
62,
20311,
62,
28764,
2867,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1033,
628
] | 2.43179 | 799 |
import matplotlib.pyplot as plt
import jax
import jax.numpy as np
import numpy as onp
import jax.random as random
import tigercontrol
from tigercontrol.utils.random import set_key, generate_key
from tigercontrol.environments import Environment
from tigercontrol.controllers import Controller
from jax import grad,jit
from system_id import SystemID
class BPC_SystemID(Controller):
"""
Description: BPC algorithm that simultaneously learns the system dynamics A, B
"""
def initialize(self, n, m, H, K, T_0, delta, x, sys_id=None, initial_lr=1.0):
"""
Description: Initialize the dynamics of the model
Args:
n (float/numpy.ndarray): dimension of the state
m (float/numpy.ndarray): dimension of the controls
H (postive int): history of the controller
K (float/numpy.ndarray): optimal controller
T_0 (postive int): number of steps to do system identification before BPC
delta (float): gradient estimator parameter
x (numpy.ndarray): initial state
sys_id (sys id obj): instance of system id class
initial_lr (float): initial learning rate
"""
self.initialized = True
self._generate_uniform = _generate_uniform
self.eps = self._generate_uniform((H, H, m, n))
self.K = np.zeros((m, n)) ## compute it...
self.x = x
self.u = np.zeros(m)
self.n = n ## dimension of the state x
self.m = m ## dimension of the control u
self.H = H ## how many control matrices
self.T_0 = T_0
self.delta = delta
self.sys_id = SystemID() if sys_id is None else sys_id
self.sys_id.initialize(n, m, K, k=0.1*T_0, T_0=T_0)
## internal parmeters to the class
self.T = 0 ## keep track of iterations, for the learning rate
self.learning_rate = initial_lr
self.M = self._generate_uniform((H, m, n), norm = 1-delta) ## CANNOT BE SET TO ZERO
self.w_past = np.zeros((H, n)) ## this are the previous perturbations, from most recent [0] to latest [HH-1]
def update(self, c_t, x_new):
"""
Description: Updates internal parameters
Args:
c_t (float): loss at time t
x_new (array): next state
Returns:
Estimated optimal action
"""
self.T += 1
# update noise
next_norm = np.sqrt(1 - np.sum(self.eps[1:] **2))
next_eps = self._generate_uniform((self.H, self.m, self.n), norm=next_norm)
self.eps = np.roll(self.eps, -(self.H * self.m * self.n))
self.eps = jax.ops.index_update(self.eps, -1, next_eps)
#set current state
self.x = x_new
# system identification
if self.T < self.T_0:
self.sys_id.update(x_new)
return # no gradient update step during system identification
if self.T == self.T_0:
self.sys_id.update(x_new) # we need one extra step
self.A, self.B = self.sys_id.system_id()
#get new noise
w_new = x_new - np.dot(self.A , self.x) - np.dot(self.B , self.u)
#update past noises
self.w_past = np.roll(self.w_past, -self.n)
self.w_past = jax.ops.index_update(self.w_past, -1, w_new)
# gradient estimate and update
g_t = (self.m * self.n * self.H / self.delta) * c_t * np.sum(self.eps, axis = 0)
lr = self.learning_rate / self.T**0.75 # eta_t = O(t^(-3/4))
self.M = (self.M - lr * g_t)
curr_norm = np.linalg.norm(self.M)
if curr_norm > (1-self.delta):
self.M *= (1-self.delta) / curr_norm
return self.u
|
[
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
474,
897,
198,
11748,
474,
897,
13,
77,
32152,
355,
45941,
198,
11748,
299,
32152,
355,
319,
79,
198,
11748,
474,
897,
13,
25120,
355,
4738,
198,
11748,
256,
328,
2798,
756,
3225,
198,
6738,
256,
328,
2798,
756,
3225,
13,
26791,
13,
25120,
1330,
900,
62,
2539,
11,
7716,
62,
2539,
198,
6738,
256,
328,
2798,
756,
3225,
13,
268,
12103,
1330,
9344,
198,
6738,
256,
328,
2798,
756,
3225,
13,
3642,
36667,
1330,
22741,
198,
6738,
474,
897,
1330,
3915,
11,
45051,
198,
198,
6738,
1080,
62,
312,
1330,
4482,
2389,
198,
198,
4871,
347,
5662,
62,
11964,
2389,
7,
22130,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12489,
25,
347,
5662,
11862,
326,
11640,
22974,
262,
1080,
17262,
317,
11,
347,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
41216,
7,
944,
11,
299,
11,
285,
11,
367,
11,
509,
11,
309,
62,
15,
11,
25979,
11,
2124,
11,
25064,
62,
312,
28,
14202,
11,
4238,
62,
14050,
28,
16,
13,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12489,
25,
20768,
1096,
262,
17262,
286,
262,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
357,
22468,
14,
77,
32152,
13,
358,
18747,
2599,
15793,
286,
262,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
357,
22468,
14,
77,
32152,
13,
358,
18747,
2599,
15793,
286,
262,
6973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
367,
357,
7353,
425,
493,
2599,
2106,
286,
262,
10444,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
509,
357,
22468,
14,
77,
32152,
13,
358,
18747,
2599,
16586,
10444,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
62,
15,
357,
7353,
425,
493,
2599,
1271,
286,
4831,
284,
466,
1080,
11795,
878,
347,
5662,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25979,
357,
22468,
2599,
31312,
3959,
1352,
11507,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
357,
77,
32152,
13,
358,
18747,
2599,
4238,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
62,
312,
357,
17597,
4686,
26181,
2599,
4554,
286,
1080,
4686,
1398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4238,
62,
14050,
357,
22468,
2599,
4238,
4673,
2494,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17532,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
8612,
378,
62,
403,
6933,
796,
4808,
8612,
378,
62,
403,
6933,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25386,
796,
2116,
13557,
8612,
378,
62,
403,
6933,
19510,
39,
11,
367,
11,
285,
11,
299,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42,
796,
45941,
13,
9107,
418,
19510,
76,
11,
299,
4008,
22492,
24061,
340,
986,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
87,
796,
2124,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
84,
796,
45941,
13,
9107,
418,
7,
76,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
77,
796,
299,
220,
220,
22492,
15793,
286,
220,
262,
1181,
2124,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
76,
796,
285,
220,
220,
22492,
15793,
286,
262,
1630,
334,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39,
796,
367,
220,
220,
22492,
703,
867,
1630,
2603,
45977,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
51,
62,
15,
796,
309,
62,
15,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
67,
12514,
796,
25979,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17597,
62,
312,
796,
4482,
2389,
3419,
611,
25064,
62,
312,
318,
6045,
2073,
25064,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17597,
62,
312,
13,
36733,
1096,
7,
77,
11,
285,
11,
509,
11,
479,
28,
15,
13,
16,
9,
51,
62,
15,
11,
309,
62,
15,
28,
51,
62,
15,
8,
220,
628,
220,
220,
220,
220,
220,
220,
220,
22492,
5387,
1582,
4164,
364,
284,
262,
1398,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
51,
796,
657,
22492,
1394,
2610,
286,
34820,
11,
329,
262,
4673,
2494,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
40684,
62,
4873,
796,
4238,
62,
14050,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
44,
796,
2116,
13557,
8612,
378,
62,
403,
6933,
19510,
39,
11,
285,
11,
299,
828,
2593,
796,
352,
12,
67,
12514,
8,
22492,
15628,
11929,
9348,
25823,
5390,
1168,
34812,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
86,
62,
30119,
796,
45941,
13,
9107,
418,
19510,
39,
11,
299,
4008,
22492,
428,
389,
262,
2180,
22146,
5945,
602,
11,
422,
749,
2274,
685,
15,
60,
284,
3452,
685,
16768,
12,
16,
60,
628,
220,
220,
220,
825,
4296,
7,
944,
11,
269,
62,
83,
11,
2124,
62,
3605,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12489,
25,
28090,
5387,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
62,
83,
357,
22468,
2599,
2994,
379,
640,
256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
3605,
357,
18747,
2599,
1306,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47737,
16586,
2223,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
51,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4296,
7838,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
27237,
796,
45941,
13,
31166,
17034,
7,
16,
532,
45941,
13,
16345,
7,
944,
13,
25386,
58,
16,
47715,
12429,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
25386,
796,
2116,
13557,
8612,
378,
62,
403,
6933,
19510,
944,
13,
39,
11,
2116,
13,
76,
11,
2116,
13,
77,
828,
2593,
28,
19545,
62,
27237,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25386,
796,
45941,
13,
2487,
7,
944,
13,
25386,
11,
532,
7,
944,
13,
39,
1635,
2116,
13,
76,
1635,
2116,
13,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25386,
796,
474,
897,
13,
2840,
13,
9630,
62,
19119,
7,
944,
13,
25386,
11,
532,
16,
11,
1306,
62,
25386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2617,
1459,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
87,
796,
2124,
62,
3605,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1080,
11795,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
51,
1279,
2116,
13,
51,
62,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17597,
62,
312,
13,
19119,
7,
87,
62,
3605,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1303,
645,
31312,
4296,
2239,
1141,
1080,
11795,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
51,
6624,
2116,
13,
51,
62,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17597,
62,
312,
13,
19119,
7,
87,
62,
3605,
8,
1303,
356,
761,
530,
3131,
2239,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
32,
11,
2116,
13,
33,
796,
2116,
13,
17597,
62,
312,
13,
10057,
62,
312,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1136,
649,
7838,
198,
220,
220,
220,
220,
220,
220,
220,
266,
62,
3605,
796,
2124,
62,
3605,
532,
45941,
13,
26518,
7,
944,
13,
32,
837,
2116,
13,
87,
8,
532,
45941,
13,
26518,
7,
944,
13,
33,
837,
2116,
13,
84,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
19119,
1613,
26782,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
86,
62,
30119,
796,
45941,
13,
2487,
7,
944,
13,
86,
62,
30119,
11,
532,
944,
13,
77,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
86,
62,
30119,
796,
474,
897,
13,
2840,
13,
9630,
62,
19119,
7,
944,
13,
86,
62,
30119,
11,
532,
16,
11,
266,
62,
3605,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
31312,
8636,
290,
4296,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
83,
796,
357,
944,
13,
76,
1635,
2116,
13,
77,
1635,
2116,
13,
39,
1220,
2116,
13,
67,
12514,
8,
1635,
269,
62,
83,
1635,
45941,
13,
16345,
7,
944,
13,
25386,
11,
16488,
796,
657,
8,
198,
220,
220,
220,
220,
220,
220,
220,
300,
81,
796,
2116,
13,
40684,
62,
4873,
1220,
2116,
13,
51,
1174,
15,
13,
2425,
1303,
2123,
64,
62,
83,
796,
440,
7,
83,
61,
32590,
18,
14,
19,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
44,
796,
357,
944,
13,
44,
532,
300,
81,
1635,
308,
62,
83,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
27237,
796,
45941,
13,
75,
1292,
70,
13,
27237,
7,
944,
13,
44,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1090,
81,
62,
27237,
1875,
357,
16,
12,
944,
13,
67,
12514,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
44,
1635,
28,
357,
16,
12,
944,
13,
67,
12514,
8,
1220,
1090,
81,
62,
27237,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
84,
628,
220,
220,
220,
220,
220,
220,
220,
220
] | 2.138826 | 1,772 |
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# Generated file, DO NOT EDIT
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------------------------
from .code_change_trend_item import CodeChangeTrendItem
from .language_statistics import LanguageStatistics
from .project_activity_metrics import ProjectActivityMetrics
from .project_language_analytics import ProjectLanguageAnalytics
from .repository_language_analytics import RepositoryLanguageAnalytics
__all__ = [
'CodeChangeTrendItem',
'LanguageStatistics',
'ProjectActivityMetrics',
'ProjectLanguageAnalytics',
'RepositoryLanguageAnalytics',
]
|
[
2,
16529,
1783,
10541,
198,
2,
15069,
357,
66,
8,
5413,
10501,
13,
1439,
2489,
10395,
13,
198,
2,
49962,
739,
262,
17168,
13789,
13,
4091,
13789,
13,
14116,
287,
262,
1628,
6808,
329,
5964,
1321,
13,
198,
2,
16529,
1783,
10541,
198,
2,
2980,
515,
2393,
11,
8410,
5626,
48483,
198,
2,
19179,
743,
2728,
11491,
4069,
290,
481,
307,
2626,
611,
262,
2438,
318,
16935,
515,
13,
198,
2,
16529,
1783,
10541,
198,
198,
6738,
764,
8189,
62,
3803,
62,
83,
10920,
62,
9186,
1330,
6127,
19400,
45461,
7449,
198,
6738,
764,
16129,
62,
14269,
3969,
1330,
15417,
48346,
198,
6738,
764,
16302,
62,
21797,
62,
4164,
10466,
1330,
4935,
16516,
9171,
10466,
198,
6738,
764,
16302,
62,
16129,
62,
38200,
14094,
1330,
4935,
32065,
37702,
14094,
198,
6738,
764,
260,
1930,
37765,
62,
16129,
62,
38200,
14094,
1330,
1432,
13264,
32065,
37702,
14094,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
705,
10669,
19400,
45461,
7449,
3256,
198,
220,
220,
220,
705,
32065,
48346,
3256,
198,
220,
220,
220,
705,
16775,
16516,
9171,
10466,
3256,
198,
220,
220,
220,
705,
16775,
32065,
37702,
14094,
3256,
198,
220,
220,
220,
705,
6207,
13264,
32065,
37702,
14094,
3256,
198,
60,
198
] | 5 | 205 |
# A demonstration of a simple optimization problem in TACS: minimize the
# mass of the CRM model subject to a global stress aggregate constraint
# enforcing that the maximum stress at any quadrature point is less than
# a specified upper bound.
from __future__ import print_function
# Import necessary libraries
import numpy as np
from mpi4py import MPI
from tacs import TACS, elements, constitutive, functions
from paropt import ParOpt
class uCRM_VonMisesMassMin(ParOpt.pyParOptProblem):
'''
Mass minimization with a von Mises stress constraint
'''
def getVarsAndBounds(self, x, lb, ub):
'''Set the values of the bounds'''
xvals = np.zeros(self.nvars, TACS.dtype)
self.assembler.getDesignVars(xvals)
x[:] = self.thickness_scale*xvals
xlb = np.zeros(self.nvars, TACS.dtype)
xub = np.zeros(self.nvars, TACS.dtype)
self.assembler.getDesignVarRange(xlb, xub)
lb[:] = self.thickness_scale*xlb
ub[:] = self.thickness_scale*xub
return
def evalObjCon(self, x):
'''Evaluate the objective and constraint'''
# Evaluate the objective and constraints
fail = 0
con = np.zeros(1)
# Set the new design variable values
self.assembler.setDesignVars(x[:]/self.thickness_scale)
# Assemble the Jacobian and factor the matrix
alpha = 1.0
beta = 0.0
gamma = 0.0
self.assembler.zeroVariables()
self.assembler.assembleJacobian(alpha, beta, gamma,
self.res, self.mat)
self.pc.factor()
# Solve the linear system and set the varaibles into TACS
self.gmres.solve(self.forces, self.ans)
self.assembler.setVariables(self.ans)
# Evaluate the function
fvals = self.assembler.evalFunctions(self.funcs)
# Set the mass as the objective
fobj = self.mass_scale*fvals[0]
# Set the KS function (the approximate maximum ratio of the
# von Mises stress to the design stress) so that
# it is less than or equal to 1.0
con[0] = 1.0 - fvals[1] # ~= 1.0 - max (sigma/design) >= 0
return fail, fobj, con
def evalObjConGradient(self, x, g, A):
'''Evaluate the objective and constraint gradient'''
fail = 0
# Evaluate the derivative of the mass and place it in the
# objective gradient
gx = np.zeros(self.nvars, TACS.dtype)
self.assembler.evalDVSens(self.funcs[0], gx)
g[:] = self.mass_scale*gx/self.thickness_scale
# Compute the total derivative w.r.t. material design variables
dfdx = np.zeros(self.nvars, TACS.dtype)
product = np.zeros(self.nvars, TACS.dtype)
# Compute the derivative of the function w.r.t. the state
# variables
self.assembler.evalDVSens(self.funcs[1], dfdx)
self.assembler.evalSVSens(self.funcs[1], self.dfdu)
self.gmres.solve(self.dfdu, self.adjoint)
# Compute the product of the adjoint with the derivative of the
# residuals
self.assembler.evalAdjointResProduct(self.adjoint, product)
# Set the constraint gradient
A[0][:] = -(dfdx - product)/self.thickness_scale
# Write out the solution file every 10 iterations
if self.iter_count % 10 == 0:
self.f5.writeToFile('ucrm_iter%d.f5'%(self.iter_count))
self.iter_count += 1
return fail
# Load structural mesh from BDF file
tacs_comm = MPI.COMM_WORLD
bdf_name = 'CRM_box_2nd.bdf'
crm_opt = uCRM_VonMisesMassMin(tacs_comm, bdf_name)
# Set up the optimization problem
max_lbfgs = 5
opt = ParOpt.pyParOpt(crm_opt, max_lbfgs, ParOpt.BFGS)
opt.setOutputFile('crm_opt.out')
# Set optimization parameters
opt.checkGradients(1e-6)
# Set optimization parameters
opt.setArmijoParam(1e-5)
opt.optimize()
# Get the optimized point
x, z, zw, zl, zu = opt.getOptimizedPoint()
|
[
2,
317,
13646,
286,
257,
2829,
23989,
1917,
287,
309,
2246,
50,
25,
17775,
262,
198,
2,
2347,
286,
262,
8740,
44,
2746,
2426,
284,
257,
3298,
5503,
19406,
32315,
198,
2,
26587,
326,
262,
5415,
5503,
379,
597,
15094,
81,
1300,
966,
318,
1342,
621,
198,
2,
257,
7368,
6727,
5421,
13,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
220,
220,
220,
198,
198,
2,
17267,
3306,
12782,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
285,
14415,
19,
9078,
1330,
4904,
40,
198,
6738,
256,
16436,
1330,
309,
2246,
50,
11,
4847,
11,
7892,
8827,
11,
5499,
198,
6738,
1582,
8738,
1330,
2547,
27871,
628,
198,
4871,
334,
9419,
44,
62,
53,
261,
44,
2696,
20273,
9452,
7,
10044,
27871,
13,
9078,
10044,
27871,
40781,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5674,
10356,
1634,
351,
257,
18042,
337,
2696,
5503,
32315,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
825,
651,
53,
945,
1870,
33,
3733,
7,
944,
11,
2124,
11,
18360,
11,
20967,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
7248,
262,
3815,
286,
262,
22303,
7061,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
12786,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
1136,
23067,
53,
945,
7,
87,
12786,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
58,
47715,
796,
2116,
13,
400,
624,
1108,
62,
9888,
9,
87,
12786,
628,
220,
220,
220,
220,
220,
220,
220,
2124,
23160,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
549,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
1136,
23067,
19852,
17257,
7,
87,
23160,
11,
2124,
549,
8,
198,
220,
220,
220,
220,
220,
220,
220,
18360,
58,
47715,
796,
2116,
13,
400,
624,
1108,
62,
9888,
9,
87,
23160,
198,
220,
220,
220,
220,
220,
220,
220,
20967,
58,
47715,
796,
2116,
13,
400,
624,
1108,
62,
9888,
9,
87,
549,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
825,
5418,
49201,
3103,
7,
944,
11,
2124,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
36,
2100,
4985,
262,
9432,
290,
32315,
7061,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
26439,
4985,
262,
9432,
290,
17778,
198,
220,
220,
220,
220,
220,
220,
220,
2038,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
369,
796,
45941,
13,
9107,
418,
7,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
262,
649,
1486,
7885,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
2617,
23067,
53,
945,
7,
87,
58,
47715,
14,
944,
13,
400,
624,
1108,
62,
9888,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1081,
15140,
262,
12806,
666,
290,
5766,
262,
17593,
198,
220,
220,
220,
220,
220,
220,
220,
17130,
796,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
12159,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
34236,
796,
657,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
22570,
23907,
2977,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
292,
15140,
46751,
666,
7,
26591,
11,
12159,
11,
34236,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
411,
11,
2116,
13,
6759,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14751,
13,
31412,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4294,
303,
262,
14174,
1080,
290,
900,
262,
1401,
64,
18764,
656,
309,
2246,
50,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39870,
411,
13,
82,
6442,
7,
944,
13,
27087,
11,
2116,
13,
504,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
2617,
23907,
2977,
7,
944,
13,
504,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
26439,
4985,
262,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
277,
12786,
796,
2116,
13,
34455,
1754,
13,
18206,
24629,
2733,
7,
944,
13,
12543,
6359,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
262,
2347,
355,
262,
9432,
198,
220,
220,
220,
220,
220,
220,
220,
277,
26801,
796,
2116,
13,
22208,
62,
9888,
9,
69,
12786,
58,
15,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
262,
34172,
2163,
357,
1169,
27665,
5415,
8064,
286,
262,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18042,
337,
2696,
5503,
284,
262,
1486,
5503,
8,
523,
326,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
340,
318,
1342,
621,
393,
4961,
284,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
369,
58,
15,
60,
796,
352,
13,
15,
532,
277,
12786,
58,
16,
60,
1303,
5299,
28,
352,
13,
15,
532,
3509,
357,
82,
13495,
14,
26124,
8,
18189,
657,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2038,
11,
277,
26801,
11,
369,
628,
220,
220,
220,
825,
5418,
49201,
3103,
42731,
1153,
7,
944,
11,
2124,
11,
308,
11,
317,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
36,
2100,
4985,
262,
9432,
290,
32315,
31312,
7061,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2038,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
26439,
4985,
262,
27255,
286,
262,
2347,
290,
1295,
340,
287,
262,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9432,
31312,
198,
220,
220,
220,
220,
220,
220,
220,
308,
87,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
18206,
35,
20304,
641,
7,
944,
13,
12543,
6359,
58,
15,
4357,
308,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
308,
58,
47715,
796,
2116,
13,
22208,
62,
9888,
9,
70,
87,
14,
944,
13,
400,
624,
1108,
62,
9888,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
262,
2472,
27255,
266,
13,
81,
13,
83,
13,
2587,
1486,
9633,
198,
220,
220,
220,
220,
220,
220,
220,
288,
16344,
87,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1720,
796,
45941,
13,
9107,
418,
7,
944,
13,
48005,
945,
11,
309,
2246,
50,
13,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
262,
27255,
286,
262,
2163,
266,
13,
81,
13,
83,
13,
262,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9633,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
18206,
35,
20304,
641,
7,
944,
13,
12543,
6359,
58,
16,
4357,
288,
16344,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
18206,
50,
20304,
641,
7,
944,
13,
12543,
6359,
58,
16,
4357,
2116,
13,
7568,
646,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39870,
411,
13,
82,
6442,
7,
944,
13,
7568,
646,
11,
2116,
13,
41255,
1563,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
262,
1720,
286,
262,
9224,
1563,
351,
262,
27255,
286,
262,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29598,
82,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34455,
1754,
13,
18206,
2782,
73,
1563,
4965,
15667,
7,
944,
13,
41255,
1563,
11,
1720,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
262,
32315,
31312,
198,
220,
220,
220,
220,
220,
220,
220,
317,
58,
15,
7131,
47715,
796,
532,
7,
7568,
34350,
532,
1720,
20679,
944,
13,
400,
624,
1108,
62,
9888,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19430,
503,
262,
4610,
2393,
790,
838,
34820,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
2676,
62,
9127,
4064,
838,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
69,
20,
13,
13564,
2514,
8979,
10786,
1229,
26224,
62,
2676,
4,
67,
13,
69,
20,
6,
4,
7,
944,
13,
2676,
62,
9127,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2676,
62,
9127,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2038,
198,
198,
2,
8778,
13204,
19609,
422,
347,
8068,
2393,
198,
83,
16436,
62,
9503,
796,
4904,
40,
13,
9858,
44,
62,
45359,
11163,
198,
65,
7568,
62,
3672,
796,
705,
9419,
44,
62,
3524,
62,
17,
358,
13,
65,
7568,
6,
198,
198,
6098,
76,
62,
8738,
796,
334,
9419,
44,
62,
53,
261,
44,
2696,
20273,
9452,
7,
83,
16436,
62,
9503,
11,
275,
7568,
62,
3672,
8,
198,
198,
2,
5345,
510,
262,
23989,
1917,
198,
9806,
62,
75,
19881,
14542,
796,
642,
198,
8738,
796,
2547,
27871,
13,
9078,
10044,
27871,
7,
6098,
76,
62,
8738,
11,
3509,
62,
75,
19881,
14542,
11,
2547,
27871,
13,
29499,
14313,
8,
198,
8738,
13,
2617,
26410,
8979,
10786,
6098,
76,
62,
8738,
13,
448,
11537,
198,
198,
2,
5345,
23989,
10007,
198,
8738,
13,
9122,
42731,
2334,
7,
16,
68,
12,
21,
8,
198,
198,
2,
5345,
23989,
10007,
198,
8738,
13,
2617,
26560,
2926,
78,
22973,
7,
16,
68,
12,
20,
8,
198,
8738,
13,
40085,
1096,
3419,
198,
198,
2,
3497,
262,
23392,
966,
198,
87,
11,
1976,
11,
1976,
86,
11,
1976,
75,
11,
1976,
84,
796,
2172,
13,
1136,
27871,
320,
1143,
12727,
3419,
628
] | 2.335891 | 1,694 |
import os
import uuid
from mlflow.entities.experiment import Experiment
from mlflow.entities.metric import Metric
from mlflow.entities.param import Param
from mlflow.entities.run import Run
from mlflow.entities.run_data import RunData
from mlflow.entities.run_info import RunInfo
from mlflow.entities.run_status import RunStatus
from mlflow.store.abstract_store import AbstractStore
from mlflow.utils.env import get_env
from mlflow.utils.file_utils import (is_directory, list_subdirs, mkdir, exists,
write_yaml, read_yaml, find, read_file,
list_files, build_path, write_to, append_to)
from mlflow.utils.search_utils import does_run_match_clause
_TRACKING_DIR_ENV_VAR = "MLFLOW_TRACKING_DIR"
|
[
11748,
28686,
198,
198,
11748,
334,
27112,
198,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
23100,
3681,
1330,
29544,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
4164,
1173,
1330,
3395,
1173,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
17143,
1330,
25139,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
5143,
1330,
5660,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
5143,
62,
7890,
1330,
5660,
6601,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
5143,
62,
10951,
1330,
5660,
12360,
198,
198,
6738,
285,
1652,
9319,
13,
298,
871,
13,
5143,
62,
13376,
1330,
5660,
19580,
198,
6738,
285,
1652,
9319,
13,
8095,
13,
397,
8709,
62,
8095,
1330,
27741,
22658,
198,
198,
6738,
285,
1652,
9319,
13,
26791,
13,
24330,
1330,
651,
62,
24330,
198,
6738,
285,
1652,
9319,
13,
26791,
13,
7753,
62,
26791,
1330,
357,
271,
62,
34945,
11,
1351,
62,
7266,
15908,
82,
11,
33480,
15908,
11,
7160,
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,
3551,
62,
88,
43695,
11,
1100,
62,
88,
43695,
11,
1064,
11,
1100,
62,
7753,
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,
1351,
62,
16624,
11,
1382,
62,
6978,
11,
3551,
62,
1462,
11,
24443,
62,
1462,
8,
198,
198,
6738,
285,
1652,
9319,
13,
26791,
13,
12947,
62,
26791,
1330,
857,
62,
5143,
62,
15699,
62,
565,
682,
198,
198,
62,
5446,
8120,
2751,
62,
34720,
62,
1677,
53,
62,
53,
1503,
796,
366,
5805,
3697,
3913,
62,
5446,
8120,
2751,
62,
34720,
1,
628,
198
] | 2.438486 | 317 |
from typing import Dict
import torch
import torch.nn as nn
from transformers import AutoConfig, AutoModel
|
[
6738,
19720,
1330,
360,
713,
198,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
6738,
6121,
364,
1330,
11160,
16934,
11,
11160,
17633,
628
] | 3.857143 | 28 |
# -*- coding: utf-8 -*-
# Copyright 2022 Google LLC
#
# 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.
#
import proto # type: ignore
__protobuf__ = proto.module(
package="google.cloud.dataproc.v1",
manifest={
"Component",
"FailureAction",
"RuntimeConfig",
"EnvironmentConfig",
"ExecutionConfig",
"SparkHistoryServerConfig",
"PeripheralsConfig",
"RuntimeInfo",
"GkeClusterConfig",
"KubernetesClusterConfig",
"KubernetesSoftwareConfig",
"GkeNodePoolTarget",
"GkeNodePoolConfig",
},
)
class Component(proto.Enum):
r"""Cluster components that can be activated."""
COMPONENT_UNSPECIFIED = 0
ANACONDA = 5
DOCKER = 13
DRUID = 9
FLINK = 14
HBASE = 11
HIVE_WEBHCAT = 3
JUPYTER = 1
PRESTO = 6
RANGER = 12
SOLR = 10
ZEPPELIN = 4
ZOOKEEPER = 8
class FailureAction(proto.Enum):
r"""Actions in response to failure of a resource associated with
a cluster.
"""
FAILURE_ACTION_UNSPECIFIED = 0
NO_ACTION = 1
DELETE = 2
class RuntimeConfig(proto.Message):
r"""Runtime configuration for a workload.
Attributes:
version (str):
Optional. Version of the batch runtime.
container_image (str):
Optional. Optional custom container image for
the job runtime environment. If not specified, a
default container image will be used.
properties (Sequence[google.cloud.dataproc_v1.types.RuntimeConfig.PropertiesEntry]):
Optional. A mapping of property names to
values, which are used to configure workload
execution.
"""
version = proto.Field(proto.STRING, number=1,)
container_image = proto.Field(proto.STRING, number=2,)
properties = proto.MapField(proto.STRING, proto.STRING, number=3,)
class EnvironmentConfig(proto.Message):
r"""Environment configuration for a workload.
Attributes:
execution_config (google.cloud.dataproc_v1.types.ExecutionConfig):
Optional. Execution configuration for a
workload.
peripherals_config (google.cloud.dataproc_v1.types.PeripheralsConfig):
Optional. Peripherals configuration that
workload has access to.
"""
execution_config = proto.Field(proto.MESSAGE, number=1, message="ExecutionConfig",)
peripherals_config = proto.Field(
proto.MESSAGE, number=2, message="PeripheralsConfig",
)
class ExecutionConfig(proto.Message):
r"""Execution configuration for a workload.
This message has `oneof`_ fields (mutually exclusive fields).
For each oneof, at most one member field can be set at the same time.
Setting any member of the oneof automatically clears all other
members.
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
Attributes:
service_account (str):
Optional. Service account that used to
execute workload.
network_uri (str):
Optional. Network URI to connect workload to.
This field is a member of `oneof`_ ``network``.
subnetwork_uri (str):
Optional. Subnetwork URI to connect workload
to.
This field is a member of `oneof`_ ``network``.
network_tags (Sequence[str]):
Optional. Tags used for network traffic
control.
kms_key (str):
Optional. The Cloud KMS key to use for
encryption.
"""
service_account = proto.Field(proto.STRING, number=2,)
network_uri = proto.Field(proto.STRING, number=4, oneof="network",)
subnetwork_uri = proto.Field(proto.STRING, number=5, oneof="network",)
network_tags = proto.RepeatedField(proto.STRING, number=6,)
kms_key = proto.Field(proto.STRING, number=7,)
class SparkHistoryServerConfig(proto.Message):
r"""Spark History Server configuration for the workload.
Attributes:
dataproc_cluster (str):
Optional. Resource name of an existing Dataproc Cluster to
act as a Spark History Server for the workload.
Example:
- ``projects/[project_id]/regions/[region]/clusters/[cluster_name]``
"""
dataproc_cluster = proto.Field(proto.STRING, number=1,)
class PeripheralsConfig(proto.Message):
r"""Auxiliary services configuration for a workload.
Attributes:
metastore_service (str):
Optional. Resource name of an existing Dataproc Metastore
service.
Example:
- ``projects/[project_id]/locations/[region]/services/[service_id]``
spark_history_server_config (google.cloud.dataproc_v1.types.SparkHistoryServerConfig):
Optional. The Spark History Server
configuration for the workload.
"""
metastore_service = proto.Field(proto.STRING, number=1,)
spark_history_server_config = proto.Field(
proto.MESSAGE, number=2, message="SparkHistoryServerConfig",
)
class RuntimeInfo(proto.Message):
r"""Runtime information about workload execution.
Attributes:
endpoints (Sequence[google.cloud.dataproc_v1.types.RuntimeInfo.EndpointsEntry]):
Output only. Map of remote access endpoints
(such as web interfaces and APIs) to their URIs.
output_uri (str):
Output only. A URI pointing to the location
of the stdout and stderr of the workload.
diagnostic_output_uri (str):
Output only. A URI pointing to the location
of the diagnostics tarball.
"""
endpoints = proto.MapField(proto.STRING, proto.STRING, number=1,)
output_uri = proto.Field(proto.STRING, number=2,)
diagnostic_output_uri = proto.Field(proto.STRING, number=3,)
class GkeClusterConfig(proto.Message):
r"""The cluster's GKE config.
Attributes:
gke_cluster_target (str):
Optional. A target GKE cluster to deploy to. It must be in
the same project and region as the Dataproc cluster (the GKE
cluster can be zonal or regional). Format:
'projects/{project}/locations/{location}/clusters/{cluster_id}'
node_pool_target (Sequence[google.cloud.dataproc_v1.types.GkeNodePoolTarget]):
Optional. GKE NodePools where workloads will
be scheduled. At least one node pool must be
assigned the 'default' role. Each role can be
given to only a single NodePoolTarget. All
NodePools must have the same location settings.
If a nodePoolTarget is not specified, Dataproc
constructs a default nodePoolTarget.
"""
gke_cluster_target = proto.Field(proto.STRING, number=2,)
node_pool_target = proto.RepeatedField(
proto.MESSAGE, number=3, message="GkeNodePoolTarget",
)
class KubernetesClusterConfig(proto.Message):
r"""The configuration for running the Dataproc cluster on
Kubernetes.
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
Attributes:
kubernetes_namespace (str):
Optional. A namespace within the Kubernetes
cluster to deploy into. If this namespace does
not exist, it is created. If it exists, Dataproc
verifies that another Dataproc VirtualCluster is
not installed into it. If not specified, the
name of the Dataproc Cluster is used.
gke_cluster_config (google.cloud.dataproc_v1.types.GkeClusterConfig):
Required. The configuration for running the
Dataproc cluster on GKE.
This field is a member of `oneof`_ ``config``.
kubernetes_software_config (google.cloud.dataproc_v1.types.KubernetesSoftwareConfig):
Optional. The software configuration for this
Dataproc cluster running on Kubernetes.
"""
kubernetes_namespace = proto.Field(proto.STRING, number=1,)
gke_cluster_config = proto.Field(
proto.MESSAGE, number=2, oneof="config", message="GkeClusterConfig",
)
kubernetes_software_config = proto.Field(
proto.MESSAGE, number=3, message="KubernetesSoftwareConfig",
)
class KubernetesSoftwareConfig(proto.Message):
r"""The software configuration for this Dataproc cluster running
on Kubernetes.
Attributes:
component_version (Sequence[google.cloud.dataproc_v1.types.KubernetesSoftwareConfig.ComponentVersionEntry]):
The components that should be installed in
this Dataproc cluster. The key must be a string
from the KubernetesComponent enumeration. The
value is the version of the software to be
installed.
At least one entry must be specified.
properties (Sequence[google.cloud.dataproc_v1.types.KubernetesSoftwareConfig.PropertiesEntry]):
The properties to set on daemon config files.
Property keys are specified in ``prefix:property`` format,
for example ``spark:spark.kubernetes.container.image``. The
following are supported prefixes and their mappings:
- spark: ``spark-defaults.conf``
For more information, see `Cluster
properties <https://cloud.google.com/dataproc/docs/concepts/cluster-properties>`__.
"""
component_version = proto.MapField(proto.STRING, proto.STRING, number=1,)
properties = proto.MapField(proto.STRING, proto.STRING, number=2,)
class GkeNodePoolTarget(proto.Message):
r"""GKE NodePools that Dataproc workloads run on.
Attributes:
node_pool (str):
Required. The target GKE NodePool. Format:
'projects/{project}/locations/{location}/clusters/{cluster}/nodePools/{node_pool}'
roles (Sequence[google.cloud.dataproc_v1.types.GkeNodePoolTarget.Role]):
Required. The types of role for a GKE
NodePool
node_pool_config (google.cloud.dataproc_v1.types.GkeNodePoolConfig):
Optional. The configuration for the GKE
NodePool.
If specified, Dataproc attempts to create a
NodePool with the specified shape. If one with
the same name already exists, it is verified
against all specified fields. If a field
differs, the virtual cluster creation will fail.
If omitted, any NodePool with the specified name
is used. If a NodePool with the specified name
does not exist, Dataproc create a NodePool with
default values.
"""
class Role(proto.Enum):
r"""``Role`` specifies whose tasks will run on the NodePool. The roles
can be specific to workloads. Exactly one GkeNodePoolTarget within
the VirtualCluster must have 'default' role, which is used to run
all workloads that are not associated with a NodePool.
"""
ROLE_UNSPECIFIED = 0
DEFAULT = 1
CONTROLLER = 2
SPARK_DRIVER = 3
SPARK_EXECUTOR = 4
node_pool = proto.Field(proto.STRING, number=1,)
roles = proto.RepeatedField(proto.ENUM, number=2, enum=Role,)
node_pool_config = proto.Field(
proto.MESSAGE, number=3, message="GkeNodePoolConfig",
)
class GkeNodePoolConfig(proto.Message):
r"""The configuration of a GKE NodePool used by a `Dataproc-on-GKE
cluster <https://cloud.google.com/dataproc/docs/concepts/jobs/dataproc-gke#create-a-dataproc-on-gke-cluster>`__.
Attributes:
config (google.cloud.dataproc_v1.types.GkeNodePoolConfig.GkeNodeConfig):
Optional. The node pool configuration.
locations (Sequence[str]):
Optional. The list of Compute Engine
`zones <https://cloud.google.com/compute/docs/zones#available>`__
where NodePool's nodes will be located.
**Note:** Currently, only one zone may be specified.
If a location is not specified during NodePool creation,
Dataproc will choose a location.
autoscaling (google.cloud.dataproc_v1.types.GkeNodePoolConfig.GkeNodePoolAutoscalingConfig):
Optional. The autoscaler configuration for
this NodePool. The autoscaler is enabled only
when a valid configuration is present.
"""
class GkeNodeConfig(proto.Message):
r"""Parameters that describe cluster nodes.
Attributes:
machine_type (str):
Optional. The name of a Compute Engine `machine
type <https://cloud.google.com/compute/docs/machine-types>`__.
preemptible (bool):
Optional. Whether the nodes are created as `preemptible VM
instances <https://cloud.google.com/compute/docs/instances/preemptible>`__.
local_ssd_count (int):
Optional. The number of local SSD disks to attach to the
node, which is limited by the maximum number of disks
allowable per zone (see `Adding Local
SSDs <https://cloud.google.com/compute/docs/disks/local-ssd>`__).
accelerators (Sequence[google.cloud.dataproc_v1.types.GkeNodePoolConfig.GkeNodePoolAcceleratorConfig]):
Optional. A list of `hardware
accelerators <https://cloud.google.com/compute/docs/gpus>`__
to attach to each node.
min_cpu_platform (str):
Optional. `Minimum CPU
platform <https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform>`__
to be used by this instance. The instance may be scheduled
on the specified or a newer CPU platform. Specify the
friendly names of CPU platforms, such as "Intel Haswell"\`
or Intel Sandy Bridge".
"""
machine_type = proto.Field(proto.STRING, number=1,)
preemptible = proto.Field(proto.BOOL, number=10,)
local_ssd_count = proto.Field(proto.INT32, number=7,)
accelerators = proto.RepeatedField(
proto.MESSAGE,
number=11,
message="GkeNodePoolConfig.GkeNodePoolAcceleratorConfig",
)
min_cpu_platform = proto.Field(proto.STRING, number=13,)
class GkeNodePoolAcceleratorConfig(proto.Message):
r"""A GkeNodeConfigAcceleratorConfig represents a Hardware
Accelerator request for a NodePool.
Attributes:
accelerator_count (int):
The number of accelerator cards exposed to an
instance.
accelerator_type (str):
The accelerator type resource namename (see
GPUs on Compute Engine).
"""
accelerator_count = proto.Field(proto.INT64, number=1,)
accelerator_type = proto.Field(proto.STRING, number=2,)
class GkeNodePoolAutoscalingConfig(proto.Message):
r"""GkeNodePoolAutoscaling contains information the cluster
autoscaler needs to adjust the size of the node pool to the
current cluster usage.
Attributes:
min_node_count (int):
The minimum number of nodes in the NodePool. Must be >= 0
and <= max_node_count.
max_node_count (int):
The maximum number of nodes in the NodePool. Must be >=
min_node_count. **Note:** Quota must be sufficient to scale
up the cluster.
"""
min_node_count = proto.Field(proto.INT32, number=2,)
max_node_count = proto.Field(proto.INT32, number=3,)
config = proto.Field(proto.MESSAGE, number=2, message=GkeNodeConfig,)
locations = proto.RepeatedField(proto.STRING, number=13,)
autoscaling = proto.Field(
proto.MESSAGE, number=4, message=GkeNodePoolAutoscalingConfig,
)
__all__ = tuple(sorted(__protobuf__.manifest))
|
[
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
15069,
33160,
3012,
11419,
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,
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,
198,
2,
198,
11748,
44876,
220,
1303,
2099,
25,
8856,
628,
198,
834,
11235,
672,
3046,
834,
796,
44876,
13,
21412,
7,
198,
220,
220,
220,
5301,
2625,
13297,
13,
17721,
13,
19608,
499,
12204,
13,
85,
16,
1600,
198,
220,
220,
220,
10561,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
50015,
12502,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
41006,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
31441,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23002,
1009,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4561,
668,
18122,
10697,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5990,
10803,
874,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
41006,
12360,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
38,
365,
2601,
5819,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
42,
18478,
3262,
274,
2601,
5819,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
42,
18478,
3262,
274,
25423,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
38,
365,
19667,
27201,
21745,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
38,
365,
19667,
27201,
16934,
1600,
198,
220,
220,
220,
8964,
198,
8,
628,
198,
4871,
35100,
7,
1676,
1462,
13,
4834,
388,
2599,
198,
220,
220,
220,
374,
37811,
2601,
5819,
6805,
326,
460,
307,
13906,
526,
15931,
198,
220,
220,
220,
24301,
1340,
3525,
62,
4944,
48451,
28343,
796,
657,
198,
220,
220,
220,
3537,
2246,
1340,
5631,
796,
642,
198,
220,
220,
220,
360,
11290,
1137,
796,
1511,
198,
220,
220,
220,
10560,
27586,
796,
860,
198,
220,
220,
220,
9977,
17248,
796,
1478,
198,
220,
220,
220,
25997,
11159,
796,
1367,
198,
220,
220,
220,
367,
9306,
62,
8845,
33,
16045,
1404,
796,
513,
198,
220,
220,
220,
449,
8577,
56,
5781,
796,
352,
198,
220,
220,
220,
4810,
6465,
46,
796,
718,
198,
220,
220,
220,
371,
15567,
1137,
796,
1105,
198,
220,
220,
220,
36817,
49,
796,
838,
198,
220,
220,
220,
1168,
8905,
47,
3698,
1268,
796,
604,
198,
220,
220,
220,
1168,
15308,
6500,
18973,
796,
807,
628,
198,
4871,
25743,
12502,
7,
1676,
1462,
13,
4834,
388,
2599,
198,
220,
220,
220,
374,
37811,
32,
2733,
287,
2882,
284,
5287,
286,
257,
8271,
3917,
351,
198,
220,
220,
220,
257,
13946,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
9677,
4146,
11335,
62,
44710,
62,
4944,
48451,
28343,
796,
657,
198,
220,
220,
220,
8005,
62,
44710,
796,
352,
198,
220,
220,
220,
5550,
2538,
9328,
796,
362,
628,
198,
4871,
43160,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
41006,
8398,
329,
257,
26211,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2196,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
10628,
286,
262,
15458,
19124,
13,
198,
220,
220,
220,
220,
220,
220,
220,
9290,
62,
9060,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
32233,
2183,
9290,
2939,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
1693,
19124,
2858,
13,
1002,
407,
7368,
11,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
9290,
2939,
481,
307,
973,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6608,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
41006,
16934,
13,
2964,
18200,
30150,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
317,
16855,
286,
3119,
3891,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3815,
11,
543,
389,
973,
284,
17425,
26211,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9706,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2196,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
9290,
62,
9060,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
198,
220,
220,
220,
6608,
796,
44876,
13,
13912,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
44876,
13,
18601,
2751,
11,
1271,
28,
18,
35751,
628,
198,
4871,
9344,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
31441,
8398,
329,
257,
26211,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9706,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
23002,
1009,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
37497,
8398,
329,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26211,
13,
198,
220,
220,
220,
220,
220,
220,
220,
18375,
874,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
5990,
10803,
874,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
2448,
10803,
874,
8398,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26211,
468,
1895,
284,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
9706,
62,
11250,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
16,
11,
3275,
2625,
23002,
1009,
16934,
1600,
8,
198,
220,
220,
220,
18375,
874,
62,
11250,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
17,
11,
3275,
2625,
5990,
10803,
874,
16934,
1600,
198,
220,
220,
220,
1267,
628,
198,
4871,
37497,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
23002,
1009,
8398,
329,
257,
26211,
13,
628,
220,
220,
220,
770,
3275,
468,
4600,
505,
1659,
63,
62,
7032,
357,
21973,
935,
8568,
7032,
737,
198,
220,
220,
220,
1114,
1123,
530,
1659,
11,
379,
749,
530,
2888,
2214,
460,
307,
900,
379,
262,
976,
640,
13,
198,
220,
220,
220,
25700,
597,
2888,
286,
262,
530,
1659,
6338,
37526,
477,
584,
198,
220,
220,
220,
1866,
13,
628,
220,
220,
220,
11485,
4808,
505,
1659,
25,
3740,
1378,
1676,
1462,
12,
9541,
12,
29412,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
31284,
14,
25747,
13,
6494,
2,
505,
1659,
82,
12,
21973,
935,
12,
41195,
12,
25747,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2139,
62,
23317,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
4809,
1848,
326,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12260,
26211,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3127,
62,
9900,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
7311,
43975,
284,
2018,
26211,
284,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
257,
2888,
286,
4600,
505,
1659,
63,
62,
7559,
27349,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
850,
27349,
62,
9900,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
3834,
27349,
43975,
284,
2018,
26211,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
257,
2888,
286,
4600,
505,
1659,
63,
62,
7559,
27349,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3127,
62,
31499,
357,
44015,
594,
58,
2536,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
44789,
973,
329,
3127,
4979,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1630,
13,
198,
220,
220,
220,
220,
220,
220,
220,
479,
907,
62,
2539,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
10130,
509,
5653,
1994,
284,
779,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15835,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2139,
62,
23317,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
198,
220,
220,
220,
3127,
62,
9900,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
19,
11,
530,
1659,
2625,
27349,
1600,
8,
198,
220,
220,
220,
850,
27349,
62,
9900,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
20,
11,
530,
1659,
2625,
27349,
1600,
8,
198,
220,
220,
220,
3127,
62,
31499,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
21,
35751,
198,
220,
220,
220,
479,
907,
62,
2539,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
22,
35751,
628,
198,
4871,
17732,
18122,
10697,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
4561,
668,
7443,
9652,
8398,
329,
262,
26211,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4818,
499,
12204,
62,
565,
5819,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
20857,
1438,
286,
281,
4683,
16092,
499,
12204,
38279,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
719,
355,
257,
17732,
7443,
9652,
329,
262,
26211,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
220,
7559,
42068,
14,
58,
16302,
62,
312,
60,
14,
2301,
507,
14,
58,
36996,
60,
14,
565,
13654,
14,
58,
565,
5819,
62,
3672,
60,
15506,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
4818,
499,
12204,
62,
565,
5819,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
628,
198,
4871,
2448,
10803,
874,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
32,
2821,
28129,
2594,
8398,
329,
257,
26211,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
44678,
382,
62,
15271,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
20857,
1438,
286,
281,
4683,
16092,
499,
12204,
3395,
459,
382,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
220,
7559,
42068,
14,
58,
16302,
62,
312,
60,
14,
17946,
602,
14,
58,
36996,
60,
14,
30416,
14,
58,
15271,
62,
312,
60,
15506,
198,
220,
220,
220,
220,
220,
220,
220,
9009,
62,
23569,
62,
15388,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
4561,
668,
18122,
10697,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
17732,
7443,
9652,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8398,
329,
262,
26211,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
44678,
382,
62,
15271,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
9009,
62,
23569,
62,
15388,
62,
11250,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
17,
11,
3275,
2625,
4561,
668,
18122,
10697,
16934,
1600,
198,
220,
220,
220,
1267,
628,
198,
4871,
43160,
12360,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
41006,
1321,
546,
26211,
9706,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
886,
13033,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
41006,
12360,
13,
12915,
13033,
30150,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
9347,
286,
6569,
1895,
886,
13033,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
10508,
355,
3992,
20314,
290,
23113,
8,
284,
511,
37902,
3792,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
9900,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
317,
43975,
10609,
284,
262,
4067,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
262,
14367,
448,
290,
336,
1082,
81,
286,
262,
26211,
13,
198,
220,
220,
220,
220,
220,
220,
220,
23584,
62,
22915,
62,
9900,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
317,
43975,
10609,
284,
262,
4067,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
262,
6689,
34558,
13422,
1894,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
886,
13033,
796,
44876,
13,
13912,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
44876,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
5072,
62,
9900,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
198,
220,
220,
220,
23584,
62,
22915,
62,
9900,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
18,
35751,
628,
198,
4871,
402,
365,
2601,
5819,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
464,
13946,
338,
402,
7336,
4566,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
308,
365,
62,
565,
5819,
62,
16793,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
317,
2496,
402,
7336,
13946,
284,
6061,
284,
13,
632,
1276,
307,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
976,
1628,
290,
3814,
355,
262,
16092,
499,
12204,
13946,
357,
1169,
402,
7336,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13946,
460,
307,
1976,
20996,
393,
7915,
737,
18980,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
42068,
14,
90,
16302,
92,
14,
17946,
602,
14,
90,
24886,
92,
14,
565,
13654,
14,
90,
565,
5819,
62,
312,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
7742,
62,
16793,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
21745,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
402,
7336,
19081,
47,
10141,
810,
26211,
82,
481,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
307,
7530,
13,
1629,
1551,
530,
10139,
5933,
1276,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8686,
262,
705,
12286,
6,
2597,
13,
5501,
2597,
460,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1813,
284,
691,
257,
2060,
19081,
27201,
21745,
13,
1439,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19081,
47,
10141,
1276,
423,
262,
976,
4067,
6460,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
257,
10139,
27201,
21745,
318,
407,
7368,
11,
16092,
499,
12204,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
34175,
257,
4277,
10139,
27201,
21745,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
308,
365,
62,
565,
5819,
62,
16793,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
198,
220,
220,
220,
10139,
62,
7742,
62,
16793,
796,
44876,
13,
47541,
515,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
18,
11,
3275,
2625,
38,
365,
19667,
27201,
21745,
1600,
198,
220,
220,
220,
1267,
628,
198,
4871,
12554,
527,
3262,
274,
2601,
5819,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
464,
8398,
329,
2491,
262,
16092,
499,
12204,
13946,
319,
198,
220,
220,
220,
12554,
527,
3262,
274,
13,
628,
198,
220,
220,
220,
11485,
4808,
505,
1659,
25,
3740,
1378,
1676,
1462,
12,
9541,
12,
29412,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
31284,
14,
25747,
13,
6494,
2,
505,
1659,
82,
12,
21973,
935,
12,
41195,
12,
25747,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
479,
18478,
3262,
274,
62,
14933,
10223,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
317,
25745,
1626,
262,
12554,
527,
3262,
274,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13946,
284,
6061,
656,
13,
1002,
428,
25745,
857,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
2152,
11,
340,
318,
2727,
13,
1002,
340,
7160,
11,
16092,
499,
12204,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3326,
6945,
326,
1194,
16092,
499,
12204,
15595,
2601,
5819,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
6589,
656,
340,
13,
1002,
407,
7368,
11,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
286,
262,
16092,
499,
12204,
38279,
318,
973,
13,
198,
220,
220,
220,
220,
220,
220,
220,
308,
365,
62,
565,
5819,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
2601,
5819,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20906,
13,
383,
8398,
329,
2491,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16092,
499,
12204,
13946,
319,
402,
7336,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
257,
2888,
286,
4600,
505,
1659,
63,
62,
7559,
11250,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
479,
18478,
3262,
274,
62,
43776,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
42,
18478,
3262,
274,
25423,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
3788,
8398,
329,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16092,
499,
12204,
13946,
2491,
319,
12554,
527,
3262,
274,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
479,
18478,
3262,
274,
62,
14933,
10223,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
308,
365,
62,
565,
5819,
62,
11250,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
17,
11,
530,
1659,
2625,
11250,
1600,
3275,
2625,
38,
365,
2601,
5819,
16934,
1600,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
479,
18478,
3262,
274,
62,
43776,
62,
11250,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
18,
11,
3275,
2625,
42,
18478,
3262,
274,
25423,
16934,
1600,
198,
220,
220,
220,
1267,
628,
198,
4871,
12554,
527,
3262,
274,
25423,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
464,
3788,
8398,
329,
428,
16092,
499,
12204,
13946,
2491,
198,
220,
220,
220,
319,
12554,
527,
3262,
274,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
7515,
62,
9641,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
42,
18478,
3262,
274,
25423,
16934,
13,
21950,
14815,
30150,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
6805,
326,
815,
307,
6589,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
16092,
499,
12204,
13946,
13,
383,
1994,
1276,
307,
257,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
422,
262,
12554,
527,
3262,
274,
21950,
27056,
341,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
318,
262,
2196,
286,
262,
3788,
284,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6589,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1629,
1551,
530,
5726,
1276,
307,
7368,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6608,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
42,
18478,
3262,
274,
25423,
16934,
13,
2964,
18200,
30150,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
6608,
284,
900,
319,
33386,
4566,
3696,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14161,
8251,
389,
7368,
287,
7559,
40290,
25,
26745,
15506,
5794,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1672,
7559,
2777,
668,
25,
2777,
668,
13,
74,
18478,
3262,
274,
13,
34924,
13,
9060,
15506,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1708,
389,
4855,
21231,
274,
290,
511,
285,
39242,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
220,
9009,
25,
7559,
2777,
668,
12,
12286,
82,
13,
10414,
15506,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1114,
517,
1321,
11,
766,
4600,
2601,
5819,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6608,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
19608,
499,
12204,
14,
31628,
14,
43169,
82,
14,
565,
5819,
12,
48310,
29,
63,
834,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
7515,
62,
9641,
796,
44876,
13,
13912,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
44876,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
6608,
796,
44876,
13,
13912,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
44876,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
628,
198,
4871,
402,
365,
19667,
27201,
21745,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
38,
7336,
19081,
47,
10141,
326,
16092,
499,
12204,
26211,
82,
1057,
319,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
7742,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20906,
13,
383,
2496,
402,
7336,
19081,
27201,
13,
18980,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
42068,
14,
90,
16302,
92,
14,
17946,
602,
14,
90,
24886,
92,
14,
565,
13654,
14,
90,
565,
5819,
92,
14,
17440,
47,
10141,
14,
90,
17440,
62,
7742,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
9176,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
21745,
13,
47445,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20906,
13,
383,
3858,
286,
2597,
329,
257,
402,
7336,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19081,
27201,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
7742,
62,
11250,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
8398,
329,
262,
402,
7336,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19081,
27201,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
7368,
11,
16092,
499,
12204,
6370,
284,
2251,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19081,
27201,
351,
262,
7368,
5485,
13,
1002,
530,
351,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
976,
1438,
1541,
7160,
11,
340,
318,
19000,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1028,
477,
7368,
7032,
13,
1002,
257,
2214,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24242,
11,
262,
7166,
13946,
6282,
481,
2038,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
22532,
11,
597,
19081,
27201,
351,
262,
7368,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
973,
13,
1002,
257,
19081,
27201,
351,
262,
7368,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
857,
407,
2152,
11,
16092,
499,
12204,
2251,
257,
19081,
27201,
351,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
3815,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1398,
20934,
7,
1676,
1462,
13,
4834,
388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
15506,
47445,
15506,
26052,
3025,
8861,
481,
1057,
319,
262,
19081,
27201,
13,
383,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
460,
307,
2176,
284,
26211,
82,
13,
36819,
530,
402,
365,
19667,
27201,
21745,
1626,
198,
220,
220,
220,
220,
220,
220,
220,
262,
15595,
2601,
5819,
1276,
423,
705,
12286,
6,
2597,
11,
543,
318,
973,
284,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
477,
26211,
82,
326,
389,
407,
3917,
351,
257,
19081,
27201,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15107,
2538,
62,
4944,
48451,
28343,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
5550,
38865,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
27342,
46,
3069,
1137,
796,
362,
198,
220,
220,
220,
220,
220,
220,
220,
6226,
14175,
62,
7707,
38757,
796,
513,
198,
220,
220,
220,
220,
220,
220,
220,
6226,
14175,
62,
6369,
2943,
3843,
1581,
796,
604,
628,
220,
220,
220,
10139,
62,
7742,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
9176,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
1677,
5883,
11,
1271,
28,
17,
11,
33829,
28,
47445,
35751,
198,
220,
220,
220,
10139,
62,
7742,
62,
11250,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
18,
11,
3275,
2625,
38,
365,
19667,
27201,
16934,
1600,
198,
220,
220,
220,
1267,
628,
198,
4871,
402,
365,
19667,
27201,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
464,
8398,
286,
257,
402,
7336,
19081,
27201,
973,
416,
257,
4600,
27354,
499,
12204,
12,
261,
12,
38,
7336,
198,
220,
220,
220,
13946,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
19608,
499,
12204,
14,
31628,
14,
43169,
82,
14,
43863,
14,
19608,
499,
12204,
12,
70,
365,
2,
17953,
12,
64,
12,
19608,
499,
12204,
12,
261,
12,
70,
365,
12,
565,
5819,
29,
63,
834,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
16934,
13,
38,
365,
19667,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
10139,
5933,
8398,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7064,
357,
44015,
594,
58,
2536,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
1351,
286,
3082,
1133,
7117,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
89,
1952,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
89,
1952,
2,
15182,
29,
63,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
810,
19081,
27201,
338,
13760,
481,
307,
5140,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
6425,
25,
1174,
16888,
11,
691,
530,
6516,
743,
307,
7368,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
257,
4067,
318,
407,
7368,
1141,
19081,
27201,
6282,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16092,
499,
12204,
481,
3853,
257,
4067,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1960,
17500,
4272,
357,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
16934,
13,
38,
365,
19667,
27201,
16541,
17500,
4272,
16934,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
44619,
9948,
263,
8398,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
19081,
27201,
13,
383,
44619,
9948,
263,
318,
9343,
691,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
618,
257,
4938,
8398,
318,
1944,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1398,
402,
365,
19667,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
48944,
326,
6901,
13946,
13760,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4572,
62,
4906,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
1438,
286,
257,
3082,
1133,
7117,
4600,
30243,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
30243,
12,
19199,
29,
63,
834,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38726,
856,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
10127,
262,
13760,
389,
2727,
355,
4600,
3866,
1791,
856,
16990,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10245,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
8625,
1817,
14,
3866,
1791,
856,
29,
63,
834,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
824,
67,
62,
9127,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
383,
1271,
286,
1957,
21252,
32505,
284,
10199,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
11,
543,
318,
3614,
416,
262,
5415,
1271,
286,
32505,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49299,
583,
6516,
357,
3826,
4600,
32901,
10714,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21252,
82,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
6381,
591,
14,
12001,
12,
824,
67,
29,
63,
834,
737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8320,
2024,
357,
44015,
594,
58,
13297,
13,
17721,
13,
19608,
499,
12204,
62,
85,
16,
13,
19199,
13,
38,
365,
19667,
27201,
16934,
13,
38,
365,
19667,
27201,
12832,
7015,
1352,
16934,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
317,
1351,
286,
4600,
10424,
1574,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8320,
2024,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
31197,
385,
29,
63,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
10199,
284,
1123,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
62,
36166,
62,
24254,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32233,
13,
4600,
44046,
9135,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3859,
1279,
5450,
1378,
17721,
13,
13297,
13,
785,
14,
5589,
1133,
14,
31628,
14,
8625,
1817,
14,
16684,
1958,
12,
1084,
12,
36166,
12,
24254,
29,
63,
834,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
307,
973,
416,
428,
4554,
13,
383,
4554,
743,
307,
7530,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
319,
262,
7368,
393,
257,
15064,
9135,
3859,
13,
18291,
1958,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8030,
3891,
286,
9135,
9554,
11,
884,
355,
366,
24123,
7875,
4053,
1,
59,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
393,
8180,
17581,
10290,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
4572,
62,
4906,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
38726,
856,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
8202,
3535,
11,
1271,
28,
940,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
824,
67,
62,
9127,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2624,
11,
1271,
28,
22,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
8320,
2024,
796,
44876,
13,
47541,
515,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1157,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
2625,
38,
365,
19667,
27201,
16934,
13,
38,
365,
19667,
27201,
12832,
7015,
1352,
16934,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
949,
62,
36166,
62,
24254,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
1485,
35751,
628,
220,
220,
220,
1398,
402,
365,
19667,
27201,
12832,
7015,
1352,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
32,
402,
365,
19667,
16934,
12832,
7015,
1352,
16934,
6870,
257,
28715,
198,
220,
220,
220,
220,
220,
220,
220,
29805,
1352,
2581,
329,
257,
19081,
27201,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44219,
62,
9127,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1271,
286,
44219,
4116,
7362,
284,
281,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44219,
62,
4906,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
44219,
2099,
8271,
299,
321,
12453,
357,
3826,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32516,
319,
3082,
1133,
7117,
737,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
44219,
62,
9127,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2414,
11,
1271,
28,
16,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
44219,
62,
4906,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
35751,
628,
220,
220,
220,
1398,
402,
365,
19667,
27201,
16541,
17500,
4272,
16934,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
38,
365,
19667,
27201,
16541,
17500,
4272,
4909,
1321,
262,
13946,
198,
220,
220,
220,
220,
220,
220,
220,
44619,
9948,
263,
2476,
284,
4532,
262,
2546,
286,
262,
10139,
5933,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
13946,
8748,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
62,
17440,
62,
9127,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
5288,
1271,
286,
13760,
287,
262,
19081,
27201,
13,
12039,
307,
18189,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
19841,
3509,
62,
17440,
62,
9127,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
17440,
62,
9127,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
5415,
1271,
286,
13760,
287,
262,
19081,
27201,
13,
12039,
307,
18189,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
62,
17440,
62,
9127,
13,
12429,
6425,
25,
1174,
2264,
4265,
1276,
307,
6751,
284,
5046,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
510,
262,
13946,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
949,
62,
17440,
62,
9127,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2624,
11,
1271,
28,
17,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
17440,
62,
9127,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2624,
11,
1271,
28,
18,
35751,
628,
220,
220,
220,
4566,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
17,
11,
3275,
28,
38,
365,
19667,
16934,
35751,
198,
220,
220,
220,
7064,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
1485,
35751,
198,
220,
220,
220,
1960,
17500,
4272,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
19,
11,
3275,
28,
38,
365,
19667,
27201,
16541,
17500,
4272,
16934,
11,
198,
220,
220,
220,
1267,
628,
198,
834,
439,
834,
796,
46545,
7,
82,
9741,
7,
834,
11235,
672,
3046,
834,
13,
805,
8409,
4008,
198
] | 2.468559 | 6,695 |
"""
This Package responsible for the logs in the WP-exploiter.
"""
try:
import enum
import asyncio
from datetime import datetime
except BaseException as e:
print("Import Error: ", e)
class LoggerMode(enum.Enum):
"""
:DEVELOP: Will output all the logs to the screen also.
:DEBUG: Will output only Exceptions to the screen also.
:DEPLOY: Will not output nothing to the screen.
"""
DEVELOP = 0
DEBUG = 1
DEPLOY = 2
class Logger(object):
"""
This is a singleton class that handle the logs of the project.
:method save_log: save the log
"""
instance = None
class __Logger:
"""
Private class - for the singleton.
"""
file_lock = asyncio.Lock()
def __init__(self, output_file, log_level=LoggerMode.DEPLOY):
"""
:param output_file: the file will use for output the messages.
:param log_level: LoggerMode
"""
if not Logger.instance:
Logger.instance = Logger.__Logger(output_file, log_level)
else:
Logger.instance.logfile = output_file
def save_log(self, log, error_msg=None):
"""
This method are responsible to ouput the logs to the output_file.
:param log: the log line to store, can be anything that have to_string method.
:param error_msg: a special message will be print to the log file after the original log.
:return: None
"""
try:
with open(self.instance.logfile, "a+") as file:
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
file.write("{}: {}\n".format(current_time,log))
file.close()
if self.instance.log_level == LoggerMode.DEVELOP:
print(log)
elif self.instance.log_level == LoggerMode.DEBUG and type(log) is Exception:
print(log)
if error_msg is not None:
self.save_log(error_msg)
except BaseException as e:
print("Error while printing to logs file.")
print(e)
finally:
file.close()
|
[
37811,
198,
1212,
15717,
4497,
329,
262,
17259,
287,
262,
28993,
12,
20676,
78,
2676,
13,
198,
37811,
198,
198,
28311,
25,
198,
220,
220,
220,
1330,
33829,
198,
220,
220,
220,
1330,
30351,
952,
198,
220,
220,
220,
422,
4818,
8079,
1330,
4818,
8079,
198,
16341,
7308,
16922,
355,
304,
25,
198,
220,
220,
220,
3601,
7203,
20939,
13047,
25,
33172,
304,
8,
628,
198,
4871,
5972,
1362,
19076,
7,
44709,
13,
4834,
388,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
7206,
18697,
3185,
25,
2561,
5072,
477,
262,
17259,
284,
262,
3159,
635,
13,
198,
220,
220,
220,
1058,
30531,
25,
2561,
5072,
691,
1475,
11755,
284,
262,
3159,
635,
13,
198,
220,
220,
220,
1058,
7206,
6489,
21414,
25,
2561,
407,
5072,
2147,
284,
262,
3159,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5550,
18697,
3185,
796,
657,
198,
220,
220,
220,
16959,
796,
352,
198,
220,
220,
220,
5550,
6489,
21414,
796,
362,
628,
198,
4871,
5972,
1362,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
318,
257,
2060,
1122,
1398,
326,
5412,
262,
17259,
286,
262,
1628,
13,
198,
220,
220,
220,
1058,
24396,
3613,
62,
6404,
25,
3613,
262,
2604,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4554,
796,
6045,
628,
220,
220,
220,
1398,
11593,
11187,
1362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15348,
1398,
532,
329,
262,
2060,
1122,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2393,
62,
5354,
796,
30351,
952,
13,
25392,
3419,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
5072,
62,
7753,
11,
2604,
62,
5715,
28,
11187,
1362,
19076,
13,
7206,
6489,
21414,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
5072,
62,
7753,
25,
262,
2393,
481,
779,
329,
5072,
262,
6218,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2604,
62,
5715,
25,
5972,
1362,
19076,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
5972,
1362,
13,
39098,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5972,
1362,
13,
39098,
796,
5972,
1362,
13,
834,
11187,
1362,
7,
22915,
62,
7753,
11,
2604,
62,
5715,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5972,
1362,
13,
39098,
13,
6404,
7753,
796,
5072,
62,
7753,
628,
220,
220,
220,
825,
3613,
62,
6404,
7,
944,
11,
2604,
11,
4049,
62,
19662,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
389,
4497,
284,
267,
929,
315,
262,
17259,
284,
262,
5072,
62,
7753,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2604,
25,
262,
2604,
1627,
284,
3650,
11,
460,
307,
1997,
326,
423,
284,
62,
8841,
2446,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4049,
62,
19662,
25,
257,
2041,
3275,
481,
307,
3601,
284,
262,
2604,
2393,
706,
262,
2656,
2604,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6045,
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,
351,
1280,
7,
944,
13,
39098,
13,
6404,
7753,
11,
366,
64,
10,
4943,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
783,
796,
4818,
8079,
13,
2197,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1459,
62,
2435,
796,
783,
13,
2536,
31387,
7203,
4,
39,
25,
4,
44,
25,
4,
50,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2393,
13,
13564,
7203,
90,
38362,
23884,
59,
77,
1911,
18982,
7,
14421,
62,
2435,
11,
6404,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2393,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
39098,
13,
6404,
62,
5715,
6624,
5972,
1362,
19076,
13,
7206,
18697,
3185,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
6404,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2116,
13,
39098,
13,
6404,
62,
5715,
6624,
5972,
1362,
19076,
13,
30531,
290,
2099,
7,
6404,
8,
318,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
6404,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4049,
62,
19662,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21928,
62,
6404,
7,
18224,
62,
19662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
7308,
16922,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
981,
13570,
284,
17259,
2393,
19570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
68,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3443,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2393,
13,
19836,
3419,
198
] | 2.272919 | 949 |
from config import user_list
from flask import g
from app.helpers.render import render_json, render_error
from app.models.User import User
from app.instances import db
def get_my_profile():
"""
Returns the logged in user's profile or a JSON with `unauthorized: true`
"""
if isinstance(g.user, User):
return render_json(g.user.to_json(own=True))
else:
return render_json({'unauthorized': True})
def get_profile(user_id):
"""
Returns a user's user_id
"""
user = User.query.filter_by(id=user_id).first()
if user is None:
return render_error('user not found'), 400
else:
return render_json(user.to_json(bio=True))
def follow(source_user_id, target_user_id):
"""
Makes 1st param follow the 2nd param
"""
if source_user_id == target_user_id:
return render_error('cannot follow oneself'), 400
source_user = User.query.filter_by(id=source_user_id).first()
target_user = User.query.filter_by(id=target_user_id).first()
if not isinstance(g.user, User):
return render_error('Unauthorized'), 401
if source_user is None or target_user is None:
return render_error('source user or target user doesn\'t exist'), 400
if source_user.id != g.user.id:
return render_error('Forbidden'), 403
source_user.follow(target_user)
db.session.commit()
return render_json({ 'following': True })
def unfollow(source_user_id, target_user_id):
"""
Makes 1st param unfollow the 2nd param
"""
if source_user_id == target_user_id:
return render_error('cannot follow oneself'), 400
source_user = User.query.filter_by(id=source_user_id).first()
target_user = User.query.filter_by(id=target_user_id).first()
if not isinstance(g.user, User):
return render_error('Unauthorized'), 401
if source_user is None or target_user is None:
return render_error('source user or target user doesn\'t exist'), 400
if source_user.id != g.user.id:
return render_error('Forbidden'), 403
source_user.unfollow(target_user)
db.session.commit()
return render_json({ 'following': False })
|
[
6738,
4566,
1330,
2836,
62,
4868,
198,
6738,
42903,
1330,
308,
198,
198,
6738,
598,
13,
16794,
364,
13,
13287,
1330,
8543,
62,
17752,
11,
8543,
62,
18224,
198,
6738,
598,
13,
27530,
13,
12982,
1330,
11787,
198,
6738,
598,
13,
8625,
1817,
1330,
20613,
628,
198,
4299,
651,
62,
1820,
62,
13317,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
262,
18832,
287,
2836,
338,
7034,
393,
257,
19449,
351,
4600,
9613,
1457,
1143,
25,
2081,
63,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
70,
13,
7220,
11,
11787,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
17752,
7,
70,
13,
7220,
13,
1462,
62,
17752,
7,
593,
28,
17821,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
17752,
15090,
6,
9613,
1457,
1143,
10354,
6407,
30072,
628,
198,
4299,
651,
62,
13317,
7,
7220,
62,
312,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
257,
2836,
338,
2836,
62,
312,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2836,
796,
11787,
13,
22766,
13,
24455,
62,
1525,
7,
312,
28,
7220,
62,
312,
737,
11085,
3419,
628,
220,
220,
220,
611,
2836,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
7220,
407,
1043,
33809,
7337,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
17752,
7,
7220,
13,
1462,
62,
17752,
7,
65,
952,
28,
17821,
4008,
628,
628,
198,
4299,
1061,
7,
10459,
62,
7220,
62,
312,
11,
2496,
62,
7220,
62,
312,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27433,
352,
301,
5772,
1061,
262,
362,
358,
5772,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2723,
62,
7220,
62,
312,
6624,
2496,
62,
7220,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
66,
34574,
1061,
27186,
33809,
7337,
628,
220,
220,
220,
2723,
62,
7220,
796,
11787,
13,
22766,
13,
24455,
62,
1525,
7,
312,
28,
10459,
62,
7220,
62,
312,
737,
11085,
3419,
198,
220,
220,
220,
2496,
62,
7220,
796,
11787,
13,
22766,
13,
24455,
62,
1525,
7,
312,
28,
16793,
62,
7220,
62,
312,
737,
11085,
3419,
628,
220,
220,
220,
611,
407,
318,
39098,
7,
70,
13,
7220,
11,
11787,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
52,
2616,
1457,
1143,
33809,
22219,
628,
220,
220,
220,
611,
2723,
62,
7220,
318,
6045,
393,
2496,
62,
7220,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
10459,
2836,
393,
2496,
2836,
1595,
43054,
83,
2152,
33809,
7337,
628,
220,
220,
220,
611,
2723,
62,
7220,
13,
312,
14512,
308,
13,
7220,
13,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
1890,
37978,
33809,
38210,
628,
220,
220,
220,
2723,
62,
7220,
13,
27780,
7,
16793,
62,
7220,
8,
198,
220,
220,
220,
20613,
13,
29891,
13,
41509,
3419,
628,
220,
220,
220,
1441,
8543,
62,
17752,
15090,
705,
27780,
278,
10354,
6407,
32092,
628,
198,
4299,
3684,
950,
7,
10459,
62,
7220,
62,
312,
11,
2496,
62,
7220,
62,
312,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27433,
352,
301,
5772,
3684,
950,
262,
362,
358,
5772,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2723,
62,
7220,
62,
312,
6624,
2496,
62,
7220,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
66,
34574,
1061,
27186,
33809,
7337,
628,
220,
220,
220,
2723,
62,
7220,
796,
11787,
13,
22766,
13,
24455,
62,
1525,
7,
312,
28,
10459,
62,
7220,
62,
312,
737,
11085,
3419,
198,
220,
220,
220,
2496,
62,
7220,
796,
11787,
13,
22766,
13,
24455,
62,
1525,
7,
312,
28,
16793,
62,
7220,
62,
312,
737,
11085,
3419,
628,
220,
220,
220,
611,
407,
318,
39098,
7,
70,
13,
7220,
11,
11787,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
52,
2616,
1457,
1143,
33809,
22219,
628,
220,
220,
220,
611,
2723,
62,
7220,
318,
6045,
393,
2496,
62,
7220,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
10459,
2836,
393,
2496,
2836,
1595,
43054,
83,
2152,
33809,
7337,
628,
220,
220,
220,
611,
2723,
62,
7220,
13,
312,
14512,
308,
13,
7220,
13,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8543,
62,
18224,
10786,
1890,
37978,
33809,
38210,
628,
220,
220,
220,
2723,
62,
7220,
13,
403,
27780,
7,
16793,
62,
7220,
8,
198,
220,
220,
220,
20613,
13,
29891,
13,
41509,
3419,
628,
220,
220,
220,
1441,
8543,
62,
17752,
15090,
705,
27780,
278,
10354,
10352,
32092,
198
] | 2.67033 | 819 |
"""empty message
Revision ID: 77219ff4194a
Revises: d0605c00c98e
Create Date: 2019-11-18 18:22:03.915031
"""
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic.
revision = "77219ff4194a"
down_revision = "d0605c00c98e"
branch_labels = None
depends_on = None
|
[
37811,
28920,
3275,
198,
198,
18009,
1166,
4522,
25,
767,
4761,
1129,
487,
19,
22913,
64,
198,
18009,
2696,
25,
288,
15,
32417,
66,
405,
66,
4089,
68,
198,
16447,
7536,
25,
13130,
12,
1157,
12,
1507,
1248,
25,
1828,
25,
3070,
13,
6420,
1120,
3132,
198,
198,
37811,
198,
6738,
31341,
2022,
291,
1330,
1034,
198,
11748,
44161,
282,
26599,
355,
473,
198,
6738,
44161,
282,
26599,
13,
38969,
478,
82,
1330,
1281,
34239,
13976,
198,
198,
2,
18440,
42814,
11,
973,
416,
9300,
2022,
291,
13,
198,
260,
10178,
796,
366,
3324,
28896,
487,
19,
22913,
64,
1,
198,
2902,
62,
260,
10178,
796,
366,
67,
15,
32417,
66,
405,
66,
4089,
68,
1,
198,
1671,
3702,
62,
23912,
1424,
796,
6045,
198,
10378,
2412,
62,
261,
796,
6045,
628,
198
] | 2.56391 | 133 |
import json
from rest_framework.views import APIView
from rest_framework import permissions
from rest_framework.authentication import TokenAuthentication
from django.http import HttpResponse
from django.utils import timezone
from datetime import timedelta
from app.models import Game, Winner
|
[
11748,
33918,
198,
6738,
1334,
62,
30604,
13,
33571,
1330,
3486,
3824,
769,
198,
6738,
1334,
62,
30604,
1330,
21627,
198,
6738,
1334,
62,
30604,
13,
41299,
3299,
1330,
29130,
47649,
3299,
198,
6738,
42625,
14208,
13,
4023,
1330,
367,
29281,
31077,
198,
198,
6738,
42625,
14208,
13,
26791,
1330,
640,
11340,
198,
6738,
4818,
8079,
1330,
28805,
12514,
198,
198,
6738,
598,
13,
27530,
1330,
3776,
11,
25358,
628,
628,
198
] | 4.138889 | 72 |
# -*- coding: utf-8 -*-
"""
Created on Sun May 10 22:59:10 2020
@author: Christopher Cheng
"""
# The value is the function mapped
areas = {"sq": square, "ci": circle, "eqtri": equal_tri}
# When accessing the dictionary keys, you can pass a parameter if it's a function
n = 2
print(areas["sq"](n))
print(areas["ci"](n))
print(areas["eqtri"](n))
|
[
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
3825,
1737,
838,
2534,
25,
3270,
25,
940,
12131,
198,
198,
31,
9800,
25,
12803,
27692,
198,
37811,
198,
198,
2,
383,
1988,
318,
262,
2163,
27661,
220,
198,
533,
292,
796,
19779,
31166,
1298,
6616,
11,
366,
979,
1298,
9197,
11,
366,
27363,
28461,
1298,
4961,
62,
28461,
92,
198,
198,
2,
1649,
22534,
262,
22155,
8251,
11,
345,
460,
1208,
257,
11507,
611,
340,
338,
257,
2163,
220,
198,
77,
796,
362,
198,
4798,
7,
533,
292,
14692,
31166,
8973,
7,
77,
4008,
198,
4798,
7,
533,
292,
14692,
979,
8973,
7,
77,
4008,
198,
4798,
7,
533,
292,
14692,
27363,
28461,
8973,
7,
77,
4008
] | 2.761905 | 126 |
from __future__ import division
from builtins import range
from past.utils import old_div
from collections import Counter
import numpy as np
def propensity(y, A=0.55, B=1.5):
"""
Computes propensity scores based on ys
"""
N, Nl, ml = metrics(y)
C = (np.log(N) - 1) * (B + 1) ** A
weights = []
for i in range(ml):
weights.append(1 + C * (Nl.get(i, 0) + B) ** -A)
return np.array(weights, dtype='float32')
|
[
6738,
11593,
37443,
834,
1330,
7297,
201,
198,
6738,
3170,
1040,
1330,
2837,
201,
198,
6738,
1613,
13,
26791,
1330,
1468,
62,
7146,
201,
198,
6738,
17268,
1330,
15034,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
201,
198,
4299,
41121,
7,
88,
11,
317,
28,
15,
13,
2816,
11,
347,
28,
16,
13,
20,
2599,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
3082,
1769,
41121,
8198,
1912,
319,
331,
82,
201,
198,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
399,
11,
399,
75,
11,
25962,
796,
20731,
7,
88,
8,
201,
198,
220,
220,
220,
327,
796,
357,
37659,
13,
6404,
7,
45,
8,
532,
352,
8,
1635,
357,
33,
1343,
352,
8,
12429,
317,
201,
198,
220,
220,
220,
19590,
796,
17635,
201,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
4029,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19590,
13,
33295,
7,
16,
1343,
327,
1635,
357,
45,
75,
13,
1136,
7,
72,
11,
657,
8,
1343,
347,
8,
12429,
532,
32,
8,
201,
198,
201,
198,
220,
220,
220,
1441,
45941,
13,
18747,
7,
43775,
11,
288,
4906,
11639,
22468,
2624,
11537,
201,
198
] | 2.326633 | 199 |
#-*- coding:utf-8; mode:python; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*-
import os
from os import path
from bes.key_value.key_value_list import key_value_list
from bes.common.check import check
from bes.system.log import log
from .vfs_cli_command import vfs_cli_command
from .vfs_list_options import vfs_list_options
|
[
2,
12,
9,
12,
19617,
25,
40477,
12,
23,
26,
4235,
25,
29412,
26,
33793,
12,
8658,
82,
12,
14171,
25,
18038,
26,
269,
12,
35487,
12,
28968,
25,
362,
26,
7400,
12,
10394,
25,
362,
532,
9,
12,
198,
198,
11748,
28686,
198,
6738,
28686,
1330,
3108,
198,
198,
6738,
7284,
13,
2539,
62,
8367,
13,
2539,
62,
8367,
62,
4868,
1330,
1994,
62,
8367,
62,
4868,
198,
6738,
7284,
13,
11321,
13,
9122,
1330,
2198,
198,
6738,
7284,
13,
10057,
13,
6404,
1330,
2604,
198,
198,
6738,
764,
85,
9501,
62,
44506,
62,
21812,
1330,
410,
9501,
62,
44506,
62,
21812,
198,
6738,
764,
85,
9501,
62,
4868,
62,
25811,
1330,
410,
9501,
62,
4868,
62,
25811,
198,
220,
220,
198
] | 2.772358 | 123 |
from argparse import Namespace
from torchvision.datasets import CIFAR10
import numpy as np
import torch
import utils
DEFAULT_ARGS=Namespace(
dataset='cifar10',
data='data',
cutout=None,
cutout_length=None,
train_portion=0.9,
batch_size=256,
evaluate_batch_size=256,
)
|
[
6738,
1822,
29572,
1330,
28531,
10223,
198,
198,
6738,
28034,
10178,
13,
19608,
292,
1039,
1330,
327,
5064,
1503,
940,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
11748,
3384,
4487,
198,
198,
7206,
38865,
62,
1503,
14313,
28,
36690,
10223,
7,
198,
220,
220,
220,
27039,
11639,
66,
361,
283,
940,
3256,
198,
220,
220,
220,
1366,
11639,
7890,
3256,
198,
220,
220,
220,
2005,
448,
28,
14202,
11,
198,
220,
220,
220,
2005,
448,
62,
13664,
28,
14202,
11,
198,
220,
220,
220,
4512,
62,
16864,
28,
15,
13,
24,
11,
198,
220,
220,
220,
15458,
62,
7857,
28,
11645,
11,
198,
220,
220,
220,
13446,
62,
43501,
62,
7857,
28,
11645,
11,
198,
198,
8,
198
] | 2.471074 | 121 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 2 10:21:16 2021
@author: fabian
"""
import pypsa
import pytest
import os
import pandas as pd
from numpy.testing import assert_array_almost_equal as equal
from pandas import IndexSlice as idx
from pypsa.descriptors import get_activity_mask
@pytest.fixture
@pytest.fixture
@pytest.fixture
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
19480,
5979,
220,
362,
838,
25,
2481,
25,
1433,
33448,
198,
198,
31,
9800,
25,
7843,
666,
198,
37811,
198,
198,
11748,
12972,
862,
64,
198,
11748,
12972,
9288,
198,
11748,
28686,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
299,
32152,
13,
33407,
1330,
6818,
62,
18747,
62,
28177,
62,
40496,
355,
4961,
198,
6738,
19798,
292,
1330,
12901,
11122,
501,
355,
4686,
87,
198,
6738,
12972,
862,
64,
13,
20147,
1968,
669,
1330,
651,
62,
21797,
62,
27932,
198,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628
] | 2.675862 | 145 |
import intentparser as ip
__author__ = 'Nonthakon Jitchiranant'
<<<<<<< HEAD
intent = intentparser.intentParser({
'description' : {
"type" : 'FavMusicIntent',
"args" : [(1, "musics_types")],
"keyword" : [
(0, "musics_keyword"),
(1, "musics_types")
]},
'musics_keyword' : ['is', 'are', 'music', 'favourite', 'genre'],
'musics_types' : [
"pop",
"rock",
"jazz",
"country",
"reggae"
]
})
intent.teachWords(["I love Reggae music.", "Rock is my favourite.", "I love Country music genre."])
print(intent.getResult("I love Rock music."))
print(intent.getResult("Jazz is my favourite."))
=======
if __name__ == "__main__":
intent = ip.intentParser({
'description' : {
"type" : 'FavMusicIntent',
"args" : [(ip.OPTIONAL, "musics_types")],
"keyword" : [
(ip.REQUIRE, "musics_keyword"),
(ip.OPTIONAL, "musics_types")
]},
'musics_keyword' : ['is', 'are', 'music', 'favourite', 'genre'],
'musics_types' : [
"pop",
"rock",
"jazz",
"country",
"reggae"
]
})
intent.teachWords(["I love Reggae music.", "Rock is my favourite.", "I love Country music genre."])
print(intent.getResult("I love Rock music."))
print(intent.getResult("Jazz is my favourite."))
>>>>>>> origin/master
|
[
11748,
6824,
48610,
355,
20966,
198,
198,
834,
9800,
834,
796,
705,
15419,
400,
461,
261,
449,
2007,
343,
272,
415,
6,
198,
198,
16791,
16791,
16791,
27,
39837,
198,
48536,
796,
6824,
48610,
13,
48536,
46677,
15090,
198,
220,
220,
220,
705,
11213,
6,
1058,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1,
1058,
705,
37,
615,
22648,
5317,
298,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
22046,
1,
1058,
47527,
16,
11,
366,
14664,
873,
62,
19199,
4943,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2539,
4775,
1,
1058,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
15,
11,
366,
14664,
873,
62,
2539,
4775,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
16,
11,
366,
14664,
873,
62,
19199,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
5512,
198,
220,
220,
220,
705,
14664,
873,
62,
2539,
4775,
6,
1058,
37250,
271,
3256,
705,
533,
3256,
705,
28965,
3256,
705,
69,
29023,
578,
3256,
705,
35850,
6,
4357,
198,
220,
220,
220,
705,
14664,
873,
62,
19199,
6,
1058,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12924,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10823,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
73,
8101,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19315,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
260,
1130,
3609,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
30072,
198,
48536,
13,
660,
620,
37117,
7,
14692,
40,
1842,
797,
1130,
3609,
2647,
33283,
366,
19665,
318,
616,
12507,
33283,
366,
40,
1842,
12946,
2647,
12121,
526,
12962,
198,
198,
4798,
7,
48536,
13,
1136,
23004,
7203,
40,
1842,
4631,
2647,
526,
4008,
198,
4798,
7,
48536,
13,
1136,
23004,
7203,
41,
8101,
318,
616,
12507,
526,
4008,
198,
1421,
18604,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
6824,
796,
20966,
13,
48536,
46677,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11213,
6,
1058,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1,
1058,
705,
37,
615,
22648,
5317,
298,
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,
366,
22046,
1,
1058,
47527,
541,
13,
3185,
24131,
1847,
11,
366,
14664,
873,
62,
19199,
4943,
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,
366,
2539,
4775,
1,
1058,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
541,
13,
2200,
49128,
11,
366,
14664,
873,
62,
2539,
4775,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
541,
13,
3185,
24131,
1847,
11,
366,
14664,
873,
62,
19199,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
705,
14664,
873,
62,
2539,
4775,
6,
1058,
37250,
271,
3256,
705,
533,
3256,
705,
28965,
3256,
705,
69,
29023,
578,
3256,
705,
35850,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
14664,
873,
62,
19199,
6,
1058,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12924,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10823,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
73,
8101,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19315,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
260,
1130,
3609,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
32092,
198,
220,
220,
220,
6824,
13,
660,
620,
37117,
7,
14692,
40,
1842,
797,
1130,
3609,
2647,
33283,
366,
19665,
318,
616,
12507,
33283,
366,
40,
1842,
12946,
2647,
12121,
526,
12962,
198,
220,
220,
220,
3601,
7,
48536,
13,
1136,
23004,
7203,
40,
1842,
4631,
2647,
526,
4008,
198,
220,
220,
220,
3601,
7,
48536,
13,
1136,
23004,
7203,
41,
8101,
318,
616,
12507,
526,
4008,
198,
16471,
33409,
8159,
14,
9866,
198
] | 1.873536 | 854 |
from cx_Freeze import setup, Executable
import os
additional_packages = []
additional_mods = []
PROJECT_DIR = os.path.abspath(os.path.dirname(__file__)) # directory where this file is in
DIST_DIR = os.path.join(PROJECT_DIR, 'release\\bin') # directory where all the final builds will be found
BUILD_DIR = os.path.join(PROJECT_DIR, 'build') # directory where all work will be done
setup(
name = "dpow_client" ,
version = "0.1" ,
description = " " ,
executables = [Executable("dpow_client.py", targetName="dpow_client.exe")],
options = {'build_exe': {'packages':additional_packages, 'includes': additional_mods, 'build_exe': DIST_DIR}}
)
|
[
6738,
43213,
62,
11146,
2736,
1330,
9058,
11,
8393,
18187,
201,
198,
11748,
28686,
201,
198,
201,
198,
2860,
1859,
62,
43789,
796,
17635,
201,
198,
2860,
1859,
62,
24122,
796,
17635,
201,
198,
201,
198,
31190,
23680,
62,
34720,
796,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
4008,
220,
1303,
8619,
810,
428,
2393,
318,
287,
201,
198,
35,
8808,
62,
34720,
796,
28686,
13,
6978,
13,
22179,
7,
31190,
23680,
62,
34720,
11,
705,
20979,
6852,
8800,
11537,
220,
1303,
8619,
810,
477,
262,
2457,
12188,
481,
307,
1043,
201,
198,
19499,
26761,
62,
34720,
796,
28686,
13,
6978,
13,
22179,
7,
31190,
23680,
62,
34720,
11,
705,
11249,
11537,
220,
1303,
8619,
810,
477,
670,
481,
307,
1760,
201,
198,
201,
198,
40406,
7,
201,
198,
220,
220,
220,
1438,
796,
366,
26059,
322,
62,
16366,
1,
837,
201,
198,
220,
220,
220,
2196,
796,
366,
15,
13,
16,
1,
837,
201,
198,
220,
220,
220,
6764,
796,
366,
366,
837,
201,
198,
220,
220,
220,
3121,
2977,
796,
685,
23002,
18187,
7203,
26059,
322,
62,
16366,
13,
9078,
1600,
2496,
5376,
2625,
26059,
322,
62,
16366,
13,
13499,
4943,
4357,
201,
198,
220,
220,
220,
3689,
796,
1391,
6,
11249,
62,
13499,
10354,
1391,
6,
43789,
10354,
2860,
1859,
62,
43789,
11,
705,
42813,
10354,
3224,
62,
24122,
11,
705,
11249,
62,
13499,
10354,
360,
8808,
62,
34720,
11709,
201,
198,
8
] | 2.740891 | 247 |
luck_desc = [
{
"charaid": ["1", "2"],
"_name": "凯露",
"type": [
{
"good-luck": 10,
"content": "仅限今天而已!别想多了!!"
},
{
"good-luck": 8,
"content": "宜抽卡﹁十连五彩不是梦﹂"
},
{
"good-luck": 7,
"content": "宜刷本﹁碎片装备一大堆!你是托吧﹂"
},
{
"good-luck": 6,
"content": "还不学习吗,殺すわよっ!"
},
{
"good-luck": -6,
"content": "忌抽卡﹁这个池子不行的,没有3x啊﹂"
},
{
"good-luck": -9,
"content": "ヤバイわよ!钱包又没了"
},
{
"good-luck": 5,
"content": "双场排名飞升"
},
{
"good-luck": -7,
"content": "伊莉亚又暴击了︵对自己"
},
{
"good-luck": -8,
"content": "害学习呢,你被梯了"
},
{
"good-luck": -10,
"content": "遇到困难,睡大觉"
},
{
"good-luck": 24,
"content": "金运不错,所以你能借钱给我吗?"
}
]
},
{
"charaid": ["3", "4"],
"_name": "初音",
"type": [
{
"good-luck": 10,
"content": "Kira☆今天运气绝佳♫"
},
{
"good-luck": 9,
"content": "睡个午觉可以变清爽一点☆"
},
{
"good-luck": 4,
"content": "醒醒你体力满了!"
},
{
"good-luck": -6,
"content": "梦到熬夜赶ddl"
},
{
"good-luck": -9,
"content": "用超能力的话,运气会不会好一点呢"
},
{
"good-luck": 20,
"content": "ハツネちゃんの应援だよ!一切都会好起来的"
},
{
"good-luck": 25,
"content": "叫上栞栞一起学习吧"
}
]
},
{
"charaid": ["5", "6"],
"_name": "杏奈",
"type": [
{
"good-luck": 8,
"content": "氷狂凍獄絶零破!︵宜JJC"
},
{
"good-luck": 7,
"content": "我ら煉獄に舞いし一陣の疾風︵宜现充"
},
{
"good-luck": 4,
"content": "就到此为止了吗…︵宜摸鱼"
},
{
"good-luck": -6,
"content": "冥 空 天 升︵会被演"
},
{
"good-luck": -8,
"content": "会被提起黑历史"
},
{
"good-luck": 21,
"content": "邪王真眼、我会追上你的︵宜表白"
}
]
},
{
"charaid": ["7", "8"],
"_name": "优妮",
"type": [
{
"good-luck": 7,
"content": "宜学习﹁今天去图书馆自习吗﹂"
},
{
"good-luck": 5,
"content": "宜击剑﹁讨论人性与哲学光辉﹂"
},
{
"good-luck": 4,
"content": "论文的事,需要帮忙吗"
},
{
"good-luck": -6,
"content": "会思考怎么拆对手到超时"
},
{
"good-luck": -7,
"content": "会忘记每日十连"
},
{
"good-luck": -9,
"content": "忌表白﹁啊啊,浓咖啡真好喝﹂"
},
{
"good-luck": 26,
"content": "見たまえ同志!これこそわ﹁ユニちゃんズ﹂!"
}
]
},
{
"charaid": ["9", "10"],
"_name": "琪爱儿",
"type": [
{
"good-luck": 9,
"content": "切噜☆♪"
},
{
"good-luck": 6,
"content": "宜水群﹁你就是龙王切噜♪﹂"
},
{
"good-luck": 4,
"content": "末小吉就是说你今天也没什么运气切噜噜"
},
{
"good-luck": -6,
"content": "忌装弱﹁因为先辈你本来就很弱切噜♪﹂"
},
{
"good-luck": -9,
"content": "切噜噜噜噜♪困难本0碎切噜!"
},
{
"good-luck": 27,
"content": "总是萌混过关是交不到朋友的切噜☆"
}
]
},
{
"charaid": ["11", "12"],
"_name": "克萝依",
"type": [
{
"good-luck": 10,
"content": "哦|偶尔也会有这样的日子呢,偶尔就是了"
},
{
"good-luck": 6,
"content": "JJC啊,没几个人打你的"
},
{
"good-luck": 5,
"content": "小心拖延症"
},
{
"good-luck": -7,
"content": "会跨服聊天"
},
{
"good-luck": -8,
"content": "水群会冷场"
},
{
"good-luck": 23,
"content": "工作总是遇到奇怪的人"
}
]
},
{
"charaid": ["13", "14"],
"_name": "静流",
"type": [
{
"good-luck": 9,
"content": "会十连出碎片"
},
{
"good-luck": 8,
"content": "宜熬夜爆肝"
},
{
"good-luck": 5,
"content": "宜出刀﹁希望弟弟暴击﹂"
},
{
"good-luck": -6,
"content": "抽卡会+19"
},
{
"good-luck": -8,
"content": "没什么精神,要姐姐的头槌清醒下吗♡"
},
{
"good-luck": 21,
"content": "偷跑才是王道!︵冬马&静流"
}
]
},
{
"charaid": ["15", "16"],
"_name": "惠理子",
"type": [
{
"good-luck": 10,
"content": "诸事皆宜"
},
{
"good-luck": 7,
"content": "宜现充﹁会遇到命 运 之 人﹂"
},
{
"good-luck": -7,
"content": "你就是记仇碎钻回刺人"
},
{
"good-luck": -8,
"content": "忌dd﹁别的女人就这么吸引你吗﹂"
},
{
"good-luck": -10,
"content": "今天……一直会在你身后的"
},
{
"good-luck": 22,
"content": "爱情也需要调味料︵电脑配件"
}
]
},
{
"charaid": ["17", "18"],
"_name": "优花梨",
"type": [
{
"good-luck": 8,
"content": "宜社畜﹁你就是戒酒后的优花梨﹂"
},
{
"good-luck": 7,
"content": "宜摸鱼﹁我就再喝亿杯﹂"
},
{
"good-luck": 4,
"content": "宜追番﹁守护最好的二刺螈﹂"
},
{
"good-luck": -7,
"content": "忌现充﹁现充爆炸吧﹂"
},
{
"good-luck": -8,
"content": "優花梨,为什么不喝呢~♫"
},
{
"good-luck": 20,
"content": "运气用在了没用的地方"
}
]
},
{
"charaid": ["19", "20"],
"_name": "空花",
"type": [
{
"good-luck": 9,
"content": "宜摸鱼﹁空花的妄想停不下来﹂"
},
{
"good-luck": 7,
"content": "宜瑟图﹁群涩批时不时来暴露xp﹂"
},
{
"good-luck": -6,
"content": "忌社畜﹁会被当成抖M﹂"
},
{
"good-luck": -7,
"content": "忌水群﹁会被放置PLAY﹂"
},
{
"good-luck": -8,
"content": "忌瑟图﹁哦淦老兄你xp好怪啊﹂"
},
{
"good-luck": 26,
"content": "摩多摩多摩多~"
}
]
},
{
"charaid": ["21", "22"],
"_name": "忍",
"type": [
{
"good-luck": 8,
"content": "父亲说这个占卜一点都不准。。。"
},
{
"good-luck": 6,
"content": "宜DD﹁骷髅老爹也想栞栞!﹂"
},
{
"good-luck": 4,
"content": "宜对线﹁你就是送爸人﹂"
},
{
"good-luck": -7,
"content": "忌抽卡﹁父亲的占卜罢了,你身后是有挺多怨灵的﹂"
},
{
"good-luck": -9,
"content": "忌表白﹁会得骷髅老爹真传﹂"
},
{
"good-luck": 20,
"content": "今天你身边也是有各种各样的幽灵在呢"
}
]
},
{
"charaid": ["23", "24"],
"_name": "真步",
"type": [
{
"good-luck": 10,
"content": "みらくるもほりん、くるりんぱ"
},
{
"good-luck": 7,
"content": "宜刷本﹁这个是真步真步N3魔法!﹂"
},
{
"good-luck": 5,
"content": "宜膜佬﹁?这真步河里﹂"
},
{
"good-luck": -6,
"content": "宜复读﹁真步真步教○脑开始﹂"
},
{
"good-luck": -7,
"content": "忌竞技场﹁那么,答案就只有一个了!﹂"
},
{
"good-luck": 20,
"content": "咕噜灵波~"
}
]
},
{
"charaid": ["25", "26"],
"_name": "茜里",
"type": [
{
"good-luck": 6,
"content": "宜出游﹁诶诶要在外面吗﹂"
},
{
"good-luck": 5,
"content": "宜运动﹁这样的、太激烈了嗯﹂"
},
{
"good-luck": 4,
"content": "那里,已经满满的了︵指体力"
},
{
"good-luck": -7,
"content": "明明还是早上就要从后面。。。︵打回前排"
},
{
"good-luck": -9,
"content": "忌瑟图﹁是谁害想着开车呢爪巴﹂"
},
{
"good-luck": 21,
"content": "这种事,就是两个人一起会变舒服︵心情上︶的对吧?"
}
]
},
{
"charaid": ["27", "28"],
"_name": "镜华",
"type": [
{
"good-luck": 7,
"content": "宜水群﹁今天你就是喷水龙王﹂"
},
{
"good-luck": 5,
"content": "宜社畜﹁就算很讨厌,今天我也努力吃了一片胡萝卜﹂"
},
{
"good-luck": 6,
"content": "宜出刀﹁虽然希望可以暴击変態桑而不是王﹂"
},
{
"good-luck": -6,
"content": "忌装弱﹁优妮就算了,你也想叫妈妈?﹂"
},
{
"good-luck": 26,
"content": "全体运会不会是能吃到纸杯蛋糕呢"
},
{
"good-luck": 27,
"content": "変態変態変態変態!"
}
]
},
{
"charaid": ["29", "30"],
"_name": "美美",
"type": [
{
"good-luck": 8,
"content": "天兔霸断剑,要试试吗"
},
{
"good-luck": 7,
"content": "宜出游﹁会遇到小萝莉﹂"
},
{
"good-luck": 4,
"content": "宜刷本﹁お兄ちゃん見ていて、いっぱい箱!﹂"
},
{
"good-luck": -7,
"content": "忌出刀﹁美美的狮鹫长大了也会伤害它吗﹂"
},
{
"good-luck": -8,
"content": "这个月会战摸了"
},
{
"good-luck": 27,
"content": "镜华和未奏希也会吵架,但最后还是会和好的"
}
]
},
{
"charaid": ["31", "32"],
"_name": "未奏希",
"type": [
{
"good-luck": 8,
"content": "宜刷本﹁成功避开攻略烟雾弹﹂"
},
{
"good-luck": 5,
"content": "宜摸鱼﹁每天三刀甜心刀,大家一起睡饱饱﹂"
},
{
"good-luck": 5,
"content": "小 心 熊 孩 子"
},
{
"good-luck": -6,
"content": "忌出刀﹁刚跟镜华吵完架,现在是0暴镜华﹂"
},
{
"good-luck": -8,
"content": "忌作死﹁自己挖的陷阱,自己踩下去﹂"
},
{
"good-luck": 25,
"content": "哎呀,学不会啊!"
}
]
},
{
"charaid": ["33", "34"],
"_name": "怜",
"type": [
{
"good-luck": 7,
"content": "宜钓鱼﹁剑圣之意不在鱼,在乎::﹂"
},
{
"good-luck": 5,
"content": "宜击剑﹁要刺得快!刺得狠!﹂"
},
{
"good-luck": 4,
"content": "宜现充﹁一起特训到晚上吧﹂"
},
{
"good-luck": -8,
"content": "今天你就是老醋坛︵士条怜︶了"
},
{
"good-luck": -10,
"content": "忌摸鱼﹁当你偷偷快乐的时候,优衣正在凝视着你﹂"
},
{
"good-luck": 23,
"content": "遇到困难的时候,男?朋友总会帮你︵雪乃&怜"
}
]
},
{
"charaid": ["35", "36"],
"_name": "优衣",
"type": [
{
"good-luck": 10,
"content": "诸事皆宜!今、今后也请::︵宕机"
},
{
"good-luck": 6,
"content": "宜现充﹁朋?友都会顾及关心你﹂"
},
{
"good-luck": -6,
"content": "说着对不起实际却偷吃的屑都不配被我奶"
},
{
"good-luck": -7,
"content": "忌表白﹁诶诶诶我怎么又被对不起了﹂"
},
{
"good-luck": -10,
"content": "忌抽卡﹁又井了呢,骑士君﹂"
},
{
"good-luck": 21,
"content": "不许说对不起!"
}
]
},
{
"charaid": ["37", "38"],
"_name": "日和莉",
"type": [
{
"good-luck": 9,
"content": "宜竞技场﹁欧拉欧拉欧拉欧拉欧拉!﹂"
},
{
"good-luck": 8,
"content": "日行一善会有好事发生"
},
{
"good-luck": 6,
"content": "宜对线﹁那就对他使用炎拳吧﹂"
},
{
"good-luck": -7,
"content": "忌偏见﹁你以为我是猫,其实我是老虎哒﹂"
},
{
"good-luck": -8,
"content": "忌表白﹁游戏也好,相遇也好,明明是我先来的﹂"
},
{
"good-luck": 27,
"content": "开朗活泼想要保持他人关系,到底哪里出错了︵团子&日和莉"
}
]
},
{
"charaid": ["39", "40"],
"_name": "贪吃佩可",
"type": [
{
"good-luck": 10,
"content": "んま~い!ごはんは命のエネルギー☆"
},
{
"good-luck": 7,
"content": "宜现充﹁おいっす~☆﹂"
},
{
"good-luck": 5,
"content": "宜二刺猿﹁真男人就该?高达﹂"
},
{
"good-luck": -7,
"content": "今日性能降低﹁因为好吃就是高兴嘛﹂"
},
{
"good-luck": -10,
"content": "忌水群﹁群霸瞳篡改群员记忆导致冷场﹂"
},
{
"good-luck": 20,
"content": "ヤバイですね‼"
}
]
},
{
"charaid": ["41", "42"],
"_name": "可可萝",
"type": [
{
"good-luck": 10,
"content": "今天也做得很好、主さま"
},
{
"good-luck": 9,
"content": "宜抽卡﹁爱梅斯大人说今天又会遇到新的女生﹂"
},
{
"good-luck": 8,
"content": "宜刷本﹁已经让密涅瓦偷偷改过数据了﹂"
},
{
"good-luck": -8,
"content": "果然又是主人认识的女生,以后叫わんわんの主さま好了"
},
{
"good-luck": -9,
"content": "忌半途而废﹁第几次转生了,DD﹂"
},
{
"good-luck": 26,
"content": "诸事皆宜"
}
]
},
{
"charaid": ["43", "44"],
"_name": "璃乃",
"type": [
{
"good-luck": 10,
"content": "宜抽卡!3x会像射出的箭雨一样多"
},
{
"good-luck": 8,
"content": "宜学习﹁这次就不会再落榜了!﹂"
},
{
"good-luck": 4,
"content": "宜出游﹁只是监视哥哥的任务罢了﹂"
},
{
"good-luck": -6,
"content": "忌熬夜﹁不是每个人醒来后会有心上人的膝枕的﹂"
},
{
"good-luck": -9,
"content": "忌表白﹁会被别人︵静流进行失忆头槌﹂"
},
{
"good-luck": 20,
"content": "各方面都要注意,大意吃津粥"
}
]
},
{
"charaid": ["45", "46"],
"_name": "克里斯蒂娜",
"type": [
{
"good-luck": 8,
"content": "宜现充﹁遵守誓约会留下好印象﹂"
},
{
"good-luck": 7,
"content": "宜出刀﹁你就是无情的南瓜大菠萝机器﹂"
},
{
"good-luck": 6,
"content": "宜竞技场﹁就这就这,太弱了﹂"
},
{
"good-luck": -6,
"content": "忌社畜﹁会作死顶撞到上司﹂"
},
{
"good-luck": 23,
"content": "就像我现在是经纪人一样,换个环境也未尝不可"
},
{
"good-luck": 22,
"content": "年龄可算不上是问题"
}
]
},
{
"charaid": ["47", "48"],
"_name": "栞",
"type": [
{
"good-luck": 9,
"content": "宜学习﹁新书买来了,要一起看吗?﹂"
},
{
"good-luck": 5,
"content": "宜撸猫﹁小喵特是个乖孩子呢﹂"
},
{
"good-luck": 4,
"content": "宜出游﹁多晒晒太阳有利身体健康﹂"
},
{
"good-luck": -6,
"content": "注意健康﹁抱歉::是我把感冒传给你了吗﹂"
},
{
"good-luck": -7,
"content": "忌社畜﹁不要太过勉强自己,适时寻求他人帮助﹂"
},
{
"good-luck": 27,
"content": "今天好像状态不错,要叫上姐姐一起出去走走吗"
}
]
},
{
"charaid": ["49", "50"],
"_name": "铃奈",
"type": [
{
"good-luck": 7,
"content": "宜推图﹁我暴击弓一箭一个铁乌龟︵雾﹂"
},
{
"good-luck": 6,
"content": "宜现充﹁好想变成跟望一样人气爆棚﹂"
},
{
"good-luck": 6,
"content": "宜黄油﹁这个gal不是那个gal啊!﹂"
},
{
"good-luck": -7,
"content": "会健忘﹁7×7等于多少来着?﹂"
},
{
"good-luck": -9,
"content": "镜暴唯连空花都杀不死"
},
{
"good-luck": 25,
"content": "好难啊!秀才教交我!"
}
]
},
{
"charaid": ["51", "52"],
"_name": "咲恋",
"type": [
{
"good-luck": 10,
"content": "投入努力会获得回报"
},
{
"good-luck": 8,
"content": "宜助人﹁被叫咲恋妈妈其实有点开心的﹂"
},
{
"good-luck": 5,
"content": "宜访友﹁真正的青梅竹马就算世界重置了也还记得对方﹂"
},
{
"good-luck": -7,
"content": "忌氪金﹁这些钱拿来买3080不香吗﹂"
},
{
"good-luck": -9,
"content": "忌水群﹁会被群员掏出傻逼.gif进行嘲笑﹂"
},
{
"good-luck": 23,
"content": "为了救济院的孩子们,遇到困难也能坚持下去"
}
]
},
{
"charaid": ["53", "54"],
"_name": "露娜",
"type": [
{
"good-luck": 7,
"content": "宜现充﹁可以跟我做朋友吗︵迫真﹂"
},
{
"good-luck": -6,
"content": "宜摸鱼﹁工作是不可能的,朋友又交不到,只好摸了﹂"
},
{
"good-luck": -7,
"content": "忌出刀﹁会长我xcw暴击了﹂"
},
{
"good-luck": -10,
"content": "会长我不想再出挂树春黑刀了"
},
{
"good-luck": 27,
"content": "明明想交很多朋友的,为什么都避着我"
}
]
},
{
"charaid": ["55", "56"],
"_name": "霞",
"type": [
{
"good-luck": 8,
"content": "唔姆,今天也要拜托你了"
},
{
"good-luck": 6,
"content": "冷静分析会得出问题的最优解"
},
{
"good-luck": 5,
"content": "宜打?﹁小问号,你是不是有很多朋友﹂"
},
{
"good-luck": -6,
"content": "为人际关系烦恼﹁让我调查看看是谁伤害了优衣﹂"
},
{
"good-luck": -8,
"content": "会被误解﹁是杜宾不是驴!﹂"
},
{
"good-luck": 20,
"content": "助手くん,有问题的话尽管交给王都名侦探我吧!"
}
]
},
{
"charaid": ["57", "58"],
"_name": "真琴",
"type": [
{
"good-luck": 10,
"content": "ごめんユイ‼"
},
{
"good-luck": 7,
"content": "宜熬夜﹁要跟我一起夜间巡逻吗﹂"
},
{
"good-luck": 6,
"content": "宜学习﹁又要数学测试了,上课不能睡着了啊﹂"
},
{
"good-luck": -8,
"content": "会出糗﹁小、小熊胖次怎么了!﹂"
},
{
"good-luck": -9,
"content": "忌出刀﹁会不小心卡掉狼吼﹂"
},
{
"good-luck": 21,
"content": "伤害优衣的家伙在哪啊!"
}
]
},
{
"charaid": ["59", "60"],
"_name": "香织",
"type": [
{
"good-luck": 10,
"content": "一切都会暴击的!"
},
{
"good-luck": 5,
"content": "宜抽卡﹁精神统一切入中线拿下up一气呵成﹂"
},
{
"good-luck": 4,
"content": "宜吃瓜﹁你也来一点?︵苦︶瓜很好吃的!﹂"
},
{
"good-luck": -6,
"content": "忌出刀﹁重要的东西在树上﹂"
},
{
"good-luck": -10,
"content": "忌竞技场﹁狗拳又砸幽灵布丁上了﹂"
},
{
"good-luck": 20,
"content": "一切都会好起来的!"
}
]
},
{
"charaid": ["61", "62"],
"_name": "亚里莎",
"type": [
{
"good-luck": 7,
"content": "宜出游﹁咖啡店的女仆制服想看看吗﹂"
},
{
"good-luck": 6,
"content": "宜访友﹁不知道萝赛莉亚现在怎么样了﹂"
},
{
"good-luck": 5,
"content": "宜瑟图﹁会不停射爆﹂"
},
{
"good-luck": -7,
"content": "MISS﹁我在兰德索尔也会变成地心少女吗﹂"
},
{
"good-luck": -8,
"content": "会变成星际玩家"
},
{
"good-luck": 26,
"content": "找到四叶草了!看来是会有好运"
}
]
},
{
"charaid": ["63", "64"],
"_name": "望",
"type": [
{
"good-luck": 9,
"content": "宜单推﹁演唱会,要来看吗﹂"
},
{
"good-luck": 8,
"content": "宜表白﹁这是为了写出歌词的约会练习﹂"
},
{
"good-luck": 4,
"content": "宜运动﹁偶像活动也需要锻炼身体!﹂"
},
{
"good-luck": -6,
"content": "吃得太多又变胖了"
},
{
"good-luck": -9,
"content": "忌装弱﹁会被群友识破伪装﹂"
},
{
"good-luck": 21,
"content": "偶像也有偶像的烦恼,好想谈一场普通的恋爱啊"
}
]
},
{
"charaid": ["65"],
"_name": "晶",
"type": [
{
"good-luck": 10,
"content": "今后也请作为我的公主骑士努力吧"
},
{
"good-luck": 7,
"content": "宜游戏﹁你就是GM﹂"
},
{
"good-luck": 5,
"content": "宜摸鱼﹁重要人物只有关键时刻才会出场﹂"
},
{
"good-luck": -7,
"content": "忌下厨﹁纳豆奶油可丽饼好像不错啊﹂"
},
{
"good-luck": 24,
"content": "可丽饼卖不出去啊,是哪里出问题了"
}
]
},
{
"charaid": ["66"],
"_name": "花凛",
"type": [
{
"good-luck": 10,
"content": "ヤバイですね☆幸运物是饭团!吃得饱饱的,继续抽下去吧!"
},
{
"good-luck": 7,
"content": "幸运动物是熊!或许能像真正家人一样守护你︵不会吃井"
},
{
"good-luck": 5,
"content": "宜抽卡﹁十连一定会出金,出金一定会吃井﹂"
},
{
"good-luck": -9,
"content": "要小心突发事件!出门可能会被当成「吃井的人」……"
},
{
"good-luck": -10,
"content": "来了来了,这是你要的+19"
},
{
"good-luck": 20,
"content": "你醒啦,我帮你调低3x概率了"
}
]
}
]
|
[
46708,
62,
20147,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
16,
1600,
366,
17,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
49035,
107,
165,
250,
110,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
227,
165,
247,
238,
20015,
232,
25465,
32003,
234,
32432,
110,
171,
120,
223,
26344,
104,
46349,
111,
13783,
248,
12859,
228,
171,
120,
223,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
232,
121,
39355,
94,
171,
117,
223,
39355,
223,
32573,
252,
49390,
37605,
102,
38834,
42468,
162,
95,
99,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26344,
115,
17312,
105,
171,
117,
223,
163,
95,
236,
31965,
229,
35318,
13783,
229,
31660,
32014,
161,
254,
228,
171,
120,
223,
19526,
254,
42468,
33699,
246,
28938,
100,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32573,
246,
38834,
27764,
99,
20046,
254,
28938,
245,
171,
120,
234,
162,
106,
118,
33623,
1792,
237,
1792,
230,
33180,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
162,
232,
121,
39355,
94,
171,
117,
223,
32573,
247,
10310,
103,
162,
109,
254,
36310,
38834,
26193,
234,
21410,
171,
120,
234,
162,
110,
94,
17312,
231,
18,
87,
161,
243,
232,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37858,
29659,
11482,
1792,
237,
1792,
230,
171,
120,
223,
165,
240,
109,
44293,
227,
20998,
230,
162,
110,
94,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20998,
234,
28839,
118,
162,
236,
240,
28938,
235,
45617,
252,
39355,
229,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
232,
164,
236,
231,
12859,
248,
20998,
230,
162,
248,
112,
49035,
119,
12859,
228,
35266,
113,
43380,
117,
164,
229,
103,
32432,
109,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
111,
27764,
99,
20046,
254,
37772,
95,
171,
120,
234,
19526,
254,
164,
95,
104,
162,
95,
107,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
34402,
229,
26344,
108,
32368,
108,
49694,
122,
171,
120,
234,
163,
251,
94,
32014,
164,
100,
231,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1987,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
34932,
239,
32573,
238,
38834,
165,
242,
247,
171,
120,
234,
33699,
222,
20015,
98,
19526,
254,
47797,
121,
161,
222,
253,
165,
240,
109,
163,
119,
247,
22755,
239,
28938,
245,
171,
120,
253,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
18,
1600,
366,
19,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
26344,
251,
165,
253,
111,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
42,
8704,
35283,
20015,
232,
25465,
32573,
238,
36365,
242,
163,
119,
251,
19526,
111,
17992,
104,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
163,
251,
94,
10310,
103,
39355,
42062,
100,
231,
20998,
107,
20015,
98,
20998,
246,
162,
116,
227,
163,
230,
121,
31660,
163,
224,
117,
35283,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
165,
10253,
165,
10253,
19526,
254,
19526,
241,
27950,
249,
162,
119,
94,
12859,
228,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
95,
99,
26344,
108,
163,
228,
105,
13783,
250,
164,
113,
114,
1860,
75,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
18796,
101,
164,
41678,
47797,
121,
27950,
249,
21410,
46237,
251,
171,
120,
234,
32573,
238,
36365,
242,
27670,
248,
38834,
27670,
248,
25001,
121,
31660,
163,
224,
117,
37772,
95,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37412,
41115,
44916,
2515,
94,
1792,
225,
22174,
15474,
118,
242,
162,
237,
112,
46777,
1792,
230,
171,
120,
223,
31660,
26344,
229,
32849,
121,
27670,
248,
25001,
121,
164,
113,
115,
30266,
98,
21410,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1679,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20998,
104,
41468,
43718,
252,
43718,
252,
31660,
164,
113,
115,
27764,
99,
20046,
254,
28938,
100,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
20,
1600,
366,
21,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
30266,
237,
25001,
230,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
36365,
115,
45379,
224,
49035,
235,
163,
235,
226,
163,
113,
114,
37239,
114,
163,
254,
112,
171,
120,
223,
35266,
113,
22522,
250,
32178,
34,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22755,
239,
36853,
163,
227,
231,
163,
235,
226,
28618,
48958,
252,
18566,
22180,
31660,
165,
247,
96,
17683,
244,
122,
165,
95,
101,
35266,
113,
22522,
250,
163,
236,
108,
17739,
227,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22887,
109,
26344,
108,
29826,
97,
10310,
118,
29826,
95,
12859,
228,
28938,
245,
1399,
35266,
113,
22522,
250,
162,
239,
116,
165,
109,
120,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37863,
98,
13328,
102,
118,
36469,
102,
10263,
235,
229,
35266,
113,
27670,
248,
164,
95,
104,
162,
120,
242,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
164,
95,
104,
162,
237,
238,
164,
113,
115,
165,
119,
239,
43889,
228,
20998,
110,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
165,
41365,
25581,
40367,
253,
40367,
120,
23513,
22755,
239,
27670,
248,
164,
4204,
41468,
19526,
254,
21410,
35266,
113,
22522,
250,
26193,
101,
163,
50159,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
22,
1600,
366,
23,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
27670,
246,
36685,
106,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
27764,
99,
20046,
254,
171,
117,
223,
20015,
232,
25465,
43889,
119,
32368,
122,
20046,
99,
165,
99,
228,
164,
229,
103,
20046,
254,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
119,
30298,
239,
171,
117,
223,
164,
106,
101,
164,
106,
118,
21689,
45250,
100,
10310,
236,
161,
241,
110,
27764,
99,
46268,
164,
122,
231,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
164,
106,
118,
23877,
229,
21410,
12859,
233,
171,
120,
234,
165,
250,
222,
17358,
223,
30585,
106,
33232,
247,
28938,
245,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
45250,
251,
32003,
225,
45250,
236,
20046,
230,
162,
233,
228,
43380,
117,
33699,
233,
26344,
108,
164,
41678,
33768,
114,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
33232,
246,
164,
106,
108,
162,
107,
237,
33768,
98,
39355,
223,
32573,
252,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
26193,
101,
163,
50159,
171,
117,
223,
161,
243,
232,
161,
243,
232,
171,
120,
234,
38184,
241,
161,
240,
244,
161,
243,
94,
40367,
253,
25001,
121,
161,
244,
251,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
17358,
233,
25224,
30159,
2515,
230,
28938,
234,
33232,
245,
171,
120,
223,
46036,
39258,
46036,
2515,
251,
1792,
237,
171,
117,
223,
1209,
99,
30165,
2515,
94,
1792,
225,
22174,
37426,
171,
117,
224,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
24,
1600,
366,
940,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
49426,
103,
163,
230,
109,
161,
226,
123,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
26344,
229,
161,
247,
250,
35283,
17992,
103,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
36365,
112,
163,
122,
97,
171,
117,
223,
19526,
254,
22887,
109,
42468,
11737,
247,
25581,
26344,
229,
161,
247,
250,
17992,
103,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
17312,
104,
22887,
237,
28938,
231,
22887,
109,
42468,
46237,
112,
19526,
254,
20015,
232,
25465,
20046,
253,
162,
110,
94,
20015,
222,
20046,
230,
32573,
238,
36365,
242,
26344,
229,
161,
247,
250,
161,
247,
250,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
35318,
28156,
109,
171,
117,
223,
32368,
254,
10310,
118,
17739,
42062,
122,
230,
19526,
254,
17312,
105,
30266,
98,
22887,
109,
36181,
230,
28156,
109,
26344,
229,
161,
247,
250,
17992,
103,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
26344,
229,
161,
247,
250,
161,
247,
250,
161,
247,
250,
161,
247,
250,
17992,
103,
32368,
108,
49694,
122,
17312,
105,
15,
163,
95,
236,
26344,
229,
161,
247,
250,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
45250,
119,
42468,
164,
238,
234,
162,
115,
115,
32573,
229,
17739,
111,
42468,
12859,
97,
38834,
26344,
108,
17312,
233,
20998,
233,
21410,
26344,
229,
161,
247,
250,
35283,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1157,
1600,
366,
1065,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
17739,
233,
164,
238,
251,
160,
122,
251,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
241,
99,
91,
161,
223,
114,
22887,
242,
20046,
253,
27670,
248,
17312,
231,
32573,
247,
43718,
115,
21410,
33768,
98,
36310,
37772,
95,
171,
120,
234,
161,
223,
114,
22887,
242,
22887,
109,
42468,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32178,
34,
161,
243,
232,
171,
120,
234,
162,
110,
94,
49035,
254,
10310,
103,
21689,
33699,
241,
19526,
254,
21410,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22887,
237,
33232,
225,
162,
233,
244,
161,
119,
114,
163,
245,
229,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
164,
115,
101,
17312,
235,
164,
223,
232,
25465,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
36365,
112,
163,
122,
97,
27670,
248,
37863,
115,
28839,
118,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32432,
98,
43291,
45250,
119,
42468,
34402,
229,
26344,
108,
25001,
229,
45250,
103,
21410,
21689,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1485,
1600,
366,
1415,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
251,
247,
38184,
223,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
39355,
223,
32573,
252,
49035,
118,
163,
95,
236,
31965,
229,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
228,
105,
13783,
250,
163,
230,
228,
164,
224,
251,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
26344,
222,
171,
117,
223,
30585,
234,
17312,
249,
28156,
253,
28156,
253,
162,
248,
112,
49035,
119,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
232,
121,
39355,
94,
27670,
248,
10,
1129,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
110,
94,
20015,
222,
20046,
230,
163,
39333,
15351,
171,
120,
234,
17358,
223,
34650,
238,
34650,
238,
21410,
13783,
112,
162,
100,
234,
162,
116,
227,
165,
10253,
10310,
233,
28938,
245,
17992,
94,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
223,
115,
164,
115,
239,
33699,
235,
42468,
25581,
34402,
241,
171,
120,
223,
35266,
113,
37863,
105,
165,
102,
105,
5,
165,
251,
247,
38184,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1314,
1600,
366,
1433,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
46349,
254,
49426,
228,
36310,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
46237,
116,
12859,
233,
19021,
228,
22522,
250,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
27670,
21253,
223,
229,
26344,
108,
37772,
121,
5525,
123,
238,
220,
45298,
220,
21689,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
19526,
254,
22887,
109,
42468,
164,
106,
108,
20015,
229,
163,
95,
236,
165,
240,
119,
32368,
252,
26344,
118,
21689,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
1860,
171,
117,
223,
26344,
104,
21410,
42637,
21689,
22887,
109,
32573,
247,
20046,
230,
28938,
116,
28156,
243,
19526,
254,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
25465,
7398,
31660,
33566,
112,
27670,
248,
28839,
101,
19526,
254,
164,
118,
104,
28938,
236,
21410,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2534,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
163,
230,
109,
46349,
227,
20046,
253,
165,
250,
222,
17358,
223,
164,
108,
225,
37772,
111,
23877,
247,
35266,
113,
18796,
113,
164,
226,
239,
165,
227,
235,
20015,
114,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1558,
1600,
366,
1507,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
27670,
246,
164,
46788,
162,
95,
101,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
97,
122,
45911,
250,
171,
117,
223,
19526,
254,
22887,
109,
42468,
162,
7134,
165,
227,
240,
28938,
236,
21410,
27670,
246,
164,
46788,
162,
95,
101,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
239,
116,
165,
109,
120,
171,
117,
223,
22755,
239,
22887,
109,
37863,
235,
161,
244,
251,
12859,
123,
30266,
107,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
164,
4204,
45911,
103,
171,
117,
223,
22522,
230,
162,
232,
97,
17312,
222,
25001,
121,
21410,
12859,
234,
26344,
118,
164,
252,
230,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
236,
108,
17739,
227,
171,
117,
223,
163,
236,
108,
17739,
227,
163,
230,
228,
163,
224,
116,
28938,
100,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
226,
103,
164,
46788,
162,
95,
101,
171,
120,
234,
10310,
118,
20015,
222,
20046,
230,
38834,
161,
244,
251,
37772,
95,
93,
17992,
104,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32573,
238,
36365,
242,
18796,
101,
28839,
101,
12859,
228,
162,
110,
94,
18796,
101,
21410,
28839,
108,
43095,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1129,
1600,
366,
1238,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
163,
102,
118,
164,
46788,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
239,
116,
165,
109,
120,
171,
117,
223,
163,
102,
118,
164,
46788,
21410,
36685,
226,
46349,
111,
161,
223,
250,
38834,
10310,
233,
30266,
98,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
239,
253,
32368,
122,
171,
117,
223,
163,
122,
97,
162,
114,
102,
33699,
117,
33768,
114,
38834,
33768,
114,
30266,
98,
162,
248,
112,
165,
250,
110,
42372,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
97,
122,
45911,
250,
171,
117,
223,
27670,
248,
164,
95,
104,
37605,
241,
22755,
238,
162,
232,
244,
44,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
36365,
112,
163,
122,
97,
171,
117,
223,
27670,
248,
164,
95,
104,
162,
242,
122,
163,
121,
106,
31519,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
239,
253,
32368,
122,
171,
117,
223,
161,
241,
99,
162,
115,
99,
32003,
223,
17739,
226,
19526,
254,
42372,
25001,
121,
45250,
103,
161,
243,
232,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
239,
102,
13783,
248,
162,
239,
102,
13783,
248,
162,
239,
102,
13783,
248,
93,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2481,
1600,
366,
1828,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
33232,
235,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
163,
230,
114,
12859,
110,
46237,
112,
32573,
247,
10310,
103,
39355,
254,
39355,
250,
31660,
163,
224,
117,
32849,
121,
38834,
49035,
228,
16764,
16764,
16764,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
16458,
171,
117,
223,
165,
103,
115,
165,
104,
227,
32003,
223,
163,
230,
117,
20046,
253,
46349,
111,
43718,
252,
43718,
252,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
43380,
117,
163,
118,
123,
171,
117,
223,
19526,
254,
22887,
109,
42468,
34460,
223,
163,
230,
116,
21689,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
162,
232,
121,
39355,
94,
171,
117,
223,
163,
230,
114,
12859,
110,
21410,
39355,
254,
39355,
250,
163,
121,
95,
12859,
228,
171,
120,
234,
19526,
254,
164,
118,
104,
28938,
236,
42468,
17312,
231,
162,
234,
118,
13783,
248,
45250,
101,
163,
223,
113,
21410,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
26193,
101,
163,
50159,
171,
117,
223,
27670,
248,
36181,
245,
165,
103,
115,
165,
104,
227,
32003,
223,
163,
230,
117,
40367,
253,
27670,
254,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
25465,
19526,
254,
164,
118,
104,
164,
122,
117,
20046,
253,
42468,
17312,
231,
28938,
226,
163,
100,
235,
28938,
226,
43718,
115,
21410,
33176,
121,
163,
223,
113,
28839,
101,
37772,
95,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1954,
1600,
366,
1731,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
40367,
253,
29826,
98,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
2515,
123,
36853,
31917,
25748,
43266,
2515,
119,
28255,
22174,
23513,
31917,
25748,
28255,
22174,
2515,
109,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26344,
115,
17312,
105,
171,
117,
223,
32573,
247,
10310,
103,
42468,
40367,
253,
29826,
98,
40367,
253,
29826,
98,
45,
18,
20804,
37345,
243,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
164,
228,
250,
19526,
105,
171,
117,
223,
171,
120,
253,
32573,
247,
40367,
253,
29826,
98,
162,
110,
111,
34932,
234,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
13783,
235,
46237,
119,
171,
117,
223,
40367,
253,
29826,
98,
40367,
253,
29826,
98,
46763,
247,
15926,
233,
164,
226,
239,
28156,
222,
34650,
233,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
44165,
252,
162,
232,
222,
28839,
118,
171,
117,
223,
165,
224,
96,
20046,
230,
171,
120,
234,
163,
18433,
162,
94,
230,
22887,
109,
20998,
103,
17312,
231,
31660,
10310,
103,
12859,
228,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
240,
243,
161,
247,
250,
163,
223,
113,
37345,
95,
93,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1495,
1600,
366,
2075,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
164,
234,
250,
34932,
234,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
162,
116,
116,
171,
117,
223,
46237,
114,
46237,
114,
17358,
223,
28839,
101,
13783,
244,
165,
251,
95,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
32573,
238,
27950,
101,
171,
117,
223,
32573,
247,
43718,
115,
21410,
23513,
13783,
103,
162,
123,
222,
163,
225,
230,
12859,
228,
161,
245,
107,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
165,
224,
96,
34932,
234,
171,
120,
234,
32432,
110,
163,
119,
237,
162,
119,
94,
162,
119,
94,
21410,
12859,
228,
35266,
113,
162,
234,
229,
19526,
241,
27950,
249,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
23626,
236,
23626,
236,
32573,
246,
42468,
33768,
102,
41468,
22887,
109,
17358,
223,
20015,
236,
28938,
236,
165,
251,
95,
16764,
16764,
16764,
35266,
113,
33699,
241,
32368,
252,
30298,
235,
162,
236,
240,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
239,
253,
32368,
122,
171,
117,
223,
42468,
164,
108,
223,
22522,
111,
46349,
111,
163,
251,
222,
28156,
222,
164,
121,
99,
37772,
95,
163,
230,
103,
32432,
112,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32573,
247,
163,
100,
235,
12859,
233,
171,
120,
234,
22887,
109,
42468,
10310,
97,
10310,
103,
21689,
31660,
164,
113,
115,
27670,
248,
20998,
246,
164,
7134,
17312,
235,
35266,
113,
33232,
225,
46349,
227,
41468,
35266,
114,
21410,
43380,
117,
28938,
100,
171,
120,
253,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1983,
1600,
366,
2078,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
243,
250,
39355,
236,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
36365,
112,
163,
122,
97,
171,
117,
223,
20015,
232,
25465,
19526,
254,
22887,
109,
42468,
161,
244,
115,
36365,
112,
11737,
247,
25581,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
97,
122,
45911,
250,
171,
117,
223,
22887,
109,
163,
106,
245,
36181,
42062,
106,
101,
43889,
234,
171,
120,
234,
20015,
232,
25465,
22755,
239,
20046,
253,
27950,
103,
27950,
249,
28938,
225,
12859,
228,
31660,
31965,
229,
47797,
94,
164,
238,
251,
39355,
250,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
26344,
222,
171,
117,
223,
164,
50159,
47078,
114,
30585,
234,
17312,
249,
20998,
107,
20015,
98,
162,
248,
112,
49035,
119,
13783,
231,
162,
26534,
162,
94,
239,
32003,
234,
38834,
42468,
25581,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
35318,
28156,
109,
171,
117,
223,
27670,
246,
36685,
106,
22887,
109,
163,
106,
245,
12859,
228,
171,
120,
234,
19526,
254,
20046,
253,
46349,
111,
20998,
104,
36685,
230,
36685,
230,
171,
120,
253,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
17739,
101,
19526,
241,
32573,
238,
27670,
248,
38834,
27670,
248,
42468,
47797,
121,
28938,
225,
26344,
108,
163,
118,
116,
30266,
107,
164,
249,
233,
163,
111,
243,
37772,
95,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
13783,
231,
162,
26534,
13783,
231,
162,
26534,
13783,
231,
162,
26534,
13783,
231,
162,
26534,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
1959,
1600,
366,
1270,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
163,
122,
236,
163,
122,
236,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
25465,
17739,
242,
165,
250,
116,
23877,
255,
30298,
239,
171,
120,
234,
17358,
223,
46237,
243,
46237,
243,
28938,
245,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
162,
116,
116,
171,
117,
223,
27670,
21253,
223,
229,
26344,
108,
22887,
237,
164,
238,
251,
164,
236,
231,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26344,
115,
17312,
105,
171,
117,
223,
2515,
232,
17739,
226,
2515,
94,
1792,
225,
22174,
17358,
233,
28134,
18566,
28134,
23513,
18566,
33180,
2515,
109,
18566,
163,
106,
109,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
49035,
118,
26344,
222,
171,
117,
223,
163,
122,
236,
163,
122,
236,
21410,
45379,
106,
165,
117,
104,
165,
243,
123,
32014,
12859,
228,
20046,
253,
27670,
248,
27670,
97,
22522,
111,
22522,
225,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
32573,
247,
10310,
103,
17312,
230,
27670,
248,
22755,
246,
162,
239,
116,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
165,
243,
250,
39355,
236,
161,
240,
234,
17312,
103,
25001,
237,
30585,
234,
20046,
253,
27670,
248,
28938,
113,
162,
252,
114,
171,
120,
234,
19526,
228,
17312,
222,
28938,
236,
32573,
246,
42468,
27670,
248,
161,
240,
234,
25001,
121,
21410,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
3132,
1600,
366,
2624,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
17312,
103,
25001,
237,
30585,
234,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26344,
115,
17312,
105,
171,
117,
223,
22755,
238,
27950,
253,
34402,
123,
28156,
222,
162,
242,
119,
45911,
98,
163,
225,
253,
37239,
122,
28156,
117,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
239,
116,
165,
109,
120,
171,
117,
223,
162,
107,
237,
25465,
49011,
26344,
222,
18796,
250,
33232,
225,
26344,
222,
171,
120,
234,
32014,
22522,
114,
31660,
164,
113,
115,
163,
251,
94,
165,
98,
109,
165,
98,
109,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22887,
237,
10263,
123,
225,
13328,
228,
232,
10263,
255,
102,
10263,
255,
238,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
49035,
118,
26344,
222,
171,
117,
223,
26344,
248,
164,
115,
253,
165,
243,
250,
39355,
236,
28938,
113,
22522,
234,
162,
252,
114,
171,
120,
234,
163,
236,
108,
28839,
101,
42468,
15,
162,
248,
112,
165,
243,
250,
39355,
236,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
43291,
29826,
119,
171,
117,
223,
164,
229,
103,
32432,
109,
162,
234,
244,
21410,
165,
247,
115,
165,
246,
109,
171,
120,
234,
164,
229,
103,
32432,
109,
164,
116,
102,
10310,
233,
43889,
119,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1679,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
241,
236,
37772,
222,
171,
120,
234,
27764,
99,
38834,
27670,
248,
161,
243,
232,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2091,
1600,
366,
2682,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
45250,
250,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
165,
240,
241,
165,
109,
120,
171,
117,
223,
30298,
239,
28839,
96,
45298,
35707,
237,
38834,
28839,
101,
165,
109,
120,
171,
120,
234,
28839,
101,
20046,
236,
171,
120,
248,
171,
120,
248,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
119,
30298,
239,
171,
117,
223,
17358,
223,
26344,
118,
36181,
245,
33232,
104,
171,
120,
223,
26344,
118,
36181,
245,
45379,
254,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
31660,
164,
113,
115,
31965,
117,
164,
106,
255,
26344,
108,
162,
247,
248,
41468,
28938,
100,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
25465,
19526,
254,
22887,
109,
42468,
32003,
223,
165,
228,
233,
161,
251,
249,
35266,
113,
18803,
30266,
94,
45250,
250,
35266,
114,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
162,
239,
116,
165,
109,
120,
171,
117,
223,
37605,
241,
19526,
254,
161,
223,
115,
161,
223,
115,
33232,
104,
20046,
238,
21410,
33768,
114,
161,
222,
247,
171,
120,
234,
27670,
246,
26193,
96,
29826,
96,
28839,
101,
49035,
251,
164,
100,
228,
163,
251,
222,
19526,
254,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
34402,
229,
26344,
108,
32368,
108,
49694,
122,
21410,
33768,
114,
161,
222,
247,
171,
120,
234,
18796,
115,
171,
120,
253,
17312,
233,
20998,
233,
45250,
119,
27670,
248,
30585,
106,
19526,
254,
35266,
113,
37239,
103,
20046,
225,
5,
45250,
250,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2327,
1600,
366,
2623,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
27670,
246,
26193,
96,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
46237,
116,
12859,
233,
19021,
228,
22522,
250,
171,
120,
223,
20015,
232,
23513,
20015,
232,
28938,
236,
20046,
253,
46237,
115,
171,
120,
248,
171,
120,
248,
35266,
113,
22522,
243,
17312,
118,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
17312,
233,
171,
120,
253,
20998,
233,
32849,
121,
27670,
21253,
94,
122,
20998,
232,
17739,
111,
33232,
225,
19526,
254,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
46237,
112,
163,
251,
222,
43380,
117,
38834,
164,
113,
115,
22522,
252,
165,
247,
227,
39355,
112,
161,
223,
115,
28938,
225,
21410,
161,
109,
239,
32849,
121,
38834,
165,
227,
235,
164,
95,
104,
22755,
239,
25001,
114,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
26193,
101,
163,
50159,
171,
117,
223,
46237,
114,
46237,
114,
46237,
114,
22755,
239,
45250,
236,
20046,
230,
20998,
42062,
95,
104,
43380,
117,
38834,
164,
113,
115,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
162,
232,
121,
39355,
94,
171,
117,
223,
20998,
230,
12859,
243,
12859,
228,
37772,
95,
171,
120,
234,
165,
103,
39374,
28938,
249,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
38834,
164,
106,
116,
46237,
112,
43380,
117,
38834,
164,
113,
115,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2718,
1600,
366,
2548,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
33768,
98,
161,
240,
234,
164,
236,
231,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
44165,
252,
162,
232,
222,
28839,
118,
171,
117,
223,
162,
105,
100,
162,
233,
231,
162,
105,
100,
162,
233,
231,
162,
105,
100,
162,
233,
231,
162,
105,
100,
162,
233,
231,
162,
105,
100,
162,
233,
231,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33768,
98,
26193,
234,
31660,
161,
244,
226,
27670,
248,
17312,
231,
25001,
121,
12859,
233,
20998,
239,
37955,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
43380,
117,
163,
118,
123,
171,
117,
223,
165,
224,
96,
22887,
109,
43380,
117,
20015,
244,
45635,
18796,
101,
163,
43518,
162,
233,
111,
28938,
100,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
161,
223,
237,
164,
100,
223,
171,
117,
223,
19526,
254,
20015,
98,
10310,
118,
22755,
239,
42468,
163,
234,
104,
171,
120,
234,
17739,
114,
22522,
252,
22755,
239,
42468,
32003,
223,
164,
247,
236,
161,
241,
240,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
26193,
101,
163,
50159,
171,
117,
223,
162,
116,
116,
22755,
237,
20046,
253,
25001,
121,
171,
120,
234,
33566,
116,
34402,
229,
20046,
253,
25001,
121,
171,
120,
234,
23626,
236,
23626,
236,
42468,
22755,
239,
17739,
230,
30266,
98,
21410,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
28156,
222,
17312,
245,
162,
112,
119,
37345,
120,
46349,
111,
17358,
223,
46479,
251,
162,
234,
223,
20015,
244,
21689,
17739,
111,
163,
111,
119,
171,
120,
234,
26344,
108,
41753,
243,
161,
241,
103,
34932,
234,
49035,
118,
165,
242,
247,
12859,
228,
35266,
113,
32368,
95,
36310,
5,
33768,
98,
161,
240,
234,
164,
236,
231,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2670,
1600,
366,
1821,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
164,
112,
103,
28938,
225,
19526,
102,
20998,
107,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22174,
30159,
171,
121,
252,
18566,
171,
120,
223,
2515,
242,
31676,
22174,
31676,
37772,
121,
5641,
23544,
44916,
9202,
43899,
6312,
35283,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
2515,
232,
18566,
33180,
33623,
171,
121,
252,
35283,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
12859,
234,
26344,
118,
163,
234,
123,
171,
117,
223,
40367,
253,
18796,
115,
21689,
22887,
109,
46237,
98,
171,
120,
253,
165,
45865,
164,
122,
122,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
33768,
98,
45250,
100,
47797,
121,
165,
247,
235,
19526,
236,
171,
117,
223,
32368,
254,
10310,
118,
25001,
121,
28938,
225,
22887,
109,
42468,
165,
45865,
17739,
112,
161,
246,
249,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
36365,
112,
163,
122,
97,
171,
117,
223,
163,
122,
97,
165,
250,
116,
163,
252,
111,
163,
107,
94,
162,
242,
117,
163,
122,
97,
37772,
246,
164,
106,
108,
33232,
228,
43380,
120,
164,
229,
112,
37863,
115,
28839,
118,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37858,
29659,
11482,
30640,
33623,
2515,
255,
447,
120,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
3901,
1600,
366,
3682,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
20998,
107,
20998,
107,
164,
238,
251,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
25465,
20046,
253,
161,
223,
248,
36181,
245,
36181,
230,
25001,
121,
23513,
10310,
119,
43357,
30159,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
232,
121,
39355,
94,
171,
117,
223,
163,
230,
109,
162,
95,
227,
23877,
107,
32014,
21689,
46237,
112,
20015,
232,
25465,
20998,
230,
27670,
21253,
223,
229,
26344,
108,
23877,
108,
21410,
42637,
37955,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26344,
115,
17312,
105,
171,
117,
223,
32432,
110,
163,
119,
237,
164,
106,
102,
43380,
228,
162,
41678,
163,
241,
99,
161,
223,
115,
161,
223,
115,
162,
242,
117,
32573,
229,
46763,
108,
162,
235,
106,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
252,
250,
47078,
114,
20998,
230,
42468,
10310,
119,
21689,
164,
106,
97,
46237,
228,
21410,
42637,
37955,
171,
120,
234,
20015,
98,
28938,
236,
20998,
104,
1792,
237,
22174,
1792,
237,
22174,
5641,
10310,
119,
43357,
30159,
25001,
121,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
39355,
232,
34460,
242,
32003,
234,
41753,
253,
171,
117,
223,
163,
105,
105,
49035,
254,
162,
105,
94,
164,
121,
105,
37955,
12859,
228,
171,
120,
234,
16458,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
46237,
116,
12859,
233,
19021,
228,
22522,
250,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
3559,
1600,
366,
2598,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
163,
240,
225,
20046,
225,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
232,
121,
39355,
94,
171,
120,
223,
18,
87,
27670,
248,
161,
225,
237,
22887,
226,
49035,
118,
21410,
163,
106,
255,
37239,
101,
31660,
43718,
115,
13783,
248,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
27764,
99,
20046,
254,
171,
117,
223,
32573,
247,
162,
105,
94,
22887,
109,
38834,
27670,
248,
37863,
235,
164,
238,
121,
162,
99,
250,
12859,
228,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
162,
116,
116,
171,
117,
223,
20998,
103,
42468,
33566,
239,
164,
100,
228,
161,
241,
98,
161,
241,
98,
21410,
20015,
119,
27950,
94,
163,
121,
95,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
228,
105,
13783,
250,
171,
117,
223,
38834,
42468,
162,
107,
237,
10310,
103,
21689,
165,
10253,
30266,
98,
28938,
236,
27670,
248,
17312,
231,
33232,
225,
41468,
21689,
21410,
164,
228,
251,
162,
252,
243,
21410,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
26193,
101,
163,
50159,
171,
117,
223,
27670,
248,
164,
95,
104,
26344,
104,
21689,
35266,
113,
165,
251,
247,
38184,
223,
32573,
249,
26193,
234,
13783,
109,
33232,
228,
13783,
112,
162,
100,
234,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
28938,
226,
43095,
165,
251,
95,
32849,
121,
17358,
223,
37345,
101,
35707,
237,
171,
120,
234,
32014,
35707,
237,
28938,
225,
162,
112,
98,
163,
110,
98,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2231,
1600,
366,
3510,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
17739,
233,
34932,
234,
23877,
107,
164,
240,
224,
161,
101,
250,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
34402,
113,
22522,
42062,
103,
241,
163,
118,
99,
27670,
248,
45911,
247,
10310,
233,
25001,
121,
39355,
108,
164,
109,
94,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
26344,
222,
171,
117,
223,
19526,
254,
22887,
109,
42468,
33768,
254,
46349,
227,
21410,
39355,
245,
163,
241,
250,
32014,
164,
237,
254,
164,
238,
251,
17312,
118,
161,
247,
101,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
44165,
252,
162,
232,
222,
28839,
118,
171,
117,
223,
22887,
109,
32573,
247,
22887,
109,
32573,
247,
171,
120,
234,
13783,
103,
28156,
109,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
97,
122,
45911,
250,
171,
117,
223,
27670,
248,
43291,
29826,
119,
165,
94,
35050,
240,
252,
26344,
108,
41468,
20998,
116,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22887,
109,
161,
225,
237,
22755,
239,
163,
236,
108,
28839,
101,
42468,
163,
119,
237,
163,
118,
103,
21689,
31660,
43718,
115,
171,
120,
234,
162,
235,
95,
10310,
103,
163,
236,
107,
161,
95,
225,
20046,
253,
17312,
103,
22887,
251,
38834,
20998,
107,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2534,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33176,
112,
11737,
226,
20998,
107,
163,
106,
245,
38834,
41468,
42468,
29785,
106,
165,
95,
246,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2857,
1600,
366,
2780,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
43718,
252,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
27764,
99,
20046,
254,
171,
117,
223,
23877,
108,
20046,
99,
20046,
108,
30266,
98,
12859,
228,
171,
120,
234,
17358,
223,
31660,
164,
113,
115,
40367,
233,
28938,
245,
171,
120,
253,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
240,
116,
163,
234,
104,
171,
117,
223,
22887,
237,
161,
244,
113,
31965,
117,
42468,
10310,
103,
20046,
244,
27764,
102,
36310,
37772,
95,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
162,
116,
116,
171,
117,
223,
13783,
248,
162,
247,
240,
162,
247,
240,
13783,
103,
165,
246,
111,
17312,
231,
26344,
102,
164,
118,
104,
19526,
241,
161,
223,
98,
41753,
115,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37345,
101,
35707,
237,
161,
223,
98,
41753,
115,
171,
117,
223,
162,
46788,
29826,
231,
3712,
42468,
22755,
239,
162,
232,
232,
35707,
253,
161,
10253,
27670,
254,
163,
119,
247,
19526,
254,
12859,
228,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
163,
97,
122,
45911,
250,
171,
117,
223,
38834,
17358,
223,
13783,
103,
32573,
229,
47947,
231,
28156,
118,
164,
229,
103,
32432,
109,
171,
120,
234,
34460,
224,
33768,
114,
43380,
119,
162,
109,
224,
20015,
244,
21689,
30585,
106,
27950,
102,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
25465,
25001,
121,
161,
225,
237,
163,
232,
35050,
222,
223,
38834,
165,
242,
247,
171,
120,
234,
17358,
223,
20998,
104,
41468,
34650,
238,
34650,
238,
31660,
164,
113,
115,
49035,
118,
43889,
119,
164,
113,
108,
164,
113,
108,
28938,
245,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2920,
1600,
366,
1120,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
241,
225,
25001,
230,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
236,
101,
32368,
122,
171,
117,
223,
22755,
239,
162,
248,
112,
49035,
119,
28156,
241,
31660,
163,
106,
255,
31660,
10310,
103,
165,
241,
223,
20046,
234,
11737,
253,
35266,
113,
37239,
122,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
25001,
121,
46349,
111,
20998,
246,
22755,
238,
164,
115,
253,
17312,
249,
31660,
43718,
115,
21689,
36365,
242,
163,
230,
228,
162,
96,
248,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
165,
119,
226,
162,
110,
117,
171,
117,
223,
32573,
247,
10310,
103,
13528,
38834,
42468,
165,
224,
96,
10310,
103,
13528,
161,
243,
232,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
161,
223,
98,
33232,
246,
171,
117,
223,
22,
12906,
22,
163,
255,
231,
12859,
236,
13783,
248,
22887,
239,
30266,
98,
163,
251,
222,
171,
120,
253,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
165,
243,
250,
162,
248,
112,
161,
242,
107,
32573,
252,
163,
102,
118,
164,
46788,
32849,
121,
30266,
222,
38834,
29826,
119,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1679,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
25001,
121,
49694,
122,
161,
243,
232,
171,
120,
223,
163,
100,
222,
33699,
235,
46763,
247,
12859,
97,
22755,
239,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
4349,
1600,
366,
4309,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
161,
240,
110,
162,
223,
233,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
162,
232,
243,
17739,
98,
27950,
103,
27950,
249,
27670,
248,
164,
236,
115,
36181,
245,
32368,
252,
162,
232,
98,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
27950,
102,
21689,
171,
117,
223,
164,
95,
104,
20998,
104,
161,
240,
110,
162,
223,
233,
36685,
230,
36685,
230,
17739,
114,
22522,
252,
17312,
231,
163,
224,
117,
28156,
222,
33232,
225,
21410,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
164,
106,
123,
20998,
233,
171,
117,
223,
40367,
253,
29826,
96,
21410,
165,
251,
240,
162,
95,
227,
44165,
117,
165,
102,
105,
22887,
109,
163,
106,
245,
10310,
244,
45911,
234,
34932,
235,
163,
121,
106,
12859,
228,
20046,
253,
32573,
246,
164,
106,
108,
36181,
245,
43380,
117,
43095,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
36365,
103,
34932,
239,
171,
117,
223,
32573,
247,
12859,
249,
165,
240,
109,
162,
233,
123,
30266,
98,
20046,
108,
1270,
1795,
38834,
165,
99,
247,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
36365,
112,
163,
122,
97,
171,
117,
223,
27670,
248,
164,
95,
104,
163,
122,
97,
37772,
246,
162,
236,
237,
49035,
118,
43636,
119,
34460,
120,
13,
27908,
32573,
249,
26193,
234,
161,
246,
110,
163,
105,
239,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
10310,
118,
12859,
228,
46763,
239,
38184,
236,
165,
247,
95,
21410,
27764,
102,
36310,
20015,
105,
171,
120,
234,
34402,
229,
26344,
108,
32368,
108,
49694,
122,
20046,
253,
47797,
121,
161,
251,
248,
162,
234,
223,
10310,
233,
43889,
119,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
4310,
1600,
366,
4051,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
250,
110,
161,
101,
250,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
236,
108,
17739,
227,
171,
117,
223,
20998,
107,
20015,
98,
164,
115,
253,
22755,
239,
161,
223,
248,
17312,
233,
20998,
233,
28938,
245,
35266,
113,
32573,
104,
40367,
253,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
239,
116,
165,
109,
120,
171,
117,
223,
32432,
98,
43291,
42468,
38834,
20998,
107,
47797,
121,
21410,
171,
120,
234,
17312,
233,
20998,
233,
20998,
230,
12859,
97,
38834,
26344,
108,
171,
120,
234,
20998,
103,
25001,
121,
162,
239,
116,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
49035,
118,
26344,
222,
171,
117,
223,
27670,
21253,
243,
123,
22755,
239,
25306,
86,
162,
248,
112,
49035,
119,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
21253,
243,
123,
22755,
239,
38834,
46349,
111,
37863,
235,
49035,
118,
162,
234,
224,
43718,
239,
23626,
98,
165,
119,
239,
26344,
222,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2681,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
23626,
236,
23626,
236,
46349,
111,
12859,
97,
36181,
230,
13783,
248,
17312,
233,
20998,
233,
21410,
171,
120,
234,
10310,
118,
20015,
222,
20046,
230,
32849,
121,
34402,
123,
163,
251,
222,
22755,
239,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2816,
1600,
366,
3980,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
250,
252,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
242,
242,
34650,
228,
171,
120,
234,
20015,
232,
25465,
20046,
253,
17358,
223,
162,
233,
250,
33699,
246,
19526,
254,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37863,
115,
165,
251,
247,
26344,
228,
162,
252,
238,
27670,
248,
36181,
245,
49035,
118,
29785,
106,
165,
95,
246,
21410,
17312,
222,
27670,
246,
164,
100,
96,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
33699,
241,
171,
120,
253,
171,
117,
223,
22887,
237,
29785,
106,
20998,
115,
171,
120,
234,
19526,
254,
42468,
38834,
42468,
17312,
231,
36181,
230,
13783,
248,
17312,
233,
20998,
233,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
10310,
118,
21689,
165,
247,
227,
17739,
111,
163,
111,
119,
163,
225,
99,
162,
223,
120,
171,
117,
223,
164,
106,
102,
22755,
239,
164,
108,
225,
162,
253,
98,
40367,
233,
40367,
233,
42468,
164,
108,
223,
27670,
97,
22522,
111,
12859,
228,
27670,
246,
26193,
96,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
164,
95,
104,
46237,
107,
164,
100,
96,
171,
117,
223,
42468,
30266,
250,
22522,
122,
38834,
42468,
165,
102,
112,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27950,
102,
33699,
233,
31917,
22174,
171,
120,
234,
17312,
231,
29785,
106,
165,
95,
246,
21410,
46237,
251,
22887,
121,
163,
106,
94,
12859,
97,
163,
119,
247,
25581,
32849,
121,
28938,
235,
160,
122,
99,
162,
236,
95,
22755,
239,
28938,
100,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
3553,
1600,
366,
3365,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
40367,
253,
49426,
112,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
2515,
242,
1792,
223,
22174,
1209,
99,
11482,
447,
120,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
228,
105,
13783,
250,
171,
117,
223,
17358,
223,
164,
115,
253,
22755,
239,
31660,
164,
113,
115,
13783,
250,
29785,
112,
32432,
94,
34460,
119,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
27764,
99,
20046,
254,
171,
117,
223,
20998,
230,
17358,
223,
46763,
108,
27764,
99,
38184,
233,
46237,
243,
12859,
228,
171,
120,
234,
41468,
46237,
122,
38834,
47797,
121,
163,
251,
94,
163,
251,
222,
12859,
228,
161,
243,
232,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
49035,
118,
163,
111,
245,
171,
117,
223,
22887,
237,
23513,
22887,
237,
163,
228,
232,
47797,
244,
162,
105,
94,
45250,
236,
20046,
230,
12859,
228,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
49035,
118,
26344,
222,
171,
117,
223,
27670,
248,
38834,
22887,
237,
33232,
225,
39355,
94,
162,
236,
231,
45379,
120,
28938,
120,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
97,
22522,
111,
27670,
246,
26193,
96,
21410,
22522,
114,
27670,
247,
28839,
101,
161,
241,
103,
161,
243,
232,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
3270,
1600,
366,
1899,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
165,
99,
247,
163,
119,
229,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
31660,
26344,
229,
32849,
121,
27670,
248,
162,
248,
112,
49035,
119,
21410,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
232,
121,
39355,
94,
171,
117,
223,
163,
39333,
15351,
163,
119,
253,
31660,
26344,
229,
17739,
98,
40792,
163,
118,
123,
162,
233,
123,
10310,
233,
929,
31660,
36365,
242,
37772,
113,
22755,
238,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
28938,
225,
163,
241,
250,
171,
117,
223,
19526,
254,
20046,
253,
30266,
98,
31660,
163,
224,
117,
171,
120,
253,
35266,
113,
164,
233,
99,
35266,
114,
163,
241,
250,
36181,
230,
25001,
121,
28938,
225,
21410,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
49035,
118,
26344,
222,
171,
117,
223,
34932,
235,
17358,
223,
21410,
10310,
250,
164,
98,
123,
28839,
101,
43718,
239,
41468,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
44165,
252,
162,
232,
222,
28839,
118,
171,
117,
223,
45379,
245,
162,
233,
111,
20998,
230,
163,
254,
116,
33176,
121,
163,
223,
113,
30585,
225,
10310,
223,
41468,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
31660,
26344,
229,
32849,
121,
27670,
248,
25001,
121,
164,
113,
115,
30266,
98,
21410,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
5333,
1600,
366,
5237,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
12859,
21253,
229,
234,
164,
236,
236,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
49035,
118,
162,
116,
116,
171,
117,
223,
161,
240,
244,
161,
243,
94,
41753,
245,
21410,
42637,
20015,
228,
26344,
114,
17312,
235,
46349,
111,
40367,
233,
40367,
233,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
164,
106,
123,
20998,
233,
171,
117,
223,
38834,
163,
253,
98,
34402,
241,
164,
238,
251,
164,
113,
249,
164,
236,
231,
12859,
248,
163,
236,
108,
28839,
101,
45250,
236,
20046,
230,
43718,
115,
12859,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
163,
239,
253,
32368,
122,
171,
117,
223,
27670,
248,
38834,
161,
223,
250,
22887,
226,
163,
230,
228,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
44,
16744,
171,
117,
223,
22755,
239,
28839,
101,
17739,
108,
36181,
115,
163,
112,
95,
22887,
242,
20046,
253,
27670,
248,
20998,
246,
22755,
238,
28839,
108,
33232,
225,
22887,
239,
42637,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
27670,
248,
20998,
246,
22755,
238,
23626,
253,
165,
247,
227,
163,
236,
102,
22522,
114,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33699,
122,
26344,
108,
32368,
249,
20998,
114,
164,
235,
231,
12859,
228,
171,
120,
223,
40367,
233,
30266,
98,
42468,
27670,
248,
17312,
231,
25001,
121,
32573,
238,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
5066,
1600,
366,
2414,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
17312,
249,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
39355,
243,
162,
236,
101,
171,
117,
223,
162,
120,
242,
161,
242,
109,
27670,
248,
171,
120,
234,
17358,
223,
30266,
98,
40367,
233,
28938,
245,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
807,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
26193,
101,
163,
50159,
171,
117,
223,
32573,
247,
42468,
10310,
118,
12859,
228,
37863,
247,
49035,
118,
29826,
234,
46237,
235,
21410,
163,
118,
99,
27670,
248,
163,
119,
225,
20046,
254,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
32573,
238,
27950,
101,
171,
117,
223,
161,
223,
114,
161,
225,
237,
162,
112,
119,
27950,
101,
20046,
253,
165,
250,
222,
17358,
223,
165,
242,
119,
163,
224,
120,
164,
118,
104,
19526,
241,
171,
120,
223,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
28938,
225,
36181,
245,
13783,
103,
13783,
248,
20998,
230,
20998,
246,
47797,
244,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
35318,
28156,
109,
171,
117,
223,
27670,
248,
164,
95,
104,
163,
122,
97,
20998,
233,
46237,
228,
163,
254,
112,
27670,
103,
35318,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
2310,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
161,
223,
114,
161,
225,
237,
20046,
253,
17312,
231,
161,
223,
114,
161,
225,
237,
21410,
163,
225,
99,
162,
223,
120,
171,
120,
234,
25001,
121,
46349,
111,
164,
108,
230,
31660,
28839,
118,
162,
247,
106,
34460,
248,
21410,
162,
223,
233,
163,
230,
109,
161,
243,
232,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2996,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
162,
247,
114,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20015,
232,
28938,
236,
20046,
253,
46237,
115,
43291,
10310,
118,
22755,
239,
21410,
17739,
105,
10310,
119,
165,
103,
39374,
27950,
103,
27950,
249,
28938,
100,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
116,
116,
22755,
237,
171,
117,
223,
19526,
254,
22887,
109,
42468,
15548,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
239,
116,
165,
109,
120,
171,
117,
223,
34932,
235,
17358,
223,
21689,
31965,
102,
20998,
103,
17312,
231,
17739,
111,
165,
242,
106,
33768,
114,
26344,
119,
33699,
235,
27670,
248,
49035,
118,
28839,
118,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
22,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33232,
234,
10310,
233,
43889,
101,
171,
117,
223,
163,
118,
111,
164,
109,
228,
25001,
35050,
110,
117,
20998,
107,
10310,
121,
165,
98,
120,
25001,
121,
161,
225,
237,
38834,
165,
242,
247,
161,
243,
232,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1987,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
20998,
107,
10310,
121,
165,
98,
120,
39355,
244,
38834,
49035,
118,
43889,
119,
161,
243,
232,
171,
120,
234,
42468,
161,
241,
103,
34932,
234,
49035,
118,
29785,
106,
165,
95,
246,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10641,
1698,
1298,
14631,
2791,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
3672,
1298,
366,
164,
46788,
49035,
249,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4906,
1298,
685,
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,
366,
11274,
12,
46708,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
37858,
29659,
11482,
30640,
33623,
2515,
255,
35283,
33176,
116,
32573,
238,
31965,
102,
42468,
165,
98,
255,
32368,
95,
171,
120,
223,
28938,
225,
36181,
245,
165,
98,
109,
165,
98,
109,
21410,
171,
120,
234,
163,
119,
100,
163,
119,
255,
162,
232,
121,
10310,
233,
43889,
119,
28938,
100,
171,
120,
223,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
767,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
33176,
116,
32573,
238,
27950,
101,
31965,
102,
42468,
163,
228,
232,
171,
120,
223,
22755,
244,
164,
106,
116,
47797,
121,
161,
225,
237,
40367,
253,
29826,
96,
22522,
114,
21689,
31660,
43718,
115,
22522,
230,
162,
232,
97,
19526,
254,
35266,
113,
38834,
27670,
248,
28938,
225,
12859,
243,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
22522,
250,
162,
232,
121,
39355,
94,
171,
117,
223,
39355,
223,
32573,
252,
31660,
22522,
248,
27670,
248,
49035,
118,
34932,
239,
171,
120,
234,
49035,
118,
34932,
239,
31660,
22522,
248,
27670,
248,
28938,
225,
12859,
243,
171,
117,
224,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
17358,
223,
22887,
237,
33232,
225,
163,
103,
223,
20998,
239,
12859,
233,
20015,
114,
171,
120,
223,
49035,
118,
29785,
101,
20998,
107,
47797,
121,
27670,
248,
164,
95,
104,
37605,
241,
22755,
238,
13697,
28938,
225,
12859,
243,
21410,
21689,
13700,
7398,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
532,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
30266,
98,
12859,
228,
30266,
98,
12859,
228,
171,
120,
234,
32573,
247,
42468,
19526,
254,
17358,
223,
21410,
10,
1129,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
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,
366,
11274,
12,
46708,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11299,
1298,
366,
19526,
254,
165,
10253,
161,
243,
99,
171,
120,
234,
22755,
239,
30585,
106,
19526,
254,
164,
108,
225,
19526,
236,
18,
87,
162,
99,
224,
163,
236,
229,
12859,
228,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
1782,
198,
60
] | 1.083815 | 23,540 |
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
import pandas as pd
from torch.utils.data import DataLoader
from sklearn.preprocessing import StandardScaler
from models import GRU, rmse_loss
from Dataset import BikeDataSet
if __name__ == '__main__':
device = torch.device('cuda:1')
dataset = BikeDataSet()
dataloader = DataLoader(dataset, num_workers=1, batch_size=64)
trainer = Trainer(device)
best_loss = 10000
best_epoch = -1
epoch_list = []
for epoch in range(1000):
iter_loss_list = []
for iter, (x, y) in enumerate(dataloader):
x = x.float().to(device)
y = y.float().to(device)
l = trainer.train(x, y)
iter_loss_list.append(l)
epoch_loss = np.mean(iter_loss_list)
if epoch_loss < best_loss:
best_epoch = epoch
best_loss = epoch_loss
elif best_epoch + 50 < epoch:
break
print("Epoch:", epoch, "loss:", epoch_loss, "Best Epoch:", best_epoch, "Best Loss:", best_loss)
|
[
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
28034,
13,
26791,
13,
7890,
1330,
6060,
17401,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
8997,
3351,
36213,
198,
6738,
4981,
1330,
10863,
52,
11,
42721,
325,
62,
22462,
198,
6738,
16092,
292,
316,
1330,
26397,
6601,
7248,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
3335,
796,
28034,
13,
25202,
10786,
66,
15339,
25,
16,
11537,
198,
220,
220,
220,
27039,
796,
26397,
6601,
7248,
3419,
198,
220,
220,
220,
4818,
282,
1170,
263,
796,
6060,
17401,
7,
19608,
292,
316,
11,
997,
62,
22896,
28,
16,
11,
15458,
62,
7857,
28,
2414,
8,
198,
220,
220,
220,
21997,
796,
31924,
7,
25202,
8,
198,
220,
220,
220,
1266,
62,
22462,
796,
33028,
198,
220,
220,
220,
1266,
62,
538,
5374,
796,
532,
16,
198,
220,
220,
220,
36835,
62,
4868,
796,
17635,
198,
220,
220,
220,
329,
36835,
287,
2837,
7,
12825,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11629,
62,
22462,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
11629,
11,
357,
87,
11,
331,
8,
287,
27056,
378,
7,
67,
10254,
1170,
263,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
2124,
13,
22468,
22446,
1462,
7,
25202,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
796,
331,
13,
22468,
22446,
1462,
7,
25202,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
796,
21997,
13,
27432,
7,
87,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11629,
62,
22462,
62,
4868,
13,
33295,
7,
75,
8,
628,
220,
220,
220,
220,
220,
220,
220,
36835,
62,
22462,
796,
45941,
13,
32604,
7,
2676,
62,
22462,
62,
4868,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
36835,
62,
22462,
1279,
1266,
62,
22462,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1266,
62,
538,
5374,
796,
36835,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1266,
62,
22462,
796,
36835,
62,
22462,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1266,
62,
538,
5374,
1343,
2026,
1279,
36835,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
13807,
5374,
25,
1600,
36835,
11,
366,
22462,
25,
1600,
36835,
62,
22462,
11,
366,
13014,
4551,
5374,
25,
1600,
1266,
62,
538,
5374,
11,
366,
13014,
22014,
25,
1600,
1266,
62,
22462,
8,
198
] | 2.293617 | 470 |
# -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
#
# File Name : tardis_minimal_model.py
#
# Purpose :
#
# Creation Date : 18-02-2016
#
# Last Modified : Tue 02 Aug 2016 15:09:26 CEST
#
# Created By :
#
# _._._._._._._._._._._._._._._._._._._._._.
"""This module provides an interface object which holds the essential
information of a Tardis run to do all the diagnostic tasks for which the
tardisanalysis repository provides tools. Relying on this interface model
objects is a temporary solution until the model storage capability of Tardis
has reached a mature state.
"""
from __future__ import print_function
import pandas as pd
import astropy.units as units
import os
from tardis.model import Radial1DModel
def store_data_for_minimal_model(simulation, buffer_or_fname="minimal_model.hdf5",
path="", mode="virtual"):
"""Simple helper routine to dump all information which are required to
perform extensive diagnostics with the tardisanalysis tools to an HDF5
file.
Parameters
----------
mdl : tardis.model.Radial1DModel
source tardis model object
buffer_or_fname : str or file stream
name of the hdf5 file or file handler (default 'minimal_model.hdf5')
path : str
location of the date within the HDF5 file (default '', i.e. its root)
mode : str
"virtual" (default), "real" or "both"; store the properties of the
virtual or the real packet population
"""
def _save_spectrum_real(key, path, hdf_store):
"""save the real packet spectrum"""
wave = simulation.runner.spectrum.wavelength.value
flux = simulation.runner.spectrum.luminosity_density_lambda.value
luminosity_density = \
pd.DataFrame.from_dict(dict(wave=wave, flux=flux))
luminosity_density.to_hdf(hdf_store, os.path.join(path, key))
def _save_spectrum_virtual(key, path, hdf_store):
"""save the virtual packet spectrum"""
wave = simulation.runner.spectrum_virtual.wavelength.value
flux = \
simulation.runner.spectrum_virtual.luminosity_density_lambda.value
luminosity_density_virtual = pd.DataFrame.from_dict(dict(wave=wave,
flux=flux))
luminosity_density_virtual.to_hdf(hdf_store, os.path.join(path, key))
def _save_configuration_dict(key, path, hdf_store):
"""save some information from the basic configuration of the run. For
now only the time of the simulation is stored
"""
configuration_dict = dict(
time_of_simulation=simulation.runner.time_of_simulation,
R_photosphere=(simulation.model.time_explosion *
simulation.model._velocity[0]).to("cm"),
t_inner=simulation.model.t_inner)
configuration_dict_path = os.path.join(path, 'configuration')
pd.Series(configuration_dict).to_hdf(hdf_store,
configuration_dict_path)
possible_modes = ["real", "virtual", "both"]
try:
assert(mode in possible_modes)
except AssertionError:
raise ValueError(
"Wrong mode - possible_modes are {:s}".format(
", ".join(possible_modes)))
if mode == "virtual" and simulation.runner.virt_logging == 0:
raise ValueError(
"Virtual packet logging is switched off - cannot store the "
"properties of the virtual packet population")
include_from_runner_ = {}
include_from_spectrum_ = {}
if mode == "virtual" or mode == "both":
include_from_runner_.update(
{'virt_packet_last_interaction_type': None,
'virt_packet_last_line_interaction_in_id': None,
'virt_packet_last_line_interaction_out_id': None,
'virt_packet_last_interaction_in_nu': None,
'virt_packet_nus': None,
'virt_packet_energies': None})
include_from_spectrum_.update(
{'luminosity_density_virtual': _save_spectrum_virtual})
if mode == "real" or mode == "both":
include_from_runner_.update(
{'last_interaction_type': None,
'last_line_interaction_in_id': None,
'last_line_interaction_out_id': None,
'last_interaction_in_nu': None,
'output_nu': None,
'output_energy': None})
include_from_spectrum_.update(
{'luminosity_density': _save_spectrum_real})
include_from_atom_data_ = {'lines': None}
include_from_model_in_hdf5 = {'runner': include_from_runner_,
'atom_data': _save_atom_data,
'spectrum': include_from_spectrum_,
'configuration_dict':
_save_configuration_dict,
}
if isinstance(buffer_or_fname, basestring):
hdf_store = pd.HDFStore(buffer_or_fname)
elif isinstance(buffer_or_fname, pd.HDFStore):
hdf_store = buffer_or_fname
else:
raise IOError('Please specify either a filename or an HDFStore')
print('Writing to path %s' % path)
for key in include_from_model_in_hdf5:
if include_from_model_in_hdf5[key] is None:
_save_model_property(getattr(simulation, key), key, path, hdf_store)
elif callable(include_from_model_in_hdf5[key]):
include_from_model_in_hdf5[key](key, path, hdf_store)
else:
try:
for subkey in include_from_model_in_hdf5[key]:
print(subkey)
if include_from_model_in_hdf5[key][subkey] is None:
_save_model_property(getattr(getattr(simulation, key),
subkey), subkey,
os.path.join(path, key),
hdf_store)
elif callable(include_from_model_in_hdf5[key][subkey]):
include_from_model_in_hdf5[key][subkey](
subkey, os.path.join(path, key), hdf_store)
else:
print('Can not save %s' % str(os.path.join(path, key, subkey)))
except:
print('An error occurred while dumping %s to HDF.' % str(os.path.join(path, key)))
hdf_store.flush()
hdf_store.close()
class minimal_model(object):
"""Interface object used in many tardisanalysis tools. It holds the
essential diagnostics information for either the real or the virtual packet
population of a run.
This interface object may be filled from an existing Tardis radial1dmodel
object (for example during the interactive ipython use of Tardis), or
filled from an HDF5 file (generated by store_data_for_minimal_model).
Parameters
----------
mode : str
"real" (default) or "virtual"; defines which packet population is
stored in the interface object.
"""
def from_interactive(self, simulation):
"""fill the minimal_model from an existing simulation object
Parameters
----------
simulation : Simulation
Tardis simulation object holding the run
"""
self.time_of_simulation = simulation.runner.time_of_simulation
self.lines = \
simulation.plasma.atomic_data.lines.reset_index().set_index(
'line_id')
self.R_phot = (simulation.model._velocity[0] *
simulation.model.time_explosion).to("cm")
self.t_inner = simulation.model.t_inner
if self.mode == "virtual":
self.last_interaction_type = \
simulation.runner.virt_packet_last_interaction_type
self.last_line_interaction_in_id = \
simulation.runner.virt_packet_last_line_interaction_in_id
self.last_line_interaction_out_id = \
simulation.runner.virt_packet_last_line_interaction_out_id
self.last_interaction_in_nu = \
simulation.runner.virt_packet_last_interaction_in_nu
self.packet_nus = \
simulation.runner.virt_packet_nus * units.Hz
self.packet_energies = \
simulation.runner.virt_packet_energies * units.erg
self.spectrum_wave = \
simulation.runner.spectrum_virtual.wavelength
self.spectrum_luminosity = \
simulation.runner.spectrum_virtual.luminosity_density_lambda
elif self.mode == "real":
esc_mask = simulation.runner.output_energy >= 0
self.last_interaction_type = \
simulation.runner.last_interaction_type[esc_mask]
self.last_line_interaction_in_id = \
simulation.runner.last_line_interaction_in_id[esc_mask]
self.last_line_interaction_out_id = \
simulation.runner.last_line_interaction_out_id[esc_mask]
self.last_interaction_in_nu = \
simulation.runner.last_interaction_in_nu[esc_mask]
self.packet_nus = \
simulation.runner.output_nu[esc_mask]
self.packet_energies = \
simulation.runner.output_energy[esc_mask]
self.spectrum_wave = \
simulation.runner.spectrum.wavelength
self.spectrum_luminosity = \
simulation.runner.spectrum.luminosity_density_lambda
else:
raise ValueError
self.last_interaction_in_nu = self.last_interaction_in_nu * units.Hz
self.readin = True
def from_hdf5(self, buffer_or_fname):
"""Fill minimal_model from an HDF5 file, which was created by using
store_data_for_minimal_model.
Parameters
----------
buffer_or_fname : str, file stream
name of file object containing the essential Tardis run information
"""
if isinstance(buffer_or_fname, basestring):
hdf_store = pd.HDFStore(buffer_or_fname)
elif isinstance(buffer_or_fname, pd.HDFStore):
hdf_store = buffer_or_fname
else:
raise IOError('Please specify either a filename or an HDFStore')
self.time_of_simulation = \
hdf_store["/configuration"].time_of_simulation
self.lines = hdf_store["/atom_data/lines"].reset_index().set_index(
'line_id')
self.R_phot = hdf_store["/configuration"].R_photosphere
self.t_inner = hdf_store["/configuration"].t_inner
if self.mode == "virtual":
self.last_interaction_type = \
hdf_store["/runner/virt_packet_last_interaction_type"]
self.last_line_interaction_in_id = \
hdf_store["/runner/virt_packet_last_line_interaction_in_id"]
self.last_line_interaction_out_id = \
hdf_store["/runner/virt_packet_last_line_interaction_out_id"]
self.last_interaction_in_nu = \
hdf_store["/runner/virt_packet_last_interaction_in_nu"]
self.packet_nus = \
hdf_store["/runner/virt_packet_nus"]
self.packet_energies = \
hdf_store["/runner/virt_packet_energies"]
self.spectrum_wave = \
hdf_store["/spectrum/luminosity_density_virtual"]["wave"]
self.spectrum_luminosity = \
hdf_store["/spectrum/luminosity_density_virtual"]["flux"]
elif self.mode == "real":
esc_mask = hdf_store["/runner/output_energy"] >= 0
self.last_interaction_type = \
hdf_store["/runner/last_interaction_type"][esc_mask]
self.last_line_interaction_in_id = \
hdf_store["/runner/last_line_interaction_in_id"][esc_mask]
self.last_line_interaction_out_id = \
hdf_store["/runner/last_line_interaction_out_id"][esc_mask]
self.last_interaction_in_nu = \
hdf_store["/runner/last_interaction_in_nu"][esc_mask]
self.packet_nus = \
hdf_store["/runner/output_nu"][esc_mask]
self.packet_energies = \
hdf_store["/runner/output_energy"][esc_mask]
self.spectrum_wave = \
hdf_store["/spectrum/luminosity_density"]["wave"]
self.spectrum_luminosity = \
hdf_store["/spectrum/luminosity_density"]["flux"]
else:
raise ValueError
self.last_interaction_type = self.last_interaction_type.values
self.last_line_interaction_in_id = \
self.last_line_interaction_in_id.values
self.last_line_interaction_out_id = \
self.last_line_interaction_out_id.values
self.last_interaction_in_nu = \
self.last_interaction_in_nu.values * units.Hz
self.packet_nus = self.packet_nus.values * units.Hz
self.packet_energies = self.packet_energies.values * units.erg
self.spectrum_wave = self.spectrum_wave.values
self.spectrum_luminosity = self.spectrum_luminosity.values
self.readin = True
|
[
2,
532,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
7874,
13,
198,
2,
198,
2,
220,
9220,
6530,
1058,
256,
446,
271,
62,
1084,
4402,
62,
19849,
13,
9078,
198,
2,
198,
2,
220,
32039,
1058,
198,
2,
198,
2,
220,
21582,
7536,
1058,
1248,
12,
2999,
12,
5304,
198,
2,
198,
2,
220,
4586,
40499,
1058,
30030,
7816,
2447,
1584,
1315,
25,
2931,
25,
2075,
327,
6465,
198,
2,
198,
2,
220,
15622,
2750,
1058,
198,
2,
198,
2,
4808,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13557,
13,
198,
37811,
1212,
8265,
3769,
281,
7071,
2134,
543,
6622,
262,
6393,
198,
17018,
286,
257,
309,
446,
271,
1057,
284,
466,
477,
262,
23584,
8861,
329,
543,
262,
198,
83,
446,
9057,
8767,
16099,
3769,
4899,
13,
797,
3157,
319,
428,
7071,
2746,
198,
48205,
318,
257,
8584,
4610,
1566,
262,
2746,
6143,
12971,
286,
309,
446,
271,
198,
10134,
4251,
257,
15345,
1181,
13,
198,
37811,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
6468,
28338,
13,
41667,
355,
4991,
198,
11748,
28686,
198,
6738,
256,
446,
271,
13,
19849,
1330,
5325,
498,
16,
35,
17633,
628,
198,
4299,
3650,
62,
7890,
62,
1640,
62,
1084,
4402,
62,
19849,
7,
14323,
1741,
11,
11876,
62,
273,
62,
69,
3672,
2625,
1084,
4402,
62,
19849,
13,
71,
7568,
20,
1600,
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,
3108,
2625,
1600,
4235,
2625,
32844,
1,
2599,
198,
220,
220,
220,
37227,
26437,
31904,
8027,
284,
10285,
477,
1321,
543,
389,
2672,
284,
198,
220,
220,
220,
1620,
7667,
6689,
34558,
351,
262,
256,
446,
9057,
8767,
4899,
284,
281,
5572,
37,
20,
198,
220,
220,
220,
2393,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
285,
25404,
1058,
256,
446,
271,
13,
19849,
13,
15546,
498,
16,
35,
17633,
198,
220,
220,
220,
220,
220,
220,
220,
2723,
256,
446,
271,
2746,
2134,
198,
220,
220,
220,
11876,
62,
273,
62,
69,
3672,
1058,
965,
393,
2393,
4269,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
286,
262,
289,
7568,
20,
2393,
393,
2393,
21360,
357,
12286,
705,
1084,
4402,
62,
19849,
13,
71,
7568,
20,
11537,
198,
220,
220,
220,
3108,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
4067,
286,
262,
3128,
1626,
262,
5572,
37,
20,
2393,
357,
12286,
705,
3256,
1312,
13,
68,
13,
663,
6808,
8,
198,
220,
220,
220,
4235,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32844,
1,
357,
12286,
828,
366,
5305,
1,
393,
366,
16885,
8172,
3650,
262,
6608,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
7166,
393,
262,
1103,
19638,
3265,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
21928,
62,
4443,
6582,
62,
5305,
7,
2539,
11,
3108,
11,
289,
7568,
62,
8095,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
21928,
262,
1103,
19638,
10958,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
6769,
796,
18640,
13,
16737,
13,
4443,
6582,
13,
10247,
26623,
13,
8367,
198,
220,
220,
220,
220,
220,
220,
220,
28462,
796,
18640,
13,
16737,
13,
4443,
6582,
13,
75,
7230,
16579,
62,
43337,
62,
50033,
13,
8367,
628,
220,
220,
220,
220,
220,
220,
220,
29763,
16579,
62,
43337,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
67,
13,
6601,
19778,
13,
6738,
62,
11600,
7,
11600,
7,
19204,
28,
19204,
11,
28462,
28,
69,
22564,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29763,
16579,
62,
43337,
13,
1462,
62,
71,
7568,
7,
71,
7568,
62,
8095,
11,
28686,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
4008,
628,
220,
220,
220,
825,
4808,
21928,
62,
4443,
6582,
62,
32844,
7,
2539,
11,
3108,
11,
289,
7568,
62,
8095,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
21928,
262,
7166,
19638,
10958,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
6769,
796,
18640,
13,
16737,
13,
4443,
6582,
62,
32844,
13,
10247,
26623,
13,
8367,
198,
220,
220,
220,
220,
220,
220,
220,
28462,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
4443,
6582,
62,
32844,
13,
75,
7230,
16579,
62,
43337,
62,
50033,
13,
8367,
628,
220,
220,
220,
220,
220,
220,
220,
29763,
16579,
62,
43337,
62,
32844,
796,
279,
67,
13,
6601,
19778,
13,
6738,
62,
11600,
7,
11600,
7,
19204,
28,
19204,
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,
28462,
28,
69,
22564,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29763,
16579,
62,
43337,
62,
32844,
13,
1462,
62,
71,
7568,
7,
71,
7568,
62,
8095,
11,
28686,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
4008,
628,
220,
220,
220,
825,
4808,
21928,
62,
11250,
3924,
62,
11600,
7,
2539,
11,
3108,
11,
289,
7568,
62,
8095,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
21928,
617,
1321,
422,
262,
4096,
8398,
286,
262,
1057,
13,
1114,
198,
220,
220,
220,
220,
220,
220,
220,
783,
691,
262,
640,
286,
262,
18640,
318,
8574,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8398,
62,
11600,
796,
8633,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
62,
1659,
62,
14323,
1741,
28,
14323,
1741,
13,
16737,
13,
2435,
62,
1659,
62,
14323,
1741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
371,
62,
38611,
22829,
16193,
14323,
1741,
13,
19849,
13,
2435,
62,
20676,
18442,
1635,
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,
18640,
13,
19849,
13557,
626,
11683,
58,
15,
35944,
1462,
7203,
11215,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
5083,
28,
14323,
1741,
13,
19849,
13,
83,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
8398,
62,
11600,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
6978,
11,
705,
11250,
3924,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
279,
67,
13,
27996,
7,
11250,
3924,
62,
11600,
737,
1462,
62,
71,
7568,
7,
71,
7568,
62,
8095,
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,
8398,
62,
11600,
62,
6978,
8,
628,
220,
220,
220,
1744,
62,
76,
4147,
796,
14631,
5305,
1600,
366,
32844,
1600,
366,
16885,
8973,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
7,
14171,
287,
1744,
62,
76,
4147,
8,
198,
220,
220,
220,
2845,
2195,
861,
295,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39213,
506,
4235,
532,
1744,
62,
76,
4147,
389,
46110,
82,
92,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33172,
27071,
22179,
7,
79,
4733,
62,
76,
4147,
22305,
628,
220,
220,
220,
611,
4235,
6624,
366,
32844,
1,
290,
18640,
13,
16737,
13,
48940,
62,
6404,
2667,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
37725,
19638,
18931,
318,
15293,
572,
532,
2314,
3650,
262,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
48310,
286,
262,
7166,
19638,
3265,
4943,
628,
220,
220,
220,
2291,
62,
6738,
62,
16737,
62,
796,
23884,
198,
220,
220,
220,
2291,
62,
6738,
62,
4443,
6582,
62,
796,
23884,
198,
220,
220,
220,
611,
4235,
6624,
366,
32844,
1,
393,
4235,
6624,
366,
16885,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
6738,
62,
16737,
44807,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
4906,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48940,
62,
8002,
316,
62,
77,
385,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48940,
62,
8002,
316,
62,
877,
70,
444,
10354,
6045,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
6738,
62,
4443,
6582,
44807,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
75,
7230,
16579,
62,
43337,
62,
32844,
10354,
4808,
21928,
62,
4443,
6582,
62,
32844,
30072,
198,
220,
220,
220,
611,
4235,
6624,
366,
5305,
1,
393,
4235,
6624,
366,
16885,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
6738,
62,
16737,
44807,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
12957,
62,
3849,
2673,
62,
4906,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22915,
62,
28803,
10354,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22915,
62,
22554,
10354,
6045,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
6738,
62,
4443,
6582,
44807,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
75,
7230,
16579,
62,
43337,
10354,
4808,
21928,
62,
4443,
6582,
62,
5305,
30072,
628,
220,
220,
220,
2291,
62,
6738,
62,
37696,
62,
7890,
62,
796,
1391,
6,
6615,
10354,
6045,
92,
198,
220,
220,
220,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
796,
1391,
6,
16737,
10354,
2291,
62,
6738,
62,
16737,
62,
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,
37696,
62,
7890,
10354,
4808,
21928,
62,
37696,
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,
220,
220,
220,
220,
220,
705,
4443,
6582,
10354,
2291,
62,
6738,
62,
4443,
6582,
62,
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,
11250,
3924,
62,
11600,
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,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
21928,
62,
11250,
3924,
62,
11600,
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,
1782,
628,
220,
220,
220,
611,
318,
39098,
7,
22252,
62,
273,
62,
69,
3672,
11,
1615,
395,
1806,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
796,
279,
67,
13,
39,
8068,
22658,
7,
22252,
62,
273,
62,
69,
3672,
8,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
22252,
62,
273,
62,
69,
3672,
11,
279,
67,
13,
39,
8068,
22658,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
796,
11876,
62,
273,
62,
69,
3672,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
24418,
12331,
10786,
5492,
11986,
2035,
257,
29472,
393,
281,
5572,
37,
22658,
11537,
198,
220,
220,
220,
3601,
10786,
33874,
284,
3108,
4064,
82,
6,
4064,
3108,
8,
628,
220,
220,
220,
329,
1994,
287,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
60,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
21928,
62,
19849,
62,
26745,
7,
1136,
35226,
7,
14323,
1741,
11,
1994,
828,
1994,
11,
3108,
11,
289,
7568,
62,
8095,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
869,
540,
7,
17256,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
16151,
2539,
11,
3108,
11,
289,
7568,
62,
8095,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
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,
329,
850,
2539,
287,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
7266,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
7131,
7266,
2539,
60,
318,
6045,
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,
4808,
21928,
62,
19849,
62,
26745,
7,
1136,
35226,
7,
1136,
35226,
7,
14323,
1741,
11,
1994,
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,
850,
2539,
828,
850,
2539,
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,
28686,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
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,
289,
7568,
62,
8095,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
869,
540,
7,
17256,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
7131,
7266,
2539,
60,
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,
2291,
62,
6738,
62,
19849,
62,
259,
62,
71,
7568,
20,
58,
2539,
7131,
7266,
2539,
16151,
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,
850,
2539,
11,
28686,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
828,
289,
7568,
62,
8095,
8,
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,
220,
3601,
10786,
6090,
407,
3613,
4064,
82,
6,
4064,
965,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
11,
850,
2539,
22305,
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,
10786,
2025,
4049,
5091,
981,
30231,
4064,
82,
284,
5572,
37,
2637,
4064,
965,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
1994,
22305,
628,
220,
220,
220,
289,
7568,
62,
8095,
13,
25925,
3419,
198,
220,
220,
220,
289,
7568,
62,
8095,
13,
19836,
3419,
628,
198,
4871,
10926,
62,
19849,
7,
15252,
2599,
198,
220,
220,
220,
37227,
39317,
2134,
973,
287,
867,
256,
446,
9057,
8767,
4899,
13,
632,
6622,
262,
198,
220,
220,
220,
6393,
6689,
34558,
1321,
329,
2035,
262,
1103,
393,
262,
7166,
19638,
198,
220,
220,
220,
3265,
286,
257,
1057,
13,
628,
220,
220,
220,
770,
7071,
2134,
743,
307,
5901,
422,
281,
4683,
309,
446,
271,
44503,
16,
67,
19849,
198,
220,
220,
220,
2134,
357,
1640,
1672,
1141,
262,
14333,
20966,
7535,
779,
286,
309,
446,
271,
828,
393,
198,
220,
220,
220,
5901,
422,
281,
5572,
37,
20,
2393,
357,
27568,
416,
3650,
62,
7890,
62,
1640,
62,
1084,
4402,
62,
19849,
737,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4235,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5305,
1,
357,
12286,
8,
393,
366,
32844,
8172,
15738,
543,
19638,
3265,
318,
198,
220,
220,
220,
220,
220,
220,
220,
8574,
287,
262,
7071,
2134,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
422,
62,
3849,
5275,
7,
944,
11,
18640,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
20797,
262,
10926,
62,
19849,
422,
281,
4683,
18640,
2134,
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,
18640,
1058,
41798,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
309,
446,
271,
18640,
2134,
4769,
262,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2435,
62,
1659,
62,
14323,
1741,
796,
18640,
13,
16737,
13,
2435,
62,
1659,
62,
14323,
1741,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6615,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
489,
11797,
13,
47116,
62,
7890,
13,
6615,
13,
42503,
62,
9630,
22446,
2617,
62,
9630,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1370,
62,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
49,
62,
38611,
796,
357,
14323,
1741,
13,
19849,
13557,
626,
11683,
58,
15,
60,
1635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
19849,
13,
2435,
62,
20676,
18442,
737,
1462,
7203,
11215,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
62,
5083,
796,
18640,
13,
19849,
13,
83,
62,
5083,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
14171,
6624,
366,
32844,
1298,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
77,
385,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
77,
385,
1635,
4991,
13,
7399,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
877,
70,
444,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
48940,
62,
8002,
316,
62,
877,
70,
444,
1635,
4991,
13,
6422,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
19204,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
4443,
6582,
62,
32844,
13,
10247,
26623,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
4443,
6582,
62,
32844,
13,
75,
7230,
16579,
62,
43337,
62,
50033,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2116,
13,
14171,
6624,
366,
5305,
1298,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3671,
62,
27932,
796,
18640,
13,
16737,
13,
22915,
62,
22554,
18189,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
12957,
62,
3849,
2673,
62,
4906,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
77,
385,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
22915,
62,
28803,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
877,
70,
444,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
22915,
62,
22554,
58,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
19204,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
4443,
6582,
13,
10247,
26623,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18640,
13,
16737,
13,
4443,
6582,
13,
75,
7230,
16579,
62,
43337,
62,
50033,
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,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
1635,
4991,
13,
7399,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
961,
259,
796,
6407,
628,
220,
220,
220,
825,
422,
62,
71,
7568,
20,
7,
944,
11,
11876,
62,
273,
62,
69,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
33762,
10926,
62,
19849,
422,
281,
5572,
37,
20,
2393,
11,
543,
373,
2727,
416,
1262,
198,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
7890,
62,
1640,
62,
1084,
4402,
62,
19849,
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,
11876,
62,
273,
62,
69,
3672,
1058,
965,
11,
2393,
4269,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
286,
2393,
2134,
7268,
262,
6393,
309,
446,
271,
1057,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
22252,
62,
273,
62,
69,
3672,
11,
1615,
395,
1806,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
796,
279,
67,
13,
39,
8068,
22658,
7,
22252,
62,
273,
62,
69,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
318,
39098,
7,
22252,
62,
273,
62,
69,
3672,
11,
279,
67,
13,
39,
8068,
22658,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
796,
11876,
62,
273,
62,
69,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
24418,
12331,
10786,
5492,
11986,
2035,
257,
29472,
393,
281,
5572,
37,
22658,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2435,
62,
1659,
62,
14323,
1741,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
11250,
3924,
1,
4083,
2435,
62,
1659,
62,
14323,
1741,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6615,
796,
289,
7568,
62,
8095,
14692,
14,
37696,
62,
7890,
14,
6615,
1,
4083,
42503,
62,
9630,
22446,
2617,
62,
9630,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1370,
62,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
49,
62,
38611,
796,
289,
7568,
62,
8095,
14692,
14,
11250,
3924,
1,
4083,
49,
62,
38611,
22829,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
83,
62,
5083,
796,
289,
7568,
62,
8095,
14692,
14,
11250,
3924,
1,
4083,
83,
62,
5083,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
14171,
6624,
366,
32844,
1298,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
4906,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
77,
385,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
77,
385,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
877,
70,
444,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
48940,
62,
8002,
316,
62,
877,
70,
444,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
19204,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
4443,
6582,
14,
75,
7230,
16579,
62,
43337,
62,
32844,
1,
7131,
1,
19204,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
4443,
6582,
14,
75,
7230,
16579,
62,
43337,
62,
32844,
1,
7131,
1,
69,
22564,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2116,
13,
14171,
6624,
366,
5305,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3671,
62,
27932,
796,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
22915,
62,
22554,
8973,
18189,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
12957,
62,
3849,
2673,
62,
4906,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
77,
385,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
22915,
62,
28803,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
877,
70,
444,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
16737,
14,
22915,
62,
22554,
1,
7131,
3798,
62,
27932,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
19204,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
4443,
6582,
14,
75,
7230,
16579,
62,
43337,
1,
7131,
1,
19204,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
7568,
62,
8095,
14692,
14,
4443,
6582,
14,
75,
7230,
16579,
62,
43337,
1,
7131,
1,
69,
22564,
8973,
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,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
796,
2116,
13,
12957,
62,
3849,
2673,
62,
4906,
13,
27160,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
259,
62,
312,
13,
27160,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
1370,
62,
3849,
2673,
62,
448,
62,
312,
13,
27160,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12957,
62,
3849,
2673,
62,
259,
62,
28803,
13,
27160,
1635,
4991,
13,
7399,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
77,
385,
796,
2116,
13,
8002,
316,
62,
77,
385,
13,
27160,
1635,
4991,
13,
7399,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8002,
316,
62,
877,
70,
444,
796,
2116,
13,
8002,
316,
62,
877,
70,
444,
13,
27160,
1635,
4991,
13,
6422,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
19204,
796,
2116,
13,
4443,
6582,
62,
19204,
13,
27160,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
796,
2116,
13,
4443,
6582,
62,
75,
7230,
16579,
13,
27160,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
961,
259,
796,
6407,
198
] | 2.116491 | 6,258 |
import copy
import glob
import mss
import os
import pygame
import random
import sys
from PIL import Image, ImageOps
from threading import Timer
from core.device_manager import HandJointsFrame
from core.kinect_manager import KinectManager
CRACK_PATHS = glob.glob(os.path.join(resource_path(), "assets", "cracks", "*.png"))
PUNCH_PATH = resource_path(os.path.join("assets", "punch.png"))
CRACK_SOUNDS = glob.glob(os.path.join(resource_path(), "assets", "audio", "*.wav"))
|
[
11748,
4866,
198,
11748,
15095,
198,
11748,
285,
824,
198,
11748,
28686,
198,
11748,
12972,
6057,
198,
11748,
4738,
198,
11748,
25064,
198,
6738,
350,
4146,
1330,
7412,
11,
7412,
41472,
198,
6738,
4704,
278,
1330,
5045,
263,
198,
198,
6738,
4755,
13,
25202,
62,
37153,
1330,
7157,
41,
1563,
82,
19778,
198,
6738,
4755,
13,
5116,
478,
62,
37153,
1330,
48879,
13511,
628,
198,
198,
9419,
8120,
62,
47,
1404,
7998,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
31092,
62,
6978,
22784,
366,
19668,
1600,
366,
6098,
4595,
1600,
366,
24620,
11134,
48774,
198,
47,
47461,
62,
34219,
796,
8271,
62,
6978,
7,
418,
13,
6978,
13,
22179,
7203,
19668,
1600,
366,
79,
3316,
13,
11134,
48774,
198,
9419,
8120,
62,
50,
19385,
5258,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
31092,
62,
6978,
22784,
366,
19668,
1600,
366,
24051,
1600,
366,
24620,
45137,
48774,
628,
198
] | 3.012658 | 158 |
import marso
import pytest
|
[
11748,
1667,
568,
198,
198,
11748,
12972,
9288,
628
] | 3.222222 | 9 |
from django.shortcuts import render
# Create your views here.
from django.shortcuts import render, redirect
from django.contrib.auth.decorators import login_required
from django.contrib import messages
from .forms import UserRegisterForm,UserUpdateForm,ProfileUpdateForm
# Create your views here.
@login_required
|
[
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
198,
198,
2,
13610,
534,
5009,
994,
13,
198,
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
11,
18941,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
12501,
273,
2024,
1330,
17594,
62,
35827,
198,
6738,
42625,
14208,
13,
3642,
822,
1330,
6218,
198,
198,
6738,
764,
23914,
1330,
11787,
38804,
8479,
11,
12982,
10260,
8479,
11,
37046,
10260,
8479,
198,
198,
2,
13610,
534,
5009,
994,
13,
628,
198,
198,
31,
38235,
62,
35827,
628
] | 3.72093 | 86 |
from rest_framework import serializers
from uploader.models import UploadFileModel
|
[
6738,
1334,
62,
30604,
1330,
11389,
11341,
198,
6738,
9516,
263,
13,
27530,
1330,
36803,
8979,
17633,
198
] | 4.611111 | 18 |
import sys
import json
import mock
import requests
import requests_mock
import unittest2 as unittest
from drf_client.connection import Api
from drf_client.exceptions import HttpClientError, HttpServerError
|
[
11748,
25064,
198,
11748,
33918,
198,
11748,
15290,
198,
11748,
7007,
198,
11748,
7007,
62,
76,
735,
198,
11748,
555,
715,
395,
17,
355,
555,
715,
395,
198,
198,
6738,
1553,
69,
62,
16366,
13,
38659,
1330,
5949,
72,
198,
6738,
1553,
69,
62,
16366,
13,
1069,
11755,
1330,
367,
29281,
11792,
12331,
11,
367,
29281,
10697,
12331,
628,
198
] | 3.483333 | 60 |
import logging
import colorlog
|
[
11748,
18931,
201,
198,
11748,
3124,
6404,
201
] | 4 | 8 |
import base64
import hashlib
import datetime
|
[
11748,
2779,
2414,
198,
11748,
12234,
8019,
198,
11748,
4818,
8079,
198
] | 3.75 | 12 |
from datetime import datetime, date
import json
import urllib
from bottle import request, response
import bauble.db as db
from bauble.model import Model, SystemModel
class ArgsPlugin(object):
"""
Plugin to add an args property to every request that contains the url_args for the route.
"""
name = 'args'
api = 2
class OptionsPlugin(object):
"""
Plugin to add an OPTIONS http method request handler for ever route defined
in the app. This plugin should be installed after all the routes have been
setup.
"""
name = 'options'
api = 2
def apply(self, callback, route):
"""
This method doesn't do anything but it's required to be implemented by the
Bottle plugin system
"""
return callback
class CORSPlugin(object):
"""
Bottle.py plugin to add CORS headers to each request.
"""
name = 'cors'
api = 2
|
[
6738,
4818,
8079,
1330,
4818,
8079,
11,
3128,
198,
11748,
33918,
198,
11748,
2956,
297,
571,
198,
198,
6738,
9294,
1330,
2581,
11,
2882,
198,
198,
11748,
26605,
26664,
13,
9945,
355,
20613,
198,
6738,
26605,
26664,
13,
19849,
1330,
9104,
11,
4482,
17633,
198,
198,
4871,
943,
14542,
37233,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
42636,
284,
751,
281,
26498,
3119,
284,
790,
2581,
326,
4909,
262,
19016,
62,
22046,
329,
262,
6339,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1438,
796,
705,
22046,
6,
198,
220,
220,
220,
40391,
796,
362,
628,
198,
4871,
18634,
37233,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
42636,
284,
751,
281,
39852,
11053,
2638,
2446,
2581,
21360,
329,
1683,
6339,
5447,
198,
220,
220,
220,
287,
262,
598,
13,
770,
13877,
815,
307,
6589,
706,
477,
262,
11926,
423,
587,
198,
220,
220,
220,
9058,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1438,
796,
705,
25811,
6,
198,
220,
220,
220,
40391,
796,
362,
628,
198,
220,
220,
220,
825,
4174,
7,
944,
11,
23838,
11,
6339,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
1595,
470,
466,
1997,
475,
340,
338,
2672,
284,
307,
9177,
416,
262,
198,
220,
220,
220,
220,
220,
220,
220,
33608,
13877,
1080,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
23838,
628,
198,
198,
4871,
327,
20673,
37233,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
33608,
13,
9078,
13877,
284,
751,
327,
20673,
24697,
284,
1123,
2581,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1438,
796,
705,
66,
669,
6,
198,
220,
220,
220,
40391,
796,
362,
628,
628
] | 2.967846 | 311 |
# encoding: latin1
"""spatial lag of a variable
"""
__author__ = "Juan C. Duque, Alejandro Betancourt"
__credits__ = "Copyright (c) 2010-11 Juan C. Duque"
__license__ = "New BSD License"
__version__ = "1.0.0"
__maintainer__ = "RiSE Group"
__email__ = "[email protected]"
__all__ = ['spatialLag']
import numpy
def spatialLag(data,w):
"""
This method recives a dictionary of variables an
return a copy of the dictionary with variables
spatially lagged.
:param data: data dictionary to be lagged
:type data: dictionary
:rtype: dictionary (Y dictionary with the lag of vars)
"""
data = [data[x] for x in data]
data = numpy.matrix(data)
data = data.transpose()
w = numpy.matrix(w)
data = data*w
data = data.transpose()
y = {}
for nd, d in enumerate(data):
y[nd] = d.tolist()[0]
return y
|
[
2,
21004,
25,
3042,
259,
16,
198,
37811,
2777,
34961,
19470,
286,
257,
7885,
198,
37811,
198,
834,
9800,
834,
796,
366,
41,
7258,
327,
13,
10343,
4188,
11,
9300,
47983,
5147,
1192,
15666,
1,
198,
834,
66,
20696,
834,
796,
366,
15269,
357,
66,
8,
3050,
12,
1157,
16852,
327,
13,
10343,
4188,
1,
198,
834,
43085,
834,
796,
366,
3791,
347,
10305,
13789,
1,
198,
834,
9641,
834,
796,
366,
16,
13,
15,
13,
15,
1,
198,
834,
76,
2913,
10613,
834,
796,
366,
49,
72,
5188,
4912,
1,
198,
834,
12888,
834,
796,
366,
32057,
78,
31,
17163,
12,
8094,
13,
2398,
1,
198,
834,
439,
834,
796,
37250,
2777,
34961,
43,
363,
20520,
198,
198,
11748,
299,
32152,
198,
198,
4299,
21739,
43,
363,
7,
7890,
11,
86,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
2446,
664,
1083,
257,
22155,
286,
9633,
281,
198,
220,
220,
220,
1441,
257,
4866,
286,
262,
22155,
351,
9633,
198,
220,
220,
220,
15246,
1927,
300,
14655,
13,
628,
220,
220,
220,
1058,
17143,
1366,
25,
1366,
22155,
284,
307,
300,
14655,
198,
220,
220,
220,
1058,
4906,
1366,
25,
22155,
198,
220,
220,
220,
1058,
81,
4906,
25,
22155,
357,
56,
22155,
351,
262,
19470,
286,
410,
945,
8,
198,
220,
220,
220,
37227,
220,
220,
198,
220,
220,
220,
1366,
796,
685,
7890,
58,
87,
60,
329,
2124,
287,
1366,
60,
198,
220,
220,
220,
1366,
796,
299,
32152,
13,
6759,
8609,
7,
7890,
8,
198,
220,
220,
220,
1366,
796,
1366,
13,
7645,
3455,
3419,
198,
220,
220,
220,
266,
796,
299,
32152,
13,
6759,
8609,
7,
86,
8,
198,
220,
220,
220,
1366,
796,
1366,
9,
86,
198,
220,
220,
220,
1366,
796,
1366,
13,
7645,
3455,
3419,
198,
220,
220,
220,
331,
796,
23884,
198,
220,
220,
220,
329,
299,
67,
11,
288,
287,
27056,
378,
7,
7890,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
331,
58,
358,
60,
796,
288,
13,
83,
349,
396,
3419,
58,
15,
60,
198,
220,
220,
220,
1441,
331,
628
] | 2.507205 | 347 |
import tkinter as tk
from tkinter import ttk
from matplotlib.pyplot import close
from matplotlib.figure import Figure
from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg,
NavigationToolbar2Tk)
from matplotlib.mathtext import math_to_image
from io import BytesIO
from PIL import ImageTk, Image
from sympy import latex
from math import pi, cos, sin
from sgraph import *
from braid import *
from col_perm import *
from pres_mat import *
from visualization import *
from casson_gordon import *
from typing import List, Tuple, Callable, Dict
from math import log10, floor
font_style = "Calibri"
font_size = 25
# Function for rounding eigenvalues
# Class for main window
# Compute invariants with defaults
# Processing Link Info style inputs
# Processing comma separated inputs
# Processing space separated inputs
# Command for computing the cycle decomposition and generating the braid
# Command for computing the cycle decomposition and generating the braid
# Print latex
# Save the seifert matrices to a file
# Command for computing and displaying invariants
# Command to view the braid
# Command to view the C-Complex
# Class for invariants
# Renders latex as a label and places it on the grid
# Class for strand inputs
# Make a braid and return error messages
# Class for color inputs
# Make a colored braid and return error messages
# Command for getting the coloured braid
# Makes the graph for the colored braid derived from the color inputs
# Class for signature inputs
# Get the signature input and return error messages
# Class for Casson Gordon inputs
# Executing everything
if __name__ == "__main__":
root = tk.Tk()
root.title("Clasper")
# Get the screen dimension
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
# Find the center point
center_x = int(screen_width/2)
center_y = int(screen_height/2)
window_width = screen_width
window_height = screen_height
# Set the position of the window to the center of the screen
root.geometry(f'{window_width}x{window_height}+{center_x}+{0}')
root.state('zoomed')
clasper_canvas = tk.Canvas(root)
hbar = tk.Scrollbar(root, orient='horizontal',
command=clasper_canvas.xview)
scrollbar = tk.Scrollbar(root, orient='vertical',
command=clasper_canvas.yview)
hbar.pack(side="bottom", fill="both")
clasper_canvas.pack(side="left", fill="both", expand=True, padx=10, pady=10)
scrollbar.pack(side="right", fill="both")
clasper_canvas['yscrollcommand'] = scrollbar.set
clasper_canvas['xscrollcommand'] = hbar.set
clasper = Clasper(clasper_canvas)
clasper_canvas.create_window(0, 0,
height=2800,
width=3000,
window=clasper, anchor="nw", tags="frame")
clasper_canvas.bind("<Configure>", onCanvasConfigure)
clasper_canvas.configure(scrollregion=clasper_canvas.bbox("all"))
clasper_canvas.itemconfig('frame',
height=2800,
width=3000)
root.bind_all("<MouseWheel>", on_mousewheel)
root.bind_all("<Shift-MouseWheel>", on_shift_mousewheel)
root.bind('<Return>', clasper.compute_with_defaults)
try:
from ctypes import windll
windll.shcore.SetProcessDpiAwareness(1)
finally:
root.mainloop()
# Setting up the entry for strands
"""ttk.Label(
self, text='Number of Strands:',
font=(font_style, font_size)).grid(column=0, row=2, pady=10)
self.strand_str = tk.StringVar()
ttk.Entry(self, textvariable=self.strand_str,
font=(font_style, font_size)).grid(
column=1, row=2, padx=0, pady=10, sticky='W', columnspan=3)"""
# Set up entry for the colour list
"""ttk.Label(self, text='Colours (start from 0, BFD):',
font=(font_style, font_size)).grid(
column=0, row=5, pady=10)
self.colour_list = tk.StringVar()
ttk.Entry(self, textvariable=self.colour_list,
font=(font_style, font_size)).grid(
column=1, row=5, padx=0, pady=10, sticky='W', columnspan=3)"""
# Set up entry for orientations of colours
"""ttk.Label(self, text='Orientations (+1/-1, BFD):',
font=(font_style, font_size)).grid(
column=0, row=6, pady=10)
self.colour_signs = tk.StringVar()
ttk.Entry(self, textvariable=self.colour_signs,
font=(font_style, font_size)).grid(
column=1, row=6, padx=0, pady=10, sticky='W', columnspan=3)
"""
# Set up entry for complex tuple
"""ttk.Label(self, text='Signature input,'+
'space sep\n (1/3 means 2*pi/3, BFD):',
font=(font_style, font_size)).grid(
column=0, row=7, pady=10)
self.cplx_tuple = tk.StringVar()
ttk.Entry(self, textvariable=self.cplx_tuple,
font=(font_style, font_size)).grid(
column=1, row=7, padx=0, pady=10, sticky='W', columnspan=2)"""
|
[
11748,
256,
74,
3849,
355,
256,
74,
198,
6738,
256,
74,
3849,
1330,
256,
30488,
198,
6738,
2603,
29487,
8019,
13,
9078,
29487,
1330,
1969,
198,
6738,
2603,
29487,
8019,
13,
26875,
1330,
11291,
198,
6738,
2603,
29487,
8019,
13,
1891,
2412,
13,
1891,
437,
62,
30488,
9460,
1330,
357,
11337,
6090,
11017,
51,
74,
46384,
11,
220,
198,
30575,
7065,
25391,
5657,
17,
51,
74,
8,
198,
6738,
2603,
29487,
8019,
13,
11018,
5239,
1330,
10688,
62,
1462,
62,
9060,
198,
6738,
33245,
1330,
2750,
4879,
9399,
198,
6738,
350,
4146,
1330,
7412,
51,
74,
11,
7412,
198,
6738,
10558,
88,
1330,
47038,
198,
6738,
10688,
1330,
31028,
11,
8615,
11,
7813,
198,
6738,
264,
34960,
1330,
1635,
198,
6738,
275,
7086,
1330,
1635,
198,
6738,
951,
62,
16321,
1330,
1635,
198,
6738,
906,
62,
6759,
1330,
1635,
198,
6738,
32704,
1330,
1635,
198,
6738,
30606,
261,
62,
70,
9999,
1330,
1635,
198,
6738,
19720,
1330,
7343,
11,
309,
29291,
11,
4889,
540,
11,
360,
713,
198,
6738,
10688,
1330,
2604,
940,
11,
4314,
628,
198,
10331,
62,
7635,
796,
366,
9771,
571,
380,
1,
198,
10331,
62,
7857,
796,
1679,
628,
198,
2,
15553,
329,
38185,
304,
9324,
27160,
628,
198,
2,
5016,
329,
1388,
4324,
628,
220,
220,
220,
1303,
3082,
1133,
25275,
1187,
351,
26235,
628,
220,
220,
220,
1303,
28403,
7502,
14151,
3918,
17311,
628,
220,
220,
220,
1303,
28403,
39650,
11266,
17311,
628,
220,
220,
220,
1303,
28403,
2272,
11266,
17311,
628,
220,
220,
220,
1303,
9455,
329,
14492,
262,
6772,
26969,
9150,
290,
15453,
262,
275,
7086,
628,
220,
220,
220,
1303,
9455,
329,
14492,
262,
6772,
26969,
9150,
290,
15453,
262,
275,
7086,
628,
220,
220,
220,
1303,
12578,
47038,
220,
628,
220,
220,
220,
1303,
12793,
262,
384,
361,
861,
2603,
45977,
284,
257,
2393,
628,
220,
220,
220,
1303,
9455,
329,
14492,
290,
19407,
25275,
1187,
628,
220,
220,
220,
1303,
9455,
284,
1570,
262,
275,
7086,
628,
220,
220,
220,
1303,
9455,
284,
1570,
262,
327,
12,
5377,
11141,
628,
198,
2,
5016,
329,
25275,
1187,
628,
220,
220,
220,
1303,
371,
7338,
47038,
355,
257,
6167,
290,
4113,
340,
319,
262,
10706,
628,
198,
2,
5016,
329,
37923,
17311,
628,
220,
220,
220,
1303,
6889,
257,
275,
7086,
290,
1441,
4049,
6218,
628,
198,
2,
5016,
329,
3124,
17311,
628,
220,
220,
220,
1303,
6889,
257,
16396,
275,
7086,
290,
1441,
4049,
6218,
198,
220,
220,
220,
1303,
9455,
329,
1972,
262,
34746,
275,
7086,
628,
220,
220,
220,
1303,
27433,
262,
4823,
329,
262,
16396,
275,
7086,
10944,
422,
262,
3124,
17311,
628,
198,
2,
5016,
329,
9877,
17311,
628,
220,
220,
220,
1303,
3497,
262,
9877,
5128,
290,
1441,
4049,
6218,
628,
198,
2,
5016,
329,
14154,
261,
11646,
17311,
198,
198,
2,
8393,
15129,
2279,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
6808,
796,
256,
74,
13,
51,
74,
3419,
198,
220,
220,
220,
6808,
13,
7839,
7203,
2601,
32981,
4943,
628,
220,
220,
220,
1303,
3497,
262,
3159,
15793,
198,
220,
220,
220,
3159,
62,
10394,
796,
6808,
13,
5404,
6513,
62,
9612,
10394,
3419,
198,
220,
220,
220,
3159,
62,
17015,
796,
6808,
13,
5404,
6513,
62,
9612,
17015,
3419,
628,
220,
220,
220,
1303,
9938,
262,
3641,
966,
198,
220,
220,
220,
3641,
62,
87,
796,
493,
7,
9612,
62,
10394,
14,
17,
8,
198,
220,
220,
220,
3641,
62,
88,
796,
493,
7,
9612,
62,
17015,
14,
17,
8,
628,
220,
220,
220,
4324,
62,
10394,
796,
3159,
62,
10394,
198,
220,
220,
220,
4324,
62,
17015,
796,
3159,
62,
17015,
628,
220,
220,
220,
1303,
5345,
262,
2292,
286,
262,
4324,
284,
262,
3641,
286,
262,
3159,
198,
220,
220,
220,
6808,
13,
469,
15748,
7,
69,
6,
90,
17497,
62,
10394,
92,
87,
90,
17497,
62,
17015,
92,
10,
90,
16159,
62,
87,
92,
10,
90,
15,
92,
11537,
628,
220,
220,
220,
6808,
13,
5219,
10786,
89,
4207,
276,
11537,
628,
220,
220,
220,
537,
32981,
62,
5171,
11017,
796,
256,
74,
13,
6090,
11017,
7,
15763,
8,
198,
220,
220,
220,
289,
5657,
796,
256,
74,
13,
29261,
5657,
7,
15763,
11,
11367,
11639,
17899,
38342,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
28,
565,
32981,
62,
5171,
11017,
13,
87,
1177,
8,
198,
220,
220,
220,
10743,
5657,
796,
256,
74,
13,
29261,
5657,
7,
15763,
11,
11367,
11639,
1851,
605,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
28,
565,
32981,
62,
5171,
11017,
13,
88,
1177,
8,
628,
220,
220,
220,
289,
5657,
13,
8002,
7,
1589,
2625,
22487,
1600,
6070,
2625,
16885,
4943,
198,
220,
220,
220,
537,
32981,
62,
5171,
11017,
13,
8002,
7,
1589,
2625,
9464,
1600,
6070,
2625,
16885,
1600,
4292,
28,
17821,
11,
14841,
87,
28,
940,
11,
279,
4597,
28,
940,
8,
198,
220,
220,
220,
10743,
5657,
13,
8002,
7,
1589,
2625,
3506,
1600,
6070,
2625,
16885,
4943,
628,
220,
220,
220,
537,
32981,
62,
5171,
11017,
17816,
28349,
2487,
21812,
20520,
796,
10743,
5657,
13,
2617,
198,
220,
220,
220,
537,
32981,
62,
5171,
11017,
17816,
87,
48728,
21812,
20520,
796,
289,
5657,
13,
2617,
628,
220,
220,
220,
537,
32981,
796,
1012,
32981,
7,
565,
32981,
62,
5171,
11017,
8,
628,
220,
220,
220,
537,
32981,
62,
5171,
11017,
13,
17953,
62,
17497,
7,
15,
11,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6001,
28,
2078,
405,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9647,
28,
23924,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4324,
28,
565,
32981,
11,
18021,
2625,
47516,
1600,
15940,
2625,
14535,
4943,
628,
220,
220,
220,
537,
32981,
62,
5171,
11017,
13,
21653,
7203,
27,
16934,
495,
29,
1600,
319,
6090,
11017,
16934,
495,
8,
628,
220,
220,
220,
537,
32981,
62,
5171,
11017,
13,
11250,
495,
7,
48728,
36996,
28,
565,
32981,
62,
5171,
11017,
13,
65,
3524,
7203,
439,
48774,
198,
220,
220,
220,
537,
32981,
62,
5171,
11017,
13,
9186,
11250,
10786,
14535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6001,
28,
2078,
405,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9647,
28,
23924,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
6808,
13,
21653,
62,
439,
7203,
27,
39643,
45307,
29,
1600,
319,
62,
35888,
22001,
8,
198,
220,
220,
220,
6808,
13,
21653,
62,
439,
7203,
27,
33377,
12,
39643,
45307,
29,
1600,
319,
62,
30846,
62,
35888,
22001,
8,
628,
220,
220,
220,
6808,
13,
21653,
10786,
27,
13615,
29,
3256,
537,
32981,
13,
5589,
1133,
62,
4480,
62,
12286,
82,
8,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
422,
269,
19199,
1330,
2344,
297,
198,
220,
220,
220,
220,
220,
220,
220,
2344,
297,
13,
1477,
7295,
13,
7248,
18709,
35,
14415,
32,
1574,
1108,
7,
16,
8,
198,
220,
220,
220,
3443,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
13,
12417,
26268,
3419,
628,
198,
2,
25700,
510,
262,
5726,
329,
36593,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
926,
74,
13,
33986,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
2420,
11639,
15057,
286,
4285,
1746,
25,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
28665,
28,
15,
11,
5752,
28,
17,
11,
279,
4597,
28,
940,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2536,
392,
62,
2536,
796,
256,
74,
13,
10100,
19852,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
256,
30488,
13,
30150,
7,
944,
11,
2420,
45286,
28,
944,
13,
2536,
392,
62,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
16,
11,
5752,
28,
17,
11,
14841,
87,
28,
15,
11,
279,
4597,
28,
940,
11,
23408,
11639,
54,
3256,
5721,
12626,
28,
18,
8,
37811,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
5726,
329,
262,
9568,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
926,
74,
13,
33986,
7,
944,
11,
2420,
11639,
5216,
4662,
357,
9688,
422,
657,
11,
347,
26009,
2599,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
15,
11,
5752,
28,
20,
11,
279,
4597,
28,
940,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
49903,
62,
4868,
796,
256,
74,
13,
10100,
19852,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
256,
30488,
13,
30150,
7,
944,
11,
2420,
45286,
28,
944,
13,
49903,
62,
4868,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
16,
11,
5752,
28,
20,
11,
14841,
87,
28,
15,
11,
279,
4597,
28,
940,
11,
23408,
11639,
54,
3256,
5721,
12626,
28,
18,
8,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
5726,
329,
11367,
602,
286,
18915,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
926,
74,
13,
33986,
7,
944,
11,
2420,
11639,
46,
8289,
602,
11502,
16,
16327,
16,
11,
347,
26009,
2599,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
15,
11,
5752,
28,
21,
11,
279,
4597,
28,
940,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
49903,
62,
12683,
82,
796,
256,
74,
13,
10100,
19852,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
256,
30488,
13,
30150,
7,
944,
11,
2420,
45286,
28,
944,
13,
49903,
62,
12683,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
16,
11,
5752,
28,
21,
11,
14841,
87,
28,
15,
11,
279,
4597,
28,
940,
11,
23408,
11639,
54,
3256,
5721,
12626,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
5726,
329,
3716,
46545,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
926,
74,
13,
33986,
7,
944,
11,
2420,
11639,
11712,
1300,
5128,
4032,
10,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
13200,
41767,
59,
77,
357,
16,
14,
18,
1724,
362,
9,
14415,
14,
18,
11,
347,
26009,
2599,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
15,
11,
5752,
28,
22,
11,
279,
4597,
28,
940,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
66,
489,
87,
62,
83,
29291,
796,
256,
74,
13,
10100,
19852,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
256,
30488,
13,
30150,
7,
944,
11,
2420,
45286,
28,
944,
13,
66,
489,
87,
62,
83,
29291,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10369,
16193,
10331,
62,
7635,
11,
10369,
62,
7857,
29720,
25928,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
28,
16,
11,
5752,
28,
22,
11,
14841,
87,
28,
15,
11,
279,
4597,
28,
940,
11,
23408,
11639,
54,
3256,
5721,
12626,
28,
17,
8,
37811,
198
] | 2.501471 | 2,040 |
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
# from selenium.webdriver.chrome.options import Options
import re
import time
start = time.perf_counter()
PATH = "/home/ahmad/Templates/chrome-driver/chromedriver"
serv = Service(PATH)
'''
The three commented lines are needed if you want to run Selenium in a headless mode.
'''
# options = Options()
# options.headless = True
# webdriver.Chrome(service=serv, options=options)
driver = webdriver.Chrome(service=serv)
driver.get("https://10fastfingers.com/typing-test/english")
try:
wordsContainer = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "row1"))
)
WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.CLASS_NAME, "highlight"))
)
spans = re.findall(r"<span wordnr[^<]*", driver.page_source)
words = map(lambda span : span.split(">")[1], spans)
words = list(words)
inputField = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "inputfield"))
)
for word in words:
inputField.send_keys(word + " ")
timer = driver.find_element(By.ID, "timer")
timer = timer.text[2:]
timer = int(timer)
print(f"{(len(words) * 60) / (60 - timer)} WPM")
except Exception:
print("An error occured!")
driver.quit()
end = time.perf_counter()
print(f"The program took {end - start} seconds")
|
[
6738,
384,
11925,
1505,
1330,
3992,
26230,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
46659,
13,
15271,
1330,
4809,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
13,
9019,
1330,
5313,
32103,
21321,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11321,
13,
1525,
1330,
2750,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
1330,
2938,
62,
17561,
1756,
355,
13182,
198,
2,
422,
384,
11925,
1505,
13,
12384,
26230,
13,
46659,
13,
25811,
1330,
18634,
198,
11748,
302,
198,
11748,
640,
198,
198,
9688,
796,
640,
13,
525,
69,
62,
24588,
3419,
198,
198,
34219,
796,
12813,
11195,
14,
993,
9937,
14,
12966,
17041,
14,
46659,
12,
26230,
14,
28663,
276,
38291,
1,
198,
3168,
796,
4809,
7,
34219,
8,
198,
7061,
6,
198,
220,
220,
220,
383,
1115,
16476,
3951,
389,
2622,
611,
345,
765,
284,
1057,
15300,
47477,
287,
257,
1182,
1203,
4235,
13,
198,
7061,
6,
198,
2,
3689,
796,
18634,
3419,
198,
2,
3689,
13,
2256,
1203,
796,
6407,
198,
2,
3992,
26230,
13,
1925,
5998,
7,
15271,
28,
3168,
11,
3689,
28,
25811,
8,
198,
26230,
796,
3992,
26230,
13,
1925,
5998,
7,
15271,
28,
3168,
8,
198,
26230,
13,
1136,
7203,
5450,
1378,
940,
7217,
28825,
364,
13,
785,
14,
774,
13886,
12,
9288,
14,
39126,
4943,
198,
28311,
25,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2456,
29869,
796,
5313,
32103,
21321,
7,
26230,
11,
838,
737,
28446,
7,
198,
220,
220,
220,
220,
220,
220,
220,
13182,
13,
18302,
594,
62,
1659,
62,
30854,
62,
75,
10533,
19510,
3886,
13,
2389,
11,
366,
808,
16,
48774,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
5313,
32103,
21321,
7,
26230,
11,
838,
737,
28446,
7,
198,
220,
220,
220,
220,
220,
220,
220,
13182,
13,
18302,
594,
62,
1659,
62,
30854,
62,
75,
10533,
19510,
3886,
13,
31631,
62,
20608,
11,
366,
8929,
2971,
48774,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
198,
220,
220,
220,
32727,
796,
302,
13,
19796,
439,
7,
81,
1,
27,
12626,
1573,
48624,
58,
61,
27,
60,
9,
1600,
4639,
13,
7700,
62,
10459,
8,
198,
220,
220,
220,
2456,
796,
3975,
7,
50033,
11506,
1058,
11506,
13,
35312,
7,
5320,
4943,
58,
16,
4357,
32727,
8,
198,
220,
220,
220,
2456,
796,
1351,
7,
10879,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
5128,
15878,
796,
5313,
32103,
21321,
7,
26230,
11,
838,
737,
28446,
7,
198,
220,
220,
220,
220,
220,
220,
220,
13182,
13,
18302,
594,
62,
1659,
62,
30854,
62,
75,
10533,
19510,
3886,
13,
2389,
11,
366,
15414,
3245,
48774,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
329,
1573,
287,
2456,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
15878,
13,
21280,
62,
13083,
7,
4775,
1343,
366,
366,
8,
198,
220,
220,
220,
19781,
796,
4639,
13,
19796,
62,
30854,
7,
3886,
13,
2389,
11,
366,
45016,
4943,
198,
220,
220,
220,
19781,
796,
19781,
13,
5239,
58,
17,
47715,
198,
220,
220,
220,
19781,
796,
493,
7,
45016,
8,
198,
220,
220,
220,
3601,
7,
69,
1,
90,
7,
11925,
7,
10879,
8,
1635,
3126,
8,
1220,
357,
1899,
532,
19781,
38165,
370,
5868,
4943,
198,
198,
16341,
35528,
25,
198,
220,
220,
220,
3601,
7203,
2025,
4049,
1609,
1522,
2474,
8,
198,
198,
26230,
13,
47391,
3419,
198,
198,
437,
796,
640,
13,
525,
69,
62,
24588,
3419,
198,
4798,
7,
69,
1,
464,
1430,
1718,
1391,
437,
532,
923,
92,
4201,
4943
] | 2.693603 | 594 |
import bottle
import model
ID_IGRE_COOKIE_NAME = 'id_igre'
COOKIE_SECRET = 'my_very_special - secret key'
vislice = model.Vislice()
vislice.preberi_iz_datoteke()
@bottle.get('/')
@bottle.post('/nova_igra/')
@bottle.get('/igra/')
@bottle.post('/igra/')
bottle.run(reloader=True, debug=True)
|
[
11748,
9294,
198,
11748,
2746,
628,
198,
2389,
62,
3528,
2200,
62,
34,
15308,
10008,
62,
20608,
796,
705,
312,
62,
328,
260,
6,
198,
34,
15308,
10008,
62,
23683,
26087,
796,
705,
1820,
62,
548,
62,
20887,
532,
3200,
1994,
6,
198,
198,
85,
3044,
501,
796,
2746,
13,
53,
3044,
501,
3419,
198,
198,
85,
3044,
501,
13,
3866,
527,
72,
62,
528,
62,
19608,
1258,
365,
3419,
198,
198,
31,
10985,
293,
13,
1136,
10786,
14,
11537,
198,
198,
31,
10985,
293,
13,
7353,
10786,
14,
38438,
62,
328,
430,
14,
11537,
628,
198,
31,
10985,
293,
13,
1136,
10786,
14,
328,
430,
14,
11537,
628,
198,
31,
10985,
293,
13,
7353,
10786,
14,
328,
430,
14,
11537,
628,
198,
198,
10985,
293,
13,
5143,
7,
260,
29356,
28,
17821,
11,
14257,
28,
17821,
8,
198
] | 2.179856 | 139 |
import base64
import datetime
import re
import os
def parse_irc_msg(s):
"""Breaks a message from an IRC server into its tags, prefix, command, and arguments.
"""
if not s:
raise IRCBadMessage("Empty IRC line.")
tags = {}
if s.startswith("@"):
s = s[1:]
tags_str, s = s.split(" ", 1)
tags = deconstruct_irc_tags(tags_str)
prefix = ''
trailing = []
if s[0] == ':':
prefix, s = s[1:].split(' ', 1)
if s.find(' :') != -1:
s, trailing = s.split(' :', 1)
args = s.split()
args.append(trailing)
else:
args = s.split()
command = args.pop(0)
return tags, prefix, command, args
IRC_TAG_VALUE_ESCAPE_TRANSLATION = {";": "\\:", " ": "\\s", "\r": "\\r", "\n": "\\n", "\\": "\\\\"}
|
[
11748,
2779,
2414,
198,
11748,
4818,
8079,
198,
11748,
302,
198,
11748,
28686,
198,
198,
4299,
21136,
62,
1980,
62,
19662,
7,
82,
2599,
198,
220,
220,
220,
37227,
12679,
4730,
257,
3275,
422,
281,
30039,
4382,
656,
663,
15940,
11,
21231,
11,
3141,
11,
290,
7159,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
264,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
30039,
22069,
12837,
7203,
40613,
30039,
1627,
19570,
628,
220,
220,
220,
15940,
796,
23884,
198,
220,
220,
220,
611,
264,
13,
9688,
2032,
342,
7203,
31,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
264,
58,
16,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
15940,
62,
2536,
11,
264,
796,
264,
13,
35312,
7203,
33172,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
15940,
796,
37431,
7249,
62,
1980,
62,
31499,
7,
31499,
62,
2536,
8,
628,
220,
220,
220,
21231,
796,
10148,
198,
220,
220,
220,
25462,
796,
17635,
198,
220,
220,
220,
611,
264,
58,
15,
60,
6624,
705,
25,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
21231,
11,
264,
796,
264,
58,
16,
25,
4083,
35312,
10786,
46083,
352,
8,
198,
220,
220,
220,
611,
264,
13,
19796,
10786,
1058,
11537,
14512,
532,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
264,
11,
25462,
796,
264,
13,
35312,
10786,
1058,
3256,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
264,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
33295,
7,
9535,
4386,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
264,
13,
35312,
3419,
198,
220,
220,
220,
3141,
796,
26498,
13,
12924,
7,
15,
8,
198,
220,
220,
220,
1441,
15940,
11,
21231,
11,
3141,
11,
26498,
628,
198,
49060,
62,
42197,
62,
39488,
62,
1546,
33177,
36,
62,
5446,
1565,
8634,
6234,
796,
1391,
8172,
1298,
220,
366,
6852,
25,
1600,
366,
366,
25,
220,
366,
6852,
82,
1600,
37082,
81,
1298,
366,
6852,
81,
1600,
37082,
77,
1298,
220,
366,
6852,
77,
1600,
366,
6852,
1298,
220,
366,
13426,
20662
] | 2.168937 | 367 |
from stretchme import Structure
from simulation_data import data_partial
from os import remove, replace
import sys
import numpy as np
directory = '/Users/pawel/PycharmProjects/Rozciaganie/data/'
proteins = {'5wyr': 248, 'trmd-no-knot': 240, 'trmd': 240, 'tm1570': 193, 'fuzja': 432}
missing = {'5wyr': 14, 'trmd-no-knot': 14, 'trmd': 14, 'tm1570': 14, 'fuzja': 28}
means = {('trmd', 'exp'): [45, 52, 87],
('trmd', 'kexp'): [40, 48, 82],
('tm1570', 'exp'): [10, 20, 25, 30, 35, 40, 45, 52, 57, 62, 69],
('tm1570', 'kexp'): [10, 20, 25, 30, 35, 40, 45, 52, 57, 62, 69],
('fuzja', 'exp'): None,
('fuzja', 'kexp'): None}
statess = {'exp': 'unknotted', 'kexp': 'knotted', 'pexp': 'partially'}
# protein, model = sys.argv[1], sys.argv[2]
to_c = [('exp', 'trmd'), ('kexp', 'tm1570'), ('exp', 'tm1570'), ('kexp', 'fuzja'), ('exp', 'fuzja'), ('pexp', 'fuzja'),
('cc', 'trmd'), ('cd', 'trmd'), ('ce', 'trmd'), ('pa', 'trmd'), ('cb', 'trmd'), ('pc', 'trmd'), ('pd', 'trmd'),
('sa', 'trmd'), ('sb', 'trmd'), ('sc', 'trmd'), ('sd', 'trmd'), ('ca', 'trmd-no-knot'), ('cb', 'trmd-no-knot'),
('cc', 'trmd-no-knot'), ('pa', 'trmd-no-knot'), ('pb', 'trmd-no-knot'), ('pc', 'trmd-no-knot'),
('sa', 'trmd-no-knot'), ('sb', 'trmd-no-knot'), ('sc', 'trmd-no-knot'), ('ca', '5wyr'), ('cb', '5wyr'),
('cc', '5wyr'), ('pa', '5wyr'), ('pb', '5wyr'), ('pc', '5wyr'), ('sa', '5wyr'), ('sb', '5wyr'), ('sc', '5wyr')]
# for model, protein in [('exp', 'trmd'), ('kexp', 'tm1570'), ('exp', 'tm1570'), ('kexp', 'fuzja'), ('exp', 'fuzja'), ('pexp', 'fuzja')]:
protein = 'trmd'
for model in ['exp']:
print(model, protein)
residues = proteins[protein]
name_type = protein + '_' + model
data_list = data_partial[name_type]
run_whole_experiment(protein)
# for model in ['aa']:
# print(model)
# name_type = 'trmd' + '_' + model
# data_list = data_partial[name_type]
# run_whole('trmd', model)
# replace('latex.info', model + '_whole_latex.info')
# replace('data.info', model + '_whole_data.info')
|
[
6738,
7539,
1326,
1330,
32522,
198,
6738,
18640,
62,
7890,
1330,
1366,
62,
47172,
198,
6738,
28686,
1330,
4781,
11,
6330,
198,
11748,
25064,
198,
11748,
299,
32152,
355,
45941,
198,
198,
34945,
796,
31051,
14490,
14,
79,
707,
417,
14,
20519,
354,
1670,
16775,
82,
14,
49,
8590,
979,
7329,
494,
14,
7890,
14,
6,
628,
198,
198,
1676,
660,
1040,
796,
1391,
6,
20,
86,
2417,
10354,
32996,
11,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
10354,
14956,
11,
705,
2213,
9132,
10354,
14956,
11,
705,
17209,
1314,
2154,
10354,
29691,
11,
705,
69,
10277,
6592,
10354,
46393,
92,
198,
45688,
796,
1391,
6,
20,
86,
2417,
10354,
1478,
11,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
10354,
1478,
11,
705,
2213,
9132,
10354,
1478,
11,
705,
17209,
1314,
2154,
10354,
1478,
11,
705,
69,
10277,
6592,
10354,
2579,
92,
198,
1326,
504,
796,
1391,
10786,
2213,
9132,
3256,
705,
11201,
6,
2599,
685,
2231,
11,
6740,
11,
10083,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
2213,
9132,
3256,
705,
365,
42372,
6,
2599,
685,
1821,
11,
4764,
11,
9415,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
17209,
1314,
2154,
3256,
705,
11201,
6,
2599,
685,
940,
11,
1160,
11,
1679,
11,
1542,
11,
3439,
11,
2319,
11,
4153,
11,
6740,
11,
7632,
11,
8190,
11,
8644,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
17209,
1314,
2154,
3256,
705,
365,
42372,
6,
2599,
685,
940,
11,
1160,
11,
1679,
11,
1542,
11,
3439,
11,
2319,
11,
4153,
11,
6740,
11,
7632,
11,
8190,
11,
8644,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
69,
10277,
6592,
3256,
705,
11201,
6,
2599,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
69,
10277,
6592,
3256,
705,
365,
42372,
6,
2599,
6045,
92,
198,
198,
14269,
408,
796,
1391,
6,
11201,
10354,
705,
2954,
77,
8426,
3256,
705,
365,
42372,
10354,
705,
15418,
8426,
3256,
705,
24900,
79,
10354,
705,
3911,
1927,
6,
92,
198,
2,
7532,
11,
2746,
796,
25064,
13,
853,
85,
58,
16,
4357,
25064,
13,
853,
85,
58,
17,
60,
198,
1462,
62,
66,
796,
685,
10786,
11201,
3256,
705,
2213,
9132,
33809,
19203,
365,
42372,
3256,
705,
17209,
1314,
2154,
33809,
19203,
11201,
3256,
705,
17209,
1314,
2154,
33809,
19203,
365,
42372,
3256,
705,
69,
10277,
6592,
33809,
19203,
11201,
3256,
705,
69,
10277,
6592,
33809,
19203,
24900,
79,
3256,
705,
69,
10277,
6592,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
535,
3256,
705,
2213,
9132,
33809,
19203,
10210,
3256,
705,
2213,
9132,
33809,
19203,
344,
3256,
705,
2213,
9132,
33809,
19203,
8957,
3256,
705,
2213,
9132,
33809,
19203,
21101,
3256,
705,
2213,
9132,
33809,
19203,
14751,
3256,
705,
2213,
9132,
33809,
19203,
30094,
3256,
705,
2213,
9132,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
11400,
3256,
705,
2213,
9132,
33809,
19203,
36299,
3256,
705,
2213,
9132,
33809,
19203,
1416,
3256,
705,
2213,
9132,
33809,
19203,
21282,
3256,
705,
2213,
9132,
33809,
19203,
6888,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
21101,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
535,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
8957,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
40842,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
14751,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
11400,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
36299,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
1416,
3256,
705,
2213,
9132,
12,
3919,
12,
74,
1662,
33809,
19203,
6888,
3256,
705,
20,
86,
2417,
33809,
19203,
21101,
3256,
705,
20,
86,
2417,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
535,
3256,
705,
20,
86,
2417,
33809,
19203,
8957,
3256,
705,
20,
86,
2417,
33809,
19203,
40842,
3256,
705,
20,
86,
2417,
33809,
19203,
14751,
3256,
705,
20,
86,
2417,
33809,
19203,
11400,
3256,
705,
20,
86,
2417,
33809,
19203,
36299,
3256,
705,
20,
86,
2417,
33809,
19203,
1416,
3256,
705,
20,
86,
2417,
11537,
60,
198,
2,
329,
2746,
11,
7532,
287,
685,
10786,
11201,
3256,
705,
2213,
9132,
33809,
19203,
365,
42372,
3256,
705,
17209,
1314,
2154,
33809,
19203,
11201,
3256,
705,
17209,
1314,
2154,
33809,
19203,
365,
42372,
3256,
705,
69,
10277,
6592,
33809,
19203,
11201,
3256,
705,
69,
10277,
6592,
33809,
19203,
24900,
79,
3256,
705,
69,
10277,
6592,
11537,
5974,
198,
48693,
796,
705,
2213,
9132,
6,
198,
1640,
2746,
287,
37250,
11201,
6,
5974,
198,
220,
220,
220,
3601,
7,
19849,
11,
7532,
8,
198,
220,
220,
220,
47185,
796,
15568,
58,
48693,
60,
198,
220,
220,
220,
1438,
62,
4906,
796,
7532,
1343,
705,
62,
6,
1343,
2746,
198,
220,
220,
220,
1366,
62,
4868,
796,
1366,
62,
47172,
58,
3672,
62,
4906,
60,
198,
220,
220,
220,
1057,
62,
1929,
2305,
62,
23100,
3681,
7,
48693,
8,
628,
198,
2,
329,
2746,
287,
37250,
7252,
6,
5974,
198,
2,
220,
220,
220,
220,
3601,
7,
19849,
8,
198,
2,
220,
220,
220,
220,
1438,
62,
4906,
796,
705,
2213,
9132,
6,
1343,
705,
62,
6,
1343,
2746,
198,
2,
220,
220,
220,
220,
1366,
62,
4868,
796,
1366,
62,
47172,
58,
3672,
62,
4906,
60,
198,
2,
220,
220,
220,
220,
1057,
62,
1929,
2305,
10786,
2213,
9132,
3256,
2746,
8,
198,
2,
220,
220,
220,
6330,
10786,
17660,
87,
13,
10951,
3256,
2746,
1343,
705,
62,
1929,
2305,
62,
17660,
87,
13,
10951,
11537,
198,
2,
220,
220,
220,
6330,
10786,
7890,
13,
10951,
3256,
2746,
1343,
705,
62,
1929,
2305,
62,
7890,
13,
10951,
11537,
198
] | 2.139059 | 978 |
# Generated by Django 3.1 on 2020-08-13 08:17
from django.db import migrations
|
[
2,
2980,
515,
416,
37770,
513,
13,
16,
319,
12131,
12,
2919,
12,
1485,
8487,
25,
1558,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
628
] | 2.892857 | 28 |
# Copyright 2019 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from assertpy import assert_that
from common.utils import EventType, Host, UpdateEvent
from sqswatcher.plugins.slurm import _update_gres_node_lists, _update_node_lists
# Input: existing gres_node_list, events to be processed.
# Expected results: updated gres_node_list
@pytest.mark.parametrize(
"gres_node_list, events, expected_result",
[
(
["NodeName=ip-10-0-000-111 Name=gpu Type=tesla File=/dev/nvidia[0-15]\n"],
[
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
],
[
"NodeName=ip-10-0-000-111 Name=gpu Type=tesla File=/dev/nvidia[0-15]\n",
"NodeName=ip-10-0-000-222 Name=gpu Type=tesla File=/dev/nvidia[0-15]\n",
],
),
(
["NodeName=ip-10-0-000-111 Name=gpu Type=tesla File=/dev/nvidia[0-15]\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 16)),
],
[],
),
(
# GPU files should be updated after remove/add sequence
["NodeName=ip-10-0-000-111 Name=gpu Type=tesla File=/dev/nvidia[0-1]\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
],
["NodeName=ip-10-0-000-111 Name=gpu Type=tesla File=/dev/nvidia[0-15]\n"],
),
],
ids=["repetitive_add", "remove_nonexisting_node", "reusing_nodename"],
)
# Input: existing gpu_node_list, events to be processed.
# Expected results: (updated node_list, nodes_to_restart)
@pytest.mark.parametrize(
"gpu_node_list, events, expected_result",
[
(
["NodeName=ip-10-0-000-111 CPUs=32 Gres=gpu:tesla:16 State=UNKNOWN\n"],
[
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
],
(
[
"NodeName=ip-10-0-000-111 CPUs=32 Gres=gpu:tesla:16 State=UNKNOWN\n",
"NodeName=ip-10-0-000-222 CPUs=32 Gres=gpu:tesla:16 State=UNKNOWN\n",
],
# Note nodes_to_restart list is expected to be repetitive because we want to restart with every ADD
["ip-10-0-000-111", "ip-10-0-000-222", "ip-10-0-000-111"],
),
),
(
["NodeName=ip-10-0-000-111 CPUs=32 Gres=gpu:tesla:16 State=UNKNOWN\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 16)),
],
([], []),
),
(
# CPU/GPU information should be updated after remove/add sequence
["NodeName=ip-10-0-000-111 CPUs=8 Gres=gpu:tesla:1 State=UNKNOWN\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 16)),
],
(["NodeName=ip-10-0-000-111 CPUs=32 Gres=gpu:tesla:16 State=UNKNOWN\n"], ["ip-10-0-000-111"]),
),
],
ids=["repetitive_add", "remove_nonexisting_node", "reusing_nodename"],
)
# Input: existing gpu_node_list, events to be processed.
# Expected results: (updated node_list, nodes_to_restart)
@pytest.mark.parametrize(
"node_list, events, expected_result",
[
(
["NodeName=ip-10-0-000-111 CPUs=32 State=UNKNOWN\n"],
[
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 0)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 0)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 0)),
],
(
[
"NodeName=ip-10-0-000-111 CPUs=32 State=UNKNOWN\n",
"NodeName=ip-10-0-000-222 CPUs=32 State=UNKNOWN\n",
],
# Note nodes_to_restart list is expected to be repetitive because we want to restart with every ADD
["ip-10-0-000-111", "ip-10-0-000-222", "ip-10-0-000-111"],
),
),
(
["NodeName=ip-10-0-000-111 CPUs=32 State=UNKNOWN\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 0)),
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-222", "32", 0)),
],
([], []),
),
(
# CPU information should be updated after remove/add sequence
["NodeName=ip-10-0-000-111 CPUs=8 State=UNKNOWN\n"],
[
UpdateEvent(EventType.REMOVE, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 0)),
UpdateEvent(EventType.ADD, "some message", Host("i-0c1234567", "ip-10-0-000-111", "32", 0)),
],
(["NodeName=ip-10-0-000-111 CPUs=32 State=UNKNOWN\n"], ["ip-10-0-000-111"]),
),
],
ids=["repetitive_add", "remove_nonexisting_node", "reusing_nodename"],
)
|
[
2,
15069,
13130,
6186,
13,
785,
11,
3457,
13,
393,
663,
29116,
13,
1439,
6923,
33876,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
11074,
921,
743,
407,
779,
428,
2393,
2845,
287,
11846,
198,
2,
351,
262,
13789,
13,
317,
4866,
286,
262,
13789,
318,
5140,
379,
198,
2,
198,
2,
2638,
1378,
8356,
13,
33103,
13,
785,
14,
43073,
17,
13,
15,
14,
198,
2,
198,
2,
393,
287,
262,
366,
43,
2149,
24290,
13,
14116,
1,
2393,
19249,
428,
2393,
13,
770,
2393,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
34764,
11015,
198,
2,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
4911,
393,
17142,
13,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
11748,
12972,
9288,
198,
6738,
6818,
9078,
1330,
6818,
62,
5562,
198,
198,
6738,
2219,
13,
26791,
1330,
8558,
6030,
11,
14504,
11,
10133,
9237,
198,
6738,
19862,
2032,
34734,
13,
37390,
13,
6649,
333,
76,
1330,
4808,
19119,
62,
34239,
62,
17440,
62,
20713,
11,
4808,
19119,
62,
17440,
62,
20713,
628,
198,
2,
23412,
25,
4683,
308,
411,
62,
17440,
62,
4868,
11,
2995,
284,
307,
13686,
13,
198,
2,
1475,
7254,
2482,
25,
6153,
308,
411,
62,
17440,
62,
4868,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
34239,
62,
17440,
62,
4868,
11,
2995,
11,
2938,
62,
20274,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
1314,
60,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
1314,
60,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
1314,
60,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
1314,
60,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
11362,
3696,
815,
307,
6153,
706,
4781,
14,
2860,
8379,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
16,
60,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
6530,
28,
46999,
5994,
28,
4879,
5031,
9220,
33223,
7959,
14,
77,
21744,
58,
15,
12,
1314,
60,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
2340,
28,
14692,
260,
6449,
1800,
62,
2860,
1600,
366,
28956,
62,
23108,
87,
9665,
62,
17440,
1600,
366,
260,
3500,
62,
77,
375,
12453,
33116,
198,
8,
628,
198,
2,
23412,
25,
4683,
308,
19944,
62,
17440,
62,
4868,
11,
2995,
284,
307,
13686,
13,
198,
2,
1475,
7254,
2482,
25,
357,
43162,
10139,
62,
4868,
11,
13760,
62,
1462,
62,
2118,
433,
8,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
46999,
62,
17440,
62,
4868,
11,
2995,
11,
2938,
62,
20274,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
402,
411,
28,
46999,
25,
4879,
5031,
25,
1433,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
402,
411,
28,
46999,
25,
4879,
5031,
25,
1433,
1812,
28,
4944,
44706,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
32340,
28,
2624,
402,
411,
28,
46999,
25,
4879,
5031,
25,
1433,
1812,
28,
4944,
44706,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5740,
13760,
62,
1462,
62,
2118,
433,
1351,
318,
2938,
284,
307,
28585,
780,
356,
765,
284,
15765,
351,
790,
27841,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
402,
411,
28,
46999,
25,
4879,
5031,
25,
1433,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29565,
4357,
17635,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9135,
14,
33346,
1321,
815,
307,
6153,
706,
4781,
14,
2860,
8379,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
23,
402,
411,
28,
46999,
25,
4879,
5031,
25,
16,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
1467,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
14692,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
402,
411,
28,
46999,
25,
4879,
5031,
25,
1433,
1812,
28,
4944,
44706,
59,
77,
33116,
14631,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
2340,
28,
14692,
260,
6449,
1800,
62,
2860,
1600,
366,
28956,
62,
23108,
87,
9665,
62,
17440,
1600,
366,
260,
3500,
62,
77,
375,
12453,
33116,
198,
8,
628,
198,
2,
23412,
25,
4683,
308,
19944,
62,
17440,
62,
4868,
11,
2995,
284,
307,
13686,
13,
198,
2,
1475,
7254,
2482,
25,
357,
43162,
10139,
62,
4868,
11,
13760,
62,
1462,
62,
2118,
433,
8,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
17440,
62,
4868,
11,
2995,
11,
2938,
62,
20274,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
1812,
28,
4944,
44706,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
32340,
28,
2624,
1812,
28,
4944,
44706,
59,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5740,
13760,
62,
1462,
62,
2118,
433,
1351,
318,
2938,
284,
307,
28585,
780,
356,
765,
284,
15765,
351,
790,
27841,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
23148,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29565,
4357,
17635,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9135,
1321,
815,
307,
6153,
706,
4781,
14,
2860,
8379,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
23,
1812,
28,
4944,
44706,
59,
77,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
2200,
11770,
6089,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10133,
9237,
7,
9237,
6030,
13,
29266,
11,
366,
11246,
3275,
1600,
14504,
7203,
72,
12,
15,
66,
10163,
2231,
3134,
1600,
366,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
1600,
366,
2624,
1600,
657,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
14692,
19667,
5376,
28,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
32340,
28,
2624,
1812,
28,
4944,
44706,
59,
77,
33116,
14631,
541,
12,
940,
12,
15,
12,
830,
12,
16243,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
2340,
28,
14692,
260,
6449,
1800,
62,
2860,
1600,
366,
28956,
62,
23108,
87,
9665,
62,
17440,
1600,
366,
260,
3500,
62,
77,
375,
12453,
33116,
198,
8,
198
] | 2.005427 | 3,317 |
import math
from decimal import Decimal, getcontext
getcontext().prec = 30
if __name__ == '__main__':
v1 = Vector([8.218, -9.341])
v2 = Vector([-1.129, 2.111])
print('Add:', v1 + v2)
v3 = Vector([7.119, 8.215])
v4 = Vector([-8.223, 0.878])
print('Minus:', v3 - v4)
v5 = Vector([1.671, -1.012, -.318])
a = 7.41
print('Scalling:', v5 * a)
v6 = Vector([-0.221, 7.437])
print('Magnitude:', v6.magnitude())
v7 = Vector([5.581, -2.136])
print('Unit Vector:', v7.unit_vector())
v8 = Vector([-5.955, -4.904, -1.874])
v9 = Vector([-4.496, -8.755, 7.103])
print(v8.dot_product(v9))
v10 = Vector([7.35, 0.221, 5.188])
v11 = Vector([2.751, 8.259, 3.985])
print(v10.angle(v11, 'degree'))
v12 = Vector([-2.328, -7.284, -1.214])
v13 = Vector([-1.821, 1.072, -2.94])
print(v12.is_parallel_to(v13))
print(v12.is_orthogonal_to(v13))
v14 = Vector([3.009, -6.172, 3.692, -2.51])
v15 = Vector([6.404, -9.144, 2.759, 8.718])
print(v14.projection_on(v15))
print(v14.orthogonal_on(v15))
v16 = Vector([8.462, 7.893, -8.187])
v17 = Vector([6.984, -5.975, 4.778])
print(v16.cross_product(v17))
v16 = Vector([-8.987, -9.838, 5.031])
v17 = Vector([-4.268, -1.861, -8.866])
print(v16.parallelogram_spanned_with(v17))
v16 = Vector([1.5, 9.547, 3.691])
v17 = Vector([-6.007, 0.124, 5.772])
print(v16.triangle_spanned_with(v17))
v18 = Vector([1.671, -1.012, -.318])
a = 7.41
print('Scalling:', a * v18)
|
[
11748,
10688,
198,
6738,
32465,
1330,
4280,
4402,
11,
651,
22866,
198,
198,
1136,
22866,
22446,
3866,
66,
796,
1542,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
410,
16,
796,
20650,
26933,
23,
13,
28727,
11,
532,
24,
13,
33660,
12962,
198,
220,
220,
220,
410,
17,
796,
20650,
26933,
12,
16,
13,
18741,
11,
362,
13,
16243,
12962,
198,
220,
220,
220,
3601,
10786,
4550,
25,
3256,
410,
16,
1343,
410,
17,
8,
628,
220,
220,
220,
410,
18,
796,
20650,
26933,
22,
13,
16315,
11,
807,
13,
23349,
12962,
198,
220,
220,
220,
410,
19,
796,
20650,
26933,
12,
23,
13,
22047,
11,
657,
13,
23,
3695,
12962,
198,
220,
220,
220,
3601,
10786,
9452,
385,
25,
3256,
410,
18,
532,
410,
19,
8,
628,
220,
220,
220,
410,
20,
796,
20650,
26933,
16,
13,
46250,
11,
532,
16,
13,
30206,
11,
532,
13,
36042,
12962,
198,
220,
220,
220,
257,
796,
767,
13,
3901,
198,
220,
220,
220,
3601,
10786,
3351,
9221,
25,
3256,
410,
20,
1635,
257,
8,
628,
220,
220,
220,
410,
21,
796,
20650,
26933,
12,
15,
13,
26115,
11,
767,
13,
43284,
12962,
198,
220,
220,
220,
3601,
10786,
48017,
3984,
25,
3256,
410,
21,
13,
76,
4660,
3984,
28955,
628,
220,
220,
220,
410,
22,
796,
20650,
26933,
20,
13,
48630,
11,
532,
17,
13,
20809,
12962,
198,
220,
220,
220,
3601,
10786,
26453,
20650,
25,
3256,
410,
22,
13,
20850,
62,
31364,
28955,
628,
220,
220,
220,
410,
23,
796,
20650,
26933,
12,
20,
13,
24,
2816,
11,
532,
19,
13,
24,
3023,
11,
532,
16,
13,
23,
4524,
12962,
198,
220,
220,
220,
410,
24,
796,
20650,
26933,
12,
19,
13,
37747,
11,
532,
23,
13,
38172,
11,
767,
13,
15197,
12962,
198,
220,
220,
220,
3601,
7,
85,
23,
13,
26518,
62,
11167,
7,
85,
24,
4008,
628,
220,
220,
220,
410,
940,
796,
20650,
26933,
22,
13,
2327,
11,
657,
13,
26115,
11,
642,
13,
20356,
12962,
198,
220,
220,
220,
410,
1157,
796,
20650,
26933,
17,
13,
48365,
11,
807,
13,
25191,
11,
513,
13,
42250,
12962,
198,
220,
220,
220,
3601,
7,
85,
940,
13,
9248,
7,
85,
1157,
11,
705,
16863,
6,
4008,
628,
220,
220,
220,
410,
1065,
796,
20650,
26933,
12,
17,
13,
34256,
11,
532,
22,
13,
30336,
11,
532,
16,
13,
22291,
12962,
198,
220,
220,
220,
410,
1485,
796,
20650,
26933,
12,
16,
13,
23,
2481,
11,
352,
13,
2998,
17,
11,
532,
17,
13,
5824,
12962,
198,
220,
220,
220,
3601,
7,
85,
1065,
13,
271,
62,
1845,
29363,
62,
1462,
7,
85,
1485,
4008,
198,
220,
220,
220,
3601,
7,
85,
1065,
13,
271,
62,
1506,
519,
20996,
62,
1462,
7,
85,
1485,
4008,
628,
220,
220,
220,
410,
1415,
796,
20650,
26933,
18,
13,
28694,
11,
532,
21,
13,
23628,
11,
513,
13,
46589,
11,
532,
17,
13,
4349,
12962,
198,
220,
220,
220,
410,
1314,
796,
20650,
26933,
21,
13,
26429,
11,
532,
24,
13,
18444,
11,
362,
13,
38314,
11,
807,
13,
45720,
12962,
198,
220,
220,
220,
3601,
7,
85,
1415,
13,
16302,
295,
62,
261,
7,
85,
1314,
4008,
198,
220,
220,
220,
3601,
7,
85,
1415,
13,
1506,
519,
20996,
62,
261,
7,
85,
1314,
4008,
628,
220,
220,
220,
410,
1433,
796,
20650,
26933,
23,
13,
39997,
11,
767,
13,
49682,
11,
532,
23,
13,
23451,
12962,
198,
220,
220,
220,
410,
1558,
796,
20650,
26933,
21,
13,
4089,
19,
11,
532,
20,
13,
42716,
11,
604,
13,
39761,
12962,
198,
220,
220,
220,
3601,
7,
85,
1433,
13,
19692,
62,
11167,
7,
85,
1558,
4008,
628,
220,
220,
220,
410,
1433,
796,
20650,
26933,
12,
23,
13,
44183,
11,
532,
24,
13,
23,
2548,
11,
642,
13,
43637,
12962,
198,
220,
220,
220,
410,
1558,
796,
20650,
26933,
12,
19,
13,
25022,
11,
532,
16,
13,
4521,
16,
11,
532,
23,
13,
42240,
12962,
198,
220,
220,
220,
3601,
7,
85,
1433,
13,
37083,
6404,
859,
62,
2777,
3577,
62,
4480,
7,
85,
1558,
4008,
628,
220,
220,
220,
410,
1433,
796,
20650,
26933,
16,
13,
20,
11,
860,
13,
20,
2857,
11,
513,
13,
49541,
12962,
198,
220,
220,
220,
410,
1558,
796,
20650,
26933,
12,
21,
13,
25816,
11,
657,
13,
17464,
11,
642,
13,
43571,
12962,
198,
220,
220,
220,
3601,
7,
85,
1433,
13,
28461,
9248,
62,
2777,
3577,
62,
4480,
7,
85,
1558,
4008,
628,
220,
220,
220,
410,
1507,
796,
20650,
26933,
16,
13,
46250,
11,
532,
16,
13,
30206,
11,
532,
13,
36042,
12962,
198,
220,
220,
220,
257,
796,
767,
13,
3901,
198,
220,
220,
220,
3601,
10786,
3351,
9221,
25,
3256,
257,
1635,
410,
1507,
8
] | 1.938287 | 794 |
BinaryOperators = {'/' : lambda a, b: '\\frac{' + a + '}{' + b + '}'}
UnaryOperators = {'sqrt' : lambda a: '\\sqrt{'+ a + '}'}
read(set('2 / 4 * 3'))
|
[
33,
3219,
18843,
2024,
796,
1391,
26488,
6,
1058,
37456,
257,
11,
275,
25,
705,
6852,
31944,
90,
6,
1343,
257,
1343,
705,
18477,
6,
1343,
275,
1343,
705,
92,
6,
92,
198,
3118,
560,
18843,
2024,
796,
1391,
6,
31166,
17034,
6,
1058,
37456,
257,
25,
705,
6852,
31166,
17034,
90,
6,
10,
257,
1343,
705,
92,
6,
92,
628,
198,
198,
961,
7,
2617,
10786,
17,
1220,
604,
1635,
513,
6,
4008,
198
] | 2.04 | 75 |
# file: parser.py
# vim:fileencoding=utf-8:ft=python
# Copyright © 2014-2021 R.F. Smith <[email protected]>. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause
# Created: 2014-02-21 21:35:41 +0100
# Last modified: 2022-01-21T17:09:55+0100
"""Parser for lamprop files."""
import copy
import logging
from .core import fiber, resin, lamina, laminate
msg = logging.getLogger("parser")
def parse(filename):
"""
Parse a lamprop file.
Arguments:
filename: The name of the file to parse.
Returns
A list of types.laminate.
"""
try:
rd, fd, ld = _directives(filename)
except IOError:
msg.warning("cannot read '{}'.".format(filename))
return []
fdict = _get_components(fd, fiber)
msg.info("found {} fibers in '{}'".format(len(fdict), filename))
rdict = _get_components(rd, resin)
msg.info("found {} resins in '{}'".format(len(rdict), filename))
boundaries = [j for j in range(len(ld)) if ld[j][1][0] == "t"] + [len(ld)]
bpairs = [(a, b) for a, b in zip(boundaries[:-1], boundaries[1:])]
msg.info("found {} possible laminates in '{}'".format(len(bpairs), filename))
laminates = []
for a, b in bpairs:
current = ld[a:b]
lam = _laminate(current, rdict, fdict)
if lam:
laminates.append(lam)
msg.info("found {} laminates in '{}'".format(len(laminates), filename))
return laminates
def _directives(filename):
"""
Read the directives from a lamprop file.
Arguments:
filename: The name of the file to parse.
Returns:
A 3-tuple (resin directives, fiber directives, laminate directives)
"""
with open(filename, encoding="utf-8") as df:
data = [ln.strip() for ln in df]
# Filter out lines with directives.
directives = [
(num, ln)
for num, ln in enumerate(data, start=1)
if len(ln) > 1 and ln[1] == ":" and ln[0] in "tmlscfr"
]
msg.info("found {} directives in '{}'".format(len(directives), filename))
rd = [(num, ln) for num, ln in directives if ln[0] == "r"]
fd = [(num, ln) for num, ln in directives if ln[0] == "f"]
ld = [(num, ln) for num, ln in directives if ln[0] in "tmlsc"]
return rd, fd, ld
def _get_numbers(directive):
"""
Retrieve consecutive floating point numbers from a directive.
Arguments:
directive: A 2-tuple (int, str).
Returns:
A tuple of floating point numbers and the remainder of the string.
"""
num, line = directive
numbers = []
items = line.split()[1:]
for j in items:
try:
numbers.append(float(j))
except ValueError:
break
newitems = line.split(maxsplit=len(numbers)+1)[1:]
if len(newitems) > len(numbers):
remain = newitems[-1]
else:
remain = ""
return tuple(numbers), remain
def _laminate(ld, resins, fibers):
"""
Parse a laminate definition.
This must be a t-directive, followed by an m-directive, followed by one or
more l-directives and optionally finished by an s-directive.
Arguments:
ld: A sequence of (number, line) tuples describing a laminate.
resins: A dictionary of resins, keyed by their names.
fibers: A dictionary of fibers, keyed by their names.
Returns:
A laminate dictionary, or None.
"""
sym = False
if ld[0][1].startswith("t"):
lname = ld[0][1][2:].strip()
if lname == "":
msg.warning("no laminate name on line {}".format(ld[0][0]))
return None
else:
msg.warning("no 't' directive on line {}".format(ld[0][0]))
return None
try:
if not ld[1][1].startswith("m"):
raise ValueError
common_vf, rname = ld[1][1][2:].split(maxsplit=1)
common_vf = float(common_vf)
if rname not in resins:
msg.warning("unknown resin '{}' on line {}".format(rname, ld[1][0]))
raise ValueError
except ValueError:
msg.warning("no valid 'm' directive on line {}".format(ld[1][0]))
return None
if ld[-1][1].startswith("s"):
sym = True
del ld[-1]
llist = []
for directive in ld[2:]:
if directive[1].startswith("c"): # Comment line.
llist.append(directive[1][2:].strip())
continue
lamina = _get_lamina(directive, fibers, resins[rname], common_vf)
if lamina:
llist.append(lamina)
if not llist:
msg.warning("empty laminate '{}'".format(lname))
return None
if sym:
msg.info("laminate '{}' is symmetric".format(lname))
llist = llist + _extended(llist)
return laminate(lname, llist)
def _extended(original):
"""
Create the extension to the `original` list to make the laminate symmetric.
The position of the comments is taken into account.
"""
if sum(1 for la in original if isinstance(la, str)) == 0:
return original[::-1]
layers = copy.deepcopy(original)
if not isinstance(layers[-1], str):
layers.append("__")
if not isinstance(layers[0], str):
layers.insert(0, "unknown")
idx = [n for n, v in enumerate(layers) if isinstance(v, str)]
pairs = list(zip(idx[:-1], idx[1:]))[::-1]
extension = []
for s, e in pairs:
if layers[s] == "__":
extension += layers[s + 1 : e][::-1] # noqa
else:
extension += [layers[s]] + layers[s + 1 : e][::-1] # noqa
return extension
def _get_components(directives, tp):
"""
Parse fiber and resin lines.
Arguments:
directives: A sequence of (number, line) tuples describing fibers/resins.
tp: The conversion function to use. Either core.fiber or core.resin
Returns:
A list of fiber dictionaries
"""
rv = []
names = []
tname = tp.__name__
w1 = "expected 4 numbers for a {} on line {}, found {}; skipping."
w2 = 'duplicate {} "{}" on line {} ignored.'
w3 = "{} must be >0 on line {}; skipping."
w4 = "Poisson's ratio on line {} should be >0 and <0.5; skipping."
w5 = 'missing {} name on line {}; skipping.'
for directive in directives:
ln = directive[0]
numbers, name = _get_numbers(directive)
count = len(numbers)
if count != 4:
msg.warning(w1.format(tname, ln, count))
continue
if len(name) == 0:
msg.warning(w5.format(tname, ln))
continue
if name in names:
msg.warning(w2.format(tname, name, ln))
continue
E, ν, α, ρ = numbers
if E < 0:
msg.warning(w3.format("Young's modulus", ln))
continue
if ρ < 0:
msg.warning(w3.format("Density", ln))
continue
if ν < 0 or ν >= 0.5:
msg.warning(w4.format(ln))
continue
rv.append(tp(*numbers, name))
return {comp.name: comp for comp in rv}
def _get_lamina(directive, fibers, resin, vf):
"""
Parse a lamina line.
Arguments:
directive: A 2-tuple (int, str) that contains the line number and
a lamina line.
resins: A dictionary of resins, keyed by their names.
fibers: A dictionary of fibers, keyed by their names.
vf: The global fiber volume fraction as a floating point number
between 0 and 1.
Returns:
A lamina dictionary, or None.
"""
w1 = "invalid lamina line {}, '{}'"
w2 = "unknown fiber '{}' on line {}"
ln, line = directive
numbers, fname = _get_numbers(directive)
if len(numbers) == 2:
numbers = numbers + (vf,)
elif len(numbers) != 3:
msg.warning(w1.format(ln, line))
return None
if fname not in fibers:
msg.warning(w2.format(fname, ln))
return None
return lamina(fibers[fname], resin, *numbers)
|
[
2,
2393,
25,
30751,
13,
9078,
198,
2,
43907,
25,
7753,
12685,
7656,
28,
40477,
12,
23,
25,
701,
28,
29412,
198,
2,
15069,
10673,
1946,
12,
1238,
2481,
371,
13,
37,
13,
4176,
1279,
3808,
22947,
31,
34223,
19,
439,
13,
21283,
28401,
1439,
2489,
10395,
13,
198,
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
347,
10305,
12,
17,
12,
2601,
682,
198,
2,
15622,
25,
1946,
12,
2999,
12,
2481,
2310,
25,
2327,
25,
3901,
1343,
39103,
198,
2,
4586,
9518,
25,
33160,
12,
486,
12,
2481,
51,
1558,
25,
2931,
25,
2816,
10,
39103,
198,
37811,
46677,
329,
20450,
1773,
3696,
526,
15931,
198,
198,
11748,
4866,
198,
11748,
18931,
198,
6738,
764,
7295,
1330,
13608,
11,
36536,
11,
300,
18891,
11,
30592,
4559,
198,
198,
19662,
796,
18931,
13,
1136,
11187,
1362,
7203,
48610,
4943,
628,
198,
4299,
21136,
7,
34345,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2547,
325,
257,
20450,
1773,
2393,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
29472,
25,
383,
1438,
286,
262,
2393,
284,
21136,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
286,
3858,
13,
2543,
4559,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
374,
67,
11,
277,
67,
11,
300,
67,
796,
4808,
12942,
1083,
7,
34345,
8,
198,
220,
220,
220,
2845,
24418,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
66,
34574,
1100,
705,
90,
92,
30827,
13,
18982,
7,
34345,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
17635,
198,
220,
220,
220,
277,
11600,
796,
4808,
1136,
62,
5589,
3906,
7,
16344,
11,
13608,
8,
198,
220,
220,
220,
31456,
13,
10951,
7203,
9275,
23884,
26742,
287,
705,
90,
92,
6,
1911,
18982,
7,
11925,
7,
69,
11600,
828,
29472,
4008,
198,
220,
220,
220,
374,
11600,
796,
4808,
1136,
62,
5589,
3906,
7,
4372,
11,
36536,
8,
198,
220,
220,
220,
31456,
13,
10951,
7203,
9275,
23884,
581,
1040,
287,
705,
90,
92,
6,
1911,
18982,
7,
11925,
7,
4372,
713,
828,
29472,
4008,
198,
220,
220,
220,
13215,
796,
685,
73,
329,
474,
287,
2837,
7,
11925,
7,
335,
4008,
611,
300,
67,
58,
73,
7131,
16,
7131,
15,
60,
6624,
366,
83,
8973,
1343,
685,
11925,
7,
335,
15437,
198,
220,
220,
220,
275,
79,
3468,
796,
47527,
64,
11,
275,
8,
329,
257,
11,
275,
287,
19974,
7,
7784,
3166,
58,
21912,
16,
4357,
13215,
58,
16,
25,
12962,
60,
198,
220,
220,
220,
31456,
13,
10951,
7203,
9275,
23884,
1744,
300,
5669,
689,
287,
705,
90,
92,
6,
1911,
18982,
7,
11925,
7,
46583,
3468,
828,
29472,
4008,
198,
220,
220,
220,
300,
5669,
689,
796,
17635,
198,
220,
220,
220,
329,
257,
11,
275,
287,
275,
79,
3468,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1459,
796,
300,
67,
58,
64,
25,
65,
60,
198,
220,
220,
220,
220,
220,
220,
220,
30592,
796,
4808,
2543,
4559,
7,
14421,
11,
374,
11600,
11,
277,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
30592,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
5669,
689,
13,
33295,
7,
2543,
8,
198,
220,
220,
220,
31456,
13,
10951,
7203,
9275,
23884,
300,
5669,
689,
287,
705,
90,
92,
6,
1911,
18982,
7,
11925,
7,
2543,
17540,
828,
29472,
4008,
198,
220,
220,
220,
1441,
300,
5669,
689,
628,
198,
4299,
4808,
12942,
1083,
7,
34345,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
262,
34819,
422,
257,
20450,
1773,
2393,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
29472,
25,
383,
1438,
286,
262,
2393,
284,
21136,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
317,
513,
12,
83,
29291,
357,
411,
259,
34819,
11,
13608,
34819,
11,
30592,
4559,
34819,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
1280,
7,
34345,
11,
21004,
2625,
40477,
12,
23,
4943,
355,
47764,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
685,
18755,
13,
36311,
3419,
329,
300,
77,
287,
47764,
60,
198,
220,
220,
220,
1303,
25853,
503,
3951,
351,
34819,
13,
198,
220,
220,
220,
34819,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
22510,
11,
300,
77,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
997,
11,
300,
77,
287,
27056,
378,
7,
7890,
11,
923,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
18755,
8,
1875,
352,
290,
300,
77,
58,
16,
60,
6624,
366,
11097,
290,
300,
77,
58,
15,
60,
287,
366,
20369,
1416,
8310,
1,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
31456,
13,
10951,
7203,
9275,
23884,
34819,
287,
705,
90,
92,
6,
1911,
18982,
7,
11925,
7,
12942,
1083,
828,
29472,
4008,
198,
220,
220,
220,
374,
67,
796,
47527,
22510,
11,
300,
77,
8,
329,
997,
11,
300,
77,
287,
34819,
611,
300,
77,
58,
15,
60,
6624,
366,
81,
8973,
198,
220,
220,
220,
277,
67,
796,
47527,
22510,
11,
300,
77,
8,
329,
997,
11,
300,
77,
287,
34819,
611,
300,
77,
58,
15,
60,
6624,
366,
69,
8973,
198,
220,
220,
220,
300,
67,
796,
47527,
22510,
11,
300,
77,
8,
329,
997,
11,
300,
77,
287,
34819,
611,
300,
77,
58,
15,
60,
287,
366,
20369,
1416,
8973,
198,
220,
220,
220,
1441,
374,
67,
11,
277,
67,
11,
300,
67,
628,
198,
4299,
4808,
1136,
62,
77,
17024,
7,
12942,
425,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4990,
30227,
12785,
12462,
966,
3146,
422,
257,
22644,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
22644,
25,
317,
362,
12,
83,
29291,
357,
600,
11,
965,
737,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
317,
46545,
286,
12462,
966,
3146,
290,
262,
17675,
286,
262,
4731,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
997,
11,
1627,
796,
22644,
198,
220,
220,
220,
3146,
796,
17635,
198,
220,
220,
220,
3709,
796,
1627,
13,
35312,
3419,
58,
16,
47715,
198,
220,
220,
220,
329,
474,
287,
3709,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3146,
13,
33295,
7,
22468,
7,
73,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
649,
23814,
796,
1627,
13,
35312,
7,
9806,
35312,
28,
11925,
7,
77,
17024,
47762,
16,
38381,
16,
47715,
198,
220,
220,
220,
611,
18896,
7,
3605,
23814,
8,
1875,
18896,
7,
77,
17024,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3520,
796,
649,
23814,
58,
12,
16,
60,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3520,
796,
13538,
198,
220,
220,
220,
1441,
46545,
7,
77,
17024,
828,
3520,
628,
198,
4299,
4808,
2543,
4559,
7,
335,
11,
581,
1040,
11,
26742,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2547,
325,
257,
30592,
4559,
6770,
13,
628,
220,
220,
220,
770,
1276,
307,
257,
256,
12,
12942,
425,
11,
3940,
416,
281,
285,
12,
12942,
425,
11,
3940,
416,
530,
393,
198,
220,
220,
220,
517,
300,
12,
12942,
1083,
290,
42976,
5201,
416,
281,
264,
12,
12942,
425,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
67,
25,
317,
8379,
286,
357,
17618,
11,
1627,
8,
12777,
2374,
12059,
257,
30592,
4559,
13,
198,
220,
220,
220,
220,
220,
220,
220,
581,
1040,
25,
317,
22155,
286,
581,
1040,
11,
1994,
276,
416,
511,
3891,
13,
198,
220,
220,
220,
220,
220,
220,
220,
26742,
25,
317,
22155,
286,
26742,
11,
1994,
276,
416,
511,
3891,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
317,
30592,
4559,
22155,
11,
393,
6045,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5659,
796,
10352,
198,
220,
220,
220,
611,
300,
67,
58,
15,
7131,
16,
4083,
9688,
2032,
342,
7203,
83,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
300,
3672,
796,
300,
67,
58,
15,
7131,
16,
7131,
17,
25,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
300,
3672,
6624,
366,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
3919,
30592,
4559,
1438,
319,
1627,
23884,
1911,
18982,
7,
335,
58,
15,
7131,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
3919,
705,
83,
6,
22644,
319,
1627,
23884,
1911,
18982,
7,
335,
58,
15,
7131,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
300,
67,
58,
16,
7131,
16,
4083,
9688,
2032,
342,
7203,
76,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
198,
220,
220,
220,
220,
220,
220,
220,
2219,
62,
85,
69,
11,
374,
3672,
796,
300,
67,
58,
16,
7131,
16,
7131,
17,
25,
4083,
35312,
7,
9806,
35312,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2219,
62,
85,
69,
796,
12178,
7,
11321,
62,
85,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
374,
3672,
407,
287,
581,
1040,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
34680,
36536,
705,
90,
92,
6,
319,
1627,
23884,
1911,
18982,
7,
81,
3672,
11,
300,
67,
58,
16,
7131,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
198,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
3919,
4938,
705,
76,
6,
22644,
319,
1627,
23884,
1911,
18982,
7,
335,
58,
16,
7131,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
611,
300,
67,
58,
12,
16,
7131,
16,
4083,
9688,
2032,
342,
7203,
82,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5659,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1619,
300,
67,
58,
12,
16,
60,
198,
220,
220,
220,
32660,
396,
796,
17635,
198,
220,
220,
220,
329,
22644,
287,
300,
67,
58,
17,
25,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
611,
22644,
58,
16,
4083,
9688,
2032,
342,
7203,
66,
1,
2599,
220,
1303,
18957,
1627,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32660,
396,
13,
33295,
7,
12942,
425,
58,
16,
7131,
17,
25,
4083,
36311,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
300,
18891,
796,
4808,
1136,
62,
2543,
1437,
7,
12942,
425,
11,
26742,
11,
581,
1040,
58,
81,
3672,
4357,
2219,
62,
85,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
300,
18891,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32660,
396,
13,
33295,
7,
2543,
1437,
8,
198,
220,
220,
220,
611,
407,
32660,
396,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7203,
28920,
30592,
4559,
705,
90,
92,
6,
1911,
18982,
7,
75,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
611,
5659,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
10951,
7203,
2543,
4559,
705,
90,
92,
6,
318,
23606,
19482,
1911,
18982,
7,
75,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
32660,
396,
796,
32660,
396,
1343,
4808,
2302,
1631,
7,
297,
396,
8,
198,
220,
220,
220,
1441,
30592,
4559,
7,
75,
3672,
11,
32660,
396,
8,
628,
198,
4299,
4808,
2302,
1631,
7,
14986,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13610,
262,
7552,
284,
262,
4600,
14986,
63,
1351,
284,
787,
262,
30592,
4559,
23606,
19482,
13,
198,
220,
220,
220,
383,
2292,
286,
262,
3651,
318,
2077,
656,
1848,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2160,
7,
16,
329,
8591,
287,
2656,
611,
318,
39098,
7,
5031,
11,
965,
4008,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2656,
58,
3712,
12,
16,
60,
198,
220,
220,
220,
11685,
796,
4866,
13,
22089,
30073,
7,
14986,
8,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
75,
6962,
58,
12,
16,
4357,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11685,
13,
33295,
7203,
834,
4943,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
75,
6962,
58,
15,
4357,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11685,
13,
28463,
7,
15,
11,
366,
34680,
4943,
198,
220,
220,
220,
4686,
87,
796,
685,
77,
329,
299,
11,
410,
287,
27056,
378,
7,
75,
6962,
8,
611,
318,
39098,
7,
85,
11,
965,
15437,
198,
220,
220,
220,
14729,
796,
1351,
7,
13344,
7,
312,
87,
58,
21912,
16,
4357,
4686,
87,
58,
16,
47715,
4008,
58,
3712,
12,
16,
60,
198,
220,
220,
220,
7552,
796,
17635,
198,
220,
220,
220,
329,
264,
11,
304,
287,
14729,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
11685,
58,
82,
60,
6624,
366,
834,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7552,
15853,
11685,
58,
82,
1343,
352,
1058,
304,
7131,
3712,
12,
16,
60,
220,
1303,
645,
20402,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7552,
15853,
685,
75,
6962,
58,
82,
11907,
1343,
11685,
58,
82,
1343,
352,
1058,
304,
7131,
3712,
12,
16,
60,
220,
1303,
645,
20402,
198,
220,
220,
220,
1441,
7552,
628,
198,
4299,
4808,
1136,
62,
5589,
3906,
7,
12942,
1083,
11,
256,
79,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2547,
325,
13608,
290,
36536,
3951,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
34819,
25,
317,
8379,
286,
357,
17618,
11,
1627,
8,
12777,
2374,
12059,
26742,
14,
411,
1040,
13,
198,
220,
220,
220,
220,
220,
220,
220,
256,
79,
25,
383,
11315,
2163,
284,
779,
13,
15467,
4755,
13,
69,
1856,
393,
4755,
13,
411,
259,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
286,
13608,
48589,
3166,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
374,
85,
796,
17635,
198,
220,
220,
220,
3891,
796,
17635,
198,
220,
220,
220,
256,
3672,
796,
256,
79,
13,
834,
3672,
834,
198,
220,
220,
220,
266,
16,
796,
366,
40319,
604,
3146,
329,
257,
23884,
319,
1627,
1391,
5512,
1043,
1391,
19629,
31017,
526,
198,
220,
220,
220,
266,
17,
796,
705,
646,
489,
5344,
23884,
45144,
36786,
319,
1627,
23884,
9514,
2637,
198,
220,
220,
220,
266,
18,
796,
45144,
92,
1276,
307,
1875,
15,
319,
1627,
1391,
19629,
31017,
526,
198,
220,
220,
220,
266,
19,
796,
366,
18833,
30927,
338,
8064,
319,
1627,
23884,
815,
307,
220,
1875,
15,
290,
1279,
15,
13,
20,
26,
31017,
526,
198,
220,
220,
220,
266,
20,
796,
705,
45688,
23884,
1438,
319,
1627,
1391,
19629,
31017,
2637,
198,
220,
220,
220,
329,
22644,
287,
34819,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
77,
796,
22644,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
3146,
11,
1438,
796,
4808,
1136,
62,
77,
17024,
7,
12942,
425,
8,
198,
220,
220,
220,
220,
220,
220,
220,
954,
796,
18896,
7,
77,
17024,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
954,
14512,
604,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
16,
13,
18982,
7,
83,
3672,
11,
300,
77,
11,
954,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
3672,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
20,
13,
18982,
7,
83,
3672,
11,
300,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
287,
3891,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
17,
13,
18982,
7,
83,
3672,
11,
1438,
11,
300,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
412,
11,
7377,
121,
11,
26367,
11,
18074,
223,
796,
3146,
198,
220,
220,
220,
220,
220,
220,
220,
611,
412,
1279,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
18,
13,
18982,
7203,
20917,
338,
953,
23515,
1600,
300,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18074,
223,
1279,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
18,
13,
18982,
7203,
35,
6377,
1600,
300,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7377,
121,
1279,
657,
393,
7377,
121,
18189,
657,
13,
20,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
19,
13,
18982,
7,
18755,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
374,
85,
13,
33295,
7,
34788,
46491,
77,
17024,
11,
1438,
4008,
198,
220,
220,
220,
1441,
1391,
5589,
13,
3672,
25,
552,
329,
552,
287,
374,
85,
92,
628,
198,
4299,
4808,
1136,
62,
2543,
1437,
7,
12942,
425,
11,
26742,
11,
36536,
11,
410,
69,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2547,
325,
257,
300,
18891,
1627,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
22644,
25,
317,
362,
12,
83,
29291,
357,
600,
11,
965,
8,
326,
4909,
262,
1627,
1271,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
300,
18891,
1627,
13,
198,
220,
220,
220,
220,
220,
220,
220,
581,
1040,
25,
317,
22155,
286,
581,
1040,
11,
1994,
276,
416,
511,
3891,
13,
198,
220,
220,
220,
220,
220,
220,
220,
26742,
25,
317,
22155,
286,
26742,
11,
1994,
276,
416,
511,
3891,
13,
198,
220,
220,
220,
220,
220,
220,
220,
410,
69,
25,
383,
3298,
13608,
6115,
13390,
355,
257,
12462,
966,
1271,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1022,
657,
290,
352,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
317,
300,
18891,
22155,
11,
393,
6045,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
266,
16,
796,
366,
259,
12102,
300,
18891,
1627,
1391,
5512,
705,
90,
92,
29653,
198,
220,
220,
220,
266,
17,
796,
366,
34680,
13608,
705,
90,
92,
6,
319,
1627,
23884,
1,
198,
220,
220,
220,
300,
77,
11,
1627,
796,
22644,
198,
220,
220,
220,
3146,
11,
277,
3672,
796,
4808,
1136,
62,
77,
17024,
7,
12942,
425,
8,
198,
220,
220,
220,
611,
18896,
7,
77,
17024,
8,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3146,
796,
3146,
1343,
357,
85,
69,
35751,
198,
220,
220,
220,
1288,
361,
18896,
7,
77,
17024,
8,
14512,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
16,
13,
18982,
7,
18755,
11,
1627,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
611,
277,
3672,
407,
287,
26742,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
13,
43917,
7,
86,
17,
13,
18982,
7,
69,
3672,
11,
300,
77,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
1441,
300,
18891,
7,
69,
571,
364,
58,
69,
3672,
4357,
36536,
11,
1635,
77,
17024,
8,
198
] | 2.250711 | 3,518 |
import conversion as conv
|
[
11748,
11315,
355,
3063,
198
] | 5.2 | 5 |
import sys, os, cv2
import numpy as np
import time, datetime
import logging
import copy, random, itertools
from prettytable import PrettyTable
import pickle
import torch
import torch.nn as nn
from torch.utils.tensorboard import SummaryWriter
from torch.utils.data import Dataset, DataLoader, ConcatDataset
import config
import constants
from config import args, parse_args, ConfigContext
from models import build_model,build_teacher_model
from models.balanced_dataparallel import DataParallel
from utils import *
from utils.projection import vertices_kp3d_projection
from utils.train_utils import justify_detection_state
from evaluation import compute_error_verts, compute_similarity_transform, compute_similarity_transform_torch, \
batch_compute_similarity_transform_torch, compute_mpjpe, \
determ_worst_best, reorganize_vis_info
from dataset.mixed_dataset import MixedDataset,SingleDataset
from visualization.visualization import Visualizer
if args().model_precision=='fp16':
from torch.cuda.amp import autocast, GradScaler
|
[
11748,
25064,
11,
28686,
11,
269,
85,
17,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
640,
11,
4818,
8079,
198,
11748,
18931,
198,
11748,
4866,
11,
4738,
11,
340,
861,
10141,
198,
6738,
2495,
11487,
1330,
20090,
10962,
198,
11748,
2298,
293,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
6738,
28034,
13,
26791,
13,
83,
22854,
3526,
1330,
21293,
34379,
198,
6738,
28034,
13,
26791,
13,
7890,
1330,
16092,
292,
316,
11,
6060,
17401,
11,
1482,
9246,
27354,
292,
316,
198,
198,
11748,
4566,
198,
11748,
38491,
198,
6738,
4566,
1330,
26498,
11,
21136,
62,
22046,
11,
17056,
21947,
198,
6738,
4981,
1330,
1382,
62,
19849,
11,
11249,
62,
660,
3493,
62,
19849,
198,
6738,
4981,
13,
27753,
62,
19608,
499,
283,
29363,
1330,
6060,
10044,
29363,
198,
6738,
3384,
4487,
1330,
1635,
198,
6738,
3384,
4487,
13,
16302,
295,
1330,
9421,
1063,
62,
74,
79,
18,
67,
62,
16302,
295,
198,
6738,
3384,
4487,
13,
27432,
62,
26791,
1330,
12051,
62,
15255,
3213,
62,
5219,
198,
6738,
12660,
1330,
24061,
62,
18224,
62,
24040,
11,
24061,
62,
38610,
414,
62,
35636,
11,
24061,
62,
38610,
414,
62,
35636,
62,
13165,
354,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
5589,
1133,
62,
38610,
414,
62,
35636,
62,
13165,
354,
11,
24061,
62,
3149,
73,
431,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2206,
76,
62,
41430,
62,
13466,
11,
35459,
1096,
62,
4703,
62,
10951,
198,
6738,
27039,
13,
76,
2966,
62,
19608,
292,
316,
1330,
35250,
27354,
292,
316,
11,
28008,
27354,
292,
316,
198,
6738,
32704,
13,
41464,
1634,
1330,
15612,
7509,
198,
361,
26498,
22446,
19849,
62,
3866,
16005,
855,
6,
46428,
1433,
10354,
198,
220,
220,
220,
422,
28034,
13,
66,
15339,
13,
696,
1330,
1960,
420,
459,
11,
17701,
3351,
36213,
198
] | 3.197015 | 335 |
from pyminion.expansions.base import estate, smithy, vassal, village
from pyminion.game import Game
from pyminion.players import Human
|
[
6738,
12972,
1084,
295,
13,
11201,
504,
507,
13,
8692,
1330,
7964,
11,
895,
342,
88,
11,
410,
562,
282,
11,
7404,
198,
6738,
12972,
1084,
295,
13,
6057,
1330,
3776,
198,
6738,
12972,
1084,
295,
13,
32399,
1330,
5524,
628,
628,
628,
628
] | 3.227273 | 44 |
#!/usr/bin/env python
"""
Solution to Project Euler Problem 3
http://projecteuler.net/
by Apalala <[email protected]>
(cc) Attribution-ShareAlike
http://creativecommons.org/licenses/by-sa/3.0/
Find the largest prime factor of the given number
"""
from factorization import factors
TARGET = 600851475143
if __name__ == "__main__":
test()
run()
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
37811,
198,
46344,
284,
4935,
412,
18173,
20647,
513,
198,
4023,
1378,
16302,
68,
18173,
13,
3262,
14,
198,
198,
1525,
5949,
282,
6081,
1279,
499,
282,
6081,
31,
14816,
13,
785,
29,
198,
7,
535,
8,
45336,
12,
11649,
32,
2339,
198,
4023,
1378,
20123,
425,
9503,
684,
13,
2398,
14,
677,
4541,
14,
1525,
12,
11400,
14,
18,
13,
15,
14,
198,
198,
16742,
262,
4387,
6994,
5766,
286,
262,
1813,
1271,
198,
37811,
198,
6738,
5766,
1634,
1330,
5087,
628,
198,
51,
46095,
796,
10053,
5332,
1415,
2425,
21139,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1332,
3419,
198,
220,
220,
220,
1057,
3419,
198
] | 2.79845 | 129 |
#!/usr/bin/env python3
"""
Classes for PWMing fans
"""
__author__ = "<Daniel Casner <www.danielcasner.org>"
def DiscreteFan(object):
"A simple fan controller with discrete PWM speeds"
def __init__(self, pi, gpio, speeds=(0, 4095), phase=0):
"Setup the fan"
self.pi = pi
self.gpio = gpio
self.speeds = speeds
self.phase = phase
self.set(0)
def set(self, speed_index):
"Sets the fan to the speed given by index"
self.pi.set_PWM_dutycycle(self.gpio, self.speeds[speed_index], self.phase)
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
37811,
198,
9487,
274,
329,
350,
22117,
278,
3296,
198,
37811,
198,
834,
9800,
834,
796,
33490,
19962,
11294,
1008,
1279,
2503,
13,
67,
6321,
34004,
1008,
13,
2398,
24618,
198,
198,
4299,
8444,
8374,
22480,
7,
15252,
2599,
198,
220,
220,
220,
366,
32,
2829,
4336,
10444,
351,
28810,
350,
22117,
12055,
1,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
31028,
11,
27809,
952,
11,
12055,
16193,
15,
11,
2319,
3865,
828,
7108,
28,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
366,
40786,
262,
4336,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14415,
796,
31028,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
31197,
952,
796,
27809,
952,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4125,
5379,
796,
12055,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
40715,
796,
7108,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
7,
15,
8,
628,
220,
220,
220,
825,
900,
7,
944,
11,
2866,
62,
9630,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
366,
50,
1039,
262,
4336,
284,
262,
2866,
1813,
416,
6376,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14415,
13,
2617,
62,
47,
22117,
62,
26278,
13696,
7,
944,
13,
31197,
952,
11,
2116,
13,
4125,
5379,
58,
12287,
62,
9630,
4357,
2116,
13,
40715,
8,
198
] | 2.302041 | 245 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import os
import sys
import glob
import time
import zipfile
import signal
import ConfigParser
import Mobigen.Common.Log as Log; Log.Init()
SHUTDOWN = False
signal.signal(signal.SIGTERM, handler)
signal.signal(signal.SIGINT , handler)
signal.signal(signal.SIGHUP , handler)
signal.signal(signal.SIGPIPE, handler)
if __name__ == "__main__" :
if (len(sys.argv) < 3) : usage()
fileMon = FileCompressor(sys.argv[1], sys.argv[2])
fileMon.MakeIdxFile()
fileMon.run()
__LOG__.Trace("PROCESS END...\n")
#sys.stderr.write("LOG://PROCESS END...\n")
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
302,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
15095,
198,
11748,
640,
198,
11748,
19974,
7753,
198,
11748,
6737,
198,
11748,
17056,
46677,
198,
11748,
16540,
9324,
13,
17227,
13,
11187,
355,
5972,
26,
5972,
13,
31768,
3419,
198,
198,
9693,
3843,
41925,
796,
10352,
198,
198,
12683,
282,
13,
12683,
282,
7,
12683,
282,
13,
50,
3528,
5781,
44,
11,
21360,
8,
198,
12683,
282,
13,
12683,
282,
7,
12683,
282,
13,
50,
3528,
12394,
837,
21360,
8,
198,
12683,
282,
13,
12683,
282,
7,
12683,
282,
13,
50,
18060,
8577,
837,
21360,
8,
198,
12683,
282,
13,
12683,
282,
7,
12683,
282,
13,
50,
3528,
47,
4061,
36,
11,
21360,
8,
628,
628,
628,
628,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1,
1058,
628,
197,
361,
357,
11925,
7,
17597,
13,
853,
85,
8,
1279,
513,
8,
1058,
8748,
3419,
628,
197,
7753,
9069,
796,
9220,
7293,
44292,
7,
17597,
13,
853,
85,
58,
16,
4357,
25064,
13,
853,
85,
58,
17,
12962,
198,
197,
7753,
9069,
13,
12050,
7390,
87,
8979,
3419,
198,
197,
7753,
9069,
13,
5143,
3419,
628,
197,
834,
25294,
834,
13,
2898,
558,
7203,
4805,
4503,
7597,
23578,
986,
59,
77,
4943,
198,
197,
2,
17597,
13,
301,
1082,
81,
13,
13564,
7203,
25294,
1378,
4805,
4503,
7597,
23578,
986,
59,
77,
4943,
628
] | 2.440945 | 254 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" distribute- and pip-enabled setup.py for simffa """
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
import re
setup(
name='simffa',
version='dev',
include_package_data=True,
install_requires=parse_requirements('requirements.txt'),
dependency_links=parse_dependency_links('requirements.txt'),
test_suite="nose.collector",
)
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
37811,
14983,
12,
290,
7347,
12,
25616,
9058,
13,
9078,
329,
985,
487,
64,
37227,
198,
198,
6738,
14983,
62,
40406,
1330,
779,
62,
2617,
37623,
10141,
198,
1904,
62,
2617,
37623,
10141,
3419,
198,
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
11748,
302,
628,
628,
198,
40406,
7,
198,
220,
220,
220,
1438,
11639,
14323,
487,
64,
3256,
628,
220,
220,
220,
2196,
11639,
7959,
3256,
628,
220,
220,
220,
2291,
62,
26495,
62,
7890,
28,
17821,
11,
628,
220,
220,
220,
2721,
62,
47911,
28,
29572,
62,
8897,
18883,
10786,
8897,
18883,
13,
14116,
33809,
198,
220,
220,
220,
20203,
62,
28751,
28,
29572,
62,
45841,
1387,
62,
28751,
10786,
8897,
18883,
13,
14116,
33809,
628,
220,
220,
220,
1332,
62,
2385,
578,
2625,
77,
577,
13,
33327,
273,
1600,
198,
8,
198
] | 2.8125 | 160 |
import networkx as nx
import codecs
import json
import pickle
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from string import ascii_lowercase
histogram = None
for char in ['a', 'b', 'c', 'd']:
for c in ascii_lowercase:
filename = "hist"+char+c
print("Reading:", filename)
with open(filename, "rb") as fp:
hist = pickle.load(fp)
hist = np.array(hist)
if histogram is None:
histogram = hist
else:
if(histogram.shape[0] < hist.shape[0]):
histogram.resize(hist.shape)
else:
hist.resize(histogram.shape)
histogram = histogram + hist
with open('histogram', 'wb') as f:
pickle.dump(histogram, f)
print(histogram)
|
[
11748,
3127,
87,
355,
299,
87,
198,
11748,
40481,
82,
198,
11748,
33918,
198,
11748,
2298,
293,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
198,
6759,
29487,
8019,
13,
1904,
10786,
46384,
11537,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
4731,
1330,
355,
979,
72,
62,
21037,
7442,
628,
198,
10034,
21857,
796,
6045,
198,
1640,
1149,
287,
37250,
64,
3256,
705,
65,
3256,
705,
66,
3256,
705,
67,
6,
5974,
198,
220,
220,
220,
329,
269,
287,
355,
979,
72,
62,
21037,
7442,
25,
198,
220,
220,
220,
220,
220,
220,
220,
29472,
796,
366,
10034,
1,
10,
10641,
10,
66,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
36120,
25,
1600,
29472,
8,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
34345,
11,
366,
26145,
4943,
355,
277,
79,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1554,
796,
2298,
293,
13,
2220,
7,
46428,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1554,
796,
45941,
13,
18747,
7,
10034,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1554,
21857,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1554,
21857,
796,
1554,
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,
7,
10034,
21857,
13,
43358,
58,
15,
60,
1279,
1554,
13,
43358,
58,
15,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1554,
21857,
13,
411,
1096,
7,
10034,
13,
43358,
8,
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,
1554,
13,
411,
1096,
7,
10034,
21857,
13,
43358,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1554,
21857,
796,
1554,
21857,
1343,
1554,
628,
198,
4480,
1280,
10786,
10034,
21857,
3256,
705,
39346,
11537,
355,
277,
25,
198,
220,
220,
220,
2298,
293,
13,
39455,
7,
10034,
21857,
11,
277,
8,
198,
198,
4798,
7,
10034,
21857,
8
] | 2.05379 | 409 |
from django.urls import path
from rest_framework.urlpatterns import format_suffix_patterns
from api import views
urlpatterns = [
path('studentdb',views.StudentDbDetail.as_view()),
path('add',views.AddStudentAPIView.as_view()),
path('studentdetail/<student_number>',views.GetStudentAPIView.as_view()),
path('studentupdate/<student_number>',views.UpdateStudentAPIView.as_view()),
path('studentdelete/<student_number>',views.ClearStudentAPIView.as_view()),
]
urlpatterns = format_suffix_patterns(urlpatterns)
|
[
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
6738,
1334,
62,
30604,
13,
6371,
33279,
82,
1330,
5794,
62,
37333,
844,
62,
33279,
82,
198,
6738,
40391,
1330,
5009,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
10786,
50139,
9945,
3256,
33571,
13,
38778,
43832,
11242,
603,
13,
292,
62,
1177,
3419,
828,
198,
220,
220,
220,
3108,
10786,
2860,
3256,
33571,
13,
4550,
38778,
2969,
3824,
769,
13,
292,
62,
1177,
3419,
828,
198,
220,
220,
220,
3108,
10786,
50139,
49170,
14,
27,
50139,
62,
17618,
29,
3256,
33571,
13,
3855,
38778,
2969,
3824,
769,
13,
292,
62,
1177,
3419,
828,
198,
220,
220,
220,
3108,
10786,
50139,
19119,
14,
27,
50139,
62,
17618,
29,
3256,
33571,
13,
10260,
38778,
2969,
3824,
769,
13,
292,
62,
1177,
3419,
828,
198,
220,
220,
220,
3108,
10786,
50139,
33678,
14,
27,
50139,
62,
17618,
29,
3256,
33571,
13,
19856,
38778,
2969,
3824,
769,
13,
292,
62,
1177,
3419,
828,
198,
60,
198,
198,
6371,
33279,
82,
796,
5794,
62,
37333,
844,
62,
33279,
82,
7,
6371,
33279,
82,
8,
198
] | 2.869565 | 184 |
# Generated by Django 3.1.2 on 2020-12-18 03:43
from django.db import migrations, models
|
[
2,
2980,
515,
416,
37770,
513,
13,
16,
13,
17,
319,
12131,
12,
1065,
12,
1507,
7643,
25,
3559,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
import logging
import pandas as pd
from library.file_utils import file_md5sum
|
[
11748,
18931,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
6738,
5888,
13,
7753,
62,
26791,
1330,
2393,
62,
9132,
20,
16345,
628
] | 3.24 | 25 |
import hashlib
import uuid
import appserversdao
import constants
from pymongo import MongoClient
mongo = MongoClient(constants.MONGO_URI)
mongodb = mongo[constants.MONGO_DATABASE]
mongocollection = mongodb[constants.MONGO_USERS_COLLECTION]
users = list()
|
[
11748,
12234,
8019,
198,
11748,
334,
27112,
198,
11748,
598,
2655,
690,
67,
5488,
198,
11748,
38491,
198,
6738,
279,
4948,
25162,
1330,
42591,
11792,
198,
198,
76,
25162,
796,
42591,
11792,
7,
9979,
1187,
13,
27857,
11230,
62,
47269,
8,
198,
31059,
375,
65,
796,
285,
25162,
58,
9979,
1187,
13,
27857,
11230,
62,
35,
1404,
6242,
11159,
60,
198,
31059,
4668,
1564,
796,
285,
506,
375,
65,
58,
9979,
1187,
13,
27857,
11230,
62,
2937,
4877,
62,
25154,
16779,
2849,
60,
198,
198,
18417,
796,
1351,
3419,
628,
628,
628
] | 2.847826 | 92 |
import pytest
import joblib
from pathlib import Path
@pytest.fixture(scope='session')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='session')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='session')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
@pytest.fixture(scope='module')
|
[
198,
11748,
12972,
9288,
198,
11748,
1693,
8019,
198,
6738,
3108,
8019,
1330,
10644,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
29891,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
29891,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
29891,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
21412,
11537
] | 2.708134 | 209 |
import sys, os
# sys.path.append(os.path.join(os.path.dirname(__file__)) #TODO: Is this a good idea? Dunno! It works!
# print(os.path.join(os.path.dirname(__file__)))
import argparse
import markov_pilot.environment.properties as prp
from markov_pilot.environment.environment import NoFGJsbSimEnv_multi, JsbSimEnv_multi
from markov_pilot.wrappers.episodePlotterWrapper import EpisodePlotterWrapper_multi
from markov_pilot.wrappers.varySetpointsWrapper import VarySetpointsWrapper
from markov_pilot.tasks.tasks import SingleChannel_FlightTask, SingleChannel_MinimumProps_Task
from reward_funcs import _make_base_reward_components, make_angular_integral_reward_components, make_sideslip_angle_reward_components
from markov_pilot.agents.AgentTrainer import DDPG_AgentTrainer, PID_AgentTrainer, PidParameters, MADDPG_AgentTrainer
from markov_pilot.agents.agent_container import AgentContainer, AgentSpec
from markov_pilot.agents.train import perform_training
from markov_pilot.helper.lab_journal import LabJournal
from markov_pilot.helper.load_store import restore_agent_container_from_journal, restore_env_from_journal, save_test_run
from markov_pilot.testbed.evaluate_training import evaluate_training
## define the initial setpoints
target_path_angle_gamma_deg = -6.5
target_kias = 92
target_roll_angle_phi_deg = -15
target_sideslip_angle_beta_deg = 0
if __name__ == '__main__':
arglist = parse_args()
lab_journal = LabJournal(arglist.base_dir, arglist)
# # uncomment the following lines when trying to restore from disk
# restore_lines = [3463, 3488, 3489]
# testing_env = restore_env_from_journal(lab_journal, restore_lines[0])
# # if needed, change to FlightGear enabled environment
# # testing_env = restore_env_from_journal(lab_journal, restore_lines[0], target_environment='FG')
# #alternatively, use setup_env() to create a new testin_env
# # testing_env = setup_env(arglist)
# # if needed, apply VarySetpointsWrapper to see wild action:
# # testing_env = VarySetpointsWrapper(testing_env, prp.roll_deg, (-30, 30), (10, 120), (5, 30), (0.05, 0.1))
# # testing_env = VarySetpointsWrapper(testing_env, prp.flight_path_deg, (-9, -5.5), (10, 120), (5, 30), (0.05, 0.1))
# agent_container = restore_agent_container_from_journal(lab_journal, restore_lines)
# # normally, we don't save the test runs restored from disk
# # save_test_run(testing_env, agent_container, lab_journal, arglist) #use the testing_env here to have the save_path available in the evaluation
# evaluate_training(agent_container, testing_env, lab_journal=lab_journal) #run the standardized test on the test_env
# # if FligthGear rendering is desired, use this alternative
# # evaluate_training(agent_container, testing_env, lab_journal=None, render_mode = 'flightgear') #run the standardized test on the test_env
# # when restoring form disk, exit now.
# exit(0)
training_env = setup_env(arglist)
testing_env = setup_env(arglist)
#apply Varyetpoints to the training to increase the variance of training data
training_env = VarySetpointsWrapper(training_env, prp.roll_deg, (-30, 30), (10, 30), (5, 30), (0.05, 0.5))
training_env = VarySetpointsWrapper(training_env, prp.flight_path_deg, (-10, -5.5), (10, 45), (5, 30), (0.05, 0.5))
training_env = VarySetpointsWrapper(training_env, prp.sideslip_deg, (-2, 2), (10, 45), (5, 30), (0.05, 0.5))
agent_container = setup_container(training_env.task_list, arglist)
save_test_run(testing_env, agent_container, lab_journal, arglist) #use the testing_env here to have the save_path available in the evaluation
perform_training(training_env, testing_env, agent_container, lab_journal, arglist)
training_env.close()
testing_env.close()
|
[
11748,
25064,
11,
28686,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2,
25064,
13,
6978,
13,
33295,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
4008,
1303,
51,
3727,
46,
25,
1148,
428,
257,
922,
2126,
30,
5648,
3919,
0,
632,
2499,
0,
198,
198,
2,
3601,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
22305,
198,
198,
11748,
1822,
29572,
198,
198,
11748,
1317,
709,
62,
79,
23439,
13,
38986,
13,
48310,
355,
778,
79,
198,
198,
6738,
1317,
709,
62,
79,
23439,
13,
38986,
13,
38986,
1330,
1400,
30386,
41,
36299,
8890,
4834,
85,
62,
41684,
11,
449,
36299,
8890,
4834,
85,
62,
41684,
198,
6738,
1317,
709,
62,
79,
23439,
13,
29988,
11799,
13,
38668,
43328,
353,
36918,
2848,
1330,
7922,
43328,
353,
36918,
2848,
62,
41684,
198,
6738,
1317,
709,
62,
79,
23439,
13,
29988,
11799,
13,
85,
560,
7248,
13033,
36918,
2848,
1330,
569,
560,
7248,
13033,
36918,
2848,
198,
198,
6738,
1317,
709,
62,
79,
23439,
13,
83,
6791,
13,
83,
6791,
1330,
14206,
29239,
62,
43069,
25714,
11,
14206,
29239,
62,
44046,
2964,
862,
62,
25714,
198,
198,
6738,
6721,
62,
12543,
6359,
1330,
4808,
15883,
62,
8692,
62,
260,
904,
62,
5589,
3906,
11,
787,
62,
21413,
62,
18908,
1373,
62,
260,
904,
62,
5589,
3906,
11,
787,
62,
82,
1460,
40712,
62,
9248,
62,
260,
904,
62,
5589,
3906,
198,
198,
6738,
1317,
709,
62,
79,
23439,
13,
49638,
13,
36772,
2898,
10613,
1330,
360,
6322,
38,
62,
36772,
2898,
10613,
11,
37022,
62,
36772,
2898,
10613,
11,
350,
312,
48944,
11,
45878,
6322,
38,
62,
36772,
2898,
10613,
198,
6738,
1317,
709,
62,
79,
23439,
13,
49638,
13,
25781,
62,
34924,
1330,
15906,
29869,
11,
15906,
22882,
198,
6738,
1317,
709,
62,
79,
23439,
13,
49638,
13,
27432,
1330,
1620,
62,
34409,
198,
198,
6738,
1317,
709,
62,
79,
23439,
13,
2978,
525,
13,
23912,
62,
24891,
1330,
3498,
25296,
198,
6738,
1317,
709,
62,
79,
23439,
13,
2978,
525,
13,
2220,
62,
8095,
1330,
11169,
62,
25781,
62,
34924,
62,
6738,
62,
24891,
11,
11169,
62,
24330,
62,
6738,
62,
24891,
11,
3613,
62,
9288,
62,
5143,
198,
198,
6738,
1317,
709,
62,
79,
23439,
13,
9288,
3077,
13,
49786,
62,
34409,
1330,
13446,
62,
34409,
198,
198,
2235,
8160,
262,
4238,
900,
13033,
198,
16793,
62,
6978,
62,
9248,
62,
28483,
2611,
62,
13500,
796,
532,
21,
13,
20,
198,
16793,
62,
4106,
292,
796,
10190,
198,
16793,
62,
2487,
62,
9248,
62,
34846,
62,
13500,
220,
220,
796,
532,
1314,
198,
16793,
62,
82,
1460,
40712,
62,
9248,
62,
31361,
62,
13500,
796,
657,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
220,
220,
220,
1822,
4868,
796,
21136,
62,
22046,
3419,
628,
220,
220,
220,
2248,
62,
24891,
796,
3498,
25296,
7,
853,
4868,
13,
8692,
62,
15908,
11,
1822,
4868,
8,
628,
220,
220,
220,
1303,
1303,
8820,
434,
262,
1708,
3951,
618,
2111,
284,
11169,
422,
11898,
198,
220,
220,
220,
1303,
11169,
62,
6615,
796,
685,
2682,
5066,
11,
513,
33646,
11,
513,
35890,
60,
628,
220,
220,
220,
1303,
4856,
62,
24330,
796,
11169,
62,
24330,
62,
6738,
62,
24891,
7,
23912,
62,
24891,
11,
11169,
62,
6615,
58,
15,
12962,
198,
220,
220,
220,
1303,
1303,
611,
2622,
11,
1487,
284,
13365,
38141,
9343,
2858,
198,
220,
220,
220,
1303,
1303,
4856,
62,
24330,
796,
11169,
62,
24330,
62,
6738,
62,
24891,
7,
23912,
62,
24891,
11,
11169,
62,
6615,
58,
15,
4357,
2496,
62,
38986,
11639,
30386,
11537,
628,
220,
220,
220,
1303,
1303,
33645,
9404,
11,
779,
9058,
62,
24330,
3419,
284,
2251,
257,
649,
1332,
259,
62,
24330,
198,
220,
220,
220,
1303,
1303,
4856,
62,
24330,
796,
9058,
62,
24330,
7,
853,
4868,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1303,
611,
2622,
11,
4174,
569,
560,
7248,
13033,
36918,
2848,
284,
766,
4295,
2223,
25,
220,
198,
220,
220,
220,
1303,
1303,
4856,
62,
24330,
796,
569,
560,
7248,
13033,
36918,
2848,
7,
33407,
62,
24330,
11,
778,
79,
13,
2487,
62,
13500,
11,
13841,
1270,
11,
1542,
828,
357,
940,
11,
7982,
828,
357,
20,
11,
1542,
828,
357,
15,
13,
2713,
11,
657,
13,
16,
4008,
198,
220,
220,
220,
1303,
1303,
4856,
62,
24330,
796,
569,
560,
7248,
13033,
36918,
2848,
7,
33407,
62,
24330,
11,
778,
79,
13,
22560,
62,
6978,
62,
13500,
11,
13841,
24,
11,
532,
20,
13,
20,
828,
357,
940,
11,
7982,
828,
357,
20,
11,
1542,
828,
357,
15,
13,
2713,
11,
657,
13,
16,
4008,
628,
220,
220,
220,
1303,
5797,
62,
34924,
796,
11169,
62,
25781,
62,
34924,
62,
6738,
62,
24891,
7,
23912,
62,
24891,
11,
11169,
62,
6615,
8,
628,
220,
220,
220,
1303,
1303,
7685,
11,
356,
836,
470,
3613,
262,
1332,
4539,
15032,
422,
11898,
198,
220,
220,
220,
1303,
1303,
3613,
62,
9288,
62,
5143,
7,
33407,
62,
24330,
11,
5797,
62,
34924,
11,
2248,
62,
24891,
11,
1822,
4868,
8,
220,
1303,
1904,
262,
4856,
62,
24330,
994,
284,
423,
262,
3613,
62,
6978,
1695,
287,
262,
12660,
628,
220,
220,
220,
1303,
13446,
62,
34409,
7,
25781,
62,
34924,
11,
4856,
62,
24330,
11,
2248,
62,
24891,
28,
23912,
62,
24891,
8,
220,
220,
220,
1303,
5143,
262,
25713,
1332,
319,
262,
1332,
62,
24330,
628,
220,
220,
220,
1303,
1303,
611,
1610,
328,
400,
38141,
14837,
318,
10348,
11,
779,
428,
5559,
198,
220,
220,
220,
1303,
1303,
13446,
62,
34409,
7,
25781,
62,
34924,
11,
4856,
62,
24330,
11,
2248,
62,
24891,
28,
14202,
11,
8543,
62,
14171,
796,
705,
22560,
31763,
11537,
220,
220,
220,
1303,
5143,
262,
25713,
1332,
319,
262,
1332,
62,
24330,
628,
220,
220,
220,
1303,
1303,
618,
25646,
1296,
11898,
11,
8420,
783,
13,
198,
220,
220,
220,
1303,
8420,
7,
15,
8,
628,
220,
220,
220,
3047,
62,
24330,
796,
9058,
62,
24330,
7,
853,
4868,
8,
198,
220,
220,
220,
4856,
62,
24330,
796,
9058,
62,
24330,
7,
853,
4868,
8,
628,
220,
220,
220,
1303,
39014,
569,
560,
316,
13033,
284,
262,
3047,
284,
2620,
262,
24198,
286,
3047,
1366,
198,
220,
220,
220,
3047,
62,
24330,
796,
569,
560,
7248,
13033,
36918,
2848,
7,
34409,
62,
24330,
11,
778,
79,
13,
2487,
62,
13500,
11,
13841,
1270,
11,
1542,
828,
357,
940,
11,
1542,
828,
357,
20,
11,
1542,
828,
357,
15,
13,
2713,
11,
657,
13,
20,
4008,
198,
220,
220,
220,
3047,
62,
24330,
796,
569,
560,
7248,
13033,
36918,
2848,
7,
34409,
62,
24330,
11,
778,
79,
13,
22560,
62,
6978,
62,
13500,
11,
13841,
940,
11,
532,
20,
13,
20,
828,
357,
940,
11,
4153,
828,
357,
20,
11,
1542,
828,
357,
15,
13,
2713,
11,
657,
13,
20,
4008,
198,
220,
220,
220,
3047,
62,
24330,
796,
569,
560,
7248,
13033,
36918,
2848,
7,
34409,
62,
24330,
11,
778,
79,
13,
82,
1460,
40712,
62,
13500,
11,
13841,
17,
11,
362,
828,
357,
940,
11,
4153,
828,
357,
20,
11,
1542,
828,
357,
15,
13,
2713,
11,
657,
13,
20,
4008,
628,
220,
220,
220,
5797,
62,
34924,
796,
9058,
62,
34924,
7,
34409,
62,
24330,
13,
35943,
62,
4868,
11,
1822,
4868,
8,
628,
220,
220,
220,
3613,
62,
9288,
62,
5143,
7,
33407,
62,
24330,
11,
5797,
62,
34924,
11,
2248,
62,
24891,
11,
1822,
4868,
8,
220,
1303,
1904,
262,
4856,
62,
24330,
994,
284,
423,
262,
3613,
62,
6978,
1695,
287,
262,
12660,
628,
220,
220,
220,
1620,
62,
34409,
7,
34409,
62,
24330,
11,
4856,
62,
24330,
11,
5797,
62,
34924,
11,
2248,
62,
24891,
11,
1822,
4868,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3047,
62,
24330,
13,
19836,
3419,
198,
220,
220,
220,
4856,
62,
24330,
13,
19836,
3419,
628
] | 2.873123 | 1,332 |
from selenium import webdriver
import time
import os
from urllib.parse import urlparse, parse_qs
from pprint import pprint
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# EXECUTABLE PATH FOR PHANTOMJS(HEADLESS BROWSER)
EXE_PHANTOM = os.path.join(BASE_DIR, 'webdrivers/phantomjs')
def get_params(url):
"""Return params from url"""
return parse_qs(urlparse(url).query)
def get_sel(id, hl):
"""Return results using Selenium + PhantomJs"""
url = 'https://play.google.com/store/apps/details?id=' + str(id) + '&hl=' + str(hl)
driver = webdriver.PhantomJS(executable_path=EXE_PHANTOM)
driver.get(url)
path = '/html/body/div[1]/div[4]/c-wiz/div/div[2]/div/div[1]/div/c-wiz[3]/div/div[2]/div/c-wiz/div/span/div/span/div/a'
view = driver.find_element_by_xpath(path)
try:
driver.execute_script("arguments[0].scrollIntoView();", view)
except Exception as e:
# Todo: implement logging functionality
print(e)
try:
driver.execute_script("arguments[0].click()", view)
except Exception as e:
# Todo: implement logging functionality
print(e)
time.sleep(3)
detail_path = '/html/body/div[4]/div/div[2]/content/c-wiz/div'
detail = driver.find_element_by_xpath(detail_path)
blocks = detail.find_elements_by_xpath('.//ul/..')
results = {}
for block in blocks:
line = block.text.split('\n')
results[line[0]] = line[1:]
driver.quit()
return results
if __name__ == '__main__':
import argparse
arg_parser = argparse.ArgumentParser(description="Parse Google Play Store")
arg_parser.add_argument("-id", "--id", required=True, help="Application ID")
arg_parser.add_argument("-ln", "--language", help="Language")
args = vars(arg_parser.parse_args())
try:
ln = args["language"]
except KeyError:
ln = "en"
pprint(get_sel(args["id"], ln))
|
[
6738,
384,
11925,
1505,
1330,
3992,
26230,
198,
11748,
640,
198,
11748,
28686,
198,
6738,
2956,
297,
571,
13,
29572,
1330,
19016,
29572,
11,
21136,
62,
48382,
198,
6738,
279,
4798,
1330,
279,
4798,
198,
198,
33,
11159,
62,
34720,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
198,
198,
2,
7788,
2943,
3843,
17534,
46490,
7473,
9370,
8643,
2662,
20120,
7,
37682,
48481,
11177,
22845,
1137,
8,
198,
6369,
36,
62,
11909,
8643,
2662,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
12384,
36702,
14,
746,
11456,
8457,
11537,
628,
198,
4299,
651,
62,
37266,
7,
6371,
2599,
198,
220,
220,
220,
37227,
13615,
42287,
422,
19016,
37811,
198,
220,
220,
220,
1441,
21136,
62,
48382,
7,
6371,
29572,
7,
6371,
737,
22766,
8,
628,
198,
4299,
651,
62,
741,
7,
312,
11,
289,
75,
2599,
198,
220,
220,
220,
37227,
13615,
2482,
1262,
15300,
47477,
1343,
14407,
49044,
37811,
198,
220,
220,
220,
19016,
796,
705,
5450,
1378,
1759,
13,
13297,
13,
785,
14,
8095,
14,
18211,
14,
36604,
30,
312,
11639,
1343,
965,
7,
312,
8,
1343,
705,
5,
18519,
11639,
1343,
965,
7,
18519,
8,
198,
220,
220,
220,
4639,
796,
3992,
26230,
13,
2725,
11456,
20120,
7,
18558,
18187,
62,
6978,
28,
6369,
36,
62,
11909,
8643,
2662,
8,
198,
220,
220,
220,
4639,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
3108,
796,
31051,
6494,
14,
2618,
14,
7146,
58,
16,
60,
14,
7146,
58,
19,
60,
14,
66,
12,
86,
528,
14,
7146,
14,
7146,
58,
17,
60,
14,
7146,
14,
7146,
58,
16,
60,
14,
7146,
14,
66,
12,
86,
528,
58,
18,
60,
14,
7146,
14,
7146,
58,
17,
60,
14,
7146,
14,
66,
12,
86,
528,
14,
7146,
14,
12626,
14,
7146,
14,
12626,
14,
7146,
14,
64,
6,
198,
220,
220,
220,
1570,
796,
4639,
13,
19796,
62,
30854,
62,
1525,
62,
87,
6978,
7,
6978,
8,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
13,
41049,
62,
12048,
7203,
853,
2886,
58,
15,
4083,
48728,
5317,
78,
7680,
9783,
1600,
1570,
8,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
309,
24313,
25,
3494,
18931,
11244,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
68,
8,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
13,
41049,
62,
12048,
7203,
853,
2886,
58,
15,
4083,
12976,
3419,
1600,
1570,
8,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
309,
24313,
25,
3494,
18931,
11244,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
68,
8,
628,
220,
220,
220,
640,
13,
42832,
7,
18,
8,
198,
220,
220,
220,
3703,
62,
6978,
796,
31051,
6494,
14,
2618,
14,
7146,
58,
19,
60,
14,
7146,
14,
7146,
58,
17,
60,
14,
11299,
14,
66,
12,
86,
528,
14,
7146,
6,
198,
220,
220,
220,
3703,
796,
4639,
13,
19796,
62,
30854,
62,
1525,
62,
87,
6978,
7,
49170,
62,
6978,
8,
198,
220,
220,
220,
7021,
796,
3703,
13,
19796,
62,
68,
3639,
62,
1525,
62,
87,
6978,
7,
4458,
1003,
377,
14,
492,
11537,
628,
220,
220,
220,
2482,
796,
23884,
198,
220,
220,
220,
329,
2512,
287,
7021,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
2512,
13,
5239,
13,
35312,
10786,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2482,
58,
1370,
58,
15,
11907,
796,
1627,
58,
16,
47715,
628,
220,
220,
220,
4639,
13,
47391,
3419,
198,
220,
220,
220,
1441,
2482,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1330,
1822,
29572,
628,
220,
220,
220,
1822,
62,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
2625,
10044,
325,
3012,
3811,
9363,
4943,
198,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7203,
12,
312,
1600,
366,
438,
312,
1600,
2672,
28,
17821,
11,
1037,
2625,
23416,
4522,
4943,
198,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7203,
12,
18755,
1600,
366,
438,
16129,
1600,
1037,
2625,
32065,
4943,
198,
220,
220,
220,
26498,
796,
410,
945,
7,
853,
62,
48610,
13,
29572,
62,
22046,
28955,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
77,
796,
26498,
14692,
16129,
8973,
198,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
77,
796,
366,
268,
1,
628,
220,
220,
220,
279,
4798,
7,
1136,
62,
741,
7,
22046,
14692,
312,
33116,
300,
77,
4008,
198
] | 2.39625 | 800 |
# LICENSE
#
# _This file is Copyright 2018 by the Image Processing and Analysis Group (BioImage Suite Team). Dept. of Radiology & Biomedical Imaging, Yale School of Medicine._
#
# BioImage Suite Web is licensed under the Apache License, Version 2.0 (the "License");
#
# - you may not use this software except in compliance with the License.
# - You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](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.__
#
# ENDLICENSE
import biswebpython.core.bis_basemodule as bis_basemodule
import biswebpython.core.bis_baseutils as bis_baseutils
import biswebpython.core.bis_objects as bis_objects
|
[
2,
38559,
24290,
198,
2,
220,
198,
2,
4808,
1212,
2393,
318,
15069,
2864,
416,
262,
7412,
28403,
290,
14691,
4912,
357,
42787,
5159,
26264,
4816,
737,
28786,
13,
286,
5325,
12371,
1222,
8436,
35914,
48656,
11,
19681,
3961,
286,
11558,
13557,
198,
2,
220,
198,
2,
16024,
5159,
26264,
5313,
318,
11971,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
220,
198,
2,
532,
345,
743,
407,
779,
428,
3788,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
532,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
685,
4023,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
16151,
4023,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
8,
198,
2,
220,
198,
2,
11593,
28042,
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,
834,
198,
2,
220,
198,
2,
23578,
43,
2149,
24290,
198,
198,
11748,
47457,
12384,
29412,
13,
7295,
13,
41907,
62,
12093,
368,
375,
2261,
355,
47457,
62,
12093,
368,
375,
2261,
198,
11748,
47457,
12384,
29412,
13,
7295,
13,
41907,
62,
8692,
26791,
355,
47457,
62,
8692,
26791,
198,
11748,
47457,
12384,
29412,
13,
7295,
13,
41907,
62,
48205,
355,
47457,
62,
48205,
628,
220,
220,
220,
220,
628,
628
] | 3.530249 | 281 |
#!/usr/bin/env python
from yaml import load, dump
from collections import OrderedDict
import time, os
from visualize import visualize
DIV = '\n'+ '='*64 + '\n'
start_time = time.time()
# Iterate over all conversation threads
# Generates insight data on a single conversation thread
# Execute one at a time in order
#summarize()
#conversation_separator()
insight()
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
6738,
331,
43695,
1330,
3440,
11,
10285,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
11748,
640,
11,
28686,
198,
198,
6738,
38350,
1330,
38350,
198,
198,
33569,
796,
705,
59,
77,
6,
10,
705,
11639,
9,
2414,
1343,
705,
59,
77,
6,
198,
198,
9688,
62,
2435,
796,
640,
13,
2435,
3419,
198,
197,
220,
198,
2,
40806,
378,
625,
477,
5273,
14390,
198,
198,
2,
2980,
689,
11281,
1366,
319,
257,
2060,
5273,
4704,
628,
198,
2,
8393,
1133,
530,
379,
257,
640,
287,
1502,
198,
198,
2,
16345,
3876,
1096,
3419,
198,
2,
1102,
690,
341,
62,
25512,
1352,
3419,
198,
1040,
432,
3419,
198
] | 3.151261 | 119 |
from django.shortcuts import render_to_response
from django.template import RequestContext
from django.core.exceptions import ObjectDoesNotExist
from django.http import HttpResponse, HttpResponseRedirect
from session_csrf import anonymous_csrf
from ..models import Config
from ..forms import SettingsForm
@anonymous_csrf
|
[
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
62,
1462,
62,
26209,
198,
6738,
42625,
14208,
13,
28243,
1330,
19390,
21947,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
9515,
13921,
3673,
3109,
396,
198,
198,
6738,
42625,
14208,
13,
4023,
1330,
367,
29281,
31077,
11,
367,
29281,
31077,
7738,
1060,
198,
6738,
6246,
62,
6359,
41871,
1330,
11614,
62,
6359,
41871,
198,
6738,
11485,
27530,
1330,
17056,
198,
6738,
11485,
23914,
1330,
16163,
8479,
198,
198,
31,
272,
6704,
62,
6359,
41871,
198
] | 3.755814 | 86 |
import logging
import typing
import warnings
from typing import Dict, Text, Any, List, Optional
from abc import ABC
from rasa_sdk import utils
from rasa_sdk.events import SlotSet, EventType
from rasa_sdk.interfaces import Action
logger = logging.getLogger(__name__)
if typing.TYPE_CHECKING: # pragma: no cover
from rasa_sdk import Tracker
from rasa_sdk.executor import CollectingDispatcher
from rasa_sdk.types import DomainDict
# this slot is used to store information needed
# to do the form handling
REQUESTED_SLOT = "requested_slot"
LOOP_INTERRUPTED_KEY = "is_interrupted"
ACTION_VALIDATE_SLOT_MAPPINGS = "action_validate_slot_mappings"
class ValidationAction(Action, ABC):
"""A helper class for slot validations and extractions of custom slots."""
def name(self) -> Text:
"""Unique identifier of this simple action."""
return ACTION_VALIDATE_SLOT_MAPPINGS
async def run(
self,
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> List[EventType]:
"""Runs the custom actions. Please the docstring of the parent class."""
extraction_events = await self.get_extraction_events(
dispatcher, tracker, domain
)
tracker.add_slots(extraction_events)
validation_events = await self._extract_validation_events(
dispatcher, tracker, domain
)
# Validation events include events for extracted slots
return validation_events
async def required_slots(
self,
domain_slots: List[Text],
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> List[Text]:
"""Returns slots which the validation action should fill.
Args:
domain_slots: Names of slots of this form which were mapped in
the domain.
dispatcher: the dispatcher which is used to
send messages back to the user.
tracker: the conversation tracker for the current user.
domain: the bot's domain.
Returns:
A list of slot names.
"""
return domain_slots
async def get_extraction_events(
self,
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> List[EventType]:
"""Extracts custom slots using available `extract_<slot name>` methods.
Uses the information from `self.required_slots` to gather which slots should
be extracted.
Args:
dispatcher: the dispatcher which is used to
send messages back to the user. Use
`dispatcher.utter_message()` for sending messages.
tracker: the state tracker for the current
user. You can access slot values using
`tracker.get_slot(slot_name)`, the most recent user message
is `tracker.latest_message.text` and any other
`rasa_sdk.Tracker` property.
domain: the bot's domain.
Returns:
`SlotSet` for any extracted slots.
"""
custom_slots = {}
slots_to_extract = await self.required_slots(
self.domain_slots(domain), dispatcher, tracker, domain
)
for slot in slots_to_extract:
extraction_output = await self._extract_slot(
slot, dispatcher, tracker, domain
)
custom_slots.update(extraction_output)
# for sequential consistency, also update tracker
# to make changes visible to subsequent extract_{slot_name}
tracker.slots.update(extraction_output)
return [SlotSet(slot, value) for slot, value in custom_slots.items()]
async def get_validation_events(
self,
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> List[EventType]:
"""Validate slots by calling a validation function for each slot.
Args:
dispatcher: the dispatcher which is used to
send messages back to the user.
tracker: the conversation tracker for the current user.
domain: the bot's domain.
Returns:
`SlotSet` events for every validated slot.
"""
slots_to_validate = await self.required_slots(
self.domain_slots(domain), dispatcher, tracker, domain
)
slots: Dict[Text, Any] = tracker.slots_to_validate()
for slot_name, slot_value in list(slots.items()):
if slot_name not in slots_to_validate:
slots.pop(slot_name)
continue
method_name = f"validate_{slot_name.replace('-','_')}"
validate_method = getattr(self, method_name, None)
if not validate_method:
logger.warning(
f"Skipping validation for `{slot_name}`: there is no validation "
f"method specified."
)
continue
validation_output = await utils.call_potential_coroutine(
validate_method(slot_value, dispatcher, tracker, domain)
)
if isinstance(validation_output, dict):
slots.update(validation_output)
# for sequential consistency, also update tracker
# to make changes visible to subsequent validate_{slot_name}
tracker.slots.update(validation_output)
else:
warnings.warn(
f"Cannot validate `{slot_name}`: make sure the validation method "
f"returns the correct output."
)
return [SlotSet(slot, value) for slot, value in slots.items()]
@staticmethod
def global_slots(self, domain: "DomainDict") -> List[Text]:
"""Returns all slots that contain no form condition."""
all_slots = domain.get("slots", {})
return [k for k, v in all_slots.items() if not self._is_mapped_to_form(v)]
def domain_slots(self, domain: "DomainDict") -> List[Text]:
"""Returns slots which were mapped in the domain.
Args:
domain: The current domain.
Returns:
Slot names mapped in the domain which do not include
a mapping with an active loop condition.
"""
return self.global_slots(domain)
class FormValidationAction(ValidationAction, ABC):
"""A helper class for slot validations and extractions of custom slots in forms."""
def name(self) -> Text:
"""Unique identifier of this simple action."""
raise NotImplementedError("An action must implement a name")
def form_name(self) -> Text:
"""Returns the form's name."""
return self.name().replace("validate_", "", 1)
def domain_slots(self, domain: "DomainDict") -> List[Text]:
"""Returns slots which were mapped in the domain.
Args:
domain: The current domain.
Returns:
Slot names which should be filled by the form. By default it
returns the slot names which are listed for this form in the domain
and use predefined mappings.
"""
form = domain.get("forms", {}).get(self.form_name(), {})
if "required_slots" in form:
return form.get("required_slots", [])
return []
async def next_requested_slot(
self,
dispatcher: "CollectingDispatcher",
tracker: "Tracker",
domain: "DomainDict",
) -> Optional[EventType]:
"""Sets the next slot which should be requested.
Skips setting the next requested slot in case `missing_slots` was not
overridden.
Args:
dispatcher: the dispatcher which is used to
send messages back to the user.
tracker: the conversation tracker for the current user.
domain: the bot's domain.
Returns:
`None` in case `missing_slots` was not overridden and returns `None`.
Otherwise returns a `SlotSet` event for the next slot to be requested.
If the `SlotSet` event sets `requested_slot` to `None`, the form will be
deactivated.
"""
required_slots = await self.required_slots(
self.domain_slots(domain), dispatcher, tracker, domain
)
if required_slots == self.domain_slots(domain):
# If users didn't override `required_slots` then we'll let the `FormAction`
# within Rasa Open Source request the next slot.
return None
missing_slots = (
slot_name
for slot_name in required_slots
if tracker.slots.get(slot_name) is None
)
return SlotSet(REQUESTED_SLOT, next(missing_slots, None))
|
[
11748,
18931,
198,
11748,
19720,
198,
11748,
14601,
198,
6738,
19720,
1330,
360,
713,
11,
8255,
11,
4377,
11,
7343,
11,
32233,
198,
198,
6738,
450,
66,
1330,
9738,
198,
6738,
374,
15462,
62,
21282,
74,
1330,
3384,
4487,
198,
6738,
374,
15462,
62,
21282,
74,
13,
31534,
1330,
32026,
7248,
11,
8558,
6030,
198,
6738,
374,
15462,
62,
21282,
74,
13,
3849,
32186,
1330,
7561,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
361,
19720,
13,
25216,
62,
50084,
2751,
25,
220,
1303,
23864,
2611,
25,
645,
3002,
198,
220,
220,
220,
422,
374,
15462,
62,
21282,
74,
1330,
26885,
198,
220,
220,
220,
422,
374,
15462,
62,
21282,
74,
13,
18558,
38409,
1330,
9745,
278,
7279,
8071,
2044,
198,
220,
220,
220,
422,
374,
15462,
62,
21282,
74,
13,
19199,
1330,
20021,
35,
713,
198,
198,
2,
428,
10852,
318,
973,
284,
3650,
1321,
2622,
198,
2,
284,
466,
262,
1296,
9041,
198,
2200,
35780,
1961,
62,
8634,
2394,
796,
366,
25927,
276,
62,
43384,
1,
198,
198,
21982,
3185,
62,
41358,
49,
8577,
36493,
62,
20373,
796,
366,
271,
62,
46037,
1,
198,
198,
44710,
62,
23428,
2389,
6158,
62,
8634,
2394,
62,
44,
24805,
20754,
796,
366,
2673,
62,
12102,
378,
62,
43384,
62,
76,
39242,
1,
628,
198,
4871,
3254,
24765,
12502,
7,
12502,
11,
9738,
2599,
198,
220,
220,
220,
37227,
32,
31904,
1398,
329,
10852,
4938,
602,
290,
7925,
507,
286,
2183,
17314,
526,
15931,
628,
220,
220,
220,
825,
1438,
7,
944,
8,
4613,
8255,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
40257,
27421,
286,
428,
2829,
2223,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
40282,
62,
23428,
2389,
6158,
62,
8634,
2394,
62,
44,
24805,
20754,
628,
220,
220,
220,
30351,
825,
1057,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
366,
31337,
278,
7279,
8071,
2044,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
366,
35694,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
366,
43961,
35,
713,
1600,
198,
220,
220,
220,
1267,
4613,
7343,
58,
9237,
6030,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10987,
82,
262,
2183,
4028,
13,
4222,
262,
2205,
8841,
286,
262,
2560,
1398,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
22236,
62,
31534,
796,
25507,
2116,
13,
1136,
62,
2302,
7861,
62,
31534,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
11,
30013,
11,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
13,
2860,
62,
6649,
1747,
7,
2302,
7861,
62,
31534,
8,
628,
220,
220,
220,
220,
220,
220,
220,
21201,
62,
31534,
796,
25507,
2116,
13557,
2302,
974,
62,
12102,
341,
62,
31534,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
11,
30013,
11,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3254,
24765,
2995,
2291,
2995,
329,
21242,
17314,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
21201,
62,
31534,
628,
220,
220,
220,
30351,
825,
2672,
62,
6649,
1747,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
6649,
1747,
25,
7343,
58,
8206,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
366,
31337,
278,
7279,
8071,
2044,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
366,
35694,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
366,
43961,
35,
713,
1600,
198,
220,
220,
220,
1267,
4613,
7343,
58,
8206,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
17314,
543,
262,
21201,
2223,
815,
6070,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
6649,
1747,
25,
28531,
286,
17314,
286,
428,
1296,
543,
547,
27661,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
7386,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
262,
49952,
543,
318,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
6218,
736,
284,
262,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
262,
5273,
30013,
329,
262,
1459,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
262,
10214,
338,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
286,
10852,
3891,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7386,
62,
6649,
1747,
628,
220,
220,
220,
30351,
825,
651,
62,
2302,
7861,
62,
31534,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
366,
31337,
278,
7279,
8071,
2044,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
366,
35694,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
366,
43961,
35,
713,
1600,
198,
220,
220,
220,
1267,
4613,
7343,
58,
9237,
6030,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11627,
974,
82,
2183,
17314,
1262,
1695,
4600,
2302,
974,
62,
27,
43384,
1438,
29,
63,
5050,
13,
628,
220,
220,
220,
220,
220,
220,
220,
36965,
262,
1321,
422,
4600,
944,
13,
35827,
62,
6649,
1747,
63,
284,
6431,
543,
17314,
815,
198,
220,
220,
220,
220,
220,
220,
220,
307,
21242,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
262,
49952,
543,
318,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
6218,
736,
284,
262,
2836,
13,
5765,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
6381,
8071,
2044,
13,
10381,
62,
20500,
3419,
63,
329,
7216,
6218,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
262,
1181,
30013,
329,
262,
1459,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
13,
921,
460,
1895,
10852,
3815,
1262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
2213,
10735,
13,
1136,
62,
43384,
7,
43384,
62,
3672,
8,
47671,
262,
749,
2274,
2836,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
4600,
2213,
10735,
13,
42861,
62,
20500,
13,
5239,
63,
290,
597,
584,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
8847,
64,
62,
21282,
74,
13,
35694,
63,
3119,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
262,
10214,
338,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
38963,
7248,
63,
329,
597,
21242,
17314,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2183,
62,
6649,
1747,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
17314,
62,
1462,
62,
2302,
974,
796,
25507,
2116,
13,
35827,
62,
6649,
1747,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
6649,
1747,
7,
27830,
828,
49952,
11,
30013,
11,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
329,
10852,
287,
17314,
62,
1462,
62,
2302,
974,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22236,
62,
22915,
796,
25507,
2116,
13557,
2302,
974,
62,
43384,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10852,
11,
49952,
11,
30013,
11,
7386,
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,
2183,
62,
6649,
1747,
13,
19119,
7,
2302,
7861,
62,
22915,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
329,
35582,
15794,
11,
635,
4296,
30013,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
787,
2458,
7424,
284,
8840,
7925,
23330,
43384,
62,
3672,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
13,
6649,
1747,
13,
19119,
7,
2302,
7861,
62,
22915,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
38963,
7248,
7,
43384,
11,
1988,
8,
329,
10852,
11,
1988,
287,
2183,
62,
6649,
1747,
13,
23814,
3419,
60,
628,
220,
220,
220,
30351,
825,
651,
62,
12102,
341,
62,
31534,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
366,
31337,
278,
7279,
8071,
2044,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
366,
35694,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
366,
43961,
35,
713,
1600,
198,
220,
220,
220,
1267,
4613,
7343,
58,
9237,
6030,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7762,
20540,
17314,
416,
4585,
257,
21201,
2163,
329,
1123,
10852,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
262,
49952,
543,
318,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
6218,
736,
284,
262,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
262,
5273,
30013,
329,
262,
1459,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
262,
10214,
338,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
38963,
7248,
63,
2995,
329,
790,
31031,
10852,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
17314,
62,
1462,
62,
12102,
378,
796,
25507,
2116,
13,
35827,
62,
6649,
1747,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
6649,
1747,
7,
27830,
828,
49952,
11,
30013,
11,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
17314,
25,
360,
713,
58,
8206,
11,
4377,
60,
796,
30013,
13,
6649,
1747,
62,
1462,
62,
12102,
378,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
329,
10852,
62,
3672,
11,
10852,
62,
8367,
287,
1351,
7,
6649,
1747,
13,
23814,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10852,
62,
3672,
407,
287,
17314,
62,
1462,
62,
12102,
378,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17314,
13,
12924,
7,
43384,
62,
3672,
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,
220,
220,
220,
220,
2446,
62,
3672,
796,
277,
1,
12102,
378,
23330,
43384,
62,
3672,
13,
33491,
10786,
12,
41707,
62,
11537,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
796,
651,
35226,
7,
944,
11,
2446,
62,
3672,
11,
6045,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
26571,
62,
24396,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
43917,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
50,
4106,
2105,
21201,
329,
4600,
90,
43384,
62,
3672,
92,
63,
25,
612,
318,
645,
21201,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
24396,
7368,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
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,
220,
220,
220,
220,
21201,
62,
22915,
796,
25507,
3384,
4487,
13,
13345,
62,
13059,
1843,
62,
10215,
28399,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
24396,
7,
43384,
62,
8367,
11,
49952,
11,
30013,
11,
7386,
8,
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,
611,
318,
39098,
7,
12102,
341,
62,
22915,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17314,
13,
19119,
7,
12102,
341,
62,
22915,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
329,
35582,
15794,
11,
635,
4296,
30013,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
787,
2458,
7424,
284,
8840,
26571,
23330,
43384,
62,
3672,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
13,
6649,
1747,
13,
19119,
7,
12102,
341,
62,
22915,
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,
14601,
13,
40539,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
34,
34574,
26571,
4600,
90,
43384,
62,
3672,
92,
63,
25,
787,
1654,
262,
21201,
2446,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
7783,
82,
262,
3376,
5072,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
38963,
7248,
7,
43384,
11,
1988,
8,
329,
10852,
11,
1988,
287,
17314,
13,
23814,
3419,
60,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
825,
3298,
62,
6649,
1747,
7,
944,
11,
7386,
25,
366,
43961,
35,
713,
4943,
4613,
7343,
58,
8206,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
477,
17314,
326,
3994,
645,
1296,
4006,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
6649,
1747,
796,
7386,
13,
1136,
7203,
6649,
1747,
1600,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
74,
329,
479,
11,
410,
287,
477,
62,
6649,
1747,
13,
23814,
3419,
611,
407,
2116,
13557,
271,
62,
76,
6320,
62,
1462,
62,
687,
7,
85,
15437,
628,
220,
220,
220,
825,
7386,
62,
6649,
1747,
7,
944,
11,
7386,
25,
366,
43961,
35,
713,
4943,
4613,
7343,
58,
8206,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
17314,
543,
547,
27661,
287,
262,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
383,
1459,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32026,
3891,
27661,
287,
262,
7386,
543,
466,
407,
2291,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
16855,
351,
281,
4075,
9052,
4006,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
20541,
62,
6649,
1747,
7,
27830,
8,
628,
198,
4871,
5178,
7762,
24765,
12502,
7,
7762,
24765,
12502,
11,
9738,
2599,
198,
220,
220,
220,
37227,
32,
31904,
1398,
329,
10852,
4938,
602,
290,
7925,
507,
286,
2183,
17314,
287,
5107,
526,
15931,
628,
220,
220,
220,
825,
1438,
7,
944,
8,
4613,
8255,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
40257,
27421,
286,
428,
2829,
2223,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
2025,
2223,
1276,
3494,
257,
1438,
4943,
628,
220,
220,
220,
825,
1296,
62,
3672,
7,
944,
8,
4613,
8255,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
1296,
338,
1438,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
3672,
22446,
33491,
7203,
12102,
378,
62,
1600,
366,
1600,
352,
8,
628,
220,
220,
220,
825,
7386,
62,
6649,
1747,
7,
944,
11,
7386,
25,
366,
43961,
35,
713,
4943,
4613,
7343,
58,
8206,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
17314,
543,
547,
27661,
287,
262,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
383,
1459,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32026,
3891,
543,
815,
307,
5901,
416,
262,
1296,
13,
2750,
4277,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5860,
262,
10852,
3891,
543,
389,
5610,
329,
428,
1296,
287,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
779,
2747,
18156,
285,
39242,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1296,
796,
7386,
13,
1136,
7203,
23914,
1600,
23884,
737,
1136,
7,
944,
13,
687,
62,
3672,
22784,
23884,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
35827,
62,
6649,
1747,
1,
287,
1296,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1296,
13,
1136,
7203,
35827,
62,
6649,
1747,
1600,
685,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
17635,
628,
220,
220,
220,
30351,
825,
1306,
62,
25927,
276,
62,
43384,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
366,
31337,
278,
7279,
8071,
2044,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
366,
35694,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
366,
43961,
35,
713,
1600,
198,
220,
220,
220,
1267,
4613,
32233,
58,
9237,
6030,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
1306,
10852,
543,
815,
307,
9167,
13,
628,
220,
220,
220,
220,
220,
220,
220,
3661,
2419,
4634,
262,
1306,
9167,
10852,
287,
1339,
4600,
45688,
62,
6649,
1747,
63,
373,
407,
198,
220,
220,
220,
220,
220,
220,
220,
23170,
4651,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49952,
25,
262,
49952,
543,
318,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3758,
6218,
736,
284,
262,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30013,
25,
262,
5273,
30013,
329,
262,
1459,
2836,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
25,
262,
10214,
338,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4600,
14202,
63,
287,
1339,
4600,
45688,
62,
6649,
1747,
63,
373,
407,
23170,
4651,
290,
5860,
4600,
14202,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15323,
5860,
257,
4600,
38963,
7248,
63,
1785,
329,
262,
1306,
10852,
284,
307,
9167,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
262,
4600,
38963,
7248,
63,
1785,
5621,
4600,
25927,
276,
62,
43384,
63,
284,
4600,
14202,
47671,
262,
1296,
481,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
390,
33106,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
62,
6649,
1747,
796,
25507,
2116,
13,
35827,
62,
6649,
1747,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
6649,
1747,
7,
27830,
828,
49952,
11,
30013,
11,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2672,
62,
6649,
1747,
6624,
2116,
13,
27830,
62,
6649,
1747,
7,
27830,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
2985,
1422,
470,
20957,
4600,
35827,
62,
6649,
1747,
63,
788,
356,
1183,
1309,
262,
4600,
8479,
12502,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1626,
371,
15462,
4946,
8090,
2581,
262,
1306,
10852,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
4814,
62,
6649,
1747,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10852,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
10852,
62,
3672,
287,
2672,
62,
6649,
1747,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
30013,
13,
6649,
1747,
13,
1136,
7,
43384,
62,
3672,
8,
318,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
32026,
7248,
7,
2200,
35780,
1961,
62,
8634,
2394,
11,
1306,
7,
45688,
62,
6649,
1747,
11,
6045,
4008,
198
] | 2.37763 | 3,755 |
import cv2
import numpy as np
from utils import detector_utils
import tensorflow as tf
import sys
import cv2
(major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.')
detection_graph, sess = detector_utils.load_inference_graph()
sess = tf.Session(graph=detection_graph)
width = 680
height = 440
flago = False
tracker_types = ['BOOSTING', 'MIL','KCF', 'TLD', 'MEDIANFLOW', 'GOTURN']
tracker_type = tracker_types[2]
if int(minor_ver) < 3:
tracker = cv2.Tracker_create(tracker_type)
else:
if tracker_type == 'BOOSTING':
tracker = cv2.TrackerBoosting_create()
if tracker_type == 'MIL':
tracker = cv2.TrackerMIL_create()
if tracker_type == 'KCF':
tracker = cv2.TrackerKCF_create()
if tracker_type == 'TLD':
tracker = cv2.TrackerTLD_create()
if tracker_type == 'MEDIANFLOW':
tracker = cv2.TrackerMedianFlow_create()
if tracker_type == 'GOTURN':
tracker = cv2.TrackerGOTURN_create()
# Read video
video = cv2.VideoCapture(0)
video.set(cv2.CAP_PROP_FRAME_WIDTH, width)
video.set(cv2.CAP_PROP_FRAME_HEIGHT, height)
# Exit if video not opened.
if not video.isOpened():
print "Could not open video"
sys.exit()
# Read first frame.
# ok, frame = video.read()
# frame = cv2.flip(frame, 1)
# frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# # if not ok:
# print 'Cannot read video file'
# sys.exit()
# Define an initial bounding box
#bbox = boundingbox(frame)
# flago,bbox = boundingbox(frame,width,height,detection_graph,sess,flago)
# cv2.rectangle(frame,bbox[0],bbox[1],(0,255,0),2)
# #cv2.circle(frame,(int(bbox[0][0]-bbox[1][0]),int(bbox[0][1]-bbox[1][1])),10,(255,255,255),-11)
# cv2.imshow("Tracking", frame)
# print bbox
# xtl = bbox[1][0]
# ytl = bbox[1][1]
# w = np.abs([1][0]-bbox[0][0])
# h = np.abs(bbox[1][1]-bbox[0][1])
# print xtl,ytl,w,h
# ok = tracker.init(frame,(xtl,ytl,w,h))
while True:
# Read a new frame
ok, frame = video.read()
frame = cv2.flip(frame, 1)
if ok:
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
if not ok:
break
# Start timer
timer = cv2.getTickCount()
# Update tracker
ok, bbox = tracker.update(frame)
# Calculate Frames per second (FPS)
fps = cv2.getTickFrequency() / (cv2.getTickCount() - timer);
# Draw bounding box
if ok:
# Tracking success
p1 = (int(bbox[0]), int(bbox[1]))
p2 = (int(bbox[0] + bbox[2]), int(bbox[1] + bbox[3]))
cv2.rectangle(frame, p1, p2, (255,0,0), 2, 1)
else :
# Tracking failure
#flago = False
cv2.putText(frame, "Tracking failure detected", (100,80), cv2.FONT_HERSHEY_SIMPLEX, 0.75,(0,0,255),2)
flago,bbox = boundingbox(frame,width,height,detection_graph,sess)
if flago:
xtl = int(bbox[1][0])
ytl = int(bbox[1][1])
w = np.abs(int(bbox[1][0])-int(bbox[0][0]))
h = np.abs(int(bbox[1][1])-int(bbox[0][1]))
ok =tracker.init(frame,(xtl,ytl,w,h))
else:
continue
# Display tracker type on frame
cv2.putText(frame, tracker_type + " Tracker", (100,20), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50),2);
# Display FPS on frame
cv2.putText(frame, "FPS : " + str(int(fps)), (100,50), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50), 2);
# Display result
cv2.imshow("Tracking", frame)
# Exit if ESC pressed
k = cv2.waitKey(1) & 0xff
if k == 27 : break
# imgcv = cv2.imread("./sample_img/sample_person.jpg")
# result = tfnet.return_predict(imgcv)
# for i in range(len(result)):
# x,y = result[i]['bottomright']['x'],result[i]['bottomright']['y']
# xw,yh = result[i]['topleft']['x'], result[i]['topleft']['y']
# print (x,y,xw,yh)
# cv2.rectangle(imgcv,(x,y),(xw,yh),(0,255,0),2)
# cv2.imshow('frame',imgcv)
# cv2.waitKey(0)
# print(result)
|
[
11748,
269,
85,
17,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
3384,
4487,
1330,
31029,
62,
26791,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
25064,
198,
11748,
269,
85,
17,
628,
220,
198,
7,
22478,
62,
332,
11,
4159,
62,
332,
11,
850,
1084,
273,
62,
332,
8,
796,
357,
33967,
17,
13,
834,
9641,
834,
737,
35312,
10786,
2637,
8,
198,
15255,
3213,
62,
34960,
11,
264,
408,
796,
31029,
62,
26791,
13,
2220,
62,
259,
4288,
62,
34960,
3419,
198,
82,
408,
796,
48700,
13,
36044,
7,
34960,
28,
15255,
3213,
62,
34960,
8,
198,
10394,
796,
40554,
198,
17015,
796,
33879,
198,
2704,
3839,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2213,
10735,
62,
19199,
796,
37250,
33,
6684,
2257,
2751,
3256,
705,
44,
4146,
41707,
42,
22495,
3256,
705,
51,
11163,
3256,
705,
30733,
16868,
3697,
3913,
3256,
705,
38,
2394,
27064,
20520,
198,
2213,
10735,
62,
4906,
796,
30013,
62,
19199,
58,
17,
60,
198,
220,
198,
361,
493,
7,
1084,
273,
62,
332,
8,
1279,
513,
25,
198,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
62,
17953,
7,
2213,
10735,
62,
4906,
8,
198,
17772,
25,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
33,
6684,
2257,
2751,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
45686,
278,
62,
17953,
3419,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
44,
4146,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
44,
4146,
62,
17953,
3419,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
42,
22495,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
42,
22495,
62,
17953,
3419,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
51,
11163,
10354,
198,
220,
220,
220,
197,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
51,
11163,
62,
17953,
3419,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
30733,
16868,
3697,
3913,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
9921,
666,
37535,
62,
17953,
3419,
198,
220,
220,
220,
611,
30013,
62,
4906,
6624,
705,
38,
2394,
27064,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
30013,
796,
269,
85,
17,
13,
35694,
38,
2394,
27064,
62,
17953,
3419,
198,
220,
198,
2,
4149,
2008,
198,
15588,
796,
269,
85,
17,
13,
10798,
49630,
7,
15,
8,
198,
15588,
13,
2617,
7,
33967,
17,
13,
33177,
62,
4805,
3185,
62,
10913,
10067,
62,
54,
2389,
4221,
11,
9647,
8,
198,
15588,
13,
2617,
7,
33967,
17,
13,
33177,
62,
4805,
3185,
62,
10913,
10067,
62,
13909,
9947,
11,
6001,
8,
628,
220,
198,
2,
29739,
611,
2008,
407,
4721,
13,
198,
361,
407,
2008,
13,
271,
18257,
2945,
33529,
198,
220,
220,
220,
3601,
366,
23722,
407,
1280,
2008,
1,
198,
220,
220,
220,
25064,
13,
37023,
3419,
198,
220,
198,
2,
4149,
717,
5739,
13,
198,
2,
12876,
11,
5739,
796,
2008,
13,
961,
3419,
198,
2,
5739,
796,
269,
85,
17,
13,
2704,
541,
7,
14535,
11,
352,
8,
198,
2,
5739,
796,
269,
85,
17,
13,
33967,
83,
10258,
7,
14535,
11,
269,
85,
17,
13,
46786,
62,
33,
10761,
17,
36982,
8,
198,
2,
1303,
611,
407,
12876,
25,
198,
2,
220,
220,
220,
220,
3601,
705,
34,
34574,
1100,
2008,
2393,
6,
198,
2,
220,
220,
220,
220,
25064,
13,
37023,
3419,
198,
220,
220,
220,
220,
220,
198,
2,
2896,
500,
281,
4238,
5421,
278,
3091,
198,
2,
65,
3524,
796,
5421,
278,
3524,
7,
14535,
8,
198,
2,
781,
3839,
11,
65,
3524,
796,
5421,
278,
3524,
7,
14535,
11,
10394,
11,
17015,
11,
15255,
3213,
62,
34960,
11,
82,
408,
11,
2704,
3839,
8,
198,
2,
269,
85,
17,
13,
2554,
9248,
7,
14535,
11,
65,
3524,
58,
15,
4357,
65,
3524,
58,
16,
4357,
7,
15,
11,
13381,
11,
15,
828,
17,
8,
198,
2,
1303,
33967,
17,
13,
45597,
7,
14535,
11,
7,
600,
7,
65,
3524,
58,
15,
7131,
15,
45297,
65,
3524,
58,
16,
7131,
15,
46570,
600,
7,
65,
3524,
58,
15,
7131,
16,
45297,
65,
3524,
58,
16,
7131,
16,
12962,
828,
940,
11,
7,
13381,
11,
13381,
11,
13381,
828,
12,
1157,
8,
198,
2,
269,
85,
17,
13,
320,
12860,
7203,
2898,
5430,
1600,
5739,
8,
198,
198,
2,
3601,
275,
3524,
198,
2,
220,
742,
75,
796,
275,
3524,
58,
16,
7131,
15,
60,
198,
2,
331,
28781,
796,
275,
3524,
58,
16,
7131,
16,
60,
198,
2,
266,
796,
45941,
13,
8937,
26933,
16,
7131,
15,
45297,
65,
3524,
58,
15,
7131,
15,
12962,
198,
2,
289,
796,
45941,
13,
8937,
7,
65,
3524,
58,
16,
7131,
16,
45297,
65,
3524,
58,
15,
7131,
16,
12962,
198,
2,
3601,
220,
742,
75,
11,
20760,
75,
11,
86,
11,
71,
198,
198,
2,
12876,
796,
30013,
13,
15003,
7,
14535,
11,
7,
742,
75,
11,
20760,
75,
11,
86,
11,
71,
4008,
198,
220,
198,
4514,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4149,
257,
649,
5739,
198,
220,
220,
220,
12876,
11,
5739,
796,
2008,
13,
961,
3419,
198,
220,
220,
220,
5739,
796,
269,
85,
17,
13,
2704,
541,
7,
14535,
11,
352,
8,
198,
220,
220,
220,
611,
12876,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5739,
796,
269,
85,
17,
13,
33967,
83,
10258,
7,
14535,
11,
269,
85,
17,
13,
46786,
62,
33,
10761,
17,
36982,
8,
198,
220,
220,
220,
611,
407,
12876,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7253,
19781,
198,
220,
220,
220,
19781,
796,
269,
85,
17,
13,
1136,
51,
624,
12332,
3419,
198,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
30013,
198,
220,
220,
220,
12876,
11,
275,
3524,
796,
30013,
13,
19119,
7,
14535,
8,
198,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
27131,
378,
36291,
583,
1218,
357,
37,
3705,
8,
198,
220,
220,
220,
32977,
796,
269,
85,
17,
13,
1136,
51,
624,
37,
28707,
3419,
1220,
357,
33967,
17,
13,
1136,
51,
624,
12332,
3419,
532,
19781,
1776,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
15315,
5421,
278,
3091,
198,
220,
220,
220,
611,
12876,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
37169,
1943,
198,
220,
220,
220,
220,
220,
220,
220,
279,
16,
796,
357,
600,
7,
65,
3524,
58,
15,
46570,
493,
7,
65,
3524,
58,
16,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
279,
17,
796,
357,
600,
7,
65,
3524,
58,
15,
60,
1343,
275,
3524,
58,
17,
46570,
493,
7,
65,
3524,
58,
16,
60,
1343,
275,
3524,
58,
18,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
2554,
9248,
7,
14535,
11,
279,
16,
11,
279,
17,
11,
357,
13381,
11,
15,
11,
15,
828,
362,
11,
352,
8,
198,
220,
220,
220,
2073,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
37169,
5287,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2704,
3839,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
1996,
8206,
7,
14535,
11,
366,
2898,
5430,
5287,
12326,
1600,
357,
3064,
11,
1795,
828,
269,
85,
17,
13,
37,
35830,
62,
39,
4877,
13909,
56,
62,
48913,
16437,
55,
11,
657,
13,
2425,
11,
7,
15,
11,
15,
11,
13381,
828,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
781,
3839,
11,
65,
3524,
796,
5421,
278,
3524,
7,
14535,
11,
10394,
11,
17015,
11,
15255,
3213,
62,
34960,
11,
82,
408,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
781,
3839,
25,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
742,
75,
796,
493,
7,
65,
3524,
58,
16,
7131,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
28781,
796,
493,
7,
65,
3524,
58,
16,
7131,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
796,
45941,
13,
8937,
7,
600,
7,
65,
3524,
58,
16,
7131,
15,
12962,
12,
600,
7,
65,
3524,
58,
15,
7131,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
796,
45941,
13,
8937,
7,
600,
7,
65,
3524,
58,
16,
7131,
16,
12962,
12,
600,
7,
65,
3524,
58,
15,
7131,
16,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12876,
796,
2213,
10735,
13,
15003,
7,
14535,
11,
7,
742,
75,
11,
20760,
75,
11,
86,
11,
71,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16531,
30013,
2099,
319,
5739,
198,
220,
220,
220,
269,
85,
17,
13,
1996,
8206,
7,
14535,
11,
30013,
62,
4906,
1343,
366,
26885,
1600,
357,
3064,
11,
1238,
828,
269,
85,
17,
13,
37,
35830,
62,
39,
4877,
13909,
56,
62,
48913,
16437,
55,
11,
657,
13,
2425,
11,
357,
1120,
11,
17279,
11,
1120,
828,
17,
1776,
198,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16531,
22082,
319,
5739,
198,
220,
220,
220,
269,
85,
17,
13,
1996,
8206,
7,
14535,
11,
366,
37,
3705,
1058,
366,
1343,
965,
7,
600,
7,
29647,
36911,
357,
3064,
11,
1120,
828,
269,
85,
17,
13,
37,
35830,
62,
39,
4877,
13909,
56,
62,
48913,
16437,
55,
11,
657,
13,
2425,
11,
357,
1120,
11,
17279,
11,
1120,
828,
362,
1776,
198,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16531,
1255,
198,
220,
220,
220,
269,
85,
17,
13,
320,
12860,
7203,
2898,
5430,
1600,
5739,
8,
198,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29739,
611,
40251,
12070,
198,
220,
220,
220,
479,
796,
269,
85,
17,
13,
17077,
9218,
7,
16,
8,
1222,
657,
47596,
198,
220,
220,
220,
611,
479,
6624,
2681,
1058,
2270,
628,
628,
628,
628,
628,
198,
198,
2,
33705,
33967,
796,
269,
85,
17,
13,
320,
961,
7,
1911,
14,
39873,
62,
9600,
14,
39873,
62,
6259,
13,
9479,
4943,
198,
2,
1255,
796,
48700,
3262,
13,
7783,
62,
79,
17407,
7,
9600,
33967,
8,
198,
198,
2,
329,
1312,
287,
2837,
7,
11925,
7,
20274,
8,
2599,
198,
2,
220,
197,
87,
11,
88,
796,
1255,
58,
72,
7131,
6,
22487,
3506,
6,
7131,
6,
87,
6,
4357,
20274,
58,
72,
7131,
6,
22487,
3506,
6,
7131,
6,
88,
20520,
198,
2,
220,
197,
87,
86,
11,
88,
71,
796,
1255,
58,
72,
7131,
6,
83,
643,
701,
6,
7131,
6,
87,
6,
4357,
1255,
58,
72,
7131,
6,
83,
643,
701,
6,
7131,
6,
88,
20520,
198,
2,
220,
197,
4798,
357,
87,
11,
88,
11,
87,
86,
11,
88,
71,
8,
198,
2,
220,
197,
33967,
17,
13,
2554,
9248,
7,
9600,
33967,
11,
7,
87,
11,
88,
828,
7,
87,
86,
11,
88,
71,
828,
7,
15,
11,
13381,
11,
15,
828,
17,
8,
198,
2,
269,
85,
17,
13,
320,
12860,
10786,
14535,
3256,
9600,
33967,
8,
198,
2,
269,
85,
17,
13,
17077,
9218,
7,
15,
8,
198,
2,
3601,
7,
20274,
8,
628
] | 2.019939 | 1,956 |
import numpy as np
import pandas as pd
# The file is stored at the following path:
# 'https://media-doselect.s3.amazonaws.com/generic/NMgEjwkAEGGQZBoNYGr9Ld7w0/rating.csv'
df = pd.read_csv('https://media-doselect.s3.amazonaws.com/generic/NMgEjwkAEGGQZBoNYGr9Ld7w0/rating.csv')
df.set_index(['Office','Department'],inplace=True)
# Provide your answer below
df.sort_index(inplace=True)
print(df.head())
|
[
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
2,
383,
2393,
318,
8574,
379,
262,
1708,
3108,
25,
198,
2,
705,
5450,
1378,
11431,
12,
34436,
801,
13,
82,
18,
13,
33103,
8356,
13,
785,
14,
41357,
14,
32755,
70,
36,
73,
43021,
32,
7156,
38,
48,
57,
16635,
12805,
8642,
24,
43,
67,
22,
86,
15,
14,
8821,
13,
40664,
6,
198,
7568,
796,
279,
67,
13,
961,
62,
40664,
10786,
5450,
1378,
11431,
12,
34436,
801,
13,
82,
18,
13,
33103,
8356,
13,
785,
14,
41357,
14,
32755,
70,
36,
73,
43021,
32,
7156,
38,
48,
57,
16635,
12805,
8642,
24,
43,
67,
22,
86,
15,
14,
8821,
13,
40664,
11537,
198,
7568,
13,
2617,
62,
9630,
7,
17816,
27743,
41707,
36261,
6,
4357,
259,
5372,
28,
17821,
8,
198,
2,
44290,
534,
3280,
2174,
198,
7568,
13,
30619,
62,
9630,
7,
259,
5372,
28,
17821,
8,
198,
4798,
7,
7568,
13,
2256,
28955,
198
] | 2.466258 | 163 |
#!/usr/bin/env python
# Alert state used for tests.
from __future__ import absolute_import
from __future__ import print_function
import json
import TestRsrcs
class Dashboard(TestRsrcs.Rsrc):
""" A class that encompasses some dashboard data used for tests """
kubeBoxPkiNameMatchString = "SomeNameToBeMachedInKubeBoxPki"
skynetMonitoringNameMatchString = "SomeMatchString"
@staticmethod
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
23276,
1181,
973,
329,
5254,
13,
628,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
198,
11748,
33918,
198,
11748,
6208,
49,
10677,
82,
628,
198,
4871,
16189,
3526,
7,
14402,
49,
10677,
82,
13,
49,
10677,
2599,
198,
220,
220,
220,
37227,
317,
1398,
326,
38932,
617,
30415,
1366,
973,
329,
5254,
37227,
628,
220,
220,
220,
479,
3266,
14253,
47,
4106,
5376,
23850,
10100,
796,
366,
4366,
5376,
2514,
3856,
44,
2317,
818,
42,
3266,
14253,
47,
4106,
1,
198,
220,
220,
220,
1341,
2047,
316,
35479,
278,
5376,
23850,
10100,
796,
366,
4366,
23850,
10100,
1,
628,
220,
220,
220,
2488,
12708,
24396,
198
] | 3.178295 | 129 |
import pathlib
import time
import scipy.misc
from mxnet import nd
import mxnet as mx
import h5py
import numpy as np
from mxnet import gluon
class BernoulliLogLik(gluon.HybridBlock):
"""Calculate log probability of a Bernoulli."""
def hybrid_forward(self, F, x, logits):
"""Bernoulli log prob is
x * log(1 + exp(-z))^(-1) + (1-x) * log(1 + exp(z))^(-1)
= - x * log(1 + exp(z)) + x * log(exp(z)) - log(1 + exp(z)) + x * log(1 + exp(z))
= x * z - log(1 + exp(z))
= x * z - max(0, z) - log(1 + exp(-|z|)
In the last step, observe that softplus(z) ~= z when z large.
When z small, we hit underflow.
"""
return x * logits - F.relu(logits) - F.Activation(-F.abs(logits), 'softrelu')
if __name__ == '__main__':
np.random.seed(24232)
mx.random.seed(2423232)
USE_GPU = False
LATENT_SIZE = 100
BATCH_SIZE = 64
PRINT_EVERY = 1000
MAX_ITERATIONS = 1000000
OUT_DIR = pathlib.Path(pathlib.os.environ['LOG']) / 'debug'
# hdf5 file from:
# https://github.com/altosaar/proximity_vi/blob/master/get_binary_mnist.py
data_path = pathlib.Path(pathlib.os.environ['DAT']) / 'binarized_mnist.hdf5'
f = h5py.File(data_path, 'r')
raw_data = f['train'][:][:]
f.close()
ctx = [mx.gpu(0)] if USE_GPU else [mx.cpu()]
with mx.Context(ctx[0]):
variational = AmortizedGaussianVariational(LATENT_SIZE, BATCH_SIZE)
model = DeepLatentGaussianModel()
elbo = ELBO(model, variational)
variational.hybridize()
model.hybridize()
elbo.hybridize()
variational.initialize(mx.init.Xavier())
model.initialize(mx.init.Xavier())
params = model.collect_params()
params.update(variational.collect_params())
trainer = gluon.Trainer(params, 'rmsprop', {'learning_rate': 0.001})
# , 'centered': True})
step = 0
t0 = time.time()
train_data = get_data()
while step < MAX_ITERATIONS:
if step % (train_data.num_data // BATCH_SIZE) == 0:
train_data = get_data()
data = next(train_data)
with mx.autograd.record():
elbo_batch = elbo(data.data[0])
(-elbo_batch).backward()
if step % PRINT_EVERY == 0:
get_posterior_predictive(data, step)
np_elbo = np.mean(elbo_batch.asnumpy())
t1 = time.time()
speed = (t1 - t0) / PRINT_EVERY
t0 = t1
print(f'Iter {step}\tELBO: {np_elbo:.1f}\tspeed: {speed:.3e} s/iter')
trainer.step(BATCH_SIZE)
step += 1
|
[
11748,
3108,
8019,
198,
11748,
640,
198,
11748,
629,
541,
88,
13,
44374,
198,
6738,
285,
87,
3262,
1330,
299,
67,
198,
11748,
285,
87,
3262,
355,
285,
87,
198,
11748,
289,
20,
9078,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
285,
87,
3262,
1330,
1278,
84,
261,
628,
628,
198,
198,
4871,
6206,
280,
15516,
11187,
43,
1134,
7,
70,
2290,
261,
13,
21217,
10236,
12235,
2599,
198,
220,
37227,
9771,
3129,
378,
2604,
12867,
286,
257,
6206,
280,
15516,
526,
15931,
628,
220,
825,
14554,
62,
11813,
7,
944,
11,
376,
11,
2124,
11,
2604,
896,
2599,
198,
220,
220,
220,
37227,
23927,
280,
15516,
2604,
1861,
318,
198,
220,
220,
220,
2124,
1635,
2604,
7,
16,
1343,
1033,
32590,
89,
4008,
61,
32590,
16,
8,
1343,
357,
16,
12,
87,
8,
1635,
2604,
7,
16,
1343,
1033,
7,
89,
4008,
61,
32590,
16,
8,
198,
220,
220,
220,
220,
220,
796,
532,
2124,
1635,
2604,
7,
16,
1343,
1033,
7,
89,
4008,
1343,
2124,
1635,
2604,
7,
11201,
7,
89,
4008,
532,
2604,
7,
16,
1343,
1033,
7,
89,
4008,
1343,
2124,
1635,
2604,
7,
16,
1343,
1033,
7,
89,
4008,
198,
220,
220,
220,
220,
220,
796,
2124,
1635,
1976,
532,
2604,
7,
16,
1343,
1033,
7,
89,
4008,
198,
220,
220,
220,
220,
220,
796,
2124,
1635,
1976,
532,
3509,
7,
15,
11,
1976,
8,
532,
2604,
7,
16,
1343,
1033,
7,
22831,
89,
91,
8,
198,
220,
220,
220,
554,
262,
938,
2239,
11,
12414,
326,
2705,
9541,
7,
89,
8,
5299,
28,
1976,
618,
1976,
1588,
13,
198,
220,
220,
220,
1649,
1976,
1402,
11,
356,
2277,
739,
11125,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
2124,
1635,
2604,
896,
532,
376,
13,
260,
2290,
7,
6404,
896,
8,
532,
376,
13,
25526,
341,
32590,
37,
13,
8937,
7,
6404,
896,
828,
705,
4215,
260,
2290,
11537,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
45941,
13,
25120,
13,
28826,
7,
1731,
24339,
8,
198,
220,
285,
87,
13,
25120,
13,
28826,
7,
1731,
1954,
24339,
8,
628,
220,
23210,
62,
33346,
796,
10352,
198,
220,
42355,
3525,
62,
33489,
796,
1802,
198,
220,
347,
11417,
62,
33489,
796,
5598,
198,
220,
4810,
12394,
62,
36,
5959,
56,
796,
8576,
198,
220,
25882,
62,
2043,
1137,
18421,
796,
1802,
2388,
198,
220,
16289,
62,
34720,
796,
3108,
8019,
13,
15235,
7,
6978,
8019,
13,
418,
13,
268,
2268,
17816,
25294,
6,
12962,
1220,
705,
24442,
6,
628,
220,
1303,
289,
7568,
20,
2393,
422,
25,
198,
220,
1303,
3740,
1378,
12567,
13,
785,
14,
2501,
8546,
283,
14,
1676,
87,
18853,
62,
8903,
14,
2436,
672,
14,
9866,
14,
1136,
62,
39491,
62,
10295,
396,
13,
9078,
198,
220,
1366,
62,
6978,
796,
3108,
8019,
13,
15235,
7,
6978,
8019,
13,
418,
13,
268,
2268,
17816,
35,
1404,
6,
12962,
1220,
705,
8800,
283,
1143,
62,
10295,
396,
13,
71,
7568,
20,
6,
198,
220,
277,
796,
289,
20,
9078,
13,
8979,
7,
7890,
62,
6978,
11,
705,
81,
11537,
198,
220,
8246,
62,
7890,
796,
277,
17816,
27432,
6,
7131,
25,
7131,
47715,
198,
220,
277,
13,
19836,
3419,
628,
220,
269,
17602,
796,
685,
36802,
13,
46999,
7,
15,
15437,
611,
23210,
62,
33346,
2073,
685,
36802,
13,
36166,
3419,
60,
198,
220,
351,
285,
87,
13,
21947,
7,
49464,
58,
15,
60,
2599,
198,
220,
220,
220,
5553,
864,
796,
1703,
419,
1143,
35389,
31562,
23907,
864,
7,
43,
1404,
3525,
62,
33489,
11,
347,
11417,
62,
33489,
8,
198,
220,
220,
220,
2746,
796,
10766,
24220,
298,
35389,
31562,
17633,
3419,
198,
220,
220,
220,
1288,
2127,
796,
17852,
8202,
7,
19849,
11,
5553,
864,
8,
628,
220,
220,
220,
5553,
864,
13,
12114,
10236,
1096,
3419,
198,
220,
220,
220,
2746,
13,
12114,
10236,
1096,
3419,
198,
220,
220,
220,
1288,
2127,
13,
12114,
10236,
1096,
3419,
628,
220,
220,
220,
5553,
864,
13,
36733,
1096,
7,
36802,
13,
15003,
13,
55,
19492,
28955,
198,
220,
220,
220,
2746,
13,
36733,
1096,
7,
36802,
13,
15003,
13,
55,
19492,
28955,
628,
220,
220,
220,
42287,
796,
2746,
13,
33327,
62,
37266,
3419,
198,
220,
220,
220,
42287,
13,
19119,
7,
25641,
864,
13,
33327,
62,
37266,
28955,
198,
220,
220,
220,
21997,
796,
1278,
84,
261,
13,
2898,
10613,
7,
37266,
11,
705,
81,
907,
22930,
3256,
1391,
6,
40684,
62,
4873,
10354,
657,
13,
8298,
30072,
198,
220,
220,
220,
1303,
837,
705,
38050,
10354,
6407,
30072,
628,
220,
220,
220,
2239,
796,
657,
198,
220,
220,
220,
256,
15,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
4512,
62,
7890,
796,
651,
62,
7890,
3419,
198,
220,
220,
220,
981,
2239,
1279,
25882,
62,
2043,
1137,
18421,
25,
198,
220,
220,
220,
220,
220,
611,
2239,
4064,
357,
27432,
62,
7890,
13,
22510,
62,
7890,
3373,
347,
11417,
62,
33489,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
7890,
796,
651,
62,
7890,
3419,
198,
220,
220,
220,
220,
220,
1366,
796,
1306,
7,
27432,
62,
7890,
8,
198,
220,
220,
220,
220,
220,
351,
285,
87,
13,
2306,
519,
6335,
13,
22105,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
2127,
62,
43501,
796,
1288,
2127,
7,
7890,
13,
7890,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
13841,
417,
2127,
62,
43501,
737,
1891,
904,
3419,
198,
220,
220,
220,
220,
220,
611,
2239,
4064,
4810,
12394,
62,
36,
5959,
56,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
651,
62,
79,
6197,
1504,
62,
79,
17407,
425,
7,
7890,
11,
2239,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45941,
62,
417,
2127,
796,
45941,
13,
32604,
7,
417,
2127,
62,
43501,
13,
292,
77,
32152,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
256,
16,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2866,
796,
357,
83,
16,
532,
256,
15,
8,
1220,
4810,
12394,
62,
36,
5959,
56,
198,
220,
220,
220,
220,
220,
220,
220,
256,
15,
796,
256,
16,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
29993,
1391,
9662,
32239,
83,
3698,
8202,
25,
1391,
37659,
62,
417,
2127,
25,
13,
16,
69,
32239,
912,
39492,
25,
1391,
12287,
25,
13,
18,
68,
92,
264,
14,
2676,
11537,
198,
220,
220,
220,
220,
220,
21997,
13,
9662,
7,
33,
11417,
62,
33489,
8,
198,
220,
220,
220,
220,
220,
2239,
15853,
352,
198
] | 2.216682 | 1,103 |
"""
This module contains machinery to annotate Notes with a "global address", the path of that note in a with respect to
some global root score.
Note: the annotated Notes are defined here with considerable amount of duplication with clef.py, most notably in the
fact that we define a separate subclass for each note class. Also: in the fact that `to_s_expression` is fully
duplicated (but extended with the relevant address information)
For now, this isn't pretty but it works. I'm open to a more elegant/general solution.
"""
from dsn.s_expr.clef import BecomeAtom, SetAtom, BecomeList, Insert, Delete, Extend, Chord, Score as ChordScore
from dsn.s_expr.simple_score import SimpleScore
from dsn.s_expr.construct import play_note
from dsn.s_expr.structure import Atom, List
from utils import pmts
from dsn.s_expr.score import Score
from dsn.s_expr.note_address import NoteAddress, TheChild, InScore, SExprELS18NoteAddress
# ## Classes for GlobNote (which isn't actually a class itself; we simply subclass each note in clef.py separately)
normal_to_glob = {
BecomeAtom: GlobBecomeAtom,
SetAtom: GlobSetAtom,
BecomeList: GlobBecomeList,
Insert: GlobInsert,
Delete: GlobDelete,
Extend: GlobExtend,
Chord: GlobChord,
}
def note_with_global_address(note, at_address):
"""Recursively annotate a note and (all its descendants) with an address (and the relevant sub-addresses). """
if isinstance(note, Chord):
children = [
note_with_global_address(child, at_address.plus(InScore(i))) for
i, child in enumerate(note.score.notes)
]
return GlobChord(at_address, ChordScore(children))
elif isinstance(note, Insert) or isinstance(note, Extend):
child = note_with_global_address(note.child_note, at_address.plus(TheChild()))
return normal_to_glob[type(note)](at_address, note.index, child)
# further instance-offing below is to account for unequal param-counts and param-names; The point is that to
# re-instantiate a Glob* variant, we need to know what params to use.
elif isinstance(note, SetAtom) or isinstance(note, BecomeAtom): # one param, named 'atom'
return normal_to_glob[type(note)](at_address, note.atom)
elif isinstance(note, Delete): # one param, named 'index'
return normal_to_glob[type(note)](at_address, note.index)
return normal_to_glob[type(note)](at_address)
def score_with_global_address(score):
"""
Score => SimpleScore
i.e. turn a score into a score of notes w/ address annotations.
"""
pmts(score, Score)
return SimpleScore([
note_with_global_address(note, NoteAddress((InScore(i),)))
for i, note in enumerate(score.notes())])
def play_simple_score(score):
"""
This is a copy/pasted version of `play_score`, with the following differences:
* It does not rely on or use the memoization framework (we can't, because GlobNotes are not memoizable (yet?))
* The scores that are created in the tree are themselves SimpleScore objects.
"""
pmts(score, SimpleScore)
tree = None # In the beginning, there is nothing, which we model as `None`
for note in score.notes():
tree = play_note(note, tree, ScoreClass=SimpleScore)
return tree
|
[
37811,
198,
1212,
8265,
4909,
20230,
284,
24708,
378,
11822,
351,
257,
366,
20541,
2209,
1600,
262,
3108,
286,
326,
3465,
287,
257,
351,
2461,
284,
198,
11246,
3298,
6808,
4776,
13,
198,
198,
6425,
25,
262,
24708,
515,
11822,
389,
5447,
994,
351,
11091,
2033,
286,
50124,
351,
1190,
69,
13,
9078,
11,
749,
14660,
287,
262,
198,
22584,
326,
356,
8160,
257,
4553,
47611,
329,
1123,
3465,
1398,
13,
4418,
25,
287,
262,
1109,
326,
4600,
1462,
62,
82,
62,
38011,
63,
318,
3938,
198,
646,
489,
3474,
357,
4360,
7083,
351,
262,
5981,
2209,
1321,
8,
198,
198,
1890,
783,
11,
428,
2125,
470,
2495,
475,
340,
2499,
13,
314,
1101,
1280,
284,
257,
517,
19992,
14,
24622,
4610,
13,
198,
37811,
198,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
2375,
69,
1330,
31114,
2953,
296,
11,
5345,
2953,
296,
11,
31114,
8053,
11,
35835,
11,
23520,
11,
46228,
11,
609,
585,
11,
15178,
355,
609,
585,
26595,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
36439,
62,
26675,
1330,
17427,
26595,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
41571,
1330,
711,
62,
11295,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
301,
5620,
1330,
33102,
11,
7343,
198,
198,
6738,
3384,
4487,
1330,
9114,
912,
198,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
26675,
1330,
15178,
198,
6738,
288,
16184,
13,
82,
62,
31937,
13,
11295,
62,
21975,
1330,
5740,
20231,
11,
383,
16424,
11,
554,
26595,
11,
311,
3109,
1050,
37142,
1507,
6425,
20231,
628,
198,
2,
22492,
38884,
329,
40713,
6425,
357,
4758,
2125,
470,
1682,
257,
1398,
2346,
26,
356,
2391,
47611,
1123,
3465,
287,
1190,
69,
13,
9078,
13869,
8,
628,
628,
628,
628,
198,
11265,
62,
1462,
62,
4743,
672,
796,
1391,
198,
220,
220,
220,
31114,
2953,
296,
25,
40713,
39649,
462,
2953,
296,
11,
198,
220,
220,
220,
5345,
2953,
296,
25,
40713,
7248,
2953,
296,
11,
198,
220,
220,
220,
31114,
8053,
25,
40713,
39649,
462,
8053,
11,
198,
220,
220,
220,
35835,
25,
40713,
44402,
11,
198,
220,
220,
220,
23520,
25,
40713,
38727,
11,
198,
220,
220,
220,
46228,
25,
40713,
11627,
437,
11,
198,
220,
220,
220,
609,
585,
25,
40713,
1925,
585,
11,
198,
92,
628,
198,
4299,
3465,
62,
4480,
62,
20541,
62,
21975,
7,
11295,
11,
379,
62,
21975,
2599,
198,
220,
220,
220,
37227,
6690,
1834,
2280,
24708,
378,
257,
3465,
290,
357,
439,
663,
25321,
8,
351,
281,
2209,
357,
392,
262,
5981,
850,
12,
2860,
16746,
737,
37227,
628,
220,
220,
220,
611,
318,
39098,
7,
11295,
11,
609,
585,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1751,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3465,
62,
4480,
62,
20541,
62,
21975,
7,
9410,
11,
379,
62,
21975,
13,
9541,
7,
818,
26595,
7,
72,
22305,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
11,
1200,
287,
27056,
378,
7,
11295,
13,
26675,
13,
17815,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
40713,
1925,
585,
7,
265,
62,
21975,
11,
609,
585,
26595,
7,
17197,
4008,
628,
220,
220,
220,
1288,
361,
318,
39098,
7,
11295,
11,
35835,
8,
393,
318,
39098,
7,
11295,
11,
46228,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1200,
796,
3465,
62,
4480,
62,
20541,
62,
21975,
7,
11295,
13,
9410,
62,
11295,
11,
379,
62,
21975,
13,
9541,
7,
464,
16424,
3419,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3487,
62,
1462,
62,
4743,
672,
58,
4906,
7,
11295,
15437,
7,
265,
62,
21975,
11,
3465,
13,
9630,
11,
1200,
8,
628,
220,
220,
220,
1303,
2252,
4554,
12,
2364,
278,
2174,
318,
284,
1848,
329,
37334,
5772,
12,
9127,
82,
290,
5772,
12,
14933,
26,
383,
966,
318,
326,
284,
198,
220,
220,
220,
1303,
302,
12,
8625,
415,
9386,
257,
40713,
9,
15304,
11,
356,
761,
284,
760,
644,
42287,
284,
779,
13,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
11295,
11,
5345,
2953,
296,
8,
393,
318,
39098,
7,
11295,
11,
31114,
2953,
296,
2599,
220,
1303,
530,
5772,
11,
3706,
705,
37696,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3487,
62,
1462,
62,
4743,
672,
58,
4906,
7,
11295,
15437,
7,
265,
62,
21975,
11,
3465,
13,
37696,
8,
628,
220,
220,
220,
1288,
361,
318,
39098,
7,
11295,
11,
23520,
2599,
220,
1303,
530,
5772,
11,
3706,
705,
9630,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3487,
62,
1462,
62,
4743,
672,
58,
4906,
7,
11295,
15437,
7,
265,
62,
21975,
11,
3465,
13,
9630,
8,
628,
220,
220,
220,
1441,
3487,
62,
1462,
62,
4743,
672,
58,
4906,
7,
11295,
15437,
7,
265,
62,
21975,
8,
628,
198,
4299,
4776,
62,
4480,
62,
20541,
62,
21975,
7,
26675,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
15178,
5218,
17427,
26595,
198,
220,
220,
220,
1312,
13,
68,
13,
1210,
257,
4776,
656,
257,
4776,
286,
4710,
266,
14,
2209,
37647,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
9114,
912,
7,
26675,
11,
15178,
8,
628,
220,
220,
220,
1441,
17427,
26595,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
3465,
62,
4480,
62,
20541,
62,
21975,
7,
11295,
11,
5740,
20231,
19510,
818,
26595,
7,
72,
828,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
3465,
287,
27056,
378,
7,
26675,
13,
17815,
28955,
12962,
628,
198,
4299,
711,
62,
36439,
62,
26675,
7,
26675,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
318,
257,
4866,
14,
79,
8992,
2196,
286,
4600,
1759,
62,
26675,
47671,
351,
262,
1708,
5400,
25,
628,
220,
220,
220,
1635,
632,
857,
407,
8814,
319,
393,
779,
262,
16155,
1634,
9355,
357,
732,
460,
470,
11,
780,
40713,
16130,
389,
407,
16155,
13821,
357,
25907,
30,
4008,
198,
220,
220,
220,
1635,
383,
8198,
326,
389,
2727,
287,
262,
5509,
389,
2405,
17427,
26595,
5563,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
9114,
912,
7,
26675,
11,
17427,
26595,
8,
628,
220,
220,
220,
5509,
796,
6045,
220,
1303,
554,
262,
3726,
11,
612,
318,
2147,
11,
543,
356,
2746,
355,
4600,
14202,
63,
198,
220,
220,
220,
329,
3465,
287,
4776,
13,
17815,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
5509,
796,
711,
62,
11295,
7,
11295,
11,
5509,
11,
15178,
9487,
28,
26437,
26595,
8,
628,
220,
220,
220,
1441,
5509,
198
] | 2.970243 | 1,109 |
# Imports
import re
import os
import glob
import imageio
def gifer(glob_pattern, out_fpath):
"""Converts a series of images into a gif in order of numerical numbers in their name"""
try:
paths = glob.glob(glob_pattern)
paths = list(sorted(paths, \
key=lambda x: int(re.sub('[^0-9]','',os.path.basename(x)))))
images = list(map(imageio.imread, paths))
imageio.mimsave(out_fpath, images)
except ValueError as e:
print('Glob pattern did not pick up valid inputs:')
print(e)
|
[
2,
1846,
3742,
198,
11748,
302,
198,
11748,
28686,
198,
11748,
15095,
198,
11748,
2939,
952,
198,
198,
4299,
308,
7087,
7,
4743,
672,
62,
33279,
11,
503,
62,
69,
6978,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
257,
2168,
286,
4263,
656,
257,
9381,
287,
1502,
286,
29052,
3146,
287,
511,
1438,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13532,
796,
15095,
13,
4743,
672,
7,
4743,
672,
62,
33279,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13532,
796,
1351,
7,
82,
9741,
7,
6978,
82,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
28,
50033,
2124,
25,
493,
7,
260,
13,
7266,
10786,
58,
61,
15,
12,
24,
60,
41707,
3256,
418,
13,
6978,
13,
12093,
12453,
7,
87,
4008,
22305,
628,
220,
220,
220,
220,
220,
220,
220,
4263,
796,
1351,
7,
8899,
7,
9060,
952,
13,
320,
961,
11,
13532,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
952,
13,
76,
12078,
1015,
7,
448,
62,
69,
6978,
11,
4263,
8,
198,
220,
220,
220,
2845,
11052,
12331,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
9861,
672,
3912,
750,
407,
2298,
510,
4938,
17311,
25,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
68,
8,
198
] | 2.379913 | 229 |
import bpy
from . import combine_mesh, group_settings, util
|
[
11748,
275,
9078,
201,
198,
6738,
764,
1330,
12082,
62,
76,
5069,
11,
1448,
62,
33692,
11,
7736,
201,
198,
201,
198
] | 2.909091 | 22 |
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import time
import pandas as pd
from pandas import DataFrame
from base import BaseObject
from base import FileIO
class InversionLibraryLoader(BaseObject):
""" Load Inversion Library """
__df_inversion = None
__header_row = ["Id",
"KeyField",
"Term"]
def __init__(self,
library_name: str,
is_debug: bool = False):
"""
Created:
5-Nov-2019
[email protected]
* based on 'vectorspace-library-loader'
:param library_name:
:param is_debug:
"""
BaseObject.__init__(self, __name__)
self.is_debug = is_debug
self._library_name = library_name
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
41002,
12,
23,
532,
9,
12,
628,
198,
11748,
28686,
198,
11748,
640,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
19798,
292,
1330,
6060,
19778,
198,
198,
6738,
2779,
1330,
7308,
10267,
198,
6738,
2779,
1330,
9220,
9399,
628,
198,
4871,
554,
9641,
23377,
17401,
7,
14881,
10267,
2599,
198,
220,
220,
220,
37227,
8778,
554,
9641,
10074,
37227,
628,
220,
220,
220,
11593,
7568,
62,
259,
9641,
796,
6045,
628,
220,
220,
220,
11593,
25677,
62,
808,
796,
14631,
7390,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9218,
15878,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40596,
8973,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5888,
62,
3672,
25,
965,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
24442,
25,
20512,
796,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15622,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
642,
12,
20795,
12,
23344,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15671,
328,
13,
2213,
320,
31,
571,
76,
13,
785,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
220,
220,
1912,
319,
705,
303,
5217,
10223,
12,
32016,
12,
29356,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
5888,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
318,
62,
24442,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
7308,
10267,
13,
834,
15003,
834,
7,
944,
11,
11593,
3672,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
271,
62,
24442,
796,
318,
62,
24442,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
32016,
62,
3672,
796,
5888,
62,
3672,
198
] | 2.062663 | 383 |
from django.db import models
|
[
6738,
42625,
14208,
13,
9945,
1330,
4981,
628,
198
] | 3.444444 | 9 |
#!/usr/bin/env python3
# Standard Imports
import os
import grp
import pwd
import sys
import glob
import random
import shutil
import string
# Module Imports
import click
import json
from passlib.hash import pbkdf2_sha256
import requests
# Initialize shutil copy function
cp = shutil.copyfile
# Define working directory
working_directory = os.path.dirname(os.path.abspath(__file__))
def construct_test(test_query, location, test_target):
"""Constructs JSON POST data for test_hyperglass function"""
constructed_query = json.dumps(
{"type": test_query, "location": location, "target": test_target}
)
return constructed_query
@click.group()
@hg.command("pylint-badge", help="Runs Pylint and generates a badge for GitHub")
@click.option(
"-i",
"--integer-only",
"int_only",
type=bool,
default=False,
help="Output Pylint score as integer",
)
@hg.command("pre-check", help="Check hyperglass config & readiness")
@hg.command("test", help="Full test of all backend features")
@click.option("-l", "--location", type=str, required=True, help="Location to query")
@click.option(
"-4",
"--target-ipv4",
"target_ipv4",
type=str,
default="1.1.1.0/24",
required=False,
show_default=True,
help="IPv4 Target Address",
)
@click.option(
"-6",
"--target-ipv6",
"target_ipv6",
type=str,
default="2606:4700:4700::/48",
required=False,
show_default=True,
help="IPv6 Target Address",
)
@click.option(
"-c",
"--community",
"test_community",
type=str,
required=False,
show_default=True,
default="65000:1",
help="BGP Community",
)
@click.option(
"-a",
"--aspath",
"test_aspath",
type=str,
required=False,
show_default=True,
default="^65001$",
help="BGP AS Path",
)
@click.option(
"-r",
"--requires-ipv6-cidr",
"requires_ipv6_cidr",
type=str,
required=False,
help="Location for testing IPv6 CIDR requirement",
)
@click.option(
"-b",
"--blacklist",
"test_blacklist",
type=str,
default="100.64.0.1",
required=False,
show_default=True,
help="Address to use for blacklist check",
)
@click.option(
"-h",
"--host",
"test_host",
type=str,
default="localhost",
required=False,
show_default=True,
help="Name or IP address of hyperglass server",
)
@click.option(
"-p",
"--port",
"test_port",
type=int,
default=5000,
required=False,
show_default=True,
help="Port hyperglass is running on",
)
def test_hyperglass(
location,
target_ipv4,
target_ipv6,
requires_ipv6_cidr,
test_blacklist,
test_community,
test_aspath,
test_host,
test_port,
):
"""Fully tests hyperglass backend by making use of requests library to mimic the JS Ajax POST \
performed by the front end."""
test_target = None
invalid_ip = "this_ain't_an_ip!"
invalid_community = "192.0.2.1"
invalid_aspath = ".*"
ipv4_host = "1.1.1.1"
ipv4_cidr = "1.1.1.0/24"
ipv6_host = "2606:4700:4700::1111"
ipv6_cidr = "2606:4700:4700::/48"
test_headers = {"Content-Type": "application/json"}
test_endpoint = f"http://{test_host}:{test_port}/lg"
# No Query Type Test
try:
click.secho("Starting No Query Type test...", fg="black")
test_query = construct_test("", location, target_ipv4)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ No Query Type test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ No Query Type test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# No Location Test
try:
click.secho("Starting No Location test...", fg="black")
test_query = construct_test("bgp_route", "", target_ipv6)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ No Location test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ No Location test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# No Target Test
try:
click.secho("Starting No Target test...", fg="black")
test_query = construct_test("bgp_route", location, "")
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ No Target test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ No Target test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid BGP IPv4 Route Test
try:
click.secho("Starting Valid BGP IPv4 Route test...", fg="black")
test_query = construct_test("bgp_route", location, target_ipv4)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid BGP IPv4 Route test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid BGP IPv4 Route test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid BGP IPv6 Route Test
try:
click.secho("Starting Valid BGP IPv6 Route test...", fg="black")
test_query = construct_test("bgp_route", location, target_ipv6)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid BGP IPv6 Route test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid BGP IPv6 Route test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Invalid BGP Route Test
try:
click.secho("Starting Invalid BGP IPv4 Route test...", fg="black")
test_query = construct_test("bgp_route", location, invalid_ip)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Invalid BGP IPv4 Route test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Invalid BGP IPv4 Route test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Requires IPv6 CIDR Test
if requires_ipv6_cidr:
try:
click.secho("Starting Requires IPv6 CIDR test...", fg="black")
test_query = construct_test("bgp_route", requires_ipv6_cidr, ipv6_host)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Requires IPv6 CIDR test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Requires IPv6 CIDR test failed", fg="red", bold=True)
click.secho(
f"Status Code: {hg_response.status_code}", fg="red", bold=True
)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid BGP Community Test
try:
click.secho("Starting Valid BGP Community test...", fg="black")
test_query = construct_test("bgp_community", location, test_community)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid BGP Community test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid BGP Community test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Invalid BGP Community Test
try:
click.secho("Starting Invalid BGP Community test...", fg="black")
test_query = construct_test("bgp_community", location, target_ipv4)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Invalid BGP Community test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Invalid BGP Community test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid BGP AS_PATH Test
try:
click.secho("Starting Valid BGP AS_PATH test...", fg="black")
test_query = construct_test("bgp_aspath", location, test_aspath)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid BGP AS_PATH test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid BGP AS_PATH test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Invalid BGP AS_PATH Test
try:
click.secho("Starting invalid BGP AS_PATH test...", fg="black")
test_query = construct_test("bgp_aspath", location, invalid_aspath)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Invalid BGP AS_PATH test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Invalid BGP AS_PATH test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid IPv4 Ping Test
try:
click.secho("Starting Valid IPv4 Ping test...", fg="black")
test_query = construct_test("ping", location, ipv4_host)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid IPv4 Ping test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid IPv4 Ping test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Valid IPv6 Ping Test
try:
click.secho("Starting Valid IPv6 Ping test...", fg="black")
test_query = construct_test("ping", location, ipv6_host)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code == 200:
click.secho("✓ Valid IPv6 Ping test passed", fg="green", bold=True)
if not hg_response.status_code == 200:
click.secho("✗ Valid IPv6 Ping test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Invalid IPv4 Ping Test
try:
click.secho("Starting Invalid IPv4 Ping test...", fg="black")
test_query = construct_test("ping", location, ipv4_cidr)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Invalid IPv4 Ping test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Invalid IPv4 Ping test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Invalid IPv6 Ping Test
try:
click.secho("Starting Invalid IPv6 Ping test...", fg="black")
test_query = construct_test("ping", location, ipv6_cidr)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Invalid IPv6 Ping test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Invalid IPv6 Ping test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
# Blacklist Test
try:
click.secho("Starting Blacklist test...", fg="black")
test_query = construct_test("bgp_route", location, test_blacklist)
hg_response = requests.post(
test_endpoint, headers=test_headers, data=test_query
)
if hg_response.status_code in range(400, 500):
click.secho("✓ Blacklist test passed", fg="green", bold=True)
if not hg_response.status_code in range(400, 500):
click.secho("✗ Blacklist test failed", fg="red", bold=True)
click.secho(f"Status Code: {hg_response.status_code}", fg="red", bold=True)
click.secho(hg_response.text, fg="red")
except Exception as e:
click.secho(f"Exception occurred:\n{e}")
@hg.command("clear-cache", help="Clear Flask cache")
def clearcache():
"""Clears the Flask-Caching cache"""
try:
import hyperglass.hyperglass
hyperglass.hyperglass.clear_cache()
click.secho("✓ Successfully cleared cache.", fg="green", bold=True)
except:
click.secho("✗ Failed to clear cache.", fg="red", bold=True)
raise
@hg.command("generate-key", help="Generate API key & hash")
@click.option(
"-l", "--length", "string_length", type=int, default=16, show_default=True
)
def generatekey(string_length):
"""Generates 16 character API Key for hyperglass-frr API, and a corresponding PBKDF2 SHA256 Hash"""
ld = string.ascii_letters + string.digits
api_key = "".join(random.choice(ld) for i in range(string_length))
key_hash = pbkdf2_sha256.hash(api_key)
click.secho(
f"""
Your API Key is: {api_key}
Place your API Key in the `configuration.toml` of your API module. For example, in: `hyperglass_frr/hyperglass-frr/configuration.toml`
Your Key Hash is: {key_hash}
Use this hash as the password for the device using the API module. For example, in: `hyperglass/hyperglass/configuration/devices.toml`
"""
)
@hg.command("dev-server", help="Start Flask development server")
@click.option("--host", type=str, default="0.0.0.0", help="Listening IP")
@click.option("--port", type=int, default=5000, help="TCP Port")
def flask_dev_server(host, port):
"""Starts Flask development server for testing without WSGI/Reverse Proxy"""
try:
from hyperglass import hyperglass
from hyperglass import configuration
from hyperglass import render
debug_state = configuration.debug_state()
render.css()
click.secho(f"✓ Starting Flask development server", fg="green", bold=True)
hyperglass.app.run(host=host, debug=debug_state, port=port)
except:
click.secho("✗ Failed to start test server.", fg="red", bold=True)
raise
@hg.command("compile-sass", help="Compile Sass templates to CSS")
def compile_sass():
"""Renders Jinja2 and Sass templates to HTML & CSS files"""
try:
from hyperglass import render
render.css()
click.secho("✓ Successfully rendered CSS templates.", fg="green", bold=True)
except:
click.secho("✗ Failed to render CSS templates.", fg="red", bold=True)
raise
@hg.command("migrate-configs", help="Copy TOML examples to usable config files")
def migrateconfig():
"""Copies example configuration files to usable config files"""
try:
click.secho("Migrating example config files...", fg="black")
config_dir = os.path.join(working_directory, "hyperglass/configuration/")
examples = glob.iglob(os.path.join(config_dir, "*.example"))
for f in examples:
basefile, extension = os.path.splitext(f)
if os.path.exists(basefile):
click.secho(f"{basefile} already exists", fg="blue")
else:
try:
cp(f, basefile)
click.secho(f"✓ Migrated {basefile}", fg="green")
except:
click.secho(f"✗ Failed to migrate {basefile}", fg="red")
raise
click.secho(
"✓ Successfully migrated example config files", fg="green", bold=True
)
except:
click.secho("✗ Error migrating example config files", fg="red", bold=True)
raise
@hg.command("migrate-gunicorn", help="Copy Gunicorn example to usable config file")
def migrategunicorn():
"""Copies example Gunicorn config file to a usable config"""
try:
import hyperglass
except ImportError as error_exception:
click.secho(f"Error while importing hyperglass:\n{error_exception}", fg="red")
try:
click.secho("Migrating example Gunicorn configuration...", fg="black")
hyperglass_root = os.path.dirname(hyperglass.__file__)
ex_file = os.path.join(hyperglass_root, "gunicorn_config.py.example")
basefile, extension = os.path.splitext(ex_file)
newfile = basefile
if os.path.exists(newfile):
click.secho(f"{newfile} already exists", fg="blue")
else:
try:
cp(ex_file, newfile)
click.secho(
f"✓ Successfully migrated Gunicorn configuration to: {newfile}",
fg="green",
bold=True,
)
except:
click.secho(f"✗ Failed to migrate {newfile}", fg="red")
raise
except:
click.secho(
"✗ Error migrating example Gunicorn configuration", fg="red", bold=True
)
raise
@hg.command("migrate-systemd", help="Copy Systemd example to OS")
@click.option(
"-d", "--directory", default="/etc/systemd/system", help="Destination Directory"
)
def migratesystemd(directory):
"""Copies example systemd service file to /etc/systemd/system/"""
try:
click.secho("Migrating example systemd service...", fg="black")
ex_file_base = "hyperglass.service.example"
ex_file = os.path.join(working_directory, f"hyperglass/{ex_file_base}")
basefile, extension = os.path.splitext(ex_file_base)
newfile = os.path.join(directory, basefile)
if os.path.exists(newfile):
click.secho(f"{newfile} already exists", fg="blue")
else:
try:
cp(ex_file, newfile)
click.secho(
f"✓ Successfully migrated systemd service to: {newfile}",
fg="green",
bold=True,
)
except:
click.secho(f"✗ Failed to migrate {newfile}", fg="red")
raise
except:
click.secho("✗ Error migrating example systemd service", fg="red", bold=True)
raise
@hg.command(
"update-permissions",
help="Fix ownership & permissions of hyperglass project directory",
)
@click.option("--user", default="www-data")
@click.option("--group", default="www-data")
def fixpermissions(user, group):
"""Effectively runs `chmod` and `chown` on the hyperglass/hyperglass directory"""
try:
import hyperglass
except ImportError as error_exception:
click.secho(f"Error importing hyperglass:\n{error_exception}")
hyperglass_root = os.path.dirname(hyperglass.__file__)
uid = pwd.getpwnam(user).pw_uid
gid = grp.getgrnam(group).gr_gid
try:
for root, dirs, files in os.walk(hyperglass_root):
for d in dirs:
full_path = os.path.join(root, d)
os.chown(full_path, uid, gid)
for f in files:
full_path = os.path.join(root, f)
os.chown(full_path, uid, gid)
os.chown(root, uid, gid)
click.secho(
"✓ Successfully changed hyperglass/ ownership", fg="green", bold=True
)
except:
click.secho("✗ Failed to change hyperglass/ ownership", fg="red", bold=True)
raise
try:
for root, dirs, files in os.walk(hyperglass_root):
for d in dirs:
full_path = os.path.join(root, d)
os.chmod(full_path, 0o744)
for f in files:
full_path = os.path.join(root, f)
os.chmod(full_path, 0o744)
os.chmod(root, 0o744)
click.secho(
"✓ Successfully changed hyperglass/ permissions", fg="green", bold=True
)
except:
click.secho("✗ Failed to change hyperglass/ permissions", fg="red", bold=True)
raise
if __name__ == "__main__":
hg()
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
2,
8997,
1846,
3742,
198,
11748,
28686,
198,
11748,
1036,
79,
198,
11748,
279,
16993,
198,
11748,
25064,
198,
11748,
15095,
198,
11748,
4738,
198,
11748,
4423,
346,
198,
11748,
4731,
198,
198,
2,
19937,
1846,
3742,
198,
11748,
3904,
198,
11748,
33918,
198,
6738,
1208,
8019,
13,
17831,
1330,
279,
65,
74,
7568,
17,
62,
26270,
11645,
198,
11748,
7007,
198,
198,
2,
20768,
1096,
4423,
346,
4866,
2163,
198,
13155,
796,
4423,
346,
13,
30073,
7753,
198,
198,
2,
2896,
500,
1762,
8619,
198,
16090,
62,
34945,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
628,
198,
4299,
5678,
62,
9288,
7,
9288,
62,
22766,
11,
4067,
11,
1332,
62,
16793,
2599,
198,
220,
220,
220,
37227,
42316,
82,
19449,
24582,
1366,
329,
1332,
62,
49229,
20721,
2163,
37811,
198,
220,
220,
220,
12006,
62,
22766,
796,
33918,
13,
67,
8142,
7,
198,
220,
220,
220,
220,
220,
220,
220,
19779,
4906,
1298,
1332,
62,
22766,
11,
366,
24886,
1298,
4067,
11,
366,
16793,
1298,
1332,
62,
16793,
92,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
12006,
62,
22766,
628,
198,
31,
12976,
13,
8094,
3419,
628,
198,
31,
71,
70,
13,
21812,
7203,
79,
2645,
600,
12,
14774,
469,
1600,
1037,
2625,
10987,
82,
350,
2645,
600,
290,
18616,
257,
23009,
329,
21722,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
72,
1600,
198,
220,
220,
220,
366,
438,
41433,
12,
8807,
1600,
198,
220,
220,
220,
366,
600,
62,
8807,
1600,
198,
220,
220,
220,
2099,
28,
30388,
11,
198,
220,
220,
220,
4277,
28,
25101,
11,
198,
220,
220,
220,
1037,
2625,
26410,
350,
2645,
600,
4776,
355,
18253,
1600,
198,
8,
628,
198,
31,
71,
70,
13,
21812,
7203,
3866,
12,
9122,
1600,
1037,
2625,
9787,
8718,
20721,
4566,
1222,
30618,
4943,
628,
198,
31,
71,
70,
13,
21812,
7203,
9288,
1600,
1037,
2625,
13295,
1332,
286,
477,
30203,
3033,
4943,
198,
31,
12976,
13,
18076,
7203,
12,
75,
1600,
366,
438,
24886,
1600,
2099,
28,
2536,
11,
2672,
28,
17821,
11,
1037,
2625,
14749,
284,
12405,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
19,
1600,
198,
220,
220,
220,
366,
438,
16793,
12,
541,
85,
19,
1600,
198,
220,
220,
220,
366,
16793,
62,
541,
85,
19,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
4277,
2625,
16,
13,
16,
13,
16,
13,
15,
14,
1731,
1600,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
1037,
2625,
4061,
85,
19,
12744,
17917,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
21,
1600,
198,
220,
220,
220,
366,
438,
16793,
12,
541,
85,
21,
1600,
198,
220,
220,
220,
366,
16793,
62,
541,
85,
21,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
4277,
2625,
21719,
21,
25,
2857,
405,
25,
2857,
405,
3712,
14,
2780,
1600,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
1037,
2625,
4061,
85,
21,
12744,
17917,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
66,
1600,
198,
220,
220,
220,
366,
438,
28158,
1600,
198,
220,
220,
220,
366,
9288,
62,
28158,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
4277,
2625,
2996,
830,
25,
16,
1600,
198,
220,
220,
220,
1037,
2625,
33,
16960,
8108,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
64,
1600,
198,
220,
220,
220,
366,
438,
5126,
776,
1600,
198,
220,
220,
220,
366,
9288,
62,
5126,
776,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
4277,
2625,
61,
2996,
8298,
3,
1600,
198,
220,
220,
220,
1037,
2625,
33,
16960,
7054,
10644,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
81,
1600,
198,
220,
220,
220,
366,
438,
47911,
12,
541,
85,
21,
12,
66,
312,
81,
1600,
198,
220,
220,
220,
366,
47911,
62,
541,
85,
21,
62,
66,
312,
81,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
1037,
2625,
14749,
329,
4856,
25961,
21,
327,
2389,
49,
9079,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
65,
1600,
198,
220,
220,
220,
366,
438,
13424,
4868,
1600,
198,
220,
220,
220,
366,
9288,
62,
13424,
4868,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
4277,
2625,
3064,
13,
2414,
13,
15,
13,
16,
1600,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
1037,
2625,
20231,
284,
779,
329,
38810,
2198,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
71,
1600,
198,
220,
220,
220,
366,
438,
4774,
1600,
198,
220,
220,
220,
366,
9288,
62,
4774,
1600,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
4277,
2625,
36750,
1600,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
1037,
2625,
5376,
393,
6101,
2209,
286,
8718,
20721,
4382,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
79,
1600,
198,
220,
220,
220,
366,
438,
634,
1600,
198,
220,
220,
220,
366,
9288,
62,
634,
1600,
198,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
4277,
28,
27641,
11,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
220,
220,
220,
905,
62,
12286,
28,
17821,
11,
198,
220,
220,
220,
1037,
2625,
13924,
8718,
20721,
318,
2491,
319,
1600,
198,
8,
198,
4299,
1332,
62,
49229,
20721,
7,
198,
220,
220,
220,
4067,
11,
198,
220,
220,
220,
2496,
62,
541,
85,
19,
11,
198,
220,
220,
220,
2496,
62,
541,
85,
21,
11,
198,
220,
220,
220,
4433,
62,
541,
85,
21,
62,
66,
312,
81,
11,
198,
220,
220,
220,
1332,
62,
13424,
4868,
11,
198,
220,
220,
220,
1332,
62,
28158,
11,
198,
220,
220,
220,
1332,
62,
5126,
776,
11,
198,
220,
220,
220,
1332,
62,
4774,
11,
198,
220,
220,
220,
1332,
62,
634,
11,
198,
2599,
198,
220,
220,
220,
37227,
37,
2132,
5254,
8718,
20721,
30203,
416,
1642,
779,
286,
7007,
5888,
284,
26332,
262,
26755,
46362,
24582,
3467,
198,
220,
220,
220,
6157,
416,
262,
2166,
886,
526,
15931,
198,
220,
220,
220,
1332,
62,
16793,
796,
6045,
198,
220,
220,
220,
12515,
62,
541,
796,
366,
5661,
62,
391,
470,
62,
272,
62,
541,
2474,
198,
220,
220,
220,
12515,
62,
28158,
796,
366,
17477,
13,
15,
13,
17,
13,
16,
1,
198,
220,
220,
220,
12515,
62,
5126,
776,
796,
366,
15885,
1,
198,
220,
220,
220,
20966,
85,
19,
62,
4774,
796,
366,
16,
13,
16,
13,
16,
13,
16,
1,
198,
220,
220,
220,
20966,
85,
19,
62,
66,
312,
81,
796,
366,
16,
13,
16,
13,
16,
13,
15,
14,
1731,
1,
198,
220,
220,
220,
20966,
85,
21,
62,
4774,
796,
366,
21719,
21,
25,
2857,
405,
25,
2857,
405,
3712,
26259,
1,
198,
220,
220,
220,
20966,
85,
21,
62,
66,
312,
81,
796,
366,
21719,
21,
25,
2857,
405,
25,
2857,
405,
3712,
14,
2780,
1,
198,
220,
220,
220,
1332,
62,
50145,
796,
19779,
19746,
12,
6030,
1298,
366,
31438,
14,
17752,
20662,
198,
220,
220,
220,
1332,
62,
437,
4122,
796,
277,
1,
4023,
1378,
90,
9288,
62,
4774,
92,
29164,
9288,
62,
634,
92,
14,
75,
70,
1,
198,
220,
220,
220,
1303,
1400,
43301,
5994,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
1400,
43301,
5994,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
1600,
4067,
11,
2496,
62,
541,
85,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
1400,
43301,
5994,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
1400,
43301,
5994,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
1400,
13397,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
1400,
13397,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
366,
1600,
2496,
62,
541,
85,
21,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
1400,
13397,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
1400,
13397,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
1400,
12744,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
1400,
12744,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4067,
11,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
1400,
12744,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
1400,
12744,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
347,
16960,
25961,
19,
18956,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
347,
16960,
25961,
19,
18956,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4067,
11,
2496,
62,
541,
85,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
347,
16960,
25961,
19,
18956,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
347,
16960,
25961,
19,
18956,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
347,
16960,
25961,
21,
18956,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
347,
16960,
25961,
21,
18956,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4067,
11,
2496,
62,
541,
85,
21,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
347,
16960,
25961,
21,
18956,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
347,
16960,
25961,
21,
18956,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
17665,
347,
16960,
18956,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
17665,
347,
16960,
25961,
19,
18956,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4067,
11,
12515,
62,
541,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
17665,
347,
16960,
25961,
19,
18956,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
17665,
347,
16960,
25961,
19,
18956,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
26848,
25961,
21,
327,
2389,
49,
6208,
198,
220,
220,
220,
611,
4433,
62,
541,
85,
21,
62,
66,
312,
81,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
26848,
25961,
21,
327,
2389,
49,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4433,
62,
541,
85,
21,
62,
66,
312,
81,
11,
20966,
85,
21,
62,
4774,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
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,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
26848,
25961,
21,
327,
2389,
49,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
26848,
25961,
21,
327,
2389,
49,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
347,
16960,
8108,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
347,
16960,
8108,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
28158,
1600,
4067,
11,
1332,
62,
28158,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
347,
16960,
8108,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
347,
16960,
8108,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
17665,
347,
16960,
8108,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
17665,
347,
16960,
8108,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
28158,
1600,
4067,
11,
2496,
62,
541,
85,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
17665,
347,
16960,
8108,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
17665,
347,
16960,
8108,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
347,
16960,
7054,
62,
34219,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
347,
16960,
7054,
62,
34219,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
5126,
776,
1600,
4067,
11,
1332,
62,
5126,
776,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
347,
16960,
7054,
62,
34219,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
347,
16960,
7054,
62,
34219,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
17665,
347,
16960,
7054,
62,
34219,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
12515,
347,
16960,
7054,
62,
34219,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
5126,
776,
1600,
4067,
11,
12515,
62,
5126,
776,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
17665,
347,
16960,
7054,
62,
34219,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
17665,
347,
16960,
7054,
62,
34219,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
25961,
19,
34263,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
25961,
19,
34263,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
13886,
1600,
4067,
11,
20966,
85,
19,
62,
4774,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
25961,
19,
34263,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
25961,
19,
34263,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
48951,
25961,
21,
34263,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
48951,
25961,
21,
34263,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
13886,
1600,
4067,
11,
20966,
85,
21,
62,
4774,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
48951,
25961,
21,
34263,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
48951,
25961,
21,
34263,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
17665,
25961,
19,
34263,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
17665,
25961,
19,
34263,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
13886,
1600,
4067,
11,
20966,
85,
19,
62,
66,
312,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
17665,
25961,
19,
34263,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
17665,
25961,
19,
34263,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
17665,
25961,
21,
34263,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
17665,
25961,
21,
34263,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
13886,
1600,
4067,
11,
20966,
85,
21,
62,
66,
312,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
17665,
25961,
21,
34263,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
17665,
25961,
21,
34263,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
198,
220,
220,
220,
1303,
2619,
4868,
6208,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
22851,
2619,
4868,
1332,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
22766,
796,
5678,
62,
9288,
7203,
65,
31197,
62,
38629,
1600,
4067,
11,
1332,
62,
13424,
4868,
8,
198,
220,
220,
220,
220,
220,
220,
220,
289,
70,
62,
26209,
796,
7007,
13,
7353,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
437,
4122,
11,
24697,
28,
9288,
62,
50145,
11,
1366,
28,
9288,
62,
22766,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
2619,
4868,
1332,
3804,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
289,
70,
62,
26209,
13,
13376,
62,
8189,
287,
2837,
7,
7029,
11,
5323,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
2619,
4868,
1332,
4054,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
19580,
6127,
25,
1391,
71,
70,
62,
26209,
13,
13376,
62,
8189,
92,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
71,
70,
62,
26209,
13,
5239,
11,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
16922,
5091,
7479,
77,
90,
68,
92,
4943,
628,
198,
31,
71,
70,
13,
21812,
7203,
20063,
12,
23870,
1600,
1037,
2625,
19856,
46947,
12940,
4943,
198,
4299,
1598,
23870,
33529,
198,
220,
220,
220,
37227,
34349,
945,
262,
46947,
12,
34,
8103,
12940,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1330,
8718,
20721,
13,
49229,
20721,
628,
220,
220,
220,
220,
220,
220,
220,
8718,
20721,
13,
49229,
20721,
13,
20063,
62,
23870,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
16282,
2759,
12539,
12940,
33283,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
22738,
284,
1598,
12940,
33283,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7203,
8612,
378,
12,
2539,
1600,
1037,
2625,
8645,
378,
7824,
1994,
1222,
12234,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
75,
1600,
366,
438,
13664,
1600,
366,
8841,
62,
13664,
1600,
2099,
28,
600,
11,
4277,
28,
1433,
11,
905,
62,
12286,
28,
17821,
198,
8,
198,
4299,
7716,
2539,
7,
8841,
62,
13664,
2599,
198,
220,
220,
220,
37227,
8645,
689,
1467,
2095,
7824,
7383,
329,
8718,
20721,
12,
8310,
81,
7824,
11,
290,
257,
11188,
30524,
42,
8068,
17,
25630,
11645,
21059,
37811,
198,
220,
220,
220,
300,
67,
796,
4731,
13,
292,
979,
72,
62,
15653,
1343,
4731,
13,
12894,
896,
198,
220,
220,
220,
40391,
62,
2539,
796,
366,
1911,
22179,
7,
25120,
13,
25541,
7,
335,
8,
329,
1312,
287,
2837,
7,
8841,
62,
13664,
4008,
198,
220,
220,
220,
1994,
62,
17831,
796,
279,
65,
74,
7568,
17,
62,
26270,
11645,
13,
17831,
7,
15042,
62,
2539,
8,
198,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
277,
37811,
198,
7120,
7824,
7383,
318,
25,
1391,
15042,
62,
2539,
92,
198,
27271,
534,
7824,
7383,
287,
262,
4600,
11250,
3924,
13,
39532,
75,
63,
286,
534,
7824,
8265,
13,
1114,
1672,
11,
287,
25,
4600,
49229,
20721,
62,
8310,
81,
14,
49229,
20721,
12,
8310,
81,
14,
11250,
3924,
13,
39532,
75,
63,
198,
198,
7120,
7383,
21059,
318,
25,
1391,
2539,
62,
17831,
92,
198,
11041,
428,
12234,
355,
262,
9206,
329,
262,
3335,
1262,
262,
7824,
8265,
13,
1114,
1672,
11,
287,
25,
4600,
49229,
20721,
14,
49229,
20721,
14,
11250,
3924,
14,
42034,
13,
39532,
75,
63,
198,
37811,
198,
220,
220,
220,
1267,
628,
198,
31,
71,
70,
13,
21812,
7203,
7959,
12,
15388,
1600,
1037,
2625,
10434,
46947,
2478,
4382,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
4774,
1600,
2099,
28,
2536,
11,
4277,
2625,
15,
13,
15,
13,
15,
13,
15,
1600,
1037,
2625,
8053,
3101,
6101,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
634,
1600,
2099,
28,
600,
11,
4277,
28,
27641,
11,
1037,
2625,
4825,
47,
4347,
4943,
198,
4299,
42903,
62,
7959,
62,
15388,
7,
4774,
11,
2493,
2599,
198,
220,
220,
220,
37227,
1273,
5889,
46947,
2478,
4382,
329,
4856,
1231,
25290,
18878,
14,
49,
964,
325,
38027,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
422,
8718,
20721,
1330,
8718,
20721,
198,
220,
220,
220,
220,
220,
220,
220,
422,
8718,
20721,
1330,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
422,
8718,
20721,
1330,
8543,
628,
220,
220,
220,
220,
220,
220,
220,
14257,
62,
5219,
796,
8398,
13,
24442,
62,
5219,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
8543,
13,
25471,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
26486,
241,
17962,
46947,
2478,
4382,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
8718,
20721,
13,
1324,
13,
5143,
7,
4774,
28,
4774,
11,
14257,
28,
24442,
62,
5219,
11,
2493,
28,
634,
8,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
22738,
284,
923,
1332,
4382,
33283,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7203,
5589,
576,
12,
82,
562,
1600,
1037,
2625,
7293,
576,
48572,
24019,
284,
17391,
4943,
198,
4299,
17632,
62,
82,
562,
33529,
198,
220,
220,
220,
37227,
49,
7338,
17297,
6592,
17,
290,
48572,
24019,
284,
11532,
1222,
17391,
3696,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
422,
8718,
20721,
1330,
8543,
628,
220,
220,
220,
220,
220,
220,
220,
8543,
13,
25471,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
241,
16282,
2759,
15111,
17391,
24019,
33283,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
22738,
284,
8543,
17391,
24019,
33283,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7203,
76,
42175,
12,
11250,
82,
1600,
1037,
2625,
29881,
41526,
43,
6096,
284,
24284,
4566,
3696,
4943,
198,
4299,
32492,
11250,
33529,
198,
220,
220,
220,
37227,
13379,
444,
1672,
8398,
3696,
284,
24284,
4566,
3696,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
44,
3692,
803,
1672,
4566,
3696,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
15908,
796,
28686,
13,
6978,
13,
22179,
7,
16090,
62,
34945,
11,
366,
49229,
20721,
14,
11250,
3924,
14,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
6096,
796,
15095,
13,
38686,
672,
7,
418,
13,
6978,
13,
22179,
7,
11250,
62,
15908,
11,
366,
24620,
20688,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
329,
277,
287,
6096,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2779,
7753,
11,
7552,
796,
28686,
13,
6978,
13,
22018,
578,
742,
7,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
8692,
7753,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
90,
8692,
7753,
92,
1541,
7160,
1600,
277,
70,
2625,
17585,
4943,
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,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31396,
7,
69,
11,
2779,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
26486,
241,
337,
38769,
1391,
8692,
7753,
92,
1600,
277,
70,
2625,
14809,
4943,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
26486,
245,
22738,
284,
32492,
1391,
8692,
7753,
92,
1600,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26486,
241,
16282,
2759,
40227,
1672,
4566,
3696,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
13047,
45879,
1672,
4566,
3696,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7203,
76,
42175,
12,
7145,
291,
1211,
1600,
1037,
2625,
29881,
6748,
291,
1211,
1672,
284,
24284,
4566,
2393,
4943,
198,
4299,
15720,
2397,
46903,
1211,
33529,
198,
220,
220,
220,
37227,
13379,
444,
1672,
6748,
291,
1211,
4566,
2393,
284,
257,
24284,
4566,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1330,
8718,
20721,
198,
220,
220,
220,
2845,
17267,
12331,
355,
4049,
62,
1069,
4516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
12331,
981,
33332,
8718,
20721,
7479,
77,
90,
18224,
62,
1069,
4516,
92,
1600,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
44,
3692,
803,
1672,
6748,
291,
1211,
8398,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
8718,
20721,
62,
15763,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
49229,
20721,
13,
834,
7753,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
409,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
49229,
20721,
62,
15763,
11,
366,
7145,
291,
1211,
62,
11250,
13,
9078,
13,
20688,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
7753,
11,
7552,
796,
28686,
13,
6978,
13,
22018,
578,
742,
7,
1069,
62,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7753,
796,
2779,
7753,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
3605,
7753,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
90,
3605,
7753,
92,
1541,
7160,
1600,
277,
70,
2625,
17585,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
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,
31396,
7,
1069,
62,
7753,
11,
649,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
26486,
241,
16282,
2759,
40227,
6748,
291,
1211,
8398,
284,
25,
1391,
3605,
7753,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
70,
2625,
14809,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10758,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
3904,
13,
325,
6679,
7,
69,
1,
26486,
245,
22738,
284,
32492,
1391,
3605,
7753,
92,
1600,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26486,
245,
13047,
45879,
1672,
6748,
291,
1211,
8398,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7203,
76,
42175,
12,
10057,
67,
1600,
1037,
2625,
29881,
4482,
67,
1672,
284,
7294,
4943,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
27444,
67,
1600,
366,
438,
34945,
1600,
4277,
35922,
14784,
14,
10057,
67,
14,
10057,
1600,
1037,
2625,
24159,
1883,
27387,
1,
198,
8,
198,
4299,
15720,
689,
6781,
67,
7,
34945,
2599,
198,
220,
220,
220,
37227,
13379,
444,
1672,
31490,
2139,
2393,
284,
1220,
14784,
14,
10057,
67,
14,
10057,
14,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
44,
3692,
803,
1672,
31490,
2139,
9313,
11,
277,
70,
2625,
13424,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
409,
62,
7753,
62,
8692,
796,
366,
49229,
20721,
13,
15271,
13,
20688,
1,
198,
220,
220,
220,
220,
220,
220,
220,
409,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
16090,
62,
34945,
11,
277,
1,
49229,
20721,
14,
90,
1069,
62,
7753,
62,
8692,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
7753,
11,
7552,
796,
28686,
13,
6978,
13,
22018,
578,
742,
7,
1069,
62,
7753,
62,
8692,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
34945,
11,
2779,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
3605,
7753,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
90,
3605,
7753,
92,
1541,
7160,
1600,
277,
70,
2625,
17585,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
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,
31396,
7,
1069,
62,
7753,
11,
649,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
26486,
241,
16282,
2759,
40227,
31490,
2139,
284,
25,
1391,
3605,
7753,
92,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
70,
2625,
14809,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10758,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
3904,
13,
325,
6679,
7,
69,
1,
26486,
245,
22738,
284,
32492,
1391,
3605,
7753,
92,
1600,
277,
70,
2625,
445,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
13047,
45879,
1672,
31490,
2139,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
31,
71,
70,
13,
21812,
7,
198,
220,
220,
220,
366,
19119,
12,
525,
8481,
1600,
198,
220,
220,
220,
1037,
2625,
22743,
9238,
1222,
21627,
286,
8718,
20721,
1628,
8619,
1600,
198,
8,
198,
31,
12976,
13,
18076,
7203,
438,
7220,
1600,
4277,
2625,
2503,
12,
7890,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
8094,
1600,
4277,
2625,
2503,
12,
7890,
4943,
198,
4299,
4259,
525,
8481,
7,
7220,
11,
1448,
2599,
198,
220,
220,
220,
37227,
18610,
2280,
4539,
4600,
354,
4666,
63,
290,
4600,
354,
593,
63,
319,
262,
8718,
20721,
14,
49229,
20721,
8619,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1330,
8718,
20721,
198,
220,
220,
220,
2845,
17267,
12331,
355,
4049,
62,
1069,
4516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
69,
1,
12331,
33332,
8718,
20721,
7479,
77,
90,
18224,
62,
1069,
4516,
92,
4943,
198,
220,
220,
220,
8718,
20721,
62,
15763,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
49229,
20721,
13,
834,
7753,
834,
8,
198,
220,
220,
220,
334,
312,
796,
279,
16993,
13,
1136,
79,
675,
321,
7,
7220,
737,
79,
86,
62,
27112,
198,
220,
220,
220,
308,
312,
796,
1036,
79,
13,
1136,
2164,
7402,
7,
8094,
737,
2164,
62,
70,
312,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
6808,
11,
288,
17062,
11,
3696,
287,
28686,
13,
11152,
7,
49229,
20721,
62,
15763,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
288,
287,
288,
17062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
11,
288,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
593,
7,
12853,
62,
6978,
11,
334,
312,
11,
308,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
277,
287,
3696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
593,
7,
12853,
62,
6978,
11,
334,
312,
11,
308,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
593,
7,
15763,
11,
334,
312,
11,
308,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26486,
241,
16282,
2759,
3421,
8718,
20721,
14,
9238,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
22738,
284,
1487,
8718,
20721,
14,
9238,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
6808,
11,
288,
17062,
11,
3696,
287,
28686,
13,
11152,
7,
49229,
20721,
62,
15763,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
288,
287,
288,
17062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
11,
288,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
4666,
7,
12853,
62,
6978,
11,
657,
78,
22,
2598,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
277,
287,
3696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1336,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
15763,
11,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
4666,
7,
12853,
62,
6978,
11,
657,
78,
22,
2598,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
354,
4666,
7,
15763,
11,
657,
78,
22,
2598,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
26486,
241,
16282,
2759,
3421,
8718,
20721,
14,
21627,
1600,
277,
70,
2625,
14809,
1600,
10758,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
325,
6679,
7203,
26486,
245,
22738,
284,
1487,
8718,
20721,
14,
21627,
1600,
277,
70,
2625,
445,
1600,
10758,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
289,
70,
3419,
198
] | 2.248415 | 10,410 |
import json
import re
from django.db import models
from kubernetes_manager.consts import byte_units
from kubernetes import client, config
class KubernetesTelemetryMixin(models.Model):
"""
KubernetesTelemetryMixin
:type: mixin
:description: Extends child model to include telemetry features.
:inherits: django.db.models.Model
:fields: object_status, average_cpu_usage,
average_mem_usage, cpu_usage_seconds, mem_usage_seconds
"""
object_status = models.CharField(max_length=128, null=True, blank=True, help_text="status of the object in Kubernetes")
average_cpu_usage = models.DecimalField(null=True, blank=True, max_digits=8, decimal_places=4, help_text="Average PIT CPU units consumed")
average_mem_usage = models.IntegerField(null=True, blank=True, help_text="Average PIT bytes consumed")
cpu_usage_seconds = models.DecimalField(null=True, blank=True, max_digits=8, decimal_places=4, help_text="Average cpu usage * seconds live")
mem_usage_seconds = models.IntegerField(null=True, blank=True, help_text="Average mem usage * seconds live")
def splitNumeric(self, size):
"""
:description: Parses string into numeric component.
"""
return filter(None, re.split(r"(\d+)", size))
def parseSize(self, size):
"""
:description: Parses string as numeric, suffix and converts to bytes.
"""
number, unit = [string for string in self.splitNumeric(size)]
return int(float(number) * byte_units[unit])
def read_pod_metrics(self):
"""
:description: Uses metrics_server to get cadvisor data.
"""
api_instance = self.get_client(API=client.CustomObjectsApi)
pod_name = self.slug
pod_namespace = self.namespace.slug
items = api_instance.list_cluster_custom_object("metrics.k8s.io", "v1beta1", "pods").get("items", [])
return [pod for pod in items if pod_name in pod.get("metadata", {}).get("name") and pod_namespace in pod.get("metadata", {}).get("namespace")]
def read_pod_usage(self):
"""
:description: Converts metrics into dictionary for api usage.
"""
pod_name = self.pod_template.slug
pod_namespace = self.namespace.slug
pod_metrics = self.read_pod_metrics()
cpu = 0.000
memory = 0
for metric in pod_metrics:
for container in metric.get("containers", []):
ccpu = container.get("usage", {}).get("cpu", None)
cmem = container.get("usage", {}).get("memory", None)
if "m" in ccpu:
ccpu = int(ccpu.split("m")[0]) / 1000.000
else:
ccpu = int(ccpu)
cpu += ccpu
memory += self.parseSize(cmem)
return {"cpu": cpu, "memory": memory}
@property
def status(self):
"""
:description: Returns status data of object.
"""
type = self._meta.model_name
name = self.slug
namespace = self.namespace.slug
api_instance = self.get_client(API=client.ExtensionsV1beta1Api)
if type == "kubernetesjob":
api_response = api_instance.read_namespaced_job_status(name, namespace)
if type == "kubernetesdeployment":
api_response = api_instance.read_namespaced_deployment_status(name, namespace)
return api_response.status
|
[
11748,
33918,
198,
11748,
302,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
479,
18478,
3262,
274,
62,
37153,
13,
1102,
6448,
1330,
18022,
62,
41667,
198,
6738,
479,
18478,
3262,
274,
1330,
5456,
11,
4566,
628,
198,
4871,
12554,
527,
3262,
274,
31709,
41935,
35608,
259,
7,
27530,
13,
17633,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12554,
527,
3262,
274,
31709,
41935,
35608,
259,
198,
220,
220,
220,
1058,
4906,
25,
5022,
259,
198,
220,
220,
220,
1058,
11213,
25,
5683,
2412,
1200,
2746,
284,
2291,
5735,
41935,
3033,
13,
198,
220,
220,
220,
1058,
259,
372,
896,
25,
42625,
14208,
13,
9945,
13,
27530,
13,
17633,
198,
220,
220,
220,
1058,
25747,
25,
2134,
62,
13376,
11,
2811,
62,
36166,
62,
26060,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2811,
62,
11883,
62,
26060,
11,
42804,
62,
26060,
62,
43012,
11,
1066,
62,
26060,
62,
43012,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2134,
62,
13376,
796,
4981,
13,
12441,
15878,
7,
9806,
62,
13664,
28,
12762,
11,
9242,
28,
17821,
11,
9178,
28,
17821,
11,
1037,
62,
5239,
2625,
13376,
286,
262,
2134,
287,
12554,
527,
3262,
274,
4943,
198,
220,
220,
220,
2811,
62,
36166,
62,
26060,
796,
4981,
13,
10707,
4402,
15878,
7,
8423,
28,
17821,
11,
9178,
28,
17821,
11,
3509,
62,
12894,
896,
28,
23,
11,
32465,
62,
23625,
28,
19,
11,
1037,
62,
5239,
2625,
26287,
49040,
9135,
4991,
13529,
4943,
198,
220,
220,
220,
2811,
62,
11883,
62,
26060,
796,
4981,
13,
46541,
15878,
7,
8423,
28,
17821,
11,
9178,
28,
17821,
11,
1037,
62,
5239,
2625,
26287,
49040,
9881,
13529,
4943,
198,
220,
220,
220,
42804,
62,
26060,
62,
43012,
796,
4981,
13,
10707,
4402,
15878,
7,
8423,
28,
17821,
11,
9178,
28,
17821,
11,
3509,
62,
12894,
896,
28,
23,
11,
32465,
62,
23625,
28,
19,
11,
1037,
62,
5239,
2625,
26287,
42804,
8748,
1635,
4201,
2107,
4943,
198,
220,
220,
220,
1066,
62,
26060,
62,
43012,
796,
4981,
13,
46541,
15878,
7,
8423,
28,
17821,
11,
9178,
28,
17821,
11,
1037,
62,
5239,
2625,
26287,
1066,
8748,
1635,
4201,
2107,
4943,
628,
220,
220,
220,
825,
6626,
45,
39223,
7,
944,
11,
2546,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
11213,
25,
23042,
274,
4731,
656,
35575,
7515,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8106,
7,
14202,
11,
302,
13,
35312,
7,
81,
18109,
59,
67,
28988,
1600,
2546,
4008,
628,
220,
220,
220,
825,
21136,
10699,
7,
944,
11,
2546,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
11213,
25,
23042,
274,
4731,
355,
35575,
11,
35488,
290,
26161,
284,
9881,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
11,
4326,
796,
685,
8841,
329,
4731,
287,
2116,
13,
35312,
45,
39223,
7,
7857,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
493,
7,
22468,
7,
17618,
8,
1635,
18022,
62,
41667,
58,
20850,
12962,
628,
220,
220,
220,
825,
1100,
62,
33320,
62,
4164,
10466,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
11213,
25,
36965,
20731,
62,
15388,
284,
651,
220,
20603,
13131,
1366,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
39098,
796,
2116,
13,
1136,
62,
16366,
7,
17614,
28,
16366,
13,
15022,
10267,
82,
32,
14415,
8,
198,
220,
220,
220,
220,
220,
220,
220,
24573,
62,
3672,
796,
2116,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
24573,
62,
14933,
10223,
796,
2116,
13,
14933,
10223,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
3709,
796,
40391,
62,
39098,
13,
4868,
62,
565,
5819,
62,
23144,
62,
15252,
7203,
4164,
10466,
13,
74,
23,
82,
13,
952,
1600,
366,
85,
16,
31361,
16,
1600,
366,
79,
12978,
11074,
1136,
7203,
23814,
1600,
685,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
33320,
329,
24573,
287,
3709,
611,
24573,
62,
3672,
287,
24573,
13,
1136,
7203,
38993,
1600,
23884,
737,
1136,
7203,
3672,
4943,
290,
24573,
62,
14933,
10223,
287,
24573,
13,
1136,
7203,
38993,
1600,
23884,
737,
1136,
7203,
14933,
10223,
4943,
60,
628,
220,
220,
220,
825,
1100,
62,
33320,
62,
26060,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
11213,
25,
1482,
24040,
20731,
656,
22155,
329,
40391,
8748,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
24573,
62,
3672,
796,
2116,
13,
33320,
62,
28243,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
24573,
62,
14933,
10223,
796,
2116,
13,
14933,
10223,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
24573,
62,
4164,
10466,
796,
2116,
13,
961,
62,
33320,
62,
4164,
10466,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
42804,
796,
657,
13,
830,
198,
220,
220,
220,
220,
220,
220,
220,
4088,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
18663,
287,
24573,
62,
4164,
10466,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
9290,
287,
18663,
13,
1136,
7203,
3642,
50221,
1600,
17635,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
36166,
796,
9290,
13,
1136,
7203,
26060,
1600,
23884,
737,
1136,
7203,
36166,
1600,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
11883,
796,
9290,
13,
1136,
7203,
26060,
1600,
23884,
737,
1136,
7203,
31673,
1600,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
76,
1,
287,
269,
36166,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
36166,
796,
493,
7,
535,
19944,
13,
35312,
7203,
76,
4943,
58,
15,
12962,
1220,
8576,
13,
830,
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,
269,
36166,
796,
493,
7,
535,
19944,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42804,
15853,
269,
36166,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4088,
15853,
2116,
13,
29572,
10699,
7,
11215,
368,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
19779,
36166,
1298,
42804,
11,
366,
31673,
1298,
4088,
92,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
3722,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
11213,
25,
16409,
3722,
1366,
286,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2099,
796,
2116,
13557,
28961,
13,
19849,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
2116,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
25745,
796,
2116,
13,
14933,
10223,
13,
6649,
1018,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
39098,
796,
2116,
13,
1136,
62,
16366,
7,
17614,
28,
16366,
13,
11627,
5736,
53,
16,
31361,
16,
32,
14415,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
6624,
366,
74,
18478,
3262,
274,
21858,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
26209,
796,
40391,
62,
39098,
13,
961,
62,
14933,
32416,
62,
21858,
62,
13376,
7,
3672,
11,
25745,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2099,
6624,
366,
74,
18478,
3262,
274,
2934,
1420,
434,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
26209,
796,
40391,
62,
39098,
13,
961,
62,
14933,
32416,
62,
2934,
1420,
434,
62,
13376,
7,
3672,
11,
25745,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
40391,
62,
26209,
13,
13376,
198
] | 2.411806 | 1,423 |
from django.conf import settings
from django.db import migrations
|
[
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
628,
198
] | 3.777778 | 18 |
import sys
sys.path.insert(1,"../../")
import h2o
import math
import os
from tests import pyunit_utils
def calculate_chunk_size(file_path, num_cols, cores, cloud_size):
"""
Return size of a chunk calculated for optimal data handling in h2o java backend.
:param file_path: path to dataset
:param num_cols: number or columns in dataset
:param cores: number of CPUs on machine where the model was trained
:param cloud_size: number of nodes on machine where the model was trained
:return: a chunk size
"""
# get maximal line size from file in bytes
max_line_length = 0
total_size = 0
with open(file_path, "rU") as input_file:
for line in input_file:
size = len(line)
total_size = total_size + size
if size > max_line_length:
max_line_length = size
default_log2_chunk_size = 20+2
default_chunk_size = 1 << default_log2_chunk_size
local_parse_size = int(total_size / cloud_size)
min_number_rows = 10 # need at least 10 rows (lines) per chunk (core)
per_node_chunk_count_limit = 1 << 21 # don't create more than 2M Chunk POJOs per node
min_parse_chunk_size = 1 << 12 # don't read less than this many bytes
max_parse_chunk_size = (1 << 28)-1 # don't read more than this many bytes per map() thread
chunk_size = int(max((local_parse_size / (4*cores))+1, min_parse_chunk_size)) # lower hard limit
if chunk_size > 1024*1024:
chunk_size = (chunk_size & 0xFFFFFE00) + 512 # align chunk size to 512B
# Super small data check - file size is smaller than 64kB
if total_size <= 1 << 16:
chunk_size = max(default_chunk_size, int(min_number_rows * max_line_length))
else:
# Small data check
if (chunk_size < default_chunk_size) and ((local_parse_size / chunk_size) * num_cols < per_node_chunk_count_limit):
chunk_size = max(int(chunk_size), int(min_number_rows * max_line_length))
else:
# Adjust chunk_size such that we don't create too many chunks
chunk_count = cores * 4 * num_cols
if chunk_count > per_node_chunk_count_limit:
# this times too many chunks globally on the cluster
ratio = 1 << max(2, int(math.log2(int(chunk_count / per_node_chunk_count_limit))))
chunk_size = chunk_size * ratio # need to bite off larger chunks
chunk_size = min(max_parse_chunk_size, chunk_size) # hard upper limit
# if we can read at least min_number_rows and we don't create too large Chunk POJOs, we're done
# else, fix it with a catch-all heuristic
if chunk_size <= min_number_rows * max_line_length:
# might be more than default, if the max line length needs it, but no more than the size limit(s)
# also, don't ever create too large chunks
chunk_size = int(max(default_chunk_size, # default chunk size is a good lower limit for big data
min(max_parse_chunk_size, min_number_rows * max_line_length))) # don't read more than 1GB, but enough to read the minimum number of rows)
return int(chunk_size)
if __name__ == "__main__":
pyunit_utils.standalone_test(pubdev_6339)
else:
pubdev_6339()
|
[
11748,
25064,
198,
17597,
13,
6978,
13,
28463,
7,
16,
553,
40720,
40720,
4943,
198,
11748,
289,
17,
78,
198,
11748,
10688,
198,
11748,
28686,
198,
6738,
5254,
1330,
12972,
20850,
62,
26791,
628,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
4299,
15284,
62,
354,
2954,
62,
7857,
7,
7753,
62,
6978,
11,
997,
62,
4033,
82,
11,
21758,
11,
6279,
62,
7857,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8229,
2546,
286,
257,
16058,
10488,
329,
16586,
1366,
9041,
287,
289,
17,
78,
20129,
30203,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2393,
62,
6978,
25,
220,
3108,
284,
27039,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
997,
62,
4033,
82,
25,
220,
1271,
393,
15180,
287,
27039,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
21758,
25,
220,
1271,
286,
32340,
319,
4572,
810,
262,
2746,
373,
8776,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6279,
62,
7857,
25,
220,
1271,
286,
13760,
319,
4572,
810,
262,
2746,
373,
8776,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
257,
16058,
2546,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
651,
40708,
1627,
2546,
422,
2393,
287,
9881,
198,
220,
220,
220,
3509,
62,
1370,
62,
13664,
796,
657,
198,
220,
220,
220,
2472,
62,
7857,
796,
657,
198,
220,
220,
220,
351,
1280,
7,
7753,
62,
6978,
11,
366,
81,
52,
4943,
355,
5128,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
5128,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2546,
796,
18896,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
7857,
796,
2472,
62,
7857,
1343,
2546,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2546,
1875,
3509,
62,
1370,
62,
13664,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
1370,
62,
13664,
796,
2546,
198,
220,
220,
220,
4277,
62,
6404,
17,
62,
354,
2954,
62,
7857,
796,
1160,
10,
17,
198,
220,
220,
220,
4277,
62,
354,
2954,
62,
7857,
796,
352,
9959,
4277,
62,
6404,
17,
62,
354,
2954,
62,
7857,
198,
220,
220,
220,
1957,
62,
29572,
62,
7857,
796,
493,
7,
23350,
62,
7857,
1220,
6279,
62,
7857,
8,
198,
220,
220,
220,
949,
62,
17618,
62,
8516,
796,
838,
220,
1303,
761,
379,
1551,
838,
15274,
357,
6615,
8,
583,
16058,
357,
7295,
8,
198,
220,
220,
220,
583,
62,
17440,
62,
354,
2954,
62,
9127,
62,
32374,
796,
352,
9959,
2310,
220,
1303,
836,
470,
2251,
517,
621,
362,
44,
609,
2954,
19922,
41,
16748,
583,
10139,
198,
220,
220,
220,
949,
62,
29572,
62,
354,
2954,
62,
7857,
796,
352,
9959,
1105,
220,
1303,
836,
470,
1100,
1342,
621,
428,
867,
9881,
198,
220,
220,
220,
3509,
62,
29572,
62,
354,
2954,
62,
7857,
796,
357,
16,
9959,
2579,
13219,
16,
220,
1303,
836,
470,
1100,
517,
621,
428,
867,
9881,
583,
3975,
3419,
4704,
220,
198,
220,
220,
220,
16058,
62,
7857,
796,
493,
7,
9806,
19510,
12001,
62,
29572,
62,
7857,
1220,
357,
19,
9,
66,
2850,
4008,
10,
16,
11,
949,
62,
29572,
62,
354,
2954,
62,
7857,
4008,
220,
1303,
2793,
1327,
4179,
198,
220,
220,
220,
611,
16058,
62,
7857,
1875,
28119,
9,
35500,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
357,
354,
2954,
62,
7857,
1222,
657,
87,
29312,
15112,
405,
8,
1343,
22243,
220,
1303,
10548,
16058,
2546,
284,
22243,
33,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3115,
1402,
1366,
2198,
532,
2393,
2546,
318,
4833,
621,
5598,
38841,
198,
220,
220,
220,
611,
2472,
62,
7857,
19841,
352,
9959,
1467,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
3509,
7,
12286,
62,
354,
2954,
62,
7857,
11,
493,
7,
1084,
62,
17618,
62,
8516,
1635,
3509,
62,
1370,
62,
13664,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10452,
1366,
2198,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
354,
2954,
62,
7857,
1279,
4277,
62,
354,
2954,
62,
7857,
8,
290,
14808,
12001,
62,
29572,
62,
7857,
1220,
16058,
62,
7857,
8,
1635,
997,
62,
4033,
82,
1279,
583,
62,
17440,
62,
354,
2954,
62,
9127,
62,
32374,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
3509,
7,
600,
7,
354,
2954,
62,
7857,
828,
493,
7,
1084,
62,
17618,
62,
8516,
1635,
3509,
62,
1370,
62,
13664,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20292,
16058,
62,
7857,
884,
326,
356,
836,
470,
2251,
1165,
867,
22716,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
9127,
796,
21758,
1635,
604,
1635,
997,
62,
4033,
82,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16058,
62,
9127,
1875,
583,
62,
17440,
62,
354,
2954,
62,
9127,
62,
32374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
1661,
1165,
867,
22716,
18309,
319,
262,
13946,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8064,
796,
352,
9959,
3509,
7,
17,
11,
493,
7,
11018,
13,
6404,
17,
7,
600,
7,
354,
2954,
62,
9127,
1220,
583,
62,
17440,
62,
354,
2954,
62,
9127,
62,
32374,
35514,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
16058,
62,
7857,
1635,
8064,
220,
1303,
761,
284,
13197,
572,
4025,
22716,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
949,
7,
9806,
62,
29572,
62,
354,
2954,
62,
7857,
11,
16058,
62,
7857,
8,
220,
1303,
1327,
6727,
4179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
356,
460,
1100,
379,
1551,
949,
62,
17618,
62,
8516,
290,
356,
836,
470,
2251,
1165,
1588,
609,
2954,
19922,
41,
16748,
11,
356,
821,
1760,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2073,
11,
4259,
340,
351,
257,
4929,
12,
439,
339,
27915,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16058,
62,
7857,
19841,
949,
62,
17618,
62,
8516,
1635,
3509,
62,
1370,
62,
13664,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1244,
307,
517,
621,
4277,
11,
611,
262,
3509,
1627,
4129,
2476,
340,
11,
475,
645,
517,
621,
262,
2546,
4179,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
635,
11,
836,
470,
1683,
2251,
1165,
1588,
22716,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
62,
7857,
796,
493,
7,
9806,
7,
12286,
62,
354,
2954,
62,
7857,
11,
220,
1303,
4277,
16058,
2546,
318,
257,
922,
2793,
4179,
329,
1263,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
7,
9806,
62,
29572,
62,
354,
2954,
62,
7857,
11,
949,
62,
17618,
62,
8516,
1635,
3509,
62,
1370,
62,
13664,
22305,
220,
1303,
836,
470,
1100,
517,
621,
352,
4579,
11,
475,
1576,
284,
1100,
262,
5288,
1271,
286,
15274,
8,
198,
220,
220,
220,
1441,
493,
7,
354,
2954,
62,
7857,
8,
220,
198,
220,
220,
220,
220,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
12972,
20850,
62,
26791,
13,
1481,
17749,
62,
9288,
7,
12984,
7959,
62,
21,
29626,
8,
198,
17772,
25,
198,
220,
220,
220,
2240,
7959,
62,
21,
29626,
3419,
198
] | 2.435098 | 1,379 |
from mule.task import ITask
import mule.util.docker_util as docker
from mule.error import messages
from mule.util import update_dict
import re
|
[
6738,
285,
2261,
13,
35943,
1330,
7283,
2093,
198,
11748,
285,
2261,
13,
22602,
13,
45986,
62,
22602,
355,
36253,
198,
6738,
285,
2261,
13,
18224,
1330,
6218,
198,
6738,
285,
2261,
13,
22602,
1330,
4296,
62,
11600,
198,
11748,
302,
198
] | 3.404762 | 42 |
# SPDX-FileCopyrightText: 2017 Tony DiCola for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_drv2605`
====================================================
CircuitPython module for the DRV2605 haptic feedback motor driver. See
examples/simpletest.py for a demo of the usage.
* Author(s): Tony DiCola
"""
from micropython import const
from adafruit_bus_device.i2c_device import I2CDevice
__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_DRV2605.git"
##
# EDITED BY github: @MISSCRISPENCAKES
# FOR LRA CLOSED-LOOP DEFAULT
# AUTO-CALIB SETUP
##
# Internal constants:
_DRV2605_ADDR = const(0x5A)
_DRV2605_REG_STATUS = const(0x00)
_DRV2605_REG_MODE = const(0x01)
_DRV2605_REG_RTPIN = const(0x02)
_DRV2605_REG_LIBRARY = const(0x03)
_DRV2605_REG_WAVESEQ1 = const(0x04)
_DRV2605_REG_WAVESEQ2 = const(0x05)
_DRV2605_REG_WAVESEQ3 = const(0x06)
_DRV2605_REG_WAVESEQ4 = const(0x07)
_DRV2605_REG_WAVESEQ5 = const(0x08)
_DRV2605_REG_WAVESEQ6 = const(0x09)
_DRV2605_REG_WAVESEQ7 = const(0x0A)
_DRV2605_REG_WAVESEQ8 = const(0x0B)
_DRV2605_REG_GO = const(0x0C)
_DRV2605_REG_OVERDRIVE = const(0x0D)
_DRV2605_REG_SUSTAINPOS = const(0x0E)
_DRV2605_REG_SUSTAINNEG = const(0x0F)
_DRV2605_REG_BREAK = const(0x10)
_DRV2605_REG_AUDIOCTRL = const(0x11)
_DRV2605_REG_AUDIOLVL = const(0x12)
_DRV2605_REG_AUDIOMAX = const(0x13)
_DRV2605_REG_RATEDV = const(0x16)
_DRV2605_REG_CLAMPV = const(0x17)
_DRV2605_REG_AUTOCALCOMP = const(0x18)
_DRV2605_REG_AUTOCALEMP = const(0x19)
_DRV2605_REG_FEEDBACK = const(0x1A)
_DRV2605_REG_CONTROL1 = const(0x1B)
_DRV2605_REG_CONTROL2 = const(0x1C)
_DRV2605_REG_CONTROL3 = const(0x1D)
_DRV2605_REG_CONTROL4 = const(0x1E)
_DRV2605_REG_VBAT = const(0x21)
_DRV2605_REG_LRARESON = const(0x22)
# User-facing mode value constants:
MODE_INTTRIG = 0x00
MODE_EXTTRIGEDGE = 0x01
MODE_EXTTRIGLVL = 0x02
MODE_PWMANALOG = 0x03
MODE_AUDIOVIBE = 0x04
MODE_REALTIME = 0x05
MODE_DIAGNOS = 0x06
MODE_AUTOCAL = 0x07
LIBRARY_EMPTY = 0x00
LIBRARY_TS2200A = 0x01
LIBRARY_TS2200B = 0x02
LIBRARY_TS2200C = 0x03
LIBRARY_TS2200D = 0x04
LIBRARY_TS2200E = 0x05
LIBRARY_LRA = 0x06
class DRV2605:
"""TI DRV2605 haptic feedback motor driver module."""
# Class-level buffer for reading and writing data with the sensor.
# This reduces memory allocations but means the code is not re-entrant or
# thread safe!
_BUFFER = bytearray(2)
def play(self):
"""Play back the select effect(s) on the motor."""
self._write_u8(_DRV2605_REG_GO, 1)
def stop(self):
"""Stop vibrating the motor."""
self._write_u8(_DRV2605_REG_GO, 0)
@property
def diag(self):
""" Check for auto calibration success """
return self._read_u8(_DRV2605_REG_STATUS)
@diag.setter
@property
def mode(self):
"""
The mode of the chip. Should be a value of:
- MODE_INTTRIG: Internal triggering, vibrates as soon as you call
play(). Default mode.
- MODE_EXTTRIGEDGE: External triggering, edge mode.
- MODE_EXTTRIGLVL: External triggering, level mode.
- MODE_PWMANALOG: PWM/analog input mode.
- MODE_AUDIOVIBE: Audio-to-vibration mode.
- MODE_REALTIME: Real-time playback mode.
- MODE_DIAGNOS: Diagnostics mode.
- MODE_AUTOCAL: Auto-calibration mode.
See the datasheet for the meaning of modes beyond MODE_INTTRIG.
"""
return self._read_u8(_DRV2605_REG_MODE)
@mode.setter
@property
def library(self):
"""
The library selected for waveform playback. Should be
a value of:
- LIBRARY_EMPTY: Empty
- LIBRARY_TS2200A: TS2200 library A (the default)
- LIBRARY_TS2200B: TS2200 library B
- LIBRARY_TS2200C: TS2200 library C
- LIBRARY_TS2200D: TS2200 library D
- LIBRARY_TS2200E: TS2200 library E
- LIBRARY_LRA: LRA library
See the datasheet for the meaning and description of effects in each
library.
"""
return self._read_u8(_DRV2605_REG_LIBRARY) & 0x07
@library.setter
@property
def sequence(self):
"""List-like sequence of waveform effects.
Get or set an effect waveform for slot 0-6 by indexing the sequence
property with the slot number. A slot must be set to either an Effect()
or Pause() class. See the datasheet for a complete table of effect ID
values and the associated waveform / effect.
E.g. 'slot_0_effect = drv.sequence[0]', 'drv.sequence[0] = Effect(88)'
"""
return self._sequence
def set_waveform(self, effect_id, slot=0):
"""Select an effect waveform for the specified slot (default is slot 0,
but up to 7 effects can be combined with slot values 0 to 6). See the
datasheet for a complete table of effect ID values and the associated
waveform / effect.
"""
if not 0 <= effect_id <= 123:
raise ValueError("Effect ID must be a value within 0-123!")
if not 0 <= slot <= 6:
raise ValueError("Slot must be a value within 0-6!")
self._write_u8(_DRV2605_REG_WAVESEQ1 + slot, effect_id)
# pylint: disable=invalid-name
def use_ERM(self):
"""Use an eccentric rotating mass motor (the default)."""
feedback = self._read_u8(_DRV2605_REG_FEEDBACK)
self._write_u8(_DRV2605_REG_FEEDBACK, feedback & 0x7F)
# pylint: disable=invalid-name
def use_LRM(self):
"""Use a linear resonance actuator motor."""
feedback = self._read_u8(_DRV2605_REG_FEEDBACK)
self._write_u8(_DRV2605_REG_FEEDBACK, feedback | 0x80)
class Effect:
"""DRV2605 waveform sequence effect."""
@property
def raw_value(self):
"""Raw effect ID."""
return self._effect_id
@property
# pylint: disable=invalid-name
def id(self):
"""Effect ID."""
return self._effect_id
@id.setter
# pylint: disable=invalid-name
def id(self, effect_id):
"""Set the effect ID."""
if not 0 <= effect_id <= 123:
raise ValueError("Effect ID must be a value within 0-123!")
self._effect_id = effect_id
class Pause:
"""DRV2605 waveform sequence timed delay."""
@property
def raw_value(self):
"""Raw pause duration."""
return self._duration
@property
def duration(self):
"""Pause duration in seconds."""
# Remove wait time flag bit and convert duration to seconds
return (self._duration & 0x7F) / 100.0
@duration.setter
def duration(self, duration):
"""Sets the pause duration in seconds."""
if not 0.0 <= duration <= 1.27:
raise ValueError("Pause duration must be a value within 0.0-1.27!")
# Add wait time flag bit and convert duration to centiseconds
self._duration = 0x80 | round(duration * 100.0)
class _DRV2605_Sequence:
"""Class to enable List-like indexing of the waveform sequence slots."""
def __setitem__(self, slot, effect):
"""Write an Effect or Pause to a slot."""
if not 0 <= slot <= 6:
raise IndexError("Slot must be a value within 0-6!")
if not isinstance(effect, (Effect, Pause)):
raise TypeError("Effect must be either an Effect() or Pause()!")
# pylint: disable=protected-access
self._drv2605._write_u8(_DRV2605_REG_WAVESEQ1 + slot, effect.raw_value)
def __getitem__(self, slot):
"""Read an effect ID from a slot. Returns either a Pause or Effect class."""
if not 0 <= slot <= 6:
raise IndexError("Slot must be a value within 0-6!")
# pylint: disable=protected-access
slot_contents = self._drv2605._read_u8(_DRV2605_REG_WAVESEQ1 + slot)
if slot_contents & 0x80:
return Pause((slot_contents & 0x7F) / 100.0)
return Effect(slot_contents)
def __iter__(self):
"""Returns an iterator over the waveform sequence slots."""
for slot in range(0, 7):
yield self[slot]
def __repr__(self):
"""Return a string representation of all slot's effects."""
return repr(list(self))
|
[
2,
30628,
55,
12,
8979,
15269,
8206,
25,
2177,
8832,
6031,
28635,
329,
1215,
1878,
4872,
20171,
201,
198,
2,
201,
198,
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
17168,
201,
198,
201,
198,
37811,
201,
198,
63,
324,
1878,
4872,
62,
7109,
85,
21719,
20,
63,
201,
198,
10052,
4770,
1421,
201,
198,
201,
198,
31560,
5013,
37906,
8265,
329,
262,
10560,
53,
21719,
20,
387,
17459,
7538,
5584,
4639,
13,
220,
4091,
201,
198,
1069,
12629,
14,
36439,
9288,
13,
9078,
329,
257,
13605,
286,
262,
8748,
13,
201,
198,
201,
198,
9,
6434,
7,
82,
2599,
8832,
6031,
28635,
201,
198,
37811,
201,
198,
6738,
12314,
1773,
7535,
1330,
1500,
201,
198,
201,
198,
6738,
512,
1878,
4872,
62,
10885,
62,
25202,
13,
72,
17,
66,
62,
25202,
1330,
314,
17,
8610,
1990,
501,
201,
198,
201,
198,
834,
9641,
834,
796,
366,
15,
13,
15,
13,
15,
12,
23736,
13,
15,
1,
201,
198,
834,
260,
7501,
834,
796,
366,
5450,
1378,
12567,
13,
785,
14,
324,
1878,
4872,
14,
2782,
1878,
4872,
62,
31560,
5013,
37906,
62,
7707,
53,
21719,
20,
13,
18300,
1,
201,
198,
201,
198,
201,
198,
2235,
201,
198,
2,
8392,
22061,
11050,
33084,
25,
2488,
44,
1797,
6173,
49,
1797,
47,
1677,
8141,
42,
1546,
201,
198,
2,
7473,
406,
3861,
7852,
48751,
12,
21982,
3185,
5550,
38865,
220,
201,
198,
2,
47044,
46,
12,
34,
1847,
9865,
25823,
8577,
201,
198,
2235,
201,
198,
201,
198,
201,
198,
2,
18628,
38491,
25,
201,
198,
62,
7707,
53,
21719,
20,
62,
2885,
7707,
796,
1500,
7,
15,
87,
20,
32,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
35744,
2937,
796,
1500,
7,
15,
87,
405,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
49058,
796,
1500,
7,
15,
87,
486,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
49,
7250,
1268,
796,
1500,
7,
15,
87,
2999,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
40347,
49,
13153,
796,
1500,
7,
15,
87,
3070,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
16,
796,
1500,
7,
15,
87,
3023,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
17,
796,
1500,
7,
15,
87,
2713,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
18,
796,
1500,
7,
15,
87,
3312,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
19,
796,
1500,
7,
15,
87,
2998,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
20,
796,
1500,
7,
15,
87,
2919,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
21,
796,
1500,
7,
15,
87,
2931,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
22,
796,
1500,
7,
15,
87,
15,
32,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
23,
796,
1500,
7,
15,
87,
15,
33,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
11230,
796,
1500,
7,
15,
87,
15,
34,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
41983,
7707,
9306,
796,
1500,
7,
15,
87,
15,
35,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
50,
7759,
29833,
37997,
796,
1500,
7,
15,
87,
15,
36,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
50,
7759,
29833,
45,
7156,
796,
1500,
7,
15,
87,
15,
37,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
40438,
10206,
796,
1500,
7,
15,
87,
940,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
48877,
9399,
4177,
7836,
796,
1500,
7,
15,
87,
1157,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
48877,
40,
3535,
47468,
796,
1500,
7,
15,
87,
1065,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
48877,
40,
2662,
25922,
796,
1500,
7,
15,
87,
1485,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
49,
11617,
53,
796,
1500,
7,
15,
87,
1433,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
5097,
23518,
53,
796,
1500,
7,
15,
87,
1558,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
39371,
4503,
1847,
9858,
47,
796,
1500,
7,
15,
87,
1507,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
39371,
4503,
1847,
39494,
796,
1500,
7,
15,
87,
1129,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
15112,
1961,
31098,
796,
1500,
7,
15,
87,
16,
32,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
10943,
5446,
3535,
16,
796,
1500,
7,
15,
87,
16,
33,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
10943,
5446,
3535,
17,
796,
1500,
7,
15,
87,
16,
34,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
10943,
5446,
3535,
18,
796,
1500,
7,
15,
87,
16,
35,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
10943,
5446,
3535,
19,
796,
1500,
7,
15,
87,
16,
36,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
44526,
1404,
796,
1500,
7,
15,
87,
2481,
8,
201,
198,
62,
7707,
53,
21719,
20,
62,
31553,
62,
35972,
1503,
1546,
1340,
796,
1500,
7,
15,
87,
1828,
8,
201,
198,
201,
198,
2,
11787,
12,
29532,
4235,
1988,
38491,
25,
201,
198,
49058,
62,
12394,
5446,
3528,
796,
657,
87,
405,
201,
198,
49058,
62,
13918,
5446,
3528,
1961,
8264,
796,
657,
87,
486,
201,
198,
49058,
62,
13918,
5446,
3528,
30976,
43,
796,
657,
87,
2999,
201,
198,
49058,
62,
47,
54,
10725,
1847,
7730,
796,
657,
87,
3070,
201,
198,
49058,
62,
48877,
40,
8874,
9865,
36,
796,
657,
87,
3023,
201,
198,
49058,
62,
2200,
31429,
12789,
796,
657,
87,
2713,
201,
198,
49058,
62,
35,
3539,
16630,
2640,
796,
657,
87,
3312,
201,
198,
49058,
62,
39371,
4503,
1847,
796,
657,
87,
2998,
201,
198,
201,
198,
40347,
49,
13153,
62,
39494,
9936,
796,
657,
87,
405,
201,
198,
40347,
49,
13153,
62,
4694,
34294,
32,
796,
657,
87,
486,
201,
198,
40347,
49,
13153,
62,
4694,
34294,
33,
796,
657,
87,
2999,
201,
198,
40347,
49,
13153,
62,
4694,
34294,
34,
796,
657,
87,
3070,
201,
198,
40347,
49,
13153,
62,
4694,
34294,
35,
796,
657,
87,
3023,
201,
198,
40347,
49,
13153,
62,
4694,
34294,
36,
796,
657,
87,
2713,
201,
198,
40347,
49,
13153,
62,
43,
3861,
796,
657,
87,
3312,
201,
198,
201,
198,
201,
198,
4871,
10560,
53,
21719,
20,
25,
201,
198,
220,
220,
220,
37227,
25621,
10560,
53,
21719,
20,
387,
17459,
7538,
5584,
4639,
8265,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
1303,
5016,
12,
5715,
11876,
329,
3555,
290,
3597,
1366,
351,
262,
12694,
13,
201,
198,
220,
220,
220,
1303,
770,
12850,
4088,
49157,
475,
1724,
262,
2438,
318,
407,
302,
12,
298,
5250,
393,
201,
198,
220,
220,
220,
1303,
4704,
3338,
0,
201,
198,
220,
220,
220,
4808,
19499,
45746,
796,
416,
83,
451,
2433,
7,
17,
8,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
220,
220,
220,
825,
711,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11002,
736,
262,
2922,
1245,
7,
82,
8,
319,
262,
5584,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
11230,
11,
352,
8,
201,
198,
201,
198,
220,
220,
220,
825,
2245,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19485,
12611,
803,
262,
5584,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
11230,
11,
657,
8,
201,
198,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
2566,
363,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6822,
329,
8295,
36537,
1943,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
35744,
2937,
8,
201,
198,
201,
198,
220,
220,
220,
2488,
10989,
363,
13,
2617,
353,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
4235,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
383,
4235,
286,
262,
11594,
13,
10358,
307,
257,
1988,
286,
25,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
12394,
5446,
3528,
25,
18628,
26555,
11,
12611,
689,
355,
2582,
355,
345,
869,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
711,
22446,
220,
15161,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
13918,
5446,
3528,
1961,
8264,
25,
34579,
26555,
11,
5743,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
13918,
5446,
3528,
30976,
43,
25,
34579,
26555,
11,
1241,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
47,
54,
10725,
1847,
7730,
25,
350,
22117,
14,
272,
11794,
5128,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
48877,
40,
8874,
9865,
36,
25,
13491,
12,
1462,
12,
85,
571,
1358,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
2200,
31429,
12789,
25,
6416,
12,
2435,
16388,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
35,
3539,
16630,
2640,
25,
31549,
34558,
4235,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
337,
16820,
62,
39371,
4503,
1847,
25,
11160,
12,
9948,
571,
1358,
4235,
13,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4091,
262,
19395,
25473,
329,
262,
3616,
286,
12881,
3675,
337,
16820,
62,
12394,
5446,
3528,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
49058,
8,
201,
198,
201,
198,
220,
220,
220,
2488,
14171,
13,
2617,
353,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
5888,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
383,
5888,
6163,
329,
6769,
687,
16388,
13,
220,
10358,
307,
201,
198,
220,
220,
220,
220,
220,
220,
220,
257,
1988,
286,
25,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
39494,
9936,
25,
33523,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
4694,
34294,
32,
25,
26136,
34294,
5888,
317,
220,
357,
1169,
4277,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
4694,
34294,
33,
25,
26136,
34294,
5888,
347,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
4694,
34294,
34,
25,
26136,
34294,
5888,
327,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
4694,
34294,
35,
25,
26136,
34294,
5888,
360,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
4694,
34294,
36,
25,
26136,
34294,
5888,
412,
201,
198,
220,
220,
220,
220,
220,
220,
220,
532,
45651,
49,
13153,
62,
43,
3861,
25,
406,
3861,
5888,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4091,
262,
19395,
25473,
329,
262,
3616,
290,
6764,
286,
3048,
287,
1123,
201,
198,
220,
220,
220,
220,
220,
220,
220,
5888,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
40347,
49,
13153,
8,
1222,
657,
87,
2998,
201,
198,
201,
198,
220,
220,
220,
2488,
32016,
13,
2617,
353,
201,
198,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
8379,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8053,
12,
2339,
8379,
286,
6769,
687,
3048,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
393,
900,
281,
1245,
6769,
687,
329,
10852,
657,
12,
21,
416,
6376,
278,
262,
8379,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3119,
351,
262,
10852,
1271,
13,
317,
10852,
1276,
307,
900,
284,
2035,
281,
7896,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
393,
350,
682,
3419,
1398,
13,
4091,
262,
19395,
25473,
329,
257,
1844,
3084,
286,
1245,
4522,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3815,
290,
262,
3917,
6769,
687,
1220,
1245,
13,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
412,
13,
70,
13,
705,
43384,
62,
15,
62,
10760,
796,
1553,
85,
13,
43167,
58,
15,
60,
3256,
705,
7109,
85,
13,
43167,
58,
15,
60,
796,
7896,
7,
3459,
33047,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
43167,
201,
198,
201,
198,
220,
220,
220,
825,
900,
62,
19204,
687,
7,
944,
11,
1245,
62,
312,
11,
10852,
28,
15,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17563,
281,
1245,
6769,
687,
329,
262,
7368,
10852,
357,
12286,
318,
10852,
657,
11,
201,
198,
220,
220,
220,
220,
220,
220,
220,
475,
510,
284,
767,
3048,
460,
307,
5929,
351,
10852,
3815,
657,
284,
718,
737,
220,
4091,
262,
201,
198,
220,
220,
220,
220,
220,
220,
220,
19395,
25473,
329,
257,
1844,
3084,
286,
1245,
4522,
3815,
290,
262,
3917,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6769,
687,
1220,
1245,
13,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
19841,
1245,
62,
312,
19841,
17031,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
18610,
4522,
1276,
307,
257,
1988,
1626,
657,
12,
10163,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
19841,
10852,
19841,
718,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
38963,
1276,
307,
257,
1988,
1626,
657,
12,
21,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
16,
1343,
10852,
11,
1245,
62,
312,
8,
201,
198,
201,
198,
201,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
259,
12102,
12,
3672,
201,
198,
220,
220,
220,
825,
779,
62,
1137,
44,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11041,
281,
29303,
24012,
2347,
5584,
357,
1169,
4277,
21387,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7538,
796,
2116,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
15112,
1961,
31098,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
15112,
1961,
31098,
11,
7538,
1222,
657,
87,
22,
37,
8,
201,
198,
201,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
259,
12102,
12,
3672,
201,
198,
220,
220,
220,
825,
779,
62,
43,
29138,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11041,
257,
14174,
29371,
43840,
1352,
5584,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
7538,
796,
2116,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
15112,
1961,
31098,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
15112,
1961,
31098,
11,
7538,
930,
657,
87,
1795,
8,
201,
198,
201,
198,
201,
198,
4871,
7896,
25,
201,
198,
220,
220,
220,
37227,
7707,
53,
21719,
20,
6769,
687,
8379,
1245,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
8246,
62,
8367,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
27369,
1245,
4522,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10760,
62,
312,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
259,
12102,
12,
3672,
201,
198,
220,
220,
220,
825,
4686,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
18610,
4522,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10760,
62,
312,
201,
198,
201,
198,
220,
220,
220,
2488,
312,
13,
2617,
353,
201,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
259,
12102,
12,
3672,
201,
198,
220,
220,
220,
825,
4686,
7,
944,
11,
1245,
62,
312,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
262,
1245,
4522,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
19841,
1245,
62,
312,
19841,
17031,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
18610,
4522,
1276,
307,
257,
1988,
1626,
657,
12,
10163,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10760,
62,
312,
796,
1245,
62,
312,
201,
198,
201,
198,
201,
198,
4871,
350,
682,
25,
201,
198,
220,
220,
220,
37227,
7707,
53,
21719,
20,
6769,
687,
8379,
28805,
5711,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
8246,
62,
8367,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
27369,
14985,
9478,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
32257,
201,
198,
201,
198,
220,
220,
220,
2488,
26745,
201,
198,
220,
220,
220,
825,
9478,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
49991,
9478,
287,
4201,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17220,
4043,
640,
6056,
1643,
290,
10385,
9478,
284,
4201,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
944,
13557,
32257,
1222,
657,
87,
22,
37,
8,
1220,
1802,
13,
15,
201,
198,
201,
198,
220,
220,
220,
2488,
32257,
13,
2617,
353,
201,
198,
220,
220,
220,
825,
9478,
7,
944,
11,
9478,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
14985,
9478,
287,
4201,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
13,
15,
19841,
9478,
19841,
352,
13,
1983,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
49991,
9478,
1276,
307,
257,
1988,
1626,
657,
13,
15,
12,
16,
13,
1983,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
4043,
640,
6056,
1643,
290,
10385,
9478,
284,
1247,
27866,
24764,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
32257,
796,
657,
87,
1795,
930,
2835,
7,
32257,
1635,
1802,
13,
15,
8,
201,
198,
201,
198,
201,
198,
4871,
4808,
7707,
53,
21719,
20,
62,
44015,
594,
25,
201,
198,
220,
220,
220,
37227,
9487,
284,
7139,
7343,
12,
2339,
6376,
278,
286,
262,
6769,
687,
8379,
17314,
526,
15931,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
2617,
9186,
834,
7,
944,
11,
10852,
11,
1245,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16594,
281,
7896,
393,
350,
682,
284,
257,
10852,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
19841,
10852,
19841,
718,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
12901,
12331,
7203,
38963,
1276,
307,
257,
1988,
1626,
657,
12,
21,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
10760,
11,
357,
18610,
11,
350,
682,
8,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
5994,
12331,
7203,
18610,
1276,
307,
2035,
281,
7896,
3419,
393,
350,
682,
3419,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
24326,
12,
15526,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7109,
85,
21719,
20,
13557,
13564,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
16,
1343,
10852,
11,
1245,
13,
1831,
62,
8367,
8,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
1136,
9186,
834,
7,
944,
11,
10852,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5569,
281,
1245,
4522,
422,
257,
10852,
13,
16409,
2035,
257,
350,
682,
393,
7896,
1398,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
657,
19841,
10852,
19841,
718,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
12901,
12331,
7203,
38963,
1276,
307,
257,
1988,
1626,
657,
12,
21,
2474,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
24326,
12,
15526,
201,
198,
220,
220,
220,
220,
220,
220,
220,
10852,
62,
3642,
658,
796,
2116,
13557,
7109,
85,
21719,
20,
13557,
961,
62,
84,
23,
28264,
7707,
53,
21719,
20,
62,
31553,
62,
54,
10116,
33635,
48,
16,
1343,
10852,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10852,
62,
3642,
658,
1222,
657,
87,
1795,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
350,
682,
19510,
43384,
62,
3642,
658,
1222,
657,
87,
22,
37,
8,
1220,
1802,
13,
15,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7896,
7,
43384,
62,
3642,
658,
8,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
2676,
834,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
281,
41313,
625,
262,
6769,
687,
8379,
17314,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10852,
287,
2837,
7,
15,
11,
767,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
2116,
58,
43384,
60,
201,
198,
201,
198,
220,
220,
220,
825,
11593,
260,
1050,
834,
7,
944,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
257,
4731,
10552,
286,
477,
10852,
338,
3048,
526,
15931,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
41575,
7,
4868,
7,
944,
4008,
201,
198
] | 2.174534 | 3,919 |
from sofi.ui import DescriptionDefinition
|
[
6738,
523,
12463,
13,
9019,
1330,
12489,
36621,
198
] | 4.666667 | 9 |
from .button import *
from settings import Colors
|
[
6738,
764,
16539,
1330,
1635,
198,
6738,
6460,
1330,
29792,
628,
198
] | 4.333333 | 12 |
import pandas as pd
if __name__ == '__main__':
website = 'https://www.peakbagger.com/'
links = pd.read_csv('raw_data/links.csv')
links['full_link'] = website + links['link']
full_links = links[['Mountain', 'full_link']]
full_links = full_links.rename(columns={'full_link': 'link'})
full_links.to_csv('cleaned_data/full_links.csv', index=False)
|
[
11748,
19798,
292,
355,
279,
67,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
3052,
796,
705,
5450,
1378,
2503,
13,
36729,
65,
7928,
13,
785,
14,
6,
628,
220,
220,
220,
6117,
796,
279,
67,
13,
961,
62,
40664,
10786,
1831,
62,
7890,
14,
28751,
13,
40664,
11537,
198,
220,
220,
220,
6117,
17816,
12853,
62,
8726,
20520,
796,
3052,
1343,
6117,
17816,
8726,
20520,
198,
220,
220,
220,
1336,
62,
28751,
796,
6117,
58,
17816,
44,
18635,
3256,
705,
12853,
62,
8726,
6,
11907,
198,
220,
220,
220,
1336,
62,
28751,
796,
1336,
62,
28751,
13,
918,
480,
7,
28665,
82,
34758,
6,
12853,
62,
8726,
10354,
705,
8726,
6,
30072,
198,
220,
220,
220,
1336,
62,
28751,
13,
1462,
62,
40664,
10786,
2375,
22739,
62,
7890,
14,
12853,
62,
28751,
13,
40664,
3256,
6376,
28,
25101,
8,
198
] | 2.483221 | 149 |
import os
from pathlib import Path
from decouple import config, Csv
import dj_database_url
from functools import partial
BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = config('SECRET_KEY')
DEBUG = config('DEBUG', cast=bool)
ALLOWED_HOSTS = config('ALLOWED_HOSTS', cast=Csv())
AUTH_USER_MODEL = 'base.User'
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'collectfast',
'django.contrib.staticfiles',
'pypro.base'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'pypro.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'pypro.wsgi.application'
# Django Debug Toolbar settings
INTERNAL_IPS = config('INTERNAL_IPS', cast=Csv(), default='127.0.0.1')
if DEBUG:
INSTALLED_APPS.append('debug_toolbar')
MIDDLEWARE.insert(0, 'debug_toolbar.middleware.DebugToolbarMiddleware')
default_db_url = 'sqlite:///' + os.path.join(BASE_DIR, 'db.sqlite3')
parse_database = partial(dj_database_url.parse, conn_max_age=600)
DATABASES = {
'default': config('DATABASE_URL', default=default_db_url, cast=parse_database)
}
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
LANGUAGE_CODE = 'pt-br'
TIME_ZONE = 'America/Sao_Paulo'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'mediafiles')
COLLECTFAST_ENABLED = False
AWS_ACCESS_KEY_ID = config('AWS_ACCESS_KEY_ID')
if AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY = config('AWS_SECRET_ACCESS_KEY')
AWS_STORAGE_BUCKET_NAME = config('AWS_STORAGE_BUCKET_NAME')
AWS_S3_OBJECT_PARAMETERS = {'CacheControl': 'max-age=86400', }
AWS_PRELOAD_METADATA = True
AWS_AUTO_CREATE_BUCKET = False
AWS_QUERYSTRING_AUTH = True
AWS_S3_CUSTOM_DOMAIN = None
COLLECTFAST_ENABLED = True
COLLECTFAST_STRATEGY = 'collectfast.strategies.boto3.Boto3Strategy'
AWS_DEFAULT_ACL = 'private'
# Static Assets
STATICFILES_STORAGE = 's3_folder_storage.s3.StaticStorage'
STATIC_S3_PATH = 'static'
STATIC_ROOT = f'/{STATIC_S3_PATH}'
STATIC_URL = f'//s3.amazonaws.com/{AWS_STORAGE_BUCKET_NAME}/{STATIC_S3_PATH}/'
ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'
# Upload Media Folder
DEFAULT_FILE_STORAGE = 's3_folder_storage.s3.DefaultStorage'
DEFAULT_S3_PATH = 'media'
MEDIA_ROOT = f'/{DEFAULT_S3_PATH}'
MEDIA_URL = f'//s3.amazonaws.com/{AWS_STORAGE_BUCKET_NAME}/{DEFAULT_S3_PATH}/'
ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'
INSTALLED_APPS.append('s3_folder_storage')
INSTALLED_APPS.append('storages')
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
[
11748,
28686,
198,
6738,
3108,
8019,
1330,
10644,
198,
6738,
875,
43846,
1330,
4566,
11,
327,
21370,
198,
11748,
42625,
62,
48806,
62,
6371,
198,
6738,
1257,
310,
10141,
1330,
13027,
198,
198,
33,
11159,
62,
34720,
796,
10644,
7,
834,
7753,
834,
737,
411,
6442,
22446,
8000,
13,
8000,
628,
198,
23683,
26087,
62,
20373,
796,
4566,
10786,
23683,
26087,
62,
20373,
11537,
198,
198,
30531,
796,
4566,
10786,
30531,
3256,
3350,
28,
30388,
8,
198,
198,
7036,
3913,
1961,
62,
39,
10892,
50,
796,
4566,
10786,
7036,
3913,
1961,
62,
39,
10892,
50,
3256,
3350,
28,
34,
21370,
28955,
198,
198,
32,
24318,
62,
29904,
62,
33365,
3698,
796,
705,
8692,
13,
12982,
6,
198,
198,
38604,
7036,
1961,
62,
2969,
3705,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
28482,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
11299,
19199,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
3256,
198,
220,
220,
220,
705,
33327,
7217,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
3256,
198,
220,
220,
220,
705,
9078,
1676,
13,
8692,
6,
198,
60,
198,
198,
44,
2389,
35,
2538,
33746,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12961,
13,
24074,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
13,
27171,
1574,
13,
36044,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
11321,
13,
17227,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
6359,
41871,
13,
34,
27891,
69,
7680,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
27171,
1574,
13,
47649,
3299,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
27171,
1574,
13,
12837,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12976,
73,
5430,
13,
55,
19778,
29046,
34621,
1574,
3256,
198,
60,
198,
198,
13252,
2394,
62,
4261,
5639,
1340,
37,
796,
705,
9078,
1676,
13,
6371,
82,
6,
198,
198,
51,
3620,
6489,
29462,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31098,
10619,
10354,
705,
28241,
14208,
13,
28243,
13,
1891,
2412,
13,
28241,
14208,
13,
35,
73,
14208,
12966,
17041,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34720,
50,
10354,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24805,
62,
34720,
50,
10354,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3185,
51,
11053,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
62,
14681,
669,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
24442,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
25927,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
22866,
62,
14681,
669,
13,
18439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
22866,
62,
14681,
669,
13,
37348,
1095,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
19416,
18878,
62,
2969,
31484,
6234,
796,
705,
9078,
1676,
13,
18504,
12397,
13,
31438,
6,
198,
198,
2,
37770,
31687,
16984,
5657,
6460,
198,
198,
1268,
31800,
1847,
62,
47643,
796,
4566,
10786,
1268,
31800,
1847,
62,
47643,
3256,
3350,
28,
34,
21370,
22784,
4277,
11639,
16799,
13,
15,
13,
15,
13,
16,
11537,
198,
198,
361,
16959,
25,
198,
220,
220,
220,
40589,
7036,
1961,
62,
2969,
3705,
13,
33295,
10786,
24442,
62,
25981,
5657,
11537,
198,
220,
220,
220,
25269,
35,
2538,
33746,
13,
28463,
7,
15,
11,
705,
24442,
62,
25981,
5657,
13,
27171,
1574,
13,
27509,
25391,
5657,
34621,
1574,
11537,
198,
198,
12286,
62,
9945,
62,
6371,
796,
705,
25410,
578,
1378,
14,
6,
1343,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
9945,
13,
25410,
578,
18,
11537,
198,
198,
29572,
62,
48806,
796,
13027,
7,
28241,
62,
48806,
62,
6371,
13,
29572,
11,
48260,
62,
9806,
62,
496,
28,
8054,
8,
198,
35,
1404,
6242,
1921,
1546,
796,
1391,
198,
220,
220,
220,
705,
12286,
10354,
4566,
10786,
35,
1404,
6242,
11159,
62,
21886,
3256,
4277,
28,
12286,
62,
9945,
62,
6371,
11,
3350,
28,
29572,
62,
48806,
8,
198,
92,
198,
198,
32,
24318,
62,
47924,
54,
12532,
62,
23428,
2389,
1404,
20673,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
12982,
33682,
18925,
414,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
44046,
24539,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
17227,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
45,
39223,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
43,
15567,
52,
11879,
62,
34,
16820,
796,
705,
457,
12,
1671,
6,
198,
198,
34694,
62,
57,
11651,
796,
705,
18165,
14,
50,
5488,
62,
12041,
78,
6,
198,
198,
19108,
62,
40,
1507,
45,
796,
6407,
198,
198,
19108,
62,
43,
940,
45,
796,
6407,
198,
198,
19108,
62,
51,
57,
796,
6407,
628,
198,
35744,
2149,
62,
21886,
796,
31051,
12708,
14,
6,
198,
35744,
2149,
62,
13252,
2394,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
12708,
16624,
11537,
198,
198,
30733,
3539,
62,
21886,
796,
31051,
11431,
14,
6,
198,
30733,
3539,
62,
13252,
2394,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
11431,
16624,
11537,
198,
198,
25154,
16779,
37,
11262,
62,
1677,
6242,
30465,
796,
10352,
198,
198,
12298,
50,
62,
26861,
7597,
62,
20373,
62,
2389,
796,
4566,
10786,
12298,
50,
62,
26861,
7597,
62,
20373,
62,
2389,
11537,
198,
198,
361,
30865,
62,
26861,
7597,
62,
20373,
62,
2389,
25,
198,
220,
220,
220,
30865,
62,
23683,
26087,
62,
26861,
7597,
62,
20373,
796,
4566,
10786,
12298,
50,
62,
23683,
26087,
62,
26861,
7597,
62,
20373,
11537,
198,
220,
220,
220,
30865,
62,
2257,
1581,
11879,
62,
33,
16696,
2767,
62,
20608,
796,
4566,
10786,
12298,
50,
62,
2257,
1581,
11879,
62,
33,
16696,
2767,
62,
20608,
11537,
198,
220,
220,
220,
30865,
62,
50,
18,
62,
9864,
23680,
62,
27082,
2390,
2767,
4877,
796,
1391,
6,
30562,
15988,
10354,
705,
9806,
12,
496,
28,
39570,
405,
3256,
1782,
198,
220,
220,
220,
30865,
62,
47,
16448,
41048,
62,
47123,
2885,
13563,
796,
6407,
198,
220,
220,
220,
30865,
62,
39371,
46,
62,
43387,
6158,
62,
33,
16696,
2767,
796,
10352,
198,
220,
220,
220,
30865,
62,
10917,
19664,
18601,
2751,
62,
32,
24318,
796,
6407,
198,
220,
220,
220,
30865,
62,
50,
18,
62,
34,
7759,
2662,
62,
39170,
29833,
796,
6045,
198,
220,
220,
220,
20444,
16779,
37,
11262,
62,
1677,
6242,
30465,
796,
6407,
198,
220,
220,
220,
20444,
16779,
37,
11262,
62,
18601,
6158,
31212,
796,
705,
33327,
7217,
13,
2536,
2397,
444,
13,
65,
2069,
18,
13,
33,
2069,
18,
13290,
4338,
6,
198,
220,
220,
220,
30865,
62,
7206,
38865,
62,
2246,
43,
796,
705,
19734,
6,
628,
220,
220,
220,
1303,
36125,
41059,
198,
220,
220,
220,
15486,
2149,
46700,
1546,
62,
2257,
1581,
11879,
796,
705,
82,
18,
62,
43551,
62,
35350,
13,
82,
18,
13,
45442,
31425,
6,
198,
220,
220,
220,
15486,
2149,
62,
50,
18,
62,
34219,
796,
705,
12708,
6,
198,
220,
220,
220,
15486,
2149,
62,
13252,
2394,
796,
277,
26488,
90,
35744,
2149,
62,
50,
18,
62,
34219,
92,
6,
198,
220,
220,
220,
15486,
2149,
62,
21886,
796,
277,
6,
1003,
82,
18,
13,
33103,
8356,
13,
785,
14,
90,
12298,
50,
62,
2257,
1581,
11879,
62,
33,
16696,
2767,
62,
20608,
92,
14,
90,
35744,
2149,
62,
50,
18,
62,
34219,
92,
14,
6,
198,
220,
220,
220,
5984,
23678,
62,
30733,
3539,
62,
47,
31688,
10426,
796,
15486,
2149,
62,
21886,
1343,
705,
28482,
14,
6,
628,
220,
220,
220,
1303,
36803,
6343,
48107,
198,
220,
220,
220,
5550,
38865,
62,
25664,
62,
2257,
1581,
11879,
796,
705,
82,
18,
62,
43551,
62,
35350,
13,
82,
18,
13,
19463,
31425,
6,
198,
220,
220,
220,
5550,
38865,
62,
50,
18,
62,
34219,
796,
705,
11431,
6,
198,
220,
220,
220,
26112,
3539,
62,
13252,
2394,
796,
277,
26488,
90,
7206,
38865,
62,
50,
18,
62,
34219,
92,
6,
198,
220,
220,
220,
26112,
3539,
62,
21886,
796,
277,
6,
1003,
82,
18,
13,
33103,
8356,
13,
785,
14,
90,
12298,
50,
62,
2257,
1581,
11879,
62,
33,
16696,
2767,
62,
20608,
92,
14,
90,
7206,
38865,
62,
50,
18,
62,
34219,
92,
14,
6,
198,
220,
220,
220,
5984,
23678,
62,
30733,
3539,
62,
47,
31688,
10426,
796,
15486,
2149,
62,
21886,
1343,
705,
28482,
14,
6,
628,
220,
220,
220,
40589,
7036,
1961,
62,
2969,
3705,
13,
33295,
10786,
82,
18,
62,
43551,
62,
35350,
11537,
198,
220,
220,
220,
40589,
7036,
1961,
62,
2969,
3705,
13,
33295,
10786,
301,
273,
1095,
11537,
198,
198,
7206,
38865,
62,
39371,
46,
62,
44603,
796,
705,
28241,
14208,
13,
9945,
13,
27530,
13,
12804,
27722,
15878,
6,
198
] | 2.251134 | 1,764 |
from __future__ import print_function
import fileinput
import sys
keys_down = []
i = 0
for line in fileinput.input():
i += 1
split_line = line.rstrip().split(' ')
if len(split_line) != 2:
print('Unrecognized format on line ' + str(i), file=sys.stderr)
continue
action = split_line[0]
key = split_line[1]
if action == 'down':
if key in keys_down:
keys_down = [k for k in keys_down if k != key]
keys_down.append(key)
output = ''
for key in keys_down:
output += key + ' '
output = output.rstrip()
print(output)
elif action == 'up':
if key in keys_down:
keys_down = [k for k in keys_down if k != key]
else:
print('Key ' + key + ' went up without going down on line ' + str(i), file=sys.stderr)
else:
print('Unrecognized input on line ' + str(i), file=sys.stderr)
|
[
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
11748,
2393,
15414,
198,
11748,
25064,
198,
198,
13083,
62,
2902,
796,
17635,
198,
72,
796,
657,
198,
1640,
1627,
287,
2393,
15414,
13,
15414,
33529,
198,
220,
220,
220,
1312,
15853,
352,
198,
220,
220,
220,
6626,
62,
1370,
796,
1627,
13,
81,
36311,
22446,
35312,
10786,
705,
8,
198,
220,
220,
220,
611,
18896,
7,
35312,
62,
1370,
8,
14512,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
3118,
26243,
1143,
5794,
319,
1627,
705,
1343,
965,
7,
72,
828,
2393,
28,
17597,
13,
301,
1082,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2223,
796,
6626,
62,
1370,
58,
15,
60,
198,
220,
220,
220,
1994,
796,
6626,
62,
1370,
58,
16,
60,
198,
220,
220,
220,
611,
2223,
6624,
705,
2902,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
287,
8251,
62,
2902,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8251,
62,
2902,
796,
685,
74,
329,
479,
287,
8251,
62,
2902,
611,
479,
14512,
1994,
60,
198,
220,
220,
220,
220,
220,
220,
220,
8251,
62,
2902,
13,
33295,
7,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
796,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
8251,
62,
2902,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
15853,
1994,
1343,
705,
705,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
796,
5072,
13,
81,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
22915,
8,
198,
220,
220,
220,
1288,
361,
2223,
6624,
705,
929,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
287,
8251,
62,
2902,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8251,
62,
2902,
796,
685,
74,
329,
479,
287,
8251,
62,
2902,
611,
479,
14512,
1994,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
9218,
705,
1343,
1994,
1343,
705,
1816,
510,
1231,
1016,
866,
319,
1627,
705,
1343,
965,
7,
72,
828,
2393,
28,
17597,
13,
301,
1082,
81,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
3118,
26243,
1143,
5128,
319,
1627,
705,
1343,
965,
7,
72,
828,
2393,
28,
17597,
13,
301,
1082,
81,
8
] | 2.192488 | 426 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
|
[
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628,
198
] | 2.842105 | 38 |
#!/usr/bin/env python
import sys, getopt
import glob,os
# sample the first 10**7 reads
help_message = 'usage example: python read_phyler.py -r 1 -i /project/home/original_reads/ -o /project/home/phyler/'
if __name__ == "__main__":
try:
opts, args = getopt.getopt(sys.argv[1:],'hr:i:o:',["inputdir="])
except:
print help_message
sys.exit(2)
for opt, arg in opts:
if opt in ('-h','--help'):
print help_message
sys.exit()
elif opt in ('-r',"--filerank"):
fr = int(arg)-1
elif opt in ('-i','--inputdir'):
inputdir = arg
if inputdir[-1] != '/':
inputdir += '/'
elif opt in ('-o','--outputdir'):
outputdir = arg
if outputdir[-1] != '/':
outputdir += '/'
fr = str(fr) + '/'
os.system('mkdir '+outputdir+fr)
FP = glob.glob(os.path.join(inputdir+fr,'*.fastq'))
read_count = 0
for fp in FP:
fileprefix = fp[fp.rfind('/')+1:fp.index('.fastq')]
fasta_file = outputdir + fr + fileprefix + '.fasta'
read_count += get_fasta(fp,fasta_file)
os.system('cat %s*.fasta > %sall.fa' % (outputdir+fr,outputdir+fr))
os.system('rm '+outputdir+fr+'*.fasta')
os.system('touch '+outputdir + fr + 'all.count.' + str(read_count))
os.system('blastall -p blastn -W15 -a1 -e0.01 -m8 -b1 -i %s -d /seq/msctmp/bcleary/src/MetaPhylerV1.25/markers/markers.dna > %s' % (outputdir+fr+'all.fa',outputdir+fr+'all.phyler.blastn'))
os.system('rm '+outputdir+fr+'all.fa')
os.system('/seq/msctmp/bcleary/src/MetaPhylerV1.25/metaphylerClassify /seq/msctmp/bcleary/src/MetaPhylerV1.25/markers/markers.blastn.classifier /seq/msctmp/bcleary/src/MetaPhylerV1.25/markers/markers.taxonomy %s > %s' % (outputdir+fr+'all.phyler.blastn',outputdir+fr+'all.phyler.blastn.classification'))
os.system('rm '+outputdir+fr+'all.phyler.blastn')
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
25064,
11,
651,
8738,
198,
11748,
15095,
11,
418,
198,
198,
2,
6291,
262,
717,
838,
1174,
22,
9743,
198,
198,
16794,
62,
20500,
796,
705,
26060,
1672,
25,
21015,
1100,
62,
6883,
1754,
13,
9078,
532,
81,
352,
532,
72,
1220,
16302,
14,
11195,
14,
14986,
62,
40779,
14,
532,
78,
1220,
16302,
14,
11195,
14,
6883,
1754,
14,
6,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
197,
28311,
25,
198,
197,
197,
404,
912,
11,
26498,
796,
651,
8738,
13,
1136,
8738,
7,
17597,
13,
853,
85,
58,
16,
47715,
4032,
11840,
25,
72,
25,
78,
25,
3256,
14692,
15414,
15908,
2625,
12962,
198,
197,
16341,
25,
198,
197,
197,
4798,
1037,
62,
20500,
198,
197,
197,
17597,
13,
37023,
7,
17,
8,
198,
197,
1640,
2172,
11,
1822,
287,
2172,
82,
25,
198,
197,
197,
361,
2172,
287,
19203,
12,
71,
41707,
438,
16794,
6,
2599,
198,
197,
197,
197,
4798,
1037,
62,
20500,
198,
197,
197,
197,
17597,
13,
37023,
3419,
198,
197,
197,
417,
361,
2172,
287,
19203,
12,
81,
40264,
438,
69,
5329,
962,
1,
2599,
198,
197,
197,
197,
8310,
796,
493,
7,
853,
13219,
16,
198,
197,
197,
417,
361,
2172,
287,
19203,
12,
72,
41707,
438,
15414,
15908,
6,
2599,
198,
197,
197,
197,
15414,
15908,
796,
1822,
198,
197,
197,
197,
361,
5128,
15908,
58,
12,
16,
60,
14512,
31051,
10354,
198,
197,
197,
197,
197,
15414,
15908,
15853,
31051,
6,
198,
197,
197,
417,
361,
2172,
287,
19203,
12,
78,
41707,
438,
22915,
15908,
6,
2599,
198,
197,
197,
197,
22915,
15908,
796,
1822,
198,
197,
197,
197,
361,
5072,
15908,
58,
12,
16,
60,
14512,
31051,
10354,
198,
197,
197,
197,
197,
22915,
15908,
15853,
31051,
6,
198,
197,
8310,
796,
965,
7,
8310,
8,
1343,
31051,
6,
198,
197,
418,
13,
10057,
10786,
28015,
15908,
705,
10,
22915,
15908,
10,
8310,
8,
198,
197,
5837,
796,
15095,
13,
4743,
672,
7,
418,
13,
6978,
13,
22179,
7,
15414,
15908,
10,
8310,
4032,
24620,
7217,
80,
6,
4008,
198,
197,
961,
62,
9127,
796,
657,
198,
197,
1640,
277,
79,
287,
31459,
25,
198,
197,
197,
7753,
40290,
796,
277,
79,
58,
46428,
13,
81,
19796,
10786,
14,
11537,
10,
16,
25,
46428,
13,
9630,
7,
4458,
7217,
80,
11537,
60,
198,
197,
197,
7217,
64,
62,
7753,
796,
5072,
15908,
1343,
1216,
1343,
2393,
40290,
1343,
45302,
7217,
64,
6,
198,
197,
197,
961,
62,
9127,
15853,
651,
62,
7217,
64,
7,
46428,
11,
7217,
64,
62,
7753,
8,
198,
197,
418,
13,
10057,
10786,
9246,
4064,
82,
24620,
7217,
64,
1875,
4064,
82,
439,
13,
13331,
6,
4064,
357,
22915,
15908,
10,
8310,
11,
22915,
15908,
10,
8310,
4008,
198,
197,
418,
13,
10057,
10786,
26224,
705,
10,
22915,
15908,
10,
8310,
10,
6,
24620,
7217,
64,
11537,
198,
197,
418,
13,
10057,
10786,
29332,
705,
10,
22915,
15908,
1343,
1216,
1343,
705,
439,
13,
9127,
2637,
1343,
965,
7,
961,
62,
9127,
4008,
198,
197,
418,
13,
10057,
10786,
39806,
439,
532,
79,
11975,
77,
532,
54,
1314,
532,
64,
16,
532,
68,
15,
13,
486,
532,
76,
23,
532,
65,
16,
532,
72,
4064,
82,
532,
67,
1220,
41068,
14,
907,
310,
3149,
14,
65,
2375,
560,
14,
10677,
14,
48526,
2725,
88,
1754,
53,
16,
13,
1495,
14,
4102,
364,
14,
4102,
364,
13,
67,
2616,
1875,
4064,
82,
6,
4064,
357,
22915,
15908,
10,
8310,
10,
6,
439,
13,
13331,
3256,
22915,
15908,
10,
8310,
10,
6,
439,
13,
6883,
1754,
13,
39806,
77,
6,
4008,
198,
197,
418,
13,
10057,
10786,
26224,
705,
10,
22915,
15908,
10,
8310,
10,
6,
439,
13,
13331,
11537,
198,
197,
418,
13,
10057,
10786,
14,
41068,
14,
907,
310,
3149,
14,
65,
2375,
560,
14,
10677,
14,
48526,
2725,
88,
1754,
53,
16,
13,
1495,
14,
4164,
6570,
88,
1754,
9487,
1958,
1220,
41068,
14,
907,
310,
3149,
14,
65,
2375,
560,
14,
10677,
14,
48526,
2725,
88,
1754,
53,
16,
13,
1495,
14,
4102,
364,
14,
4102,
364,
13,
39806,
77,
13,
4871,
7483,
1220,
41068,
14,
907,
310,
3149,
14,
65,
2375,
560,
14,
10677,
14,
48526,
2725,
88,
1754,
53,
16,
13,
1495,
14,
4102,
364,
14,
4102,
364,
13,
19290,
30565,
4064,
82,
1875,
4064,
82,
6,
4064,
357,
22915,
15908,
10,
8310,
10,
6,
439,
13,
6883,
1754,
13,
39806,
77,
3256,
22915,
15908,
10,
8310,
10,
6,
439,
13,
6883,
1754,
13,
39806,
77,
13,
4871,
2649,
6,
4008,
198,
197,
418,
13,
10057,
10786,
26224,
705,
10,
22915,
15908,
10,
8310,
10,
6,
439,
13,
6883,
1754,
13,
39806,
77,
11537
] | 2.215463 | 789 |
"""Tests for the Neato init file."""
import pytest
from unittest.mock import patch
from homeassistant.components.neato.const import NEATO_DOMAIN, CONF_VENDOR
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
from homeassistant.setup import async_setup_component
from tests.common import MockConfigEntry
USERNAME = "myUsername"
PASSWORD = "myPassword"
VENDOR_NEATO = "neato"
VENDOR_VORWERK = "vorwerk"
VENDOR_INVALID = "invalid"
VALID_CONFIG = {
CONF_USERNAME: USERNAME,
CONF_PASSWORD: PASSWORD,
CONF_VENDOR: VENDOR_NEATO,
}
INVALID_CONFIG = {
CONF_USERNAME: USERNAME,
CONF_PASSWORD: PASSWORD,
CONF_VENDOR: VENDOR_INVALID,
}
@pytest.fixture(name="account")
def mock_controller_login():
"""Mock a successful login."""
with patch("pybotvac.Account", return_value=True):
yield
async def test_no_config_entry(hass):
"""There is nothing in configuration.yaml."""
res = await async_setup_component(hass, NEATO_DOMAIN, {})
assert res is True
async def test_config_entries_in_sync(hass, account):
"""The config entry and configuration.yaml are in sync."""
MockConfigEntry(domain=NEATO_DOMAIN, data=VALID_CONFIG).add_to_hass(hass)
assert hass.config_entries.async_entries(NEATO_DOMAIN)
assert await async_setup_component(hass, NEATO_DOMAIN, {NEATO_DOMAIN: VALID_CONFIG})
await hass.async_block_till_done()
entries = hass.config_entries.async_entries(NEATO_DOMAIN)
assert entries
assert entries[0].data[CONF_USERNAME] == USERNAME
assert entries[0].data[CONF_PASSWORD] == PASSWORD
assert entries[0].data[CONF_VENDOR] == VENDOR_NEATO
async def test_config_entries_not_in_sync(hass, account):
"""The config entry and configuration.yaml are not in sync."""
MockConfigEntry(domain=NEATO_DOMAIN, data=INVALID_CONFIG).add_to_hass(hass)
assert hass.config_entries.async_entries(NEATO_DOMAIN)
assert await async_setup_component(hass, NEATO_DOMAIN, {NEATO_DOMAIN: VALID_CONFIG})
await hass.async_block_till_done()
entries = hass.config_entries.async_entries(NEATO_DOMAIN)
assert entries
assert entries[0].data[CONF_USERNAME] == USERNAME
assert entries[0].data[CONF_PASSWORD] == PASSWORD
assert entries[0].data[CONF_VENDOR] == VENDOR_NEATO
|
[
37811,
51,
3558,
329,
262,
3169,
5549,
2315,
2393,
526,
15931,
198,
11748,
12972,
9288,
198,
6738,
555,
715,
395,
13,
76,
735,
1330,
8529,
198,
198,
6738,
1363,
562,
10167,
13,
5589,
3906,
13,
710,
5549,
13,
9979,
1330,
10635,
1404,
46,
62,
39170,
29833,
11,
7102,
37,
62,
53,
10619,
1581,
198,
6738,
1363,
562,
10167,
13,
9979,
1330,
7102,
37,
62,
47924,
54,
12532,
11,
7102,
37,
62,
29904,
20608,
198,
6738,
1363,
562,
10167,
13,
40406,
1330,
30351,
62,
40406,
62,
42895,
198,
198,
6738,
5254,
13,
11321,
1330,
44123,
16934,
30150,
198,
198,
29904,
20608,
796,
366,
1820,
5842,
13292,
1,
198,
47924,
54,
12532,
796,
366,
1820,
35215,
1,
198,
53,
10619,
1581,
62,
12161,
1404,
46,
796,
366,
710,
5549,
1,
198,
53,
10619,
1581,
62,
53,
1581,
45532,
42,
796,
366,
20867,
86,
9587,
1,
198,
53,
10619,
1581,
62,
1268,
23428,
2389,
796,
366,
259,
12102,
1,
198,
198,
23428,
2389,
62,
10943,
16254,
796,
1391,
198,
220,
220,
220,
7102,
37,
62,
29904,
20608,
25,
1294,
1137,
20608,
11,
198,
220,
220,
220,
7102,
37,
62,
47924,
54,
12532,
25,
41752,
54,
12532,
11,
198,
220,
220,
220,
7102,
37,
62,
53,
10619,
1581,
25,
569,
10619,
1581,
62,
12161,
1404,
46,
11,
198,
92,
198,
198,
1268,
23428,
2389,
62,
10943,
16254,
796,
1391,
198,
220,
220,
220,
7102,
37,
62,
29904,
20608,
25,
1294,
1137,
20608,
11,
198,
220,
220,
220,
7102,
37,
62,
47924,
54,
12532,
25,
41752,
54,
12532,
11,
198,
220,
220,
220,
7102,
37,
62,
53,
10619,
1581,
25,
569,
10619,
1581,
62,
1268,
23428,
2389,
11,
198,
92,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
3672,
2625,
23317,
4943,
198,
4299,
15290,
62,
36500,
62,
38235,
33529,
198,
220,
220,
220,
37227,
44,
735,
257,
4388,
17594,
526,
15931,
198,
220,
220,
220,
351,
8529,
7203,
9078,
13645,
85,
330,
13,
30116,
1600,
1441,
62,
8367,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
628,
198,
292,
13361,
825,
1332,
62,
3919,
62,
11250,
62,
13000,
7,
71,
562,
2599,
198,
220,
220,
220,
37227,
1858,
318,
2147,
287,
8398,
13,
88,
43695,
526,
15931,
198,
220,
220,
220,
581,
796,
25507,
30351,
62,
40406,
62,
42895,
7,
71,
562,
11,
10635,
1404,
46,
62,
39170,
29833,
11,
23884,
8,
198,
220,
220,
220,
6818,
581,
318,
6407,
628,
198,
292,
13361,
825,
1332,
62,
11250,
62,
298,
1678,
62,
259,
62,
27261,
7,
71,
562,
11,
1848,
2599,
198,
220,
220,
220,
37227,
464,
4566,
5726,
290,
8398,
13,
88,
43695,
389,
287,
17510,
526,
15931,
198,
220,
220,
220,
44123,
16934,
30150,
7,
27830,
28,
12161,
1404,
46,
62,
39170,
29833,
11,
1366,
28,
23428,
2389,
62,
10943,
16254,
737,
2860,
62,
1462,
62,
71,
562,
7,
71,
562,
8,
628,
220,
220,
220,
6818,
468,
82,
13,
11250,
62,
298,
1678,
13,
292,
13361,
62,
298,
1678,
7,
12161,
1404,
46,
62,
39170,
29833,
8,
198,
220,
220,
220,
6818,
25507,
30351,
62,
40406,
62,
42895,
7,
71,
562,
11,
10635,
1404,
46,
62,
39170,
29833,
11,
1391,
12161,
1404,
46,
62,
39170,
29833,
25,
26173,
2389,
62,
10943,
16254,
30072,
198,
220,
220,
220,
25507,
468,
82,
13,
292,
13361,
62,
9967,
62,
83,
359,
62,
28060,
3419,
628,
220,
220,
220,
12784,
796,
468,
82,
13,
11250,
62,
298,
1678,
13,
292,
13361,
62,
298,
1678,
7,
12161,
1404,
46,
62,
39170,
29833,
8,
198,
220,
220,
220,
6818,
12784,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
29904,
20608,
60,
6624,
1294,
1137,
20608,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
47924,
54,
12532,
60,
6624,
41752,
54,
12532,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
53,
10619,
1581,
60,
6624,
569,
10619,
1581,
62,
12161,
1404,
46,
628,
198,
292,
13361,
825,
1332,
62,
11250,
62,
298,
1678,
62,
1662,
62,
259,
62,
27261,
7,
71,
562,
11,
1848,
2599,
198,
220,
220,
220,
37227,
464,
4566,
5726,
290,
8398,
13,
88,
43695,
389,
407,
287,
17510,
526,
15931,
198,
220,
220,
220,
44123,
16934,
30150,
7,
27830,
28,
12161,
1404,
46,
62,
39170,
29833,
11,
1366,
28,
1268,
23428,
2389,
62,
10943,
16254,
737,
2860,
62,
1462,
62,
71,
562,
7,
71,
562,
8,
628,
220,
220,
220,
6818,
468,
82,
13,
11250,
62,
298,
1678,
13,
292,
13361,
62,
298,
1678,
7,
12161,
1404,
46,
62,
39170,
29833,
8,
198,
220,
220,
220,
6818,
25507,
30351,
62,
40406,
62,
42895,
7,
71,
562,
11,
10635,
1404,
46,
62,
39170,
29833,
11,
1391,
12161,
1404,
46,
62,
39170,
29833,
25,
26173,
2389,
62,
10943,
16254,
30072,
198,
220,
220,
220,
25507,
468,
82,
13,
292,
13361,
62,
9967,
62,
83,
359,
62,
28060,
3419,
628,
220,
220,
220,
12784,
796,
468,
82,
13,
11250,
62,
298,
1678,
13,
292,
13361,
62,
298,
1678,
7,
12161,
1404,
46,
62,
39170,
29833,
8,
198,
220,
220,
220,
6818,
12784,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
29904,
20608,
60,
6624,
1294,
1137,
20608,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
47924,
54,
12532,
60,
6624,
41752,
54,
12532,
198,
220,
220,
220,
6818,
12784,
58,
15,
4083,
7890,
58,
10943,
37,
62,
53,
10619,
1581,
60,
6624,
569,
10619,
1581,
62,
12161,
1404,
46,
198
] | 2.481481 | 918 |
# This module is to estimate the sequence or position biases. It provides
# ways to access and save the bias parameters.
import pysam
import numpy as np
import matplotlib.pyplot as plt
class FastaFile:
"""docstring for FastaFile"""
def get_seq(self, qref, start, stop):
"""get the sequence in a given region, the start is from 1.
The start and stop index may still need double check."""
return self.f.fetch(qref, start-1, stop)
class BiasFile:
"""docstring for BiasFile"""
def __init__(self, bias_file=None):
"""get the bias parameters from the hdf5 file"""
self.set_base_chain()
self.pos5_bias = np.zeros((5, 20))
self.pos3_bias = np.zeros((5, 20))
self.pos5_unif = np.zeros((5, 20))
self.pos3_unif = np.zeros((5, 20))
self.pos5_prob = np.zeros((5, 20))
self.pos3_prob = np.zeros((5, 20))
self.percentile = np.zeros((5, 2))
self.flen_mean, self.flen_std = 0, 0
self.flen_sum1, self.flen_sum2 = 0, 0
self.read_num = 0
self.seq5_bias, self.seq3_bias = {}, {}
self.seq5_unif, self.seq3_unif = {}, {}
self.seq5_prob, self.seq3_prob = {}, {}
for i in range(len(self.chain_len)):
self.seq5_bias[str(i)] = np.zeros(4**self.chain_len[i])
self.seq3_bias[str(i)] = np.zeros(4**self.chain_len[i])
self.seq5_unif[str(i)] = np.zeros(4**self.chain_len[i])
self.seq3_unif[str(i)] = np.zeros(4**self.chain_len[i])
self.seq5_prob[str(i)] = np.zeros(4**self.chain_len[i])
self.seq3_prob[str(i)] = np.zeros(4**self.chain_len[i])
if bias_file is None: return
fid = open(bias_file, "r")
all_lines = fid.readlines()
fid.close()
self.flen_mean = float(all_lines[4].split("\t")[0])
self.flen_std = float(all_lines[4].split("\t")[1])
self.flen_sum1 = float(all_lines[4].split("\t")[2])
self.flen_sum2 = float(all_lines[4].split("\t")[3])
self.read_num = float(all_lines[4].split("\t")[4])
for i in range(5,105):
a, b = (i-5) // 20, (i-5) % 20
if b == 0:
self.percentile[a,:] = all_lines[i].split("|")[0].split("-")
self.pos5_bias[a,b] = all_lines[i].split("\t")[1]
self.pos3_bias[a,b] = all_lines[i].split("\t")[2]
self.pos5_unif[a,b] = all_lines[i].split("\t")[3]
self.pos3_unif[a,b] = all_lines[i].split("\t")[4]
self.pos5_prob[a,b] = max(0, self.pos5_bias[a,b] / self.pos5_unif[a,b])
self.pos3_prob[a,b] = max(0, self.pos3_bias[a,b] / self.pos3_unif[a,b])
# self.pos5_prob[a,b] = self.pos5_bias[a,b] / self.pos5_unif[a,b]
# self.pos3_prob[a,b] = self.pos3_bias[a,b] / self.pos3_unif[a,b]
ii, cnt = all_lines[105].split("|")[0], -1
for i in range(105,849):
if ii == all_lines[i].split("|")[0]:
cnt += 1
else:
ii = all_lines[i].split("|")[0]
cnt = 0
self.seq5_bias[ii][cnt] = all_lines[i].split("\t")[1]
self.seq3_bias[ii][cnt] = all_lines[i].split("\t")[2]
self.seq5_unif[ii][cnt] = all_lines[i].split("\t")[3]
self.seq3_unif[ii][cnt] = all_lines[i].split("\t")[4]
self.seq5_prob[ii][cnt] = max(0, self.seq5_bias[ii][cnt] / self.seq5_unif[ii][cnt])
self.seq3_prob[ii][cnt] = max(0, self.seq3_bias[ii][cnt] / self.seq3_unif[ii][cnt])
self.base_chain[ii][cnt] = all_lines[i].split("\t")[0].split("|")[1]
def set_base_chain(self):
"""set the sub-base chain for the variable-length Markov model (VLMM),
which was proposed by Reberts et al, Genome Biology, 2011:
Figure2 in supp 3. http://genomebiology.com/2011/12/3/r22/"""
b1 = ["A","T","G","C"]
b2, b3 = [], []
for i in b1:
for j in b1:
b2.append(j+i)
for k in b1:
b3.append(k+j+i)
base_comb = [b1, b2, b3]
self.chain_len = [1]*4 + [2]*3 + [3]*10 + [2]*2 + [1]*2
self.base_chain = {}
for i in range(21):
self.base_chain[str(i)] = base_comb[self.chain_len[i]-1]
def get_both_bias(self, seq, loc, ulen, end_num=5):
"""get the bias from the bias parameters"""
prob = (self.get_seq_bias(seq, end_num) *
self.get_pos_bias(loc, ulen, end_num))
return prob
def get_seq_bias(self, seq, end_num):
"""get the sequence bias score"""
if end_num == 5:
parameters = self.seq5_prob
elif end_num == 3:
parameters = self.seq3_prob
else:
print("wrong end_num: %s" %str(end_num))
return None
prob = 1.0
for j in range(len(seq)):
_len = self.chain_len[j]
_bas = seq[j-_len+1 : j+1]
if self.base_chain[str(j)].count(_bas) == 0: continue
_idx = self.base_chain[str(j)].index(_bas)
prob = prob * parameters[str(j)][_idx]
return prob
def get_pos_bias(self, loc, ulen, end_num):
"""get the position bias score, the loc is base pair distance
from the 5'end of the units"""
if end_num == 5:
parameters = self.pos5_prob
elif end_num == 3:
parameters = self.pos3_prob
else:
print("wrong end_num: %s" %str(end_num))
return None
bin1 = (ulen >= self.percentile[:,0]) * (ulen <= self.percentile[:,1])
bin2 = 20.0 * loc / ulen
prob = parameters[bin1, bin2]
return prob
def set_percentile(self, ulen, K=5):
"""set the percentiles by input the lengths of unitsets, i.e., ulen,
and number of percentiles, K."""
perc_gap = np.linspace(0, 100, K+1)
_percent = np.percentile(ulen, list(perc_gap))
self.percentile = np.zeros((K, 2))
for i in range(K):
self.percentile[i, 0] = int(_percent[i])+1
self.percentile[i, 1] = int(_percent[i+1])
if i == 0:
self.percentile[i,0] = 0
elif i==4:
self.percentile[i,1] = float("inf")
def set_both_bias(self, seq, loc, ulen, weight, end_num=5, mode="bias"):
"""get the bias from the bias parameters"""
self.set_seq_bias(seq, weight, end_num, mode)
self.set_pos_bias(loc, ulen, weight, end_num, mode)
def set_seq_bias(self, seq, weight, end_num=5, mode="bias"):
"""get the sequence bias score"""
for j in range(len(seq)):
_len = self.chain_len[j]
_bas = seq[j-_len+1 : j+1]
if self.base_chain[str(j)].count(_bas) == 0: continue
_idx = self.base_chain[str(j)].index(_bas)
if end_num == 5:
if mode == "bias":
self.seq5_bias[str(j)][_idx] += weight
elif mode == "unif":
self.seq5_unif[str(j)][_idx] += weight
else:
if mode == "bias":
self.seq3_bias[str(j)][_idx] += weight
elif mode == "unif":
self.seq3_unif[str(j)][_idx] += weight
def set_pos_bias(self, loc, ulen, weight, end_num=5, mode="bias"):
"""get the position bias score, the loc is base pair distance
from the 5'end of the units"""
bin1 = (ulen >= self.percentile[:,0]) * (ulen <= self.percentile[:,1])
bin2 = int(20.0 * loc / (ulen + 0.0001))
if end_num == 5:
if mode == "bias":
self.pos5_bias[bin1, bin2] += weight
elif mode == "unif":
self.pos5_unif[bin1, bin2] += weight
else:
if mode == "bias":
self.pos3_bias[bin1, bin2] += weight
elif mode == "unif":
self.pos3_unif[bin1, bin2] += weight
def save_file(self, out_file="out_file.bias"):
"""to save the bias file in BIAS FILE FORMAT"""
fid = open(out_file, "w")
fid.writelines("# BIAS PARAMETER FORMAT\n")
fid.writelines("# fragment leng: 5 (mean, std, sum_fl, sum_fl^2, reads), line 5\n")
fid.writelines("# position bias: 5*20*4 (name, b5, b3, u5, u3), line 6-105\n")
fid.writelines("# sequence bias: 744*4 (name, b5, b3, u5, u3), line 106-849\n")
fid.writelines("%.2f\t%.2f\t%.2e\t%.2e\t%.0f\n" %(self.flen_mean, self.flen_std,
self.flen_sum1, self.flen_sum2, self.read_num))
for i in range(self.pos5_bias.shape[0]):
for j in range(self.pos5_bias.shape[1]):
aLine = ("%.0f-%.0f|%d\t%.2e\t%.2e\t%.2e\t%.2e\n"
%(self.percentile[i,0], self.percentile[i,1], j, self.pos5_bias[i,j],
self.pos3_bias[i,j], self.pos5_unif[i,j], self.pos3_unif[i,j]))
fid.writelines(aLine)
for i in sorted(self.base_chain.keys(), key=float):
for j in range(len(self.base_chain[i])):
aLine = ("%s|%s\t%.2e\t%.2e\t%.2e\t%.2e\n"
%(i, self.base_chain[i][j], self.seq5_bias[i][j],
self.seq3_bias[i][j], self.seq5_unif[i][j], self.seq3_unif[i][j]))
fid.writelines(aLine)
fid.close()
def plot_bias(self, mode=None):
"""plot of bias parameters: flen, pos5, pos3, seq5, seq3"""
#fragment distribution
if mode == "flen":
xx = np.arange(0, 1000)
yy = norm_pdf(xx, self.flen_mean, self.flen_std)
plt.fill(xx, yy, 'k')#, linewidth=2.0)
plt.xlabel("fragment length")
plt.ylabel("$p(L)$")
plt.xlim(0, 400)
#position bias
if mode == "pos5" or mode == "pos3":
plt.plot(np.arange(20), np.ones(20), '--k')
for i in range(5):
_label="bin%d: %.0f-%.0f bp" %(i+1, self.percentile[i,0], self.percentile[i,1])
if mode == "pos5":
plt.plot(np.arange(20)+0.5, self.pos5_prob[i,:], linewidth=2.0, label=_label)
else:
plt.plot(np.arange(20)+0.5, self.pos3_prob[i,:], linewidth=2.0, label=_label)
plt.legend(loc="best")
plt.xlabel("fractional transcription position")
plt.ylabel("bias weight")
plt.ylim(0,2)
#sequence bias
if mode == "seq5" or mode == "seq3":
base = ["A", "T", "G", "C"]
_color = ["g", "r", "orange", "b"]
if mode == "seq5":
plt.plot(np.arange(21)-8, np.ones(21), '--k')
plt.plot(np.zeros(2), np.array([0, 2.0]), '--k', linewidth=2.0)
percent = np.zeros((4,21))
for i in range(4):
for j in range(21):
_seq_bias = self.seq5_prob[str(j)]
percent[i,j] = np.sum(_seq_bias[i*4**(self.chain_len[j]-1):
(i+1)*4**(self.chain_len[j]-1)]) / 4**(self.chain_len[j]-1)
plt.plot(np.arange(21)-8, percent[i,:], ":o", c=_color[i], label=base[i])
plt.xlabel("offset from 3' fragment end")
plt.xlim(-8,12)
else:
plt.plot(np.arange(21)-12, np.ones(21), '--k')
plt.plot(np.zeros(2), np.array([0, 2.0]), '--k', linewidth=2.0)
percent = np.zeros((4,21))
for i in range(4):
for k in range(21):
j = 20 - k
_seq_bias = self.seq3_prob[str(j)]
percent[i,j] = np.sum(_seq_bias[i*4**(self.chain_len[j]-1):
(i+1)*4**(self.chain_len[j]-1)]) / 4**(self.chain_len[j]-1)
plt.plot(np.arange(21)-12, percent[i,:], ":o", c=_color[i], label=base[i])
plt.xlabel("offset from 3' fragment end")
plt.xlim(-12,8)
plt.legend(loc="best")
plt.xlabel("offset from %s' fragment end" %mode[3])
plt.ylabel("bias weight")
plt.ylim(0.5,2)
#legend only
if mode == "legend":
base = ["A", "T", "G", "C"]
_color = ["g", "r", "orange", "b"]
plt.axis('off')
ax1 = plt.twinx()
for i in range(len(base)):
ax1.plot([], [], "o", c=_color[i], label=base[i])
ax1.legend(numpoints=1, loc=4)
ax1.axis('off')
ax2 = plt.twinx()
for i in range(5):
_label="bin%d: %.0f-%.0f bp" %(i+1, self.percentile[i,0], self.percentile[i,1])
ax2.plot([], [], linewidth=2.0, label=_label)
ax2.legend(loc=3)
ax2.axis('off')
|
[
2,
770,
8265,
318,
284,
8636,
262,
8379,
393,
2292,
29275,
13,
632,
3769,
198,
2,
2842,
284,
1895,
290,
3613,
262,
10690,
10007,
13,
198,
198,
11748,
279,
893,
321,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
198,
4871,
12549,
64,
8979,
25,
198,
220,
220,
220,
37227,
15390,
8841,
329,
12549,
64,
8979,
37811,
628,
220,
220,
220,
825,
651,
62,
41068,
7,
944,
11,
10662,
5420,
11,
923,
11,
2245,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
8379,
287,
257,
1813,
3814,
11,
262,
923,
318,
422,
352,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
923,
290,
2245,
6376,
743,
991,
761,
4274,
2198,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
69,
13,
69,
7569,
7,
80,
5420,
11,
923,
12,
16,
11,
2245,
8,
198,
198,
4871,
347,
4448,
8979,
25,
198,
220,
220,
220,
37227,
15390,
8841,
329,
347,
4448,
8979,
37811,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
10690,
62,
7753,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
10690,
10007,
422,
262,
289,
7568,
20,
2393,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
62,
8692,
62,
7983,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
65,
4448,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
65,
4448,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
403,
361,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
403,
361,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
1676,
65,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
1676,
65,
796,
45941,
13,
9107,
418,
19510,
20,
11,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
796,
45941,
13,
9107,
418,
19510,
20,
11,
362,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
32604,
11,
2116,
13,
2704,
268,
62,
19282,
796,
657,
11,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
16345,
16,
11,
2116,
13,
2704,
268,
62,
16345,
17,
796,
657,
11,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
961,
62,
22510,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
65,
4448,
11,
2116,
13,
41068,
18,
62,
65,
4448,
796,
1391,
5512,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
403,
361,
11,
2116,
13,
41068,
18,
62,
403,
361,
796,
1391,
5512,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
1676,
65,
11,
2116,
13,
41068,
18,
62,
1676,
65,
796,
1391,
5512,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11925,
7,
944,
13,
7983,
62,
11925,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
65,
4448,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
65,
4448,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
403,
361,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
403,
361,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
1676,
65,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
1676,
65,
58,
2536,
7,
72,
15437,
796,
45941,
13,
9107,
418,
7,
19,
1174,
944,
13,
7983,
62,
11925,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10690,
62,
7753,
318,
6045,
25,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
796,
1280,
7,
65,
4448,
62,
7753,
11,
366,
81,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
6615,
796,
49909,
13,
961,
6615,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
32604,
796,
12178,
7,
439,
62,
6615,
58,
19,
4083,
35312,
7203,
59,
83,
4943,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
19282,
220,
796,
12178,
7,
439,
62,
6615,
58,
19,
4083,
35312,
7203,
59,
83,
4943,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
16345,
16,
796,
12178,
7,
439,
62,
6615,
58,
19,
4083,
35312,
7203,
59,
83,
4943,
58,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
16345,
17,
796,
12178,
7,
439,
62,
6615,
58,
19,
4083,
35312,
7203,
59,
83,
4943,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
961,
62,
22510,
220,
796,
12178,
7,
439,
62,
6615,
58,
19,
4083,
35312,
7203,
59,
83,
4943,
58,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
20,
11,
13348,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
11,
275,
796,
357,
72,
12,
20,
8,
3373,
1160,
11,
357,
72,
12,
20,
8,
4064,
1160,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
275,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
58,
64,
11,
47715,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
91,
4943,
58,
15,
4083,
35312,
7203,
12,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
65,
4448,
58,
64,
11,
65,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
65,
4448,
58,
64,
11,
65,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
403,
361,
58,
64,
11,
65,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
403,
361,
58,
64,
11,
65,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
1676,
65,
58,
64,
11,
65,
60,
796,
3509,
7,
15,
11,
2116,
13,
1930,
20,
62,
65,
4448,
58,
64,
11,
65,
60,
1220,
2116,
13,
1930,
20,
62,
403,
361,
58,
64,
11,
65,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
1676,
65,
58,
64,
11,
65,
60,
796,
3509,
7,
15,
11,
2116,
13,
1930,
18,
62,
65,
4448,
58,
64,
11,
65,
60,
1220,
2116,
13,
1930,
18,
62,
403,
361,
58,
64,
11,
65,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2116,
13,
1930,
20,
62,
1676,
65,
58,
64,
11,
65,
60,
796,
2116,
13,
1930,
20,
62,
65,
4448,
58,
64,
11,
65,
60,
1220,
2116,
13,
1930,
20,
62,
403,
361,
58,
64,
11,
65,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2116,
13,
1930,
18,
62,
1676,
65,
58,
64,
11,
65,
60,
796,
2116,
13,
1930,
18,
62,
65,
4448,
58,
64,
11,
65,
60,
1220,
2116,
13,
1930,
18,
62,
403,
361,
58,
64,
11,
65,
60,
628,
220,
220,
220,
220,
220,
220,
220,
21065,
11,
269,
429,
796,
477,
62,
6615,
58,
13348,
4083,
35312,
7203,
91,
4943,
58,
15,
4357,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
13348,
11,
23,
2920,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
21065,
6624,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
91,
4943,
58,
15,
5974,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
429,
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,
21065,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
91,
4943,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
429,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
65,
4448,
58,
4178,
7131,
66,
429,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
65,
4448,
58,
4178,
7131,
66,
429,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
403,
361,
58,
4178,
7131,
66,
429,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
18,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
403,
361,
58,
4178,
7131,
66,
429,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
1676,
65,
58,
4178,
7131,
66,
429,
60,
796,
3509,
7,
15,
11,
2116,
13,
41068,
20,
62,
65,
4448,
58,
4178,
7131,
66,
429,
60,
1220,
2116,
13,
41068,
20,
62,
403,
361,
58,
4178,
7131,
66,
429,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
1676,
65,
58,
4178,
7131,
66,
429,
60,
796,
3509,
7,
15,
11,
2116,
13,
41068,
18,
62,
65,
4448,
58,
4178,
7131,
66,
429,
60,
1220,
2116,
13,
41068,
18,
62,
403,
361,
58,
4178,
7131,
66,
429,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8692,
62,
7983,
58,
4178,
7131,
66,
429,
60,
796,
477,
62,
6615,
58,
72,
4083,
35312,
7203,
59,
83,
4943,
58,
15,
4083,
35312,
7203,
91,
4943,
58,
16,
60,
628,
220,
220,
220,
825,
900,
62,
8692,
62,
7983,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2617,
262,
850,
12,
8692,
6333,
329,
262,
7885,
12,
13664,
2940,
709,
2746,
357,
47468,
12038,
828,
198,
220,
220,
220,
220,
220,
220,
220,
543,
373,
5150,
416,
797,
527,
912,
2123,
435,
11,
5215,
462,
24698,
11,
2813,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
11291,
17,
287,
802,
513,
13,
2638,
1378,
5235,
462,
43592,
13,
785,
14,
9804,
14,
1065,
14,
18,
14,
81,
1828,
14,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
275,
16,
796,
14631,
32,
2430,
51,
2430,
38,
2430,
34,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
275,
17,
11,
275,
18,
796,
685,
4357,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
275,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
275,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
17,
13,
33295,
7,
73,
10,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
275,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
18,
13,
33295,
7,
74,
10,
73,
10,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
24011,
796,
685,
65,
16,
11,
275,
17,
11,
275,
18,
60,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7983,
62,
11925,
796,
685,
16,
60,
9,
19,
1343,
685,
17,
60,
9,
18,
1343,
685,
18,
60,
9,
940,
1343,
685,
17,
60,
9,
17,
1343,
685,
16,
60,
9,
17,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8692,
62,
7983,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
2481,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8692,
62,
7983,
58,
2536,
7,
72,
15437,
796,
2779,
62,
24011,
58,
944,
13,
7983,
62,
11925,
58,
72,
45297,
16,
60,
628,
220,
220,
220,
825,
651,
62,
16885,
62,
65,
4448,
7,
944,
11,
33756,
11,
1179,
11,
334,
11925,
11,
886,
62,
22510,
28,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
10690,
422,
262,
10690,
10007,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1861,
796,
357,
944,
13,
1136,
62,
41068,
62,
65,
4448,
7,
41068,
11,
886,
62,
22510,
8,
1635,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
62,
1930,
62,
65,
4448,
7,
17946,
11,
334,
11925,
11,
886,
62,
22510,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1861,
628,
220,
220,
220,
825,
651,
62,
41068,
62,
65,
4448,
7,
944,
11,
33756,
11,
886,
62,
22510,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
8379,
10690,
4776,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
886,
62,
22510,
6624,
642,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
796,
2116,
13,
41068,
20,
62,
1676,
65,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
886,
62,
22510,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
796,
2116,
13,
41068,
18,
62,
1676,
65,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
36460,
886,
62,
22510,
25,
4064,
82,
1,
4064,
2536,
7,
437,
62,
22510,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
1861,
796,
352,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
11925,
7,
41068,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11925,
796,
2116,
13,
7983,
62,
11925,
58,
73,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
12093,
796,
33756,
58,
73,
12,
62,
11925,
10,
16,
1058,
474,
10,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
8692,
62,
7983,
58,
2536,
7,
73,
25295,
9127,
28264,
12093,
8,
6624,
657,
25,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
312,
87,
796,
2116,
13,
8692,
62,
7983,
58,
2536,
7,
73,
25295,
9630,
28264,
12093,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1861,
796,
1861,
1635,
10007,
58,
2536,
7,
73,
8,
7131,
62,
312,
87,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1861,
628,
220,
220,
220,
825,
651,
62,
1930,
62,
65,
4448,
7,
944,
11,
1179,
11,
334,
11925,
11,
886,
62,
22510,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
2292,
10690,
4776,
11,
262,
1179,
318,
2779,
5166,
5253,
198,
220,
220,
220,
220,
220,
220,
220,
422,
262,
642,
6,
437,
286,
262,
4991,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
886,
62,
22510,
6624,
642,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
796,
2116,
13,
1930,
20,
62,
1676,
65,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
886,
62,
22510,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
796,
2116,
13,
1930,
18,
62,
1676,
65,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
36460,
886,
62,
22510,
25,
4064,
82,
1,
4064,
2536,
7,
437,
62,
22510,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
9874,
16,
796,
357,
377,
268,
18189,
2116,
13,
25067,
576,
58,
45299,
15,
12962,
1635,
357,
377,
268,
19841,
2116,
13,
25067,
576,
58,
45299,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
9874,
17,
796,
1160,
13,
15,
1635,
1179,
1220,
334,
11925,
198,
220,
220,
220,
220,
220,
220,
220,
1861,
796,
10007,
58,
8800,
16,
11,
9874,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1861,
628,
220,
220,
220,
825,
900,
62,
25067,
576,
7,
944,
11,
334,
11925,
11,
509,
28,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2617,
262,
1411,
2915,
416,
5128,
262,
20428,
286,
4991,
1039,
11,
1312,
13,
68,
1539,
334,
11925,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
290,
1271,
286,
1411,
2915,
11,
509,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
583,
66,
62,
43554,
796,
45941,
13,
21602,
10223,
7,
15,
11,
1802,
11,
509,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
25067,
796,
45941,
13,
25067,
576,
7,
377,
268,
11,
1351,
7,
525,
66,
62,
43554,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
796,
45941,
13,
9107,
418,
19510,
42,
11,
362,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
42,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
58,
72,
11,
657,
60,
796,
493,
28264,
25067,
58,
72,
12962,
10,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
58,
72,
11,
352,
60,
796,
493,
28264,
25067,
58,
72,
10,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
58,
72,
11,
15,
60,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1312,
855,
19,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25067,
576,
58,
72,
11,
16,
60,
796,
12178,
7203,
10745,
4943,
628,
220,
220,
220,
825,
900,
62,
16885,
62,
65,
4448,
7,
944,
11,
33756,
11,
1179,
11,
334,
11925,
11,
3463,
11,
886,
62,
22510,
28,
20,
11,
4235,
2625,
65,
4448,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
10690,
422,
262,
10690,
10007,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
62,
41068,
62,
65,
4448,
7,
41068,
11,
3463,
11,
886,
62,
22510,
11,
4235,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
62,
1930,
62,
65,
4448,
7,
17946,
11,
334,
11925,
11,
3463,
11,
886,
62,
22510,
11,
4235,
8,
628,
220,
220,
220,
825,
900,
62,
41068,
62,
65,
4448,
7,
944,
11,
33756,
11,
3463,
11,
886,
62,
22510,
28,
20,
11,
4235,
2625,
65,
4448,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
8379,
10690,
4776,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
11925,
7,
41068,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11925,
796,
2116,
13,
7983,
62,
11925,
58,
73,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
12093,
796,
33756,
58,
73,
12,
62,
11925,
10,
16,
1058,
474,
10,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
8692,
62,
7983,
58,
2536,
7,
73,
25295,
9127,
28264,
12093,
8,
6624,
657,
25,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
312,
87,
796,
2116,
13,
8692,
62,
7983,
58,
2536,
7,
73,
25295,
9630,
28264,
12093,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
886,
62,
22510,
6624,
642,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
65,
4448,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
65,
4448,
58,
2536,
7,
73,
8,
7131,
62,
312,
87,
60,
15853,
3463,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4235,
6624,
366,
403,
361,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
20,
62,
403,
361,
58,
2536,
7,
73,
8,
7131,
62,
312,
87,
60,
15853,
3463,
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,
4235,
6624,
366,
65,
4448,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
65,
4448,
58,
2536,
7,
73,
8,
7131,
62,
312,
87,
60,
15853,
3463,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4235,
6624,
366,
403,
361,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
41068,
18,
62,
403,
361,
58,
2536,
7,
73,
8,
7131,
62,
312,
87,
60,
15853,
3463,
628,
220,
220,
220,
825,
900,
62,
1930,
62,
65,
4448,
7,
944,
11,
1179,
11,
334,
11925,
11,
3463,
11,
886,
62,
22510,
28,
20,
11,
4235,
2625,
65,
4448,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1136,
262,
2292,
10690,
4776,
11,
262,
1179,
318,
2779,
5166,
5253,
198,
220,
220,
220,
220,
220,
220,
220,
422,
262,
642,
6,
437,
286,
262,
4991,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
9874,
16,
796,
357,
377,
268,
18189,
2116,
13,
25067,
576,
58,
45299,
15,
12962,
1635,
357,
377,
268,
19841,
2116,
13,
25067,
576,
58,
45299,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
9874,
17,
796,
493,
7,
1238,
13,
15,
1635,
1179,
1220,
357,
377,
268,
1343,
657,
13,
18005,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
886,
62,
22510,
6624,
642,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
65,
4448,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
65,
4448,
58,
8800,
16,
11,
9874,
17,
60,
15853,
3463,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4235,
6624,
366,
403,
361,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
20,
62,
403,
361,
58,
8800,
16,
11,
9874,
17,
60,
15853,
3463,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
65,
4448,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
65,
4448,
58,
8800,
16,
11,
9874,
17,
60,
15853,
3463,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4235,
6624,
366,
403,
361,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1930,
18,
62,
403,
361,
58,
8800,
16,
11,
9874,
17,
60,
15853,
3463,
628,
220,
220,
220,
825,
3613,
62,
7753,
7,
944,
11,
503,
62,
7753,
2625,
448,
62,
7753,
13,
65,
4448,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1462,
3613,
262,
10690,
2393,
287,
20068,
1921,
45811,
7473,
41636,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
796,
1280,
7,
448,
62,
7753,
11,
366,
86,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7203,
2,
20068,
1921,
29463,
2390,
2767,
1137,
7473,
41636,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7203,
2,
24225,
40038,
25,
642,
357,
32604,
11,
14367,
11,
2160,
62,
2704,
11,
2160,
62,
2704,
61,
17,
11,
9743,
828,
1627,
642,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7203,
2,
2292,
10690,
25,
642,
9,
1238,
9,
19,
357,
3672,
11,
275,
20,
11,
275,
18,
11,
334,
20,
11,
334,
18,
828,
1627,
718,
12,
13348,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7203,
2,
8379,
10690,
25,
767,
2598,
9,
19,
357,
3672,
11,
275,
20,
11,
275,
18,
11,
334,
20,
11,
334,
18,
828,
1627,
15696,
12,
23,
2920,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7203,
7225,
17,
69,
59,
83,
7225,
17,
69,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
83,
7225,
15,
69,
59,
77,
1,
4064,
7,
944,
13,
2704,
268,
62,
32604,
11,
2116,
13,
2704,
268,
62,
19282,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2704,
268,
62,
16345,
16,
11,
2116,
13,
2704,
268,
62,
16345,
17,
11,
2116,
13,
961,
62,
22510,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
944,
13,
1930,
20,
62,
65,
4448,
13,
43358,
58,
15,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
944,
13,
1930,
20,
62,
65,
4448,
13,
43358,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
13949,
796,
5855,
7225,
15,
69,
12,
7225,
15,
69,
91,
4,
67,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
77,
1,
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,
4064,
7,
944,
13,
25067,
576,
58,
72,
11,
15,
4357,
2116,
13,
25067,
576,
58,
72,
11,
16,
4357,
474,
11,
2116,
13,
1930,
20,
62,
65,
4448,
58,
72,
11,
73,
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,
2116,
13,
1930,
18,
62,
65,
4448,
58,
72,
11,
73,
4357,
2116,
13,
1930,
20,
62,
403,
361,
58,
72,
11,
73,
4357,
2116,
13,
1930,
18,
62,
403,
361,
58,
72,
11,
73,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7,
64,
13949,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
23243,
7,
944,
13,
8692,
62,
7983,
13,
13083,
22784,
1994,
28,
22468,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
11925,
7,
944,
13,
8692,
62,
7983,
58,
72,
12962,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
13949,
796,
5855,
4,
82,
91,
4,
82,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
83,
7225,
17,
68,
59,
77,
1,
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,
4064,
7,
72,
11,
2116,
13,
8692,
62,
7983,
58,
72,
7131,
73,
4357,
2116,
13,
41068,
20,
62,
65,
4448,
58,
72,
7131,
73,
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,
2116,
13,
41068,
18,
62,
65,
4448,
58,
72,
7131,
73,
4357,
2116,
13,
41068,
20,
62,
403,
361,
58,
72,
7131,
73,
4357,
2116,
13,
41068,
18,
62,
403,
361,
58,
72,
7131,
73,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
8933,
20655,
7,
64,
13949,
8,
198,
220,
220,
220,
220,
220,
220,
220,
49909,
13,
19836,
3419,
628,
220,
220,
220,
825,
7110,
62,
65,
4448,
7,
944,
11,
4235,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
29487,
286,
10690,
10007,
25,
781,
268,
11,
1426,
20,
11,
1426,
18,
11,
33756,
20,
11,
33756,
18,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8310,
363,
434,
6082,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
2704,
268,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31383,
796,
45941,
13,
283,
858,
7,
15,
11,
8576,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
88,
796,
2593,
62,
12315,
7,
5324,
11,
2116,
13,
2704,
268,
62,
32604,
11,
2116,
13,
2704,
268,
62,
19282,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
20797,
7,
5324,
11,
331,
88,
11,
705,
74,
11537,
2,
11,
9493,
413,
5649,
28,
17,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
18242,
7203,
8310,
363,
434,
4129,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
2645,
9608,
7203,
3,
79,
7,
43,
8,
3,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
2475,
7,
15,
11,
7337,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9150,
10690,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
1930,
20,
1,
393,
4235,
6624,
366,
1930,
18,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
1238,
828,
45941,
13,
1952,
7,
1238,
828,
705,
438,
74,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
18242,
2625,
8800,
4,
67,
25,
4064,
13,
15,
69,
12,
7225,
15,
69,
275,
79,
1,
4064,
7,
72,
10,
16,
11,
2116,
13,
25067,
576,
58,
72,
11,
15,
4357,
2116,
13,
25067,
576,
58,
72,
11,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
1930,
20,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
1238,
47762,
15,
13,
20,
11,
2116,
13,
1930,
20,
62,
1676,
65,
58,
72,
11,
25,
4357,
9493,
413,
5649,
28,
17,
13,
15,
11,
6167,
28,
62,
18242,
8,
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,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
1238,
47762,
15,
13,
20,
11,
2116,
13,
1930,
18,
62,
1676,
65,
58,
72,
11,
25,
4357,
9493,
413,
5649,
28,
17,
13,
15,
11,
6167,
28,
62,
18242,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
1455,
437,
7,
17946,
2625,
13466,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
18242,
7203,
69,
7861,
282,
26955,
2292,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
2645,
9608,
7203,
65,
4448,
3463,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
88,
2475,
7,
15,
11,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
43167,
10690,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
41068,
20,
1,
393,
4235,
6624,
366,
41068,
18,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2779,
796,
14631,
32,
1600,
366,
51,
1600,
366,
38,
1600,
366,
34,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
8043,
796,
14631,
70,
1600,
366,
81,
1600,
366,
43745,
1600,
366,
65,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
41068,
20,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
2481,
13219,
23,
11,
45941,
13,
1952,
7,
2481,
828,
705,
438,
74,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
9107,
418,
7,
17,
828,
45941,
13,
18747,
26933,
15,
11,
362,
13,
15,
46570,
705,
438,
74,
3256,
9493,
413,
5649,
28,
17,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1411,
796,
45941,
13,
9107,
418,
19510,
19,
11,
2481,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
2481,
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,
4808,
41068,
62,
65,
4448,
796,
2116,
13,
41068,
20,
62,
1676,
65,
58,
2536,
7,
73,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1411,
58,
72,
11,
73,
60,
796,
45941,
13,
16345,
28264,
41068,
62,
65,
4448,
58,
72,
9,
19,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
2599,
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,
357,
72,
10,
16,
27493,
19,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
8,
12962,
1220,
604,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
2481,
13219,
23,
11,
1411,
58,
72,
11,
25,
4357,
366,
25,
78,
1600,
269,
28,
62,
8043,
58,
72,
4357,
6167,
28,
8692,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
18242,
7203,
28968,
422,
513,
6,
24225,
886,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
2475,
32590,
23,
11,
1065,
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,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
2481,
13219,
1065,
11,
45941,
13,
1952,
7,
2481,
828,
705,
438,
74,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
9107,
418,
7,
17,
828,
45941,
13,
18747,
26933,
15,
11,
362,
13,
15,
46570,
705,
438,
74,
3256,
9493,
413,
5649,
28,
17,
13,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1411,
796,
45941,
13,
9107,
418,
19510,
19,
11,
2481,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
2837,
7,
2481,
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,
474,
796,
1160,
532,
479,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
41068,
62,
65,
4448,
796,
2116,
13,
41068,
18,
62,
1676,
65,
58,
2536,
7,
73,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1411,
58,
72,
11,
73,
60,
796,
45941,
13,
16345,
28264,
41068,
62,
65,
4448,
58,
72,
9,
19,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
2599,
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,
357,
72,
10,
16,
27493,
19,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
8,
12962,
1220,
604,
1174,
7,
944,
13,
7983,
62,
11925,
58,
73,
45297,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
37659,
13,
283,
858,
7,
2481,
13219,
1065,
11,
1411,
58,
72,
11,
25,
4357,
366,
25,
78,
1600,
269,
28,
62,
8043,
58,
72,
4357,
6167,
28,
8692,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
18242,
7203,
28968,
422,
513,
6,
24225,
886,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
2475,
32590,
1065,
11,
23,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
1455,
437,
7,
17946,
2625,
13466,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
87,
18242,
7203,
28968,
422,
4064,
82,
6,
24225,
886,
1,
4064,
14171,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
2645,
9608,
7203,
65,
4448,
3463,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
88,
2475,
7,
15,
13,
20,
11,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1455,
437,
691,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4235,
6624,
366,
1455,
437,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2779,
796,
14631,
32,
1600,
366,
51,
1600,
366,
38,
1600,
366,
34,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
8043,
796,
14631,
70,
1600,
366,
81,
1600,
366,
43745,
1600,
366,
65,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
22704,
10786,
2364,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
16,
796,
458,
83,
13,
4246,
28413,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11925,
7,
8692,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
16,
13,
29487,
26933,
4357,
685,
4357,
366,
78,
1600,
269,
28,
62,
8043,
58,
72,
4357,
6167,
28,
8692,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
16,
13,
1455,
437,
7,
77,
931,
1563,
82,
28,
16,
11,
1179,
28,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
16,
13,
22704,
10786,
2364,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
17,
796,
458,
83,
13,
4246,
28413,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
18242,
2625,
8800,
4,
67,
25,
4064,
13,
15,
69,
12,
7225,
15,
69,
275,
79,
1,
4064,
7,
72,
10,
16,
11,
2116,
13,
25067,
576,
58,
72,
11,
15,
4357,
2116,
13,
25067,
576,
58,
72,
11,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
17,
13,
29487,
26933,
4357,
685,
4357,
9493,
413,
5649,
28,
17,
13,
15,
11,
6167,
28,
62,
18242,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
17,
13,
1455,
437,
7,
17946,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7877,
17,
13,
22704,
10786,
2364,
11537,
198
] | 1.760098 | 7,328 |
from ..objects.list import ObjectList
from ..objects.method import Method
from .base import ResourceBase
|
[
6738,
11485,
48205,
13,
4868,
1330,
9515,
8053,
198,
6738,
11485,
48205,
13,
24396,
1330,
11789,
198,
6738,
764,
8692,
1330,
20857,
14881,
628
] | 4.416667 | 24 |
from click.testing import CliRunner
from reset import reset as command
|
[
6738,
3904,
13,
33407,
1330,
1012,
72,
49493,
198,
6738,
13259,
1330,
13259,
355,
3141,
628
] | 4.5 | 16 |
from microbit import *
SET, RUN, ALARM = range(3)
state = SET
while True:
if state == SET:
handle_set_state()
elif state == RUN:
handle_run_state()
elif state == ALARM:
handle_alarm_state()
|
[
6738,
4580,
2545,
1330,
1635,
198,
198,
28480,
11,
32494,
11,
8355,
33456,
796,
2837,
7,
18,
8,
198,
5219,
796,
25823,
198,
220,
198,
4514,
6407,
25,
198,
220,
220,
220,
611,
1181,
6624,
25823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5412,
62,
2617,
62,
5219,
3419,
198,
220,
220,
220,
1288,
361,
1181,
6624,
32494,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5412,
62,
5143,
62,
5219,
3419,
198,
220,
220,
220,
1288,
361,
1181,
6624,
8355,
33456,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5412,
62,
282,
1670,
62,
5219,
3419
] | 2.257426 | 101 |
# -*- coding: utf-8 -*-
'''
Copyright (c) 2014, Esteban Pardo Sánchez
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'''
import cv2
import cv2.cv as cv
import numpy
import pygame
import Constants
|
[
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
7061,
6,
198,
15269,
357,
66,
8,
1946,
11,
10062,
1765,
272,
350,
13109,
311,
21162,
2395,
89,
198,
3237,
2489,
10395,
13,
198,
198,
7738,
396,
3890,
290,
779,
287,
2723,
290,
13934,
5107,
11,
351,
393,
1231,
17613,
11,
198,
533,
10431,
2810,
326,
262,
1708,
3403,
389,
1138,
25,
198,
198,
16,
13,
2297,
396,
2455,
507,
286,
2723,
2438,
1276,
12377,
262,
2029,
6634,
4003,
11,
428,
198,
4868,
286,
3403,
290,
262,
1708,
37592,
13,
198,
198,
17,
13,
2297,
396,
2455,
507,
287,
13934,
1296,
1276,
22919,
262,
2029,
6634,
4003,
11,
198,
5661,
1351,
286,
3403,
290,
262,
1708,
37592,
287,
262,
10314,
290,
14,
273,
198,
847,
5696,
2810,
351,
262,
6082,
13,
198,
198,
18,
13,
16126,
262,
1438,
286,
262,
6634,
15762,
4249,
262,
3891,
286,
663,
20420,
198,
11261,
307,
973,
284,
11438,
393,
7719,
3186,
10944,
422,
428,
3788,
1231,
198,
11423,
3161,
3194,
7170,
13,
198,
198,
43559,
47466,
3180,
36592,
2389,
1961,
11050,
3336,
27975,
38162,
9947,
367,
15173,
4877,
5357,
27342,
9865,
3843,
20673,
366,
1921,
3180,
1,
5357,
198,
31827,
7788,
32761,
6375,
8959,
49094,
34764,
11015,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
8959,
49094,
198,
16279,
32506,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
5357,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
15986,
198,
26288,
48778,
1961,
13,
3268,
8005,
49261,
50163,
3336,
27975,
38162,
9947,
49707,
14418,
6375,
27342,
9865,
3843,
20673,
9348,
43031,
19146,
7473,
198,
31827,
42242,
11,
3268,
17931,
23988,
11,
19387,
25256,
1847,
11,
38846,
11,
7788,
3620,
6489,
13153,
11,
6375,
7102,
5188,
10917,
3525,
12576,
29506,
25552,
198,
7,
1268,
39149,
2751,
11,
21728,
5626,
40880,
5390,
11,
41755,
11335,
10979,
3963,
28932,
2257,
2043,
37780,
21090,
50,
6375,
49254,
26,
198,
43,
18420,
3963,
23210,
11,
42865,
11,
6375,
4810,
19238,
29722,
26,
6375,
43949,
44180,
23255,
49,
8577,
24131,
8,
29630,
36,
5959,
7257,
2937,
1961,
5357,
6177,
198,
31827,
3336,
15513,
3963,
43031,
25382,
11,
7655,
2767,
16879,
3268,
27342,
10659,
11,
19269,
18379,
43031,
25382,
11,
6375,
309,
9863,
198,
7,
1268,
39149,
2751,
399,
7156,
43,
3528,
18310,
6375,
25401,
54,
24352,
8,
5923,
1797,
2751,
3268,
15529,
34882,
16289,
3963,
3336,
23210,
3963,
12680,
198,
15821,
37485,
11,
45886,
16876,
5984,
29817,
1961,
3963,
3336,
28069,
11584,
25382,
3963,
13558,
3398,
29506,
11879,
13,
198,
7061,
6,
198,
198,
11748,
269,
85,
17,
198,
11748,
269,
85,
17,
13,
33967,
355,
269,
85,
198,
11748,
299,
32152,
198,
11748,
12972,
6057,
198,
11748,
4757,
1187,
628,
198,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198
] | 3.323944 | 497 |
import unittest
import io
import os
import collections
import polytaxis
normal_tags = {'a': set(['a'])}
raw_unsized_notags = (
b'polytaxis00u\n'
b'<<<<\n'
b'wug'
)
raw_unsized_normal = (
b'polytaxis00u\n'
b'a=a\n'
b'<<<<\n'
b'wug'
)
raw_sized_minimized_notags = (
b'polytaxis00 0000000000\n'
b'wug'
)
raw_sized_notags = (
b'polytaxis00 0000000512\n' +
b''.join(b'\0' for x in range(511)) +
b'\n'
b'wug'
)
raw_sized_minimized_normal = (
b'polytaxis00 0000000004\n'
b'a=a\n'
b'wug'
)
raw_sized_normal = (
b'polytaxis00 0000000512\n'
b'a=a\n' +
b''.join(b'\0' for x in range(507)) +
b'\n'
b'wug'
)
|
[
11748,
555,
715,
395,
198,
11748,
33245,
198,
11748,
28686,
198,
11748,
17268,
198,
198,
11748,
7514,
19290,
271,
198,
198,
11265,
62,
31499,
796,
1391,
6,
64,
10354,
900,
7,
17816,
64,
6,
12962,
92,
198,
198,
1831,
62,
13271,
1143,
62,
1662,
3775,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
84,
59,
77,
6,
198,
220,
220,
220,
275,
6,
16791,
16791,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198,
220,
198,
1831,
62,
13271,
1143,
62,
11265,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
84,
59,
77,
6,
198,
220,
220,
220,
275,
6,
64,
28,
64,
59,
77,
6,
198,
220,
220,
220,
275,
6,
16791,
16791,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198,
198,
1831,
62,
13982,
62,
1084,
320,
1143,
62,
1662,
3775,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
27551,
405,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198,
198,
1831,
62,
13982,
62,
1662,
3775,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
17643,
830,
25836,
59,
77,
6,
1343,
198,
220,
220,
220,
275,
35384,
22179,
7,
65,
6,
59,
15,
6,
329,
2124,
287,
2837,
7,
41647,
4008,
1343,
198,
220,
220,
220,
275,
6,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198,
198,
1831,
62,
13982,
62,
1084,
320,
1143,
62,
11265,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
41853,
830,
19,
59,
77,
6,
198,
220,
220,
220,
275,
6,
64,
28,
64,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198,
198,
1831,
62,
13982,
62,
11265,
796,
357,
198,
220,
220,
220,
275,
6,
35428,
19290,
271,
405,
17643,
830,
25836,
59,
77,
6,
198,
220,
220,
220,
275,
6,
64,
28,
64,
59,
77,
6,
1343,
198,
220,
220,
220,
275,
35384,
22179,
7,
65,
6,
59,
15,
6,
329,
2124,
287,
2837,
7,
35378,
4008,
1343,
198,
220,
220,
220,
275,
6,
59,
77,
6,
198,
220,
220,
220,
275,
6,
86,
1018,
6,
198,
8,
198
] | 1.801047 | 382 |
import os
from blockbased_synapseaware.hole_filling.components import FindPerBlockConnectedComponents
from blockbased_synapseaware.hole_filling.connect import ConnectLabelsAcrossBlocks, CombineAssociatedLabels
from blockbased_synapseaware.hole_filling.mapping import RemoveHoles
from blockbased_synapseaware.utilities.dataIO import ReadMetaData
from blockbased_synapseaware.utilities.constants import *
|
[
11748,
28686,
628,
198,
198,
6738,
2512,
3106,
62,
28869,
7512,
9685,
13,
13207,
62,
69,
4509,
13,
5589,
3906,
1330,
9938,
5990,
12235,
13313,
276,
7293,
3906,
198,
6738,
2512,
3106,
62,
28869,
7512,
9685,
13,
13207,
62,
69,
4509,
13,
8443,
1330,
8113,
17822,
1424,
40553,
45356,
11,
29176,
29014,
17822,
1424,
198,
6738,
2512,
3106,
62,
28869,
7512,
9685,
13,
13207,
62,
69,
4509,
13,
76,
5912,
1330,
17220,
39,
4316,
198,
6738,
2512,
3106,
62,
28869,
7512,
9685,
13,
315,
2410,
13,
7890,
9399,
1330,
4149,
48526,
6601,
198,
6738,
2512,
3106,
62,
28869,
7512,
9685,
13,
315,
2410,
13,
9979,
1187,
1330,
1635,
628,
198
] | 3.709091 | 110 |
import os
from Tkinter import IntVar, Menu, Tk
import Tkinter as tk
from tkMessageBox import askyesnocancel
from multiprocessing import freeze_support
from globalconst import RAVEN_ICON, VERSION, TITLE, BLACK, get_preferences_from_file, write_preferences_to_file
from aboutbox import AboutBox
from setupboard import SetupBoard
from gamemanager import GameManager
from centeredwindow import CenteredWindow
from prefdlg import PreferencesDialog
if __name__ == '__main__':
freeze_support()
start()
|
[
11748,
28686,
201,
198,
6738,
309,
74,
3849,
1330,
2558,
19852,
11,
21860,
11,
309,
74,
201,
198,
11748,
309,
74,
3849,
355,
256,
74,
201,
198,
6738,
256,
74,
12837,
14253,
1330,
1265,
8505,
77,
420,
21130,
201,
198,
6738,
18540,
305,
919,
278,
1330,
16611,
62,
11284,
201,
198,
6738,
3298,
9979,
1330,
371,
10116,
1677,
62,
2149,
1340,
11,
44156,
2849,
11,
37977,
2538,
11,
31963,
11,
651,
62,
3866,
69,
4972,
62,
6738,
62,
7753,
11,
3551,
62,
3866,
69,
4972,
62,
1462,
62,
7753,
201,
198,
6738,
546,
3524,
1330,
7994,
14253,
201,
198,
6738,
9058,
3526,
1330,
31122,
29828,
201,
198,
6738,
9106,
8463,
3536,
1330,
3776,
13511,
201,
198,
6738,
19254,
17497,
1330,
1979,
1068,
27703,
201,
198,
6738,
7694,
25404,
70,
1330,
49780,
44204,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
16611,
62,
11284,
3419,
201,
198,
220,
220,
220,
923,
3419,
201,
198
] | 3.088235 | 170 |
import pygame
import sys
import time
from intro_controller import IntroController
from settings import RESOLUTION
from spacebar_controller import SpacebarController, LONGPRESS, SHORTPRESS
from game_controller import ControllerResignException
from gameplay_controller import GameplayController
from outro_controller import OutroController
if __name__ == "__main__":
window, screen = init_game()
start_time = time.time()
mainloop(screen, start_time)
sys.exit(0)
|
[
11748,
12972,
6057,
198,
11748,
25064,
198,
11748,
640,
198,
6738,
18951,
62,
36500,
1330,
37219,
22130,
198,
6738,
6460,
1330,
15731,
3535,
35354,
198,
198,
6738,
2272,
5657,
62,
36500,
1330,
4687,
5657,
22130,
11,
44533,
32761,
11,
6006,
9863,
32761,
198,
6738,
983,
62,
36500,
1330,
22741,
4965,
570,
16922,
198,
6738,
11327,
62,
36500,
1330,
3776,
1759,
22130,
198,
6738,
503,
305,
62,
36500,
1330,
3806,
305,
22130,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
4324,
11,
3159,
796,
2315,
62,
6057,
3419,
198,
220,
220,
220,
923,
62,
2435,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
1388,
26268,
7,
9612,
11,
923,
62,
2435,
8,
198,
220,
220,
220,
25064,
13,
37023,
7,
15,
8,
198
] | 3.643939 | 132 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from VASP import calc_files_vasp, ctrl_job_vasp, collect_vasp
from QE import calc_files_qe, ctrl_job_qe, collect_qe
from soiap import calc_files_soiap, ctrl_job_soiap, collect_soiap
from ..IO import read_input as rin
|
[
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
6738,
569,
1921,
47,
1330,
42302,
62,
16624,
62,
85,
5126,
11,
269,
14859,
62,
21858,
62,
85,
5126,
11,
2824,
62,
85,
5126,
198,
6738,
1195,
36,
1330,
42302,
62,
16624,
62,
80,
68,
11,
269,
14859,
62,
21858,
62,
80,
68,
11,
2824,
62,
80,
68,
198,
6738,
523,
72,
499,
1330,
42302,
62,
16624,
62,
568,
72,
499,
11,
269,
14859,
62,
21858,
62,
568,
72,
499,
11,
2824,
62,
568,
72,
499,
198,
6738,
11485,
9399,
1330,
1100,
62,
15414,
355,
374,
259,
628,
628,
628,
628,
198
] | 2.344828 | 116 |
semmed = {
"AnatomicalEntity": {
"affected_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"affects": [
"Disease",
"BiologicalProcess"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"disrupted_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"manifestation_of": [
"BiologicalProcess"
],
"manifested_by": [
"Disease"
],
"negatively_regulated_by": [
"ChemicalSubstance"
],
"negatively_regulates": [
"ChemicalSubstance",
"Gene"
],
"physically_interacts_with": [
"ChemicalSubstance",
"Gene"
],
"positively_regulated_by": [
"ChemicalSubstance",
"Gene"
],
"positively_regulates": [
"ChemicalSubstance",
"Gene"
],
"preceded_by": [
"Disease",
"BiologicalProcess"
],
"precedes": [
"Disease",
"BiologicalProcess"
],
"predisposes": [
"Disease"
],
"prevents": [
"Disease"
],
"related_to": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
]
},
"BiologicalProcess": {
"affected_by": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"affects": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"caused_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"disrupted_by": [
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"disrupts": [
"AnatomicalEntity",
"Cell",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"negatively_regulated_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"negatively_regulates": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"physically_interacts_with": [
"ChemicalSubstance",
"Disease",
"BiologicalProcess",
"Gene"
],
"positively_regulated_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"positively_regulates": [
"ChemicalSubstance",
"BiologicalProcess",
"Gene"
],
"prevents": [
"Disease"
],
"related_to": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"treats": [
"Disease"
]
},
"Cell": {
"affected_by": [
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"affects": [
"Disease",
"Cell"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"coexists_with": [
"Cell",
"ChemicalSubstance",
"Disease",
"PhenotypicFeature",
"Gene"
],
"derives_from": [
"ChemicalSubstance"
],
"disrupted_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"disrupts": [
"BiologicalProcess"
],
"has_part": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"located_in": [
"CellularComponent",
"AnatomicalEntity",
"Cell"
],
"location_of": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"manifestation_of": [
"Disease",
"BiologicalProcess"
],
"manifested_by": [
"Disease"
],
"negatively_regulated_by": [
"ChemicalSubstance"
],
"negatively_regulates": [
"ChemicalSubstance",
"Gene"
],
"part_of": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"physically_interacts_with": [
"ChemicalSubstance",
"Gene"
],
"positively_regulated_by": [
"ChemicalSubstance",
"Gene"
],
"positively_regulates": [
"ChemicalSubstance",
"Gene"
],
"predisposes": [
"Disease"
],
"produced_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"produces": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"related_to": [
"Disease",
"Gene"
],
"subclass_of": [
"Disease",
"BiologicalProcess"
],
"treats": [
"Disease"
]
},
"CellularComponent": {
"affected_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"affects": [
"AnatomicalEntity",
"Cell",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"disrupted_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"disrupts": [
"Disease",
"BiologicalProcess",
"Cell"
],
"located_in": [
"CellularComponent",
"AnatomicalEntity",
"Cell"
],
"negatively_regulated_by": [
"CellularComponent",
"ChemicalSubstance",
"Gene"
],
"negatively_regulates": [
"CellularComponent",
"ChemicalSubstance",
"Gene"
],
"physically_interacts_with": [
"CellularComponent",
"ChemicalSubstance",
"Disease",
"Gene"
],
"positively_regulated_by": [
"CellularComponent",
"ChemicalSubstance",
"Gene"
],
"positively_regulates": [
"CellularComponent",
"ChemicalSubstance",
"Gene"
],
"predisposes": [
"Disease"
],
"related_to": [
"Disease",
"AnatomicalEntity",
"BiologicalProcess"
],
"treats": [
"Disease"
]
},
"ChemicalSubstance": {
"affected_by": [
"ChemicalSubstance",
"Disease",
"BiologicalProcess",
"Gene"
],
"affects": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"coexists_with": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"disrupted_by": [
"ChemicalSubstance",
"Gene"
],
"disrupts": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"negatively_regulated_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"negatively_regulates": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"physically_interacts_with": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"positively_regulated_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"positively_regulates": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"prevents": [
"Disease"
],
"produced_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"produces": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"PhenotypicFeature",
"Gene"
],
"related_to": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"treats": [
"Disease"
]
},
"Disease": {
"affected_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"affects": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"caused_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"coexists_with": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"derives_from": [
"ChemicalSubstance",
"Gene"
],
"derives_info": [
"ChemicalSubstance"
],
"disrupted_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"disrupts": [
"AnatomicalEntity",
"Cell",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"negatively_regulated_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"negatively_regulates": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"physically_interacts_with": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"positively_regulated_by": [
"ChemicalSubstance",
"Disease",
"Gene"
],
"positively_regulates": [
"ChemicalSubstance",
"Disease",
"BiologicalProcess",
"Gene"
],
"prevented_by": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"prevents": [
"Disease"
],
"related_to": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"treated_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"treats": [
"Disease"
]
},
"Gene": {
"affected_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"affects": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"disrupted_by": [
"ChemicalSubstance",
"Disease",
"BiologicalProcess",
"Gene"
],
"disrupts": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"negatively_regulated_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"negatively_regulates": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"physically_interacts_with": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"positively_regulated_by": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"positively_regulates": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene",
"CellularComponent"
],
"prevents": [
"Disease"
],
"related_to": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"treats": [
"Disease"
]
},
"PhenotypicFeature": {
"affected_by": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"affects": [
"CellularComponent",
"Disease",
"BiologicalProcess",
"Cell"
],
"causes": [
"Disease",
"BiologicalProcess"
],
"disrupted_by": [
"ChemicalSubstance",
"Disease",
"Gene"
],
"disrupts": [
"CellularComponent",
"Disease",
"BiologicalProcess",
"Cell"
],
"has_part": [
"ChemicalSubstance",
"Disease",
"CellularComponent",
"Gene"
],
"has_subclass": [
"Disease",
"PhenotypicFeature"
],
"located_in": [
"CellularComponent",
"AnatomicalEntity",
"Cell"
],
"manifestation_of": [
"Disease",
"BiologicalProcess",
"Gene"
],
"manifested_by": [
"Disease"
],
"negatively_regulated_by": [
"ChemicalSubstance",
"Gene"
],
"negatively_regulates": [
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"part_of": [
"AnatomicalEntity",
"Cell",
"ChemicalSubstance",
"Disease",
"CellularComponent"
],
"physically_interacts_with": [
"ChemicalSubstance",
"Disease",
"Gene"
],
"positively_regulated_by": [
"ChemicalSubstance",
"Gene"
],
"positively_regulates": [
"ChemicalSubstance",
"Gene"
],
"preceded_by": [
"Disease",
"BiologicalProcess"
],
"precedes": [
"BiologicalProcess"
],
"predisposes": [
"Disease"
],
"prevents": [
"Disease"
],
"produced_by": [
"Cell",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene",
"CellularComponent"
],
"produces": [
"ChemicalSubstance",
"Gene"
],
"related_to": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"Gene"
],
"subclass_of": [
"AnatomicalEntity",
"ChemicalSubstance",
"BiologicalProcess",
"Disease",
"PhenotypicFeature",
"Gene"
],
"treats": [
"Disease"
]
}
}
|
[
43616,
1150,
796,
1391,
198,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
8409,
341,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
361,
7287,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3866,
771,
276,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3866,
19285,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28764,
271,
4832,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
33,
15071,
18709,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
1484,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
28780,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1073,
1069,
1023,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1082,
1083,
62,
6738,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10134,
62,
3911,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
75,
10533,
62,
259,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24886,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
8409,
341,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
361,
7287,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3911,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28764,
271,
4832,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32783,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18230,
728,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7266,
4871,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
28780,
934,
21950,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
75,
10533,
62,
259,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28764,
271,
4832,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1073,
1069,
1023,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32783,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18230,
728,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
35,
786,
589,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
1484,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1073,
1069,
1023,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1082,
1083,
62,
6738,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1082,
1083,
62,
10951,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3866,
1151,
276,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37182,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
39358,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43958,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2001,
478,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6888,
2664,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
31590,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
6381,
3622,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10134,
62,
3911,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
10134,
62,
7266,
4871,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
75,
10533,
62,
259,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
8409,
341,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
805,
361,
7287,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12480,
9404,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3911,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34411,
1146,
62,
3849,
8656,
62,
4480,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
27739,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24561,
306,
62,
2301,
15968,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3866,
771,
276,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3866,
19285,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
28764,
271,
4832,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47050,
658,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32783,
62,
1525,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
28780,
934,
21950,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18230,
728,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5363,
62,
1462,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7266,
4871,
62,
1659,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2025,
265,
22545,
32398,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
41829,
605,
7004,
301,
590,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33,
15071,
18709,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47,
831,
17183,
291,
38816,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39358,
1,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
366,
83,
630,
82,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
35,
786,
589,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
1782,
198,
92
] | 1.613429 | 13,180 |
# Generated by Django 4.0.3 on 2022-04-12 14:56
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
|
[
2,
2980,
515,
416,
37770,
604,
13,
15,
13,
18,
319,
33160,
12,
3023,
12,
1065,
1478,
25,
3980,
198,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
198,
11748,
42625,
14208,
13,
9945,
13,
27530,
13,
2934,
1616,
295,
628
] | 3.019231 | 52 |
from __future__ import unicode_literals
import yaml
try:
from yaml import CSafeLoader as SafeLoader
except ImportError:
from yaml import SafeLoader
from django.utils.module_loading import import_string
from .settings import setting_ocr_backend, setting_ocr_backend_arguments
ocr_backend = import_string(
dotted_path=setting_ocr_backend.value
)(
**yaml.load(
stream=setting_ocr_backend_arguments.value or '{}', Loader=SafeLoader
)
)
|
[
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
11748,
331,
43695,
198,
198,
28311,
25,
198,
220,
220,
220,
422,
331,
43695,
1330,
9429,
8635,
17401,
355,
19978,
17401,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
422,
331,
43695,
1330,
19978,
17401,
198,
198,
6738,
42625,
14208,
13,
26791,
13,
21412,
62,
25138,
1330,
1330,
62,
8841,
198,
198,
6738,
764,
33692,
1330,
4634,
62,
1696,
62,
1891,
437,
11,
4634,
62,
1696,
62,
1891,
437,
62,
853,
2886,
198,
198,
1696,
62,
1891,
437,
796,
1330,
62,
8841,
7,
198,
220,
220,
220,
38745,
62,
6978,
28,
33990,
62,
1696,
62,
1891,
437,
13,
8367,
198,
5769,
198,
220,
220,
220,
12429,
88,
43695,
13,
2220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4269,
28,
33990,
62,
1696,
62,
1891,
437,
62,
853,
2886,
13,
8367,
393,
705,
90,
92,
3256,
8778,
263,
28,
31511,
17401,
198,
220,
220,
220,
1267,
198,
8,
198
] | 2.852761 | 163 |
# -*- coding: utf-8 -*-
"""
Main click group for CLI
"""
import logging
import os
import sys
import click
from click_plugins import with_plugins
# from pkg_resources import iter_entry_points
import scarlett_os
from scarlett_os.common.configure.ruamel_config import ConfigManager
# from scarlett_os.compat import configparser
# def configure_logging(verbosity):
# log_level = max(10, 30 - 10 * verbosity)
# logging.basicConfig(stream=sys.stderr, level=log_level)
# def read_config(cfg):
# parser = configparser.ConfigParser()
# parser.read(cfg)
# rv = {}
# for section in parser.sections():
# for key, value in parser.items(section):
# rv["{0}.{1}".format(section, key)] = value
# return rv
# @with_plugins(ep for ep in list(iter_entry_points("scarlett_os.scarlett_os_commands")))
# @click.group()
# @click.version_option(version=scarlett_os.__version__, message="%(version)s")
# @click.option(
# "--name",
# "-n",
# help="Name ScarlettOS process explicitly.",
# metavar="NAME",
# default="scarlett_system",
# )
# @click.option(
# "--daemon",
# "-d",
# is_flag=True,
# help="Daemon mode, background process.",
# default=False,
# )
# @click.option(
# "--mode",
# "-m",
# type=click.Choice(["dbus_server", "listener", "tasker", "check_all_services"]),
# help="ScarlettOS type",
# default="check_all_services",
# )
# @click.option(
# "--master",
# "-m",
# is_flag=True,
# help="Run ScarlettOS process as a Master",
# default=False,
# )
# @click.option(
# "--slave",
# "-s",
# is_flag=True,
# help="Run ScarlettOS process as a Slave",
# default=False,
# )
# @click.option("--etcd-host", help="Etcd Host for distributed mode.", default=False)
# @click.option(
# "--quiet",
# "-q",
# is_flag=True,
# help="Limit output to errors and warnings.",
# default=False,
# )
# @click.option("--verbose", "-V", is_flag=True, help="Be verbose.", default=False)
# @click.option(
# "--config",
# "-c",
# type=click.Path(exists=True, resolve_path=True),
# help="Config file",
# )
# @click.pass_context
# def main_group(
# ctx, name, daemon, mode, master, slave, etcd_host, quiet, verbose, config
# ):
# """This is the command line interface to ScarlettOS.
# """
# # NOTE: ctx
# # Most public functions are actually methods of a 'context' object which
# # is passed as the first parameter (ctx). The context object stores the
# # precision, cached data, and a few other things. It also defines
# # conversions so that the same high-level code can be used for several
# # different base types (mpf, mpfs in Sage, intervals, Python floats) by
# # switching contexts.
# #
# # The default context is called 'mp'. You can call most functions as
# # mpmath.mp.foo(). The top-level function mpmath.foo() is just an alias
# # for this.
# ctx.obj = {}
# config = config or os.path.join(click.get_app_dir("scarlett_os"), "scarlett_os.ini")
# cfg = read_config(config)
# if cfg:
# ctx.obj["config_file"] = config
# ctx.obj["cfg"] = cfg
# ctx.default_map = cfg
# verbosity = (
# os.environ.get("SCARLETTOS_VERBOSE")
# or ctx.lookup_default("scarlett_os.verbosity")
# or 0
# )
# if verbose or quiet:
# verbosity = verbose - quiet
# verbosity = int(verbosity)
# configure_logging(verbosity)
# ctx.obj["verbosity"] = verbosity
@click.group()
@click.version_option(version=scarlett_os.__version__, message="%(version)s")
@click.option("--debug/--no-debug", default=False)
@click.pass_context
def main_group(ctx, debug):
"""This is the command line interface to ScarlettOS.
"""
# NOTE: ctx
# Most public functions are actually methods of a 'context' object which
# is passed as the first parameter (ctx). The context object stores the
# precision, cached data, and a few other things. It also defines
# conversions so that the same high-level code can be used for several
# different base types (mpf, mpfs in Sage, intervals, Python floats) by
# switching contexts.
#
# The default context is called 'mp'. You can call most functions as
# mpmath.mp.foo(). The top-level function mpmath.foo() is just an alias
# for this.
ctx.obj = {}
ctx.obj["DEBUG"] = debug
click.echo("Debug mode is %s" % ("on" if debug else "off"))
# click.echo('Debug is %s' % (ctx.obj['DEBUG'] and 'on' or 'off'))
@click.command()
@click.pass_context
def config_init(ctx):
"""
Setup default configuration file
"""
cfg = ConfigManager()
cfg.prep_default_config()
click.echo(
"Default configuration created. Please don't forget to update your locations if you don't like the default values!"
)
@click.command()
@click.option(
"--mode",
"-m",
type=click.Choice(["dbus_server", "listener", "tasker", "check_all_services"]),
help="ScarlettOS type",
default="check_all_services",
)
@click.pass_context
def run(ctx):
"""
Run a particular Scarlett Module. Options: [dbus_server|listener|tasker|check_all_services]
"""
pass
@click.command()
@click.pass_context
def dummy(ctx):
"""
Dummy command, doesn't do anything.
"""
click.echo("Dummy command, doesn't do anything.")
main_group.add_command(config_init)
main_group.add_command(dummy)
main_group.add_command(run)
|
[
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
13383,
3904,
1448,
329,
43749,
198,
37811,
198,
198,
11748,
18931,
198,
11748,
28686,
198,
11748,
25064,
198,
198,
11748,
3904,
198,
6738,
3904,
62,
37390,
1330,
351,
62,
37390,
198,
198,
2,
422,
279,
10025,
62,
37540,
1330,
11629,
62,
13000,
62,
13033,
198,
198,
11748,
10153,
15503,
62,
418,
198,
6738,
10153,
15503,
62,
418,
13,
11321,
13,
11250,
495,
13,
622,
17983,
62,
11250,
1330,
17056,
13511,
198,
198,
2,
422,
10153,
15503,
62,
418,
13,
5589,
265,
1330,
4566,
48610,
628,
198,
2,
825,
17425,
62,
6404,
2667,
7,
19011,
16579,
2599,
198,
2,
220,
220,
220,
220,
2604,
62,
5715,
796,
3509,
7,
940,
11,
1542,
532,
838,
1635,
15942,
16579,
8,
198,
2,
220,
220,
220,
220,
18931,
13,
35487,
16934,
7,
5532,
28,
17597,
13,
301,
1082,
81,
11,
1241,
28,
6404,
62,
5715,
8,
628,
198,
2,
825,
1100,
62,
11250,
7,
37581,
2599,
198,
2,
220,
220,
220,
220,
30751,
796,
4566,
48610,
13,
16934,
46677,
3419,
198,
2,
220,
220,
220,
220,
30751,
13,
961,
7,
37581,
8,
198,
2,
220,
220,
220,
220,
374,
85,
796,
23884,
198,
2,
220,
220,
220,
220,
329,
2665,
287,
30751,
13,
23946,
33529,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
1988,
287,
30751,
13,
23814,
7,
5458,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
85,
14692,
90,
15,
27422,
90,
16,
92,
1911,
18982,
7,
5458,
11,
1994,
15437,
796,
1988,
198,
2,
220,
220,
220,
220,
1441,
374,
85,
628,
198,
2,
2488,
4480,
62,
37390,
7,
538,
329,
2462,
287,
1351,
7,
2676,
62,
13000,
62,
13033,
7203,
13034,
15503,
62,
418,
13,
13034,
15503,
62,
418,
62,
9503,
1746,
1,
22305,
198,
2,
2488,
12976,
13,
8094,
3419,
198,
2,
2488,
12976,
13,
9641,
62,
18076,
7,
9641,
28,
13034,
15503,
62,
418,
13,
834,
9641,
834,
11,
3275,
2625,
4,
7,
9641,
8,
82,
4943,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
3672,
1600,
198,
2,
220,
220,
220,
220,
27444,
77,
1600,
198,
2,
220,
220,
220,
220,
1037,
2625,
5376,
45046,
2640,
1429,
11777,
33283,
198,
2,
220,
220,
220,
220,
1138,
615,
283,
2625,
20608,
1600,
198,
2,
220,
220,
220,
220,
4277,
2625,
13034,
15503,
62,
10057,
1600,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
6814,
7966,
1600,
198,
2,
220,
220,
220,
220,
27444,
67,
1600,
198,
2,
220,
220,
220,
220,
318,
62,
32109,
28,
17821,
11,
198,
2,
220,
220,
220,
220,
1037,
2625,
26531,
7966,
4235,
11,
4469,
1429,
33283,
198,
2,
220,
220,
220,
220,
4277,
28,
25101,
11,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
14171,
1600,
198,
2,
220,
220,
220,
220,
27444,
76,
1600,
198,
2,
220,
220,
220,
220,
2099,
28,
12976,
13,
46770,
7,
14692,
9945,
385,
62,
15388,
1600,
366,
4868,
877,
1600,
366,
35943,
263,
1600,
366,
9122,
62,
439,
62,
30416,
8973,
828,
198,
2,
220,
220,
220,
220,
1037,
2625,
44433,
15503,
2640,
2099,
1600,
198,
2,
220,
220,
220,
220,
4277,
2625,
9122,
62,
439,
62,
30416,
1600,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
9866,
1600,
198,
2,
220,
220,
220,
220,
27444,
76,
1600,
198,
2,
220,
220,
220,
220,
318,
62,
32109,
28,
17821,
11,
198,
2,
220,
220,
220,
220,
1037,
2625,
10987,
45046,
2640,
1429,
355,
257,
5599,
1600,
198,
2,
220,
220,
220,
220,
4277,
28,
25101,
11,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
36341,
1600,
198,
2,
220,
220,
220,
220,
27444,
82,
1600,
198,
2,
220,
220,
220,
220,
318,
62,
32109,
28,
17821,
11,
198,
2,
220,
220,
220,
220,
1037,
2625,
10987,
45046,
2640,
1429,
355,
257,
38795,
1600,
198,
2,
220,
220,
220,
220,
4277,
28,
25101,
11,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7203,
438,
316,
10210,
12,
4774,
1600,
1037,
2625,
36,
83,
10210,
14504,
329,
9387,
4235,
33283,
4277,
28,
25101,
8,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
39624,
1600,
198,
2,
220,
220,
220,
220,
27444,
80,
1600,
198,
2,
220,
220,
220,
220,
318,
62,
32109,
28,
17821,
11,
198,
2,
220,
220,
220,
220,
1037,
2625,
39184,
5072,
284,
8563,
290,
14601,
33283,
198,
2,
220,
220,
220,
220,
4277,
28,
25101,
11,
198,
2,
1267,
198,
2,
2488,
12976,
13,
18076,
7203,
438,
19011,
577,
1600,
27444,
53,
1600,
318,
62,
32109,
28,
17821,
11,
1037,
2625,
3856,
15942,
577,
33283,
4277,
28,
25101,
8,
198,
2,
2488,
12976,
13,
18076,
7,
198,
2,
220,
220,
220,
220,
366,
438,
11250,
1600,
198,
2,
220,
220,
220,
220,
27444,
66,
1600,
198,
2,
220,
220,
220,
220,
2099,
28,
12976,
13,
15235,
7,
1069,
1023,
28,
17821,
11,
10568,
62,
6978,
28,
17821,
828,
198,
2,
220,
220,
220,
220,
1037,
2625,
16934,
2393,
1600,
198,
2,
1267,
198,
2,
2488,
12976,
13,
6603,
62,
22866,
198,
2,
825,
1388,
62,
8094,
7,
198,
2,
220,
220,
220,
220,
269,
17602,
11,
1438,
11,
33386,
11,
4235,
11,
4958,
11,
11778,
11,
3503,
67,
62,
4774,
11,
5897,
11,
15942,
577,
11,
4566,
198,
2,
15179,
198,
2,
220,
220,
220,
220,
37227,
1212,
318,
262,
3141,
1627,
7071,
284,
45046,
2640,
13,
198,
2,
220,
220,
220,
220,
37227,
198,
2,
220,
220,
220,
220,
1303,
24550,
25,
269,
17602,
198,
2,
220,
220,
220,
220,
1303,
4042,
1171,
5499,
389,
1682,
5050,
286,
257,
705,
22866,
6,
2134,
543,
198,
2,
220,
220,
220,
220,
1303,
318,
3804,
355,
262,
717,
11507,
357,
49464,
737,
383,
4732,
2134,
7000,
262,
198,
2,
220,
220,
220,
220,
1303,
15440,
11,
39986,
1366,
11,
290,
257,
1178,
584,
1243,
13,
632,
635,
15738,
198,
2,
220,
220,
220,
220,
1303,
32626,
523,
326,
262,
976,
1029,
12,
5715,
2438,
460,
307,
973,
329,
1811,
198,
2,
220,
220,
220,
220,
1303,
1180,
2779,
3858,
357,
3149,
69,
11,
29034,
9501,
287,
28733,
11,
20016,
11,
11361,
36016,
8,
416,
198,
2,
220,
220,
220,
220,
1303,
15430,
26307,
13,
198,
2,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
1303,
383,
4277,
4732,
318,
1444,
705,
3149,
4458,
921,
460,
869,
749,
5499,
355,
198,
2,
220,
220,
220,
220,
1303,
285,
4426,
776,
13,
3149,
13,
21943,
22446,
383,
1353,
12,
5715,
2163,
285,
4426,
776,
13,
21943,
3419,
318,
655,
281,
16144,
198,
2,
220,
220,
220,
220,
1303,
329,
428,
13,
198,
198,
2,
220,
220,
220,
220,
269,
17602,
13,
26801,
796,
23884,
198,
2,
220,
220,
220,
220,
4566,
796,
4566,
393,
28686,
13,
6978,
13,
22179,
7,
12976,
13,
1136,
62,
1324,
62,
15908,
7203,
13034,
15503,
62,
418,
12340,
366,
13034,
15503,
62,
418,
13,
5362,
4943,
198,
2,
220,
220,
220,
220,
30218,
70,
796,
1100,
62,
11250,
7,
11250,
8,
198,
2,
220,
220,
220,
220,
611,
30218,
70,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
269,
17602,
13,
26801,
14692,
11250,
62,
7753,
8973,
796,
4566,
198,
2,
220,
220,
220,
220,
269,
17602,
13,
26801,
14692,
37581,
8973,
796,
30218,
70,
198,
2,
220,
220,
220,
220,
269,
17602,
13,
12286,
62,
8899,
796,
30218,
70,
198,
198,
2,
220,
220,
220,
220,
15942,
16579,
796,
357,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
268,
2268,
13,
1136,
7203,
6173,
1503,
2538,
15751,
2640,
62,
5959,
33,
14058,
4943,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
393,
269,
17602,
13,
5460,
929,
62,
12286,
7203,
13034,
15503,
62,
418,
13,
19011,
16579,
4943,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
393,
657,
198,
2,
220,
220,
220,
220,
1267,
198,
2,
220,
220,
220,
220,
611,
15942,
577,
393,
5897,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
15942,
16579,
796,
15942,
577,
532,
5897,
198,
2,
220,
220,
220,
220,
15942,
16579,
796,
493,
7,
19011,
16579,
8,
198,
2,
220,
220,
220,
220,
17425,
62,
6404,
2667,
7,
19011,
16579,
8,
198,
198,
2,
220,
220,
220,
220,
269,
17602,
13,
26801,
14692,
19011,
16579,
8973,
796,
15942,
16579,
628,
198,
31,
12976,
13,
8094,
3419,
198,
31,
12976,
13,
9641,
62,
18076,
7,
9641,
28,
13034,
15503,
62,
418,
13,
834,
9641,
834,
11,
3275,
2625,
4,
7,
9641,
8,
82,
4943,
198,
31,
12976,
13,
18076,
7203,
438,
24442,
14,
438,
3919,
12,
24442,
1600,
4277,
28,
25101,
8,
198,
31,
12976,
13,
6603,
62,
22866,
198,
4299,
1388,
62,
8094,
7,
49464,
11,
14257,
2599,
198,
220,
220,
220,
37227,
1212,
318,
262,
3141,
1627,
7071,
284,
45046,
2640,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
24550,
25,
269,
17602,
198,
220,
220,
220,
1303,
4042,
1171,
5499,
389,
1682,
5050,
286,
257,
705,
22866,
6,
2134,
543,
198,
220,
220,
220,
1303,
318,
3804,
355,
262,
717,
11507,
357,
49464,
737,
383,
4732,
2134,
7000,
262,
198,
220,
220,
220,
1303,
15440,
11,
39986,
1366,
11,
290,
257,
1178,
584,
1243,
13,
632,
635,
15738,
198,
220,
220,
220,
1303,
32626,
523,
326,
262,
976,
1029,
12,
5715,
2438,
460,
307,
973,
329,
1811,
198,
220,
220,
220,
1303,
1180,
2779,
3858,
357,
3149,
69,
11,
29034,
9501,
287,
28733,
11,
20016,
11,
11361,
36016,
8,
416,
198,
220,
220,
220,
1303,
15430,
26307,
13,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
383,
4277,
4732,
318,
1444,
705,
3149,
4458,
921,
460,
869,
749,
5499,
355,
198,
220,
220,
220,
1303,
285,
4426,
776,
13,
3149,
13,
21943,
22446,
383,
1353,
12,
5715,
2163,
285,
4426,
776,
13,
21943,
3419,
318,
655,
281,
16144,
198,
220,
220,
220,
1303,
329,
428,
13,
198,
220,
220,
220,
269,
17602,
13,
26801,
796,
23884,
628,
220,
220,
220,
269,
17602,
13,
26801,
14692,
30531,
8973,
796,
14257,
628,
220,
220,
220,
3904,
13,
30328,
7203,
27509,
4235,
318,
4064,
82,
1,
4064,
5855,
261,
1,
611,
14257,
2073,
366,
2364,
48774,
198,
220,
220,
220,
1303,
3904,
13,
30328,
10786,
27509,
318,
4064,
82,
6,
4064,
357,
49464,
13,
26801,
17816,
30531,
20520,
290,
705,
261,
6,
393,
705,
2364,
6,
4008,
628,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
6603,
62,
22866,
198,
4299,
4566,
62,
15003,
7,
49464,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
31122,
4277,
8398,
2393,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
30218,
70,
796,
17056,
13511,
3419,
198,
220,
220,
220,
30218,
70,
13,
46012,
62,
12286,
62,
11250,
3419,
198,
220,
220,
220,
3904,
13,
30328,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19463,
8398,
2727,
13,
4222,
836,
470,
6044,
284,
4296,
534,
7064,
611,
345,
836,
470,
588,
262,
4277,
3815,
2474,
198,
220,
220,
220,
1267,
628,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
366,
438,
14171,
1600,
198,
220,
220,
220,
27444,
76,
1600,
198,
220,
220,
220,
2099,
28,
12976,
13,
46770,
7,
14692,
9945,
385,
62,
15388,
1600,
366,
4868,
877,
1600,
366,
35943,
263,
1600,
366,
9122,
62,
439,
62,
30416,
8973,
828,
198,
220,
220,
220,
1037,
2625,
44433,
15503,
2640,
2099,
1600,
198,
220,
220,
220,
4277,
2625,
9122,
62,
439,
62,
30416,
1600,
198,
8,
198,
31,
12976,
13,
6603,
62,
22866,
198,
4299,
1057,
7,
49464,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5660,
257,
1948,
45046,
19937,
13,
18634,
25,
685,
9945,
385,
62,
15388,
91,
4868,
877,
91,
35943,
263,
91,
9122,
62,
439,
62,
30416,
60,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1208,
628,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
6603,
62,
22866,
198,
4299,
31548,
7,
49464,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
360,
13513,
3141,
11,
1595,
470,
466,
1997,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
3904,
13,
30328,
7203,
35,
13513,
3141,
11,
1595,
470,
466,
1997,
19570,
628,
198,
12417,
62,
8094,
13,
2860,
62,
21812,
7,
11250,
62,
15003,
8,
198,
12417,
62,
8094,
13,
2860,
62,
21812,
7,
67,
13513,
8,
198,
12417,
62,
8094,
13,
2860,
62,
21812,
7,
5143,
8,
198
] | 2.574169 | 2,137 |
from podiomirror.transactions.transaction import Transaction, MODIFY_RELATION
|
[
6738,
279,
23130,
296,
343,
1472,
13,
7645,
4658,
13,
7645,
2673,
1330,
45389,
11,
19164,
5064,
56,
62,
16448,
6234,
628
] | 3.590909 | 22 |
# Yilin Wang
# pre_lecture assignment
# BMES T580
import random
import math
print('**********************************')
print(' GUESS_THAT_PRIMER GAME ')
print('**********************************')
print()
DNA = ['A','G','C','T'] # DNA base
# set the initial sequence as a empty string
# the base will be added into this empty string as a target DNA sequence.
the_primer = ''
# use the for loop to generate the random DNA sequence ( the string need to be 5 letters long)
for i in range (0,5):
the_primer +=random.choice(DNA)
#set up the initial values
guess = 'NNNNN'
# asking the users' name to begin the guess game
name = input('What is your name? ')
# calculate the length of the primer (should be 5 in this game).
target_length= len(the_primer)
# print the hint
print('The number of letters for the Target DNA sequence is {}.'.format(target_length))
print ('The DNA base is {}.'. format(DNA))
# set up a while loop to define while the DNA sequence that user guessing is different than the random DNA (the_primer),
#---it is allow the user to take another guess.
while guess != the_primer:
guess_text = input('Guess a primer DNA sequence: ') # asking the user to generate a DNA sequence (5 letters long)
guess = guess_text
# get the length of the guess DNA sequence
guess_length = len(guess)
# using if loop to split the situations (correctly or incorrectly)
# if the user's answer is incorrect, the system will allow another guess
# if the user has teh correct answer, the user win and exit the game
if guess != the_primer:
# set up the initial value of the counter number (the number of correct letters)
count = 0
# get the minimum length of the string
comparing_range = min(target_length,guess_length)
# using for loop to check if there are any correct letter, and count the number of correct letters.
for q in range (comparing_range):
if the_primer[q] == guess[q]:
count = count+1
# print('Your guess of ' + guess + ' was incorrect.' + the number of correct letters is + count)
print('Sorry {}. Your guess {} is incorrect. The number of correct letters is {}. Play again? '.format(name, guess,count))
else:
print('Excellent work {}! you win! The target DNA sequence is {}!'.format(name, guess))
print('Done!!!')
|
[
2,
575,
346,
259,
15233,
198,
2,
662,
62,
801,
495,
16237,
198,
2,
29944,
1546,
309,
39322,
198,
198,
11748,
4738,
198,
11748,
10688,
198,
198,
4798,
10786,
17174,
1174,
11537,
198,
4798,
10786,
220,
19348,
7597,
62,
4221,
1404,
62,
4805,
3955,
1137,
30517,
220,
705,
8,
198,
4798,
10786,
17174,
1174,
11537,
198,
4798,
3419,
628,
198,
28886,
796,
37250,
32,
41707,
38,
41707,
34,
41707,
51,
20520,
1303,
7446,
2779,
198,
2,
900,
262,
4238,
8379,
355,
257,
6565,
4731,
198,
2,
262,
2779,
481,
307,
2087,
656,
428,
6565,
4731,
355,
257,
2496,
7446,
8379,
13,
198,
1169,
62,
19795,
263,
796,
10148,
198,
198,
2,
779,
262,
329,
9052,
284,
7716,
262,
4738,
7446,
8379,
357,
262,
4731,
761,
284,
307,
642,
7475,
890,
8,
198,
1640,
1312,
287,
2837,
357,
15,
11,
20,
2599,
198,
220,
220,
220,
262,
62,
19795,
263,
15853,
25120,
13,
25541,
7,
28886,
8,
198,
198,
2,
2617,
510,
262,
4238,
3815,
198,
5162,
408,
796,
705,
6144,
6144,
45,
6,
628,
198,
2,
4737,
262,
2985,
6,
1438,
284,
2221,
262,
4724,
983,
198,
3672,
796,
5128,
10786,
2061,
318,
534,
1438,
30,
705,
8,
198,
2,
15284,
262,
4129,
286,
262,
33270,
357,
21754,
307,
642,
287,
428,
983,
737,
198,
16793,
62,
13664,
28,
18896,
7,
1169,
62,
19795,
263,
8,
198,
198,
2,
3601,
262,
9254,
198,
4798,
10786,
464,
1271,
286,
7475,
329,
262,
12744,
7446,
8379,
318,
23884,
2637,
13,
18982,
7,
16793,
62,
13664,
4008,
198,
4798,
19203,
464,
7446,
2779,
318,
23884,
2637,
13,
5794,
7,
28886,
4008,
198,
2,
900,
510,
257,
981,
9052,
284,
8160,
981,
262,
7446,
8379,
326,
2836,
25260,
318,
1180,
621,
262,
4738,
7446,
357,
1169,
62,
19795,
263,
828,
198,
2,
6329,
270,
318,
1249,
262,
2836,
284,
1011,
1194,
4724,
13,
198,
4514,
4724,
14512,
262,
62,
19795,
263,
25,
198,
220,
220,
220,
4724,
62,
5239,
796,
5128,
10786,
8205,
408,
257,
33270,
7446,
8379,
25,
705,
8,
1303,
4737,
262,
2836,
284,
7716,
257,
7446,
8379,
357,
20,
7475,
890,
8,
198,
220,
220,
220,
4724,
796,
4724,
62,
5239,
198,
220,
220,
220,
1303,
651,
262,
4129,
286,
262,
4724,
7446,
8379,
198,
220,
220,
220,
4724,
62,
13664,
796,
18896,
7,
5162,
408,
8,
198,
2,
1262,
611,
9052,
284,
6626,
262,
7445,
357,
30283,
306,
393,
23175,
8,
198,
2,
611,
262,
2836,
338,
3280,
318,
11491,
11,
262,
1080,
481,
1249,
1194,
4724,
198,
2,
611,
262,
2836,
468,
573,
71,
3376,
3280,
11,
262,
2836,
1592,
290,
8420,
262,
983,
628,
220,
220,
220,
611,
4724,
14512,
262,
62,
19795,
263,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
900,
510,
262,
4238,
1988,
286,
262,
3753,
1271,
357,
1169,
1271,
286,
3376,
7475,
8,
198,
220,
220,
220,
220,
220,
220,
220,
954,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
262,
5288,
4129,
286,
262,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
14176,
62,
9521,
796,
949,
7,
16793,
62,
13664,
11,
5162,
408,
62,
13664,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1262,
329,
9052,
284,
2198,
611,
612,
389,
597,
220,
3376,
3850,
11,
290,
954,
262,
1271,
286,
3376,
7475,
13,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10662,
287,
2837,
357,
5589,
1723,
62,
9521,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
262,
62,
19795,
263,
58,
80,
60,
6624,
4724,
58,
80,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
954,
796,
954,
10,
16,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
10786,
7120,
4724,
286,
705,
1343,
4724,
1343,
705,
373,
11491,
2637,
1343,
262,
1271,
286,
3376,
7475,
318,
1343,
954,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
14385,
23884,
13,
3406,
4724,
23884,
318,
11491,
13,
383,
1271,
286,
3376,
7475,
318,
23884,
13,
3811,
757,
30,
45302,
18982,
7,
3672,
11,
4724,
11,
9127,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
45675,
670,
23884,
0,
345,
1592,
0,
383,
2496,
7446,
8379,
318,
23884,
0,
4458,
18982,
7,
3672,
11,
4724,
4008,
198,
198,
4798,
10786,
45677,
10185,
11537,
198
] | 3.22541 | 732 |
import logging
import fmcapi
|
[
11748,
18931,
198,
11748,
277,
76,
11128,
72,
628
] | 3.333333 | 9 |
import re
number = int(input())
pattern_valid = r"@#+[A-Z][A-Za-z0-9]{4,}[A-Z]@#+"
for _ in range(number):
lines = input()
if re.match(pattern_valid,lines):
digits = re.findall(r"\d", lines)
if digits:
print(f'Product group: {"".join(digits)}')
else:
print('Product group: 00')
else:
print('Invalid barcode')
|
[
11748,
302,
198,
198,
17618,
796,
493,
7,
15414,
28955,
628,
198,
33279,
62,
12102,
796,
374,
1,
41573,
10,
58,
32,
12,
57,
7131,
32,
12,
57,
64,
12,
89,
15,
12,
24,
60,
90,
19,
11,
92,
58,
32,
12,
57,
60,
41573,
10,
1,
628,
198,
1640,
4808,
287,
2837,
7,
17618,
2599,
198,
220,
220,
220,
3951,
796,
5128,
3419,
628,
220,
220,
220,
611,
302,
13,
15699,
7,
33279,
62,
12102,
11,
6615,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
19561,
796,
302,
13,
19796,
439,
7,
81,
1,
59,
67,
1600,
3951,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
19561,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
15667,
1448,
25,
19779,
1911,
22179,
7,
12894,
896,
38165,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
15667,
1448,
25,
3571,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
44651,
2318,
8189,
11537,
198
] | 2.037037 | 189 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.