content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
# Python code to demonstrate the working of
# complex(), real() and imag()
# importing "cmath" for complex number operations
import cmath
# Initializing real numbers
x = 5
y = 3
# converting x and y into complex number
z = complex(x, y);
s = 5 + 3j
# printing real and imaginary part of complex number
print("The real part of complex number is : ", end="")
print(z.real)
print("The imaginary part of complex number is : ", end="")
print(z.imag)
print(z)
print(s) | [
2,
11361,
2438,
284,
10176,
262,
1762,
286,
198,
2,
3716,
22784,
1103,
3419,
290,
3590,
3419,
198,
198,
2,
33332,
366,
66,
11018,
1,
329,
3716,
1271,
4560,
198,
11748,
269,
11018,
198,
198,
2,
20768,
2890,
1103,
3146,
198,
87,
796,
642,
198,
88,
796,
513,
198,
198,
2,
23202,
2124,
290,
331,
656,
3716,
1271,
198,
89,
796,
3716,
7,
87,
11,
331,
1776,
198,
82,
796,
642,
1343,
513,
73,
198,
2,
13570,
1103,
290,
26726,
636,
286,
3716,
1271,
198,
4798,
7203,
464,
1103,
636,
286,
3716,
1271,
318,
1058,
33172,
886,
2625,
4943,
198,
4798,
7,
89,
13,
5305,
8,
198,
198,
4798,
7203,
464,
26726,
636,
286,
3716,
1271,
318,
1058,
33172,
886,
2625,
4943,
198,
4798,
7,
89,
13,
48466,
8,
198,
4798,
7,
89,
8,
198,
4798,
7,
82,
8
] | 3.352518 | 139 |
#jiggle.v.01
#Body_movement
#This frame contains words for motions or actions an Agent p
#erforms using some part of his/her body. A number of word
#s in this frame occur as blends with Communication, in whic
#h the action has an Addressee. For example, 'Pat nodded
#at Kim.' These examples differ from Communication.Gesture
#in that no specific message need be expressed, as in 'She
#nodded to him to sit down.' Since this frame involves a pa
#rticular type of motion, it contains the frame elements Sou
#rce, Path, Goal and Area, which originate in the motion fra
#me. All of these frame elements are generally expressed in
# PP Complements. 'The boy swung his legs from under the ta
#ble.'
| [
2,
73,
24082,
13,
85,
13,
486,
198,
2,
25842,
62,
21084,
434,
198,
2,
1212,
5739,
4909,
2456,
329,
25530,
393,
4028,
281,
15906,
279,
198,
2,
263,
23914,
1262,
617,
636,
286,
465,
14,
372,
1767,
13,
220,
220,
317,
1271,
286,
1573,
198,
2,
82,
287,
428,
5739,
3051,
355,
32067,
351,
26117,
11,
287,
348,
291,
198,
2,
71,
262,
2223,
468,
281,
3060,
411,
3826,
13,
220,
1114,
1672,
11,
220,
220,
705,
12130,
14464,
220,
198,
2,
265,
6502,
2637,
220,
2312,
6096,
13238,
422,
26117,
13,
38,
395,
495,
220,
198,
2,
259,
326,
645,
2176,
3275,
761,
307,
6241,
11,
355,
287,
220,
705,
3347,
220,
198,
2,
77,
5088,
276,
284,
683,
284,
1650,
866,
2637,
220,
4619,
428,
5739,
9018,
257,
14187,
198,
2,
17034,
13174,
2099,
286,
6268,
11,
340,
4909,
262,
5739,
4847,
22862,
198,
2,
81,
344,
11,
10644,
11,
25376,
290,
9498,
11,
543,
39779,
287,
262,
6268,
5306,
198,
2,
1326,
13,
220,
1439,
286,
777,
5739,
4847,
389,
4143,
6241,
287,
198,
2,
21082,
955,
1154,
902,
13,
220,
705,
464,
2933,
28507,
465,
7405,
422,
739,
262,
20486,
198,
2,
903,
2637,
628
] | 3.535 | 200 |
import argparse
import os
import subprocess
import time
import sys
import ipdb
import pickle
from utils.meter import *
def get_duration(file):
"""Get the duration of a super_video using ffprobe. -> https://stackoverflow.com/questions/31024968/using-ffmpeg-to-obtain-super_video-durations-in-python"""
cmd = 'ffprobe -i {} -show_entries format=duration -v quiet -of csv="p=0"'.format(file)
output = subprocess.check_output(
cmd,
shell=True, # Let this run in the shell
stderr=subprocess.STDOUT
)
# return round(float(output)) # ugly, but rounds your seconds up or down
return float(output)
def rescale_video(video_fn, w, h, fps, dir, new_dir, common_suffix, dict_video_length, ffmpeg, crf=17):
""" Rescale a super_video according to its new width, height an fps """
# Output video_name
video_id = video_fn.replace(dir, '').replace(common_suffix, '')
video_fn_rescaled = video_fn.replace(dir, new_dir)
video_fn_rescaled = video_fn_rescaled.replace(common_suffix, common_suffix.lower())
# Create the dir
video_dir_to_create = '/'.join(video_fn_rescaled.split('/')[:-1])
os.makedirs(video_dir_to_create, exist_ok=True)
# Check if the file already exists
if os.path.isfile(video_fn_rescaled):
print("{} already exists".format(video_fn_rescaled))
else:
subprocess.call(
'{ffmpeg} -i {video_input} -vf scale={w}:{h} -crf {crf} -r {fps} -y {video_output} -loglevel panic'.format(
ffmpeg=ffmpeg,
video_input=video_fn,
h=h,
w=w,
fps=fps,
video_output=video_fn_rescaled,
crf=crf
), shell=True)
# Get the duration of the new super_video (in sec)
duration_sec = get_duration(video_fn_rescaled)
duration_frames = int(duration_sec * fps)
# update the dict id -> length
dict_video_length[video_id] = duration_frames
return video_fn_rescaled
def get_all_videos(dir, extension='mp4'):
""" Return a list of the super_video filename from a directory and its subdirectories """
list_video_fn = []
for dirpath, dirnames, filenames in os.walk(dir):
for filename in [f for f in filenames if f.endswith(extension)]:
fn = os.path.join(dirpath, filename)
list_video_fn.append(fn)
return list_video_fn
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Preprocess dataset')
parser.add_argument('--dir', metavar='DIR',
# default='/Users/fabien/Datasets/NTU-RGB-D/avi',
default='/home/hochul/Desktop/mini_syn_data/avi',
help='path to avi dir')
parser.add_argument('--width', default=256, type=int,
metavar='W', help='Width')
parser.add_argument('--height', default=256, type=int,
metavar='H', help='Height')
parser.add_argument('--fps', default=20, type=int,
metavar='FPS',
help='Frames per second for the extraction, -1 means that we take the fps from the super_video')
parser.add_argument('--common-suffix', metavar='E',
default='.avi',
help='Common end of each super_video file')
parser.add_argument('--crf', default=17, type=int,
metavar='CRF',
help='CRF for ffmpeg command')
parser.add_argument('--ffmpeg', metavar='FF',
default='ffmpeg',
help='ffmpeg verison to use')
args = parser.parse_args()
main(args)
| [
11748,
1822,
29572,
198,
11748,
28686,
198,
11748,
850,
14681,
198,
11748,
640,
198,
11748,
25064,
198,
11748,
20966,
9945,
198,
11748,
2298,
293,
198,
6738,
3384,
4487,
13,
27231,
1330,
1635,
628,
198,
198,
4299,
651,
62,
32257,
7,
7753,
2599,
198,
220,
220,
220,
37227,
3855,
262,
9478,
286,
257,
2208,
62,
15588,
1262,
31246,
1676,
1350,
13,
4613,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
6138,
507,
14,
26717,
21626,
3104,
14,
3500,
12,
487,
43913,
12,
1462,
12,
672,
3153,
12,
16668,
62,
15588,
12,
67,
20074,
12,
259,
12,
29412,
37811,
198,
220,
220,
220,
23991,
796,
705,
487,
1676,
1350,
532,
72,
23884,
532,
12860,
62,
298,
1678,
5794,
28,
32257,
532,
85,
5897,
532,
1659,
269,
21370,
2625,
79,
28,
15,
1,
4458,
18982,
7,
7753,
8,
198,
220,
220,
220,
5072,
796,
850,
14681,
13,
9122,
62,
22915,
7,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
11,
198,
220,
220,
220,
220,
220,
220,
220,
7582,
28,
17821,
11,
220,
1303,
3914,
428,
1057,
287,
262,
7582,
198,
220,
220,
220,
220,
220,
220,
220,
336,
1082,
81,
28,
7266,
14681,
13,
36886,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1303,
1441,
2835,
7,
22468,
7,
22915,
4008,
220,
1303,
13400,
11,
475,
9196,
534,
4201,
510,
393,
866,
198,
220,
220,
220,
1441,
12178,
7,
22915,
8,
628,
198,
4299,
6811,
1000,
62,
15588,
7,
15588,
62,
22184,
11,
266,
11,
289,
11,
32977,
11,
26672,
11,
649,
62,
15908,
11,
2219,
62,
37333,
844,
11,
8633,
62,
15588,
62,
13664,
11,
31246,
43913,
11,
1067,
69,
28,
1558,
2599,
198,
220,
220,
220,
37227,
1874,
38765,
257,
2208,
62,
15588,
1864,
284,
663,
649,
9647,
11,
6001,
281,
32977,
37227,
628,
220,
220,
220,
1303,
25235,
2008,
62,
3672,
198,
220,
220,
220,
2008,
62,
312,
796,
2008,
62,
22184,
13,
33491,
7,
15908,
11,
10148,
737,
33491,
7,
11321,
62,
37333,
844,
11,
10148,
8,
198,
220,
220,
220,
2008,
62,
22184,
62,
411,
66,
3021,
796,
2008,
62,
22184,
13,
33491,
7,
15908,
11,
649,
62,
15908,
8,
198,
220,
220,
220,
2008,
62,
22184,
62,
411,
66,
3021,
796,
2008,
62,
22184,
62,
411,
66,
3021,
13,
33491,
7,
11321,
62,
37333,
844,
11,
2219,
62,
37333,
844,
13,
21037,
28955,
628,
220,
220,
220,
1303,
13610,
262,
26672,
198,
220,
220,
220,
2008,
62,
15908,
62,
1462,
62,
17953,
796,
31051,
4458,
22179,
7,
15588,
62,
22184,
62,
411,
66,
3021,
13,
35312,
10786,
14,
11537,
58,
21912,
16,
12962,
198,
220,
220,
220,
28686,
13,
76,
4335,
17062,
7,
15588,
62,
15908,
62,
1462,
62,
17953,
11,
2152,
62,
482,
28,
17821,
8,
628,
220,
220,
220,
1303,
6822,
611,
262,
2393,
1541,
7160,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
4468,
576,
7,
15588,
62,
22184,
62,
411,
66,
3021,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
90,
92,
1541,
7160,
1911,
18982,
7,
15588,
62,
22184,
62,
411,
66,
3021,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
90,
487,
43913,
92,
532,
72,
1391,
15588,
62,
15414,
92,
532,
85,
69,
5046,
34758,
86,
92,
29164,
71,
92,
532,
6098,
69,
1391,
6098,
69,
92,
532,
81,
1391,
29647,
92,
532,
88,
1391,
15588,
62,
22915,
92,
532,
75,
2467,
626,
13619,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31246,
43913,
28,
487,
43913,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2008,
62,
15414,
28,
15588,
62,
22184,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
289,
28,
71,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
28,
86,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32977,
28,
29647,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2008,
62,
22915,
28,
15588,
62,
22184,
62,
411,
66,
3021,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1067,
69,
28,
6098,
69,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
7582,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
9478,
286,
262,
649,
2208,
62,
15588,
357,
259,
792,
8,
198,
220,
220,
220,
220,
220,
220,
220,
9478,
62,
2363,
796,
651,
62,
32257,
7,
15588,
62,
22184,
62,
411,
66,
3021,
8,
198,
220,
220,
220,
220,
220,
220,
220,
9478,
62,
37805,
796,
493,
7,
32257,
62,
2363,
1635,
32977,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
4296,
262,
8633,
4686,
4613,
4129,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
62,
15588,
62,
13664,
58,
15588,
62,
312,
60,
796,
9478,
62,
37805,
628,
220,
220,
220,
1441,
2008,
62,
22184,
62,
411,
66,
3021,
628,
198,
4299,
651,
62,
439,
62,
32861,
7,
15908,
11,
7552,
11639,
3149,
19,
6,
2599,
198,
220,
220,
220,
37227,
8229,
257,
1351,
286,
262,
2208,
62,
15588,
29472,
422,
257,
8619,
290,
663,
850,
12942,
1749,
37227,
628,
220,
220,
220,
1351,
62,
15588,
62,
22184,
796,
17635,
198,
220,
220,
220,
329,
26672,
6978,
11,
26672,
14933,
11,
1226,
268,
1047,
287,
28686,
13,
11152,
7,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
29472,
287,
685,
69,
329,
277,
287,
1226,
268,
1047,
611,
277,
13,
437,
2032,
342,
7,
2302,
3004,
8,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24714,
796,
28686,
13,
6978,
13,
22179,
7,
15908,
6978,
11,
29472,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
15588,
62,
22184,
13,
33295,
7,
22184,
8,
628,
220,
220,
220,
1441,
1351,
62,
15588,
62,
22184,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
6719,
14681,
27039,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
15908,
3256,
1138,
615,
283,
11639,
34720,
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,
1303,
4277,
11639,
14,
14490,
14,
36434,
2013,
14,
27354,
292,
1039,
14,
11251,
52,
12,
36982,
12,
35,
14,
15820,
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,
4277,
11639,
14,
11195,
14,
71,
5374,
377,
14,
36881,
14,
45313,
62,
28869,
62,
7890,
14,
15820,
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,
1037,
11639,
6978,
284,
1196,
72,
26672,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
10394,
3256,
4277,
28,
11645,
11,
2099,
28,
600,
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,
1138,
615,
283,
11639,
54,
3256,
1037,
11639,
30916,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
17015,
3256,
4277,
28,
11645,
11,
2099,
28,
600,
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,
1138,
615,
283,
11639,
39,
3256,
1037,
11639,
23106,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
29647,
3256,
4277,
28,
1238,
11,
2099,
28,
600,
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,
1138,
615,
283,
11639,
37,
3705,
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,
1037,
11639,
35439,
583,
1218,
329,
262,
22236,
11,
532,
16,
1724,
326,
356,
1011,
262,
32977,
422,
262,
2208,
62,
15588,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
11321,
12,
37333,
844,
3256,
1138,
615,
283,
11639,
36,
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,
4277,
28,
4458,
15820,
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,
1037,
11639,
17227,
886,
286,
1123,
2208,
62,
15588,
2393,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
6098,
69,
3256,
4277,
28,
1558,
11,
2099,
28,
600,
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,
1138,
615,
283,
11639,
9419,
37,
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,
1037,
11639,
9419,
37,
329,
31246,
43913,
3141,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
487,
43913,
3256,
1138,
615,
283,
11639,
5777,
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,
4277,
11639,
487,
43913,
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,
1037,
11639,
487,
43913,
3326,
1653,
284,
779,
11537,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
1388,
7,
22046,
8,
198
] | 2.197041 | 1,690 |
#!/usr/bin/env python
# coding: UTF-8
"""
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Simple Python routine to convert JSON to XML
Example: python convertjson2xml.py /home/hellsulf/orascript/json2xml/JSON/2020_8_f1.json
Note: Requires json2xml
pip install json2xml
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"""
import sys
from json2xml import json2xml
from json2xml.utils import readfromurl, readfromstring, readfromjson
from pathlib import Path
"""
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Main
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"""
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
25,
41002,
12,
23,
198,
198,
37811,
198,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
4,
198,
220,
220,
220,
17427,
11361,
8027,
284,
10385,
19449,
284,
23735,
198,
220,
220,
220,
17934,
25,
21015,
10385,
17752,
17,
19875,
13,
9078,
1220,
11195,
14,
12758,
82,
4754,
14,
273,
15961,
14,
17752,
17,
19875,
14,
40386,
14,
42334,
62,
23,
62,
69,
16,
13,
17752,
628,
220,
220,
220,
5740,
25,
26848,
33918,
17,
19875,
198,
220,
220,
220,
7347,
2721,
33918,
17,
19875,
198,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
4,
198,
37811,
628,
198,
11748,
25064,
198,
6738,
33918,
17,
19875,
1330,
33918,
17,
19875,
198,
6738,
33918,
17,
19875,
13,
26791,
1330,
1100,
6738,
6371,
11,
1100,
6738,
8841,
11,
1100,
6738,
17752,
198,
6738,
3108,
8019,
1330,
10644,
628,
198,
37811,
198,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
16626,
198,
220,
220,
220,
8774,
198,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
36917,
16626,
198,
37811,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 3.174089 | 247 |
import neural_network_lyapunov.examples.quadrotor2d.quadrotor_2d as\
quadrotor_2d
import neural_network_lyapunov.relu_system as relu_system
import neural_network_lyapunov.lyapunov as lyapunov
import neural_network_lyapunov.feedback_system as feedback_system
import neural_network_lyapunov.train_lyapunov as train_lyapunov
import neural_network_lyapunov.utils as utils
import neural_network_lyapunov.mip_utils as mip_utils
import neural_network_lyapunov.train_utils as train_utils
import neural_network_lyapunov.r_options as r_options
import torch
import numpy as np
import scipy.integrate
import gurobipy
import argparse
import os
def generate_quadrotor_dynamics_data(dt):
"""
Generate the pairs (x[n], u[n]) -> (x[n+1])
"""
dtype = torch.float64
plant = quadrotor_2d.Quadrotor2D(dtype)
theta_range = [-np.pi / 2, np.pi / 2]
ydot_range = [-5, 5]
zdot_range = [-5, 5]
thetadot_range = [-2.5, 2.5]
u_range = [-0.5, 8.5]
# We don't need to take the grid on y and z dimension of the quadrotor,
# since the dynamics is invariant along these dimensions.
x_samples = torch.cat((
torch.zeros((1000, 2), dtype=torch.float64),
utils.uniform_sample_in_box(
torch.tensor([
theta_range[0], ydot_range[0], zdot_range[0], thetadot_range[0]
],
dtype=torch.float64),
torch.tensor([
theta_range[1], ydot_range[1], zdot_range[1], thetadot_range[1]
],
dtype=torch.float64), 1000)),
dim=1).T
u_samples = utils.uniform_sample_in_box(
torch.full((2, ), u_range[0], dtype=dtype),
torch.full((2, ), u_range[1], dtype=dtype), 1000).T
xu_tensors = []
x_next_tensors = []
for i in range(x_samples.shape[1]):
for j in range(u_samples.shape[1]):
result = scipy.integrate.solve_ivp(
lambda t, x: plant.dynamics(x, u_samples[:, j].detach().numpy(
)), (0, dt), x_samples[:, i].detach().numpy())
xu_tensors.append(
torch.cat((x_samples[:, i], u_samples[:, j])).reshape((1, -1)))
x_next_tensors.append(
torch.from_numpy(result.y[:, -1]).reshape((1, -1)))
dataset_input = torch.cat(xu_tensors, dim=0)
dataset_output = torch.cat(x_next_tensors, dim=0)
return torch.utils.data.TensorDataset(dataset_input, dataset_output)
def train_lqr_value_approximator(lyapunov_relu, V_lambda, R, x_equilibrium,
x_lo, x_up, num_samples, lqr_S: torch.Tensor):
"""
We train both lyapunov_relu and R such that ϕ(x) − ϕ(x*) + λ|R(x−x*)|₁
approximates the lqr cost-to-go.
"""
x_samples = utils.uniform_sample_in_box(x_lo, x_up, num_samples)
V_samples = torch.sum((x_samples.T - x_equilibrium.reshape(
(6, 1))) * (lqr_S @ (x_samples.T - x_equilibrium.reshape((6, 1)))),
dim=0).reshape((-1, 1))
state_value_dataset = torch.utils.data.TensorDataset(x_samples, V_samples)
R.requires_grad_(True)
utils.train_approximator(state_value_dataset,
lyapunov_relu,
compute_v,
batch_size=50,
num_epochs=200,
lr=0.001,
additional_variable=[R])
R.requires_grad_(False)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="quadrotor 2d training demo")
parser.add_argument("--generate_dynamics_data", action="store_true")
parser.add_argument("--load_dynamics_data",
type=str,
default=None,
help="path to the dynamics data.")
parser.add_argument("--train_forward_model", action="store_true")
parser.add_argument("--load_forward_model",
type=str,
default=None,
help="path to load dynamics model")
parser.add_argument("--load_lyapunov_relu",
type=str,
default=None,
help="path to the lyapunov model data.")
parser.add_argument("--load_controller_relu",
type=str,
default=None,
help="path to the controller data.")
parser.add_argument("--train_lqr_approximator", action="store_true")
parser.add_argument("--search_R", action="store_true")
parser.add_argument("--train_on_samples", action="store_true")
parser.add_argument("--enable_wandb", action="store_true")
parser.add_argument("--train_adversarial", action="store_true")
parser.add_argument("--max_iterations", type=int, default=5000)
parser.add_argument("--training_set", type=str, default=None)
args = parser.parse_args()
dir_path = os.path.dirname(os.path.realpath(__file__))
dt = 0.01
dtype = torch.float64
if args.generate_dynamics_data:
model_dataset = generate_quadrotor_dynamics_data(dt)
if args.load_dynamics_data is not None:
model_dataset = torch.load(args.load_dynamics_data)
if args.train_forward_model:
forward_model = utils.setup_relu((4, 6, 6, 3),
params=None,
bias=True,
negative_slope=0.01,
dtype=dtype)
train_forward_model(forward_model, model_dataset, num_epochs=100)
if args.load_forward_model:
forward_model_data = torch.load(args.load_forward_model)
forward_model = utils.setup_relu(
forward_model_data["linear_layer_width"],
params=None,
bias=forward_model_data["bias"],
negative_slope=forward_model_data["negative_slope"],
dtype=dtype)
forward_model.load_state_dict(forward_model_data["state_dict"])
plant = quadrotor_2d.Quadrotor2D(dtype)
x_star = np.zeros((6, ))
u_star = plant.u_equilibrium.detach().numpy()
lqr_Q = np.diag([10, 10, 10, 1, 1, plant.length / 2. / np.pi])
lqr_R = np.array([[0.1, 0.05], [0.05, 0.1]])
K, S = plant.lqr_control(lqr_Q, lqr_R, x_star, u_star)
S_eig_value, S_eig_vec = np.linalg.eig(S)
# R = torch.zeros((9, 6), dtype=dtype)
# R[:3, :3] = torch.eye(3, dtype=dtype)
# R[3:6, :3] = torch.eye(3, dtype=dtype) / np.sqrt(2)
# R[3:6, 3:6] = torch.eye(3, dtype=dtype) / np.sqrt(2)
# R[6:9, :3] = -torch.eye(3, dtype=dtype) / np.sqrt(2)
# R[6:9, 3:6] = torch.eye(3, dtype=dtype) / np.sqrt(2)
# R = torch.cat((R, torch.from_numpy(S_eig_vec)), dim=0)
R = torch.from_numpy(S) + 0.01 * torch.eye(6, dtype=dtype)
lyapunov_relu = utils.setup_relu((6, 10, 10, 4, 1),
params=None,
negative_slope=0.1,
bias=True,
dtype=dtype)
V_lambda = 0.9
if args.load_lyapunov_relu is not None:
lyapunov_data = torch.load(args.load_lyapunov_relu)
lyapunov_relu = utils.setup_relu(
lyapunov_data["linear_layer_width"],
params=None,
negative_slope=lyapunov_data["negative_slope"],
bias=lyapunov_data["bias"],
dtype=dtype)
lyapunov_relu.load_state_dict(lyapunov_data["state_dict"])
V_lambda = lyapunov_data["V_lambda"]
R = lyapunov_data["R"]
controller_relu = utils.setup_relu((6, 6, 4, 2),
params=None,
negative_slope=0.01,
bias=True,
dtype=dtype)
if args.load_controller_relu is not None:
controller_data = torch.load(args.load_controller_relu)
controller_relu = utils.setup_relu(
controller_data["linear_layer_width"],
params=None,
negative_slope=controller_data["negative_slope"],
bias=controller_data["bias"],
dtype=dtype)
controller_relu.load_state_dict(controller_data["state_dict"])
q_equilibrium = torch.tensor([0, 0, 0], dtype=dtype)
u_equilibrium = plant.u_equilibrium
x_lo = torch.tensor([-0.7, -0.7, -np.pi * 0.5, -3.75, -3.75, -2.5],
dtype=dtype)
x_up = -x_lo
u_lo = torch.tensor([0, 0], dtype=dtype)
u_up = torch.tensor([8, 8], dtype=dtype)
if args.enable_wandb:
train_utils.wandb_config_update(args, lyapunov_relu, controller_relu,
x_lo, x_up, u_lo, u_up)
if args.train_lqr_approximator:
x_equilibrium = torch.cat(
(q_equilibrium, torch.zeros((3, ), dtype=dtype)))
train_lqr_control_approximator(controller_relu, x_equilibrium,
u_equilibrium, x_lo, x_up, 100000,
torch.from_numpy(K))
train_lqr_value_approximator(lyapunov_relu, V_lambda, R, x_equilibrium,
x_lo, x_up, 100000, torch.from_numpy(S))
forward_system = relu_system.ReLUSecondOrderResidueSystemGivenEquilibrium(
dtype,
x_lo,
x_up,
u_lo,
u_up,
forward_model,
q_equilibrium,
u_equilibrium,
dt,
network_input_x_indices=[2, 5])
closed_loop_system = feedback_system.FeedbackSystem(
forward_system, controller_relu, forward_system.x_equilibrium,
forward_system.u_equilibrium,
u_lo.detach().numpy(),
u_up.detach().numpy())
lyap = lyapunov.LyapunovDiscreteTimeHybridSystem(closed_loop_system,
lyapunov_relu)
if args.search_R:
_, R_sigma, _ = np.linalg.svd(R.detach().numpy())
R_options = r_options.SearchRwithSVDOptions(R.shape, R_sigma * 0.8)
R_options.set_variable_value(R.detach().numpy())
else:
R_options = r_options.FixedROptions(R)
dut = train_lyapunov.TrainLyapunovReLU(lyap, V_lambda,
closed_loop_system.x_equilibrium,
R_options)
dut.lyapunov_positivity_mip_pool_solutions = 1
dut.lyapunov_derivative_mip_pool_solutions = 1
dut.lyapunov_derivative_convergence_tol = 1E-5
dut.lyapunov_positivity_convergence_tol = 5e-6
dut.max_iterations = args.max_iterations
dut.lyapunov_positivity_epsilon = 0.1
dut.lyapunov_derivative_epsilon = 0.001
dut.lyapunov_derivative_eps_type = lyapunov.ConvergenceEps.ExpLower
state_samples_all = utils.get_meshgrid_samples(x_lo,
x_up, (7, 7, 7, 7, 7, 7),
dtype=dtype)
dut.output_flag = True
if args.train_on_samples:
dut.train_lyapunov_on_samples(state_samples_all,
num_epochs=10,
batch_size=50)
dut.enable_wandb = args.enable_wandb
if args.train_adversarial:
options = train_lyapunov.TrainLyapunovReLU.AdversarialTrainingOptions()
options.num_batches = 10
options.num_epochs_per_mip = 20
options.positivity_samples_pool_size = 10000
options.derivative_samples_pool_size = 100000
dut.lyapunov_positivity_mip_pool_solutions = 100
dut.lyapunov_derivative_mip_pool_solutions = 500
dut.add_derivative_adversarial_state = True
dut.add_positivity_adversarial_state = True
forward_system.network_bound_propagate_method =\
mip_utils.PropagateBoundsMethod.MIP
dut.lyapunov_hybrid_system.network_bound_propagate_method =\
mip_utils.PropagateBoundsMethod.MIP
closed_loop_system.controller_network_bound_propagate_method =\
mip_utils.PropagateBoundsMethod.MIP
dut.lyapunov_derivative_mip_params = {
gurobipy.GRB.Param.OutputFlag: False
}
if args.training_set:
training_set_data = torch.load(args.training_set)
positivity_state_samples_init = training_set_data[
"positivity_state_samples"]
derivative_state_samples_init = training_set_data[
"derivative_state_samples"]
else:
positivity_state_samples_init = utils.uniform_sample_in_box(
x_lo, x_up, 1000)
derivative_state_samples_init = positivity_state_samples_init
result = dut.train_adversarial(positivity_state_samples_init,
derivative_state_samples_init, options)
else:
dut.train(torch.empty((0, 6), dtype=dtype))
pass
| [
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
1069,
12629,
13,
47003,
10599,
273,
17,
67,
13,
47003,
10599,
273,
62,
17,
67,
355,
59,
198,
220,
220,
220,
15094,
10599,
273,
62,
17,
67,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
260,
2290,
62,
10057,
355,
823,
84,
62,
10057,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
306,
499,
403,
709,
355,
22404,
499,
403,
709,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
12363,
1891,
62,
10057,
355,
7538,
62,
10057,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
27432,
62,
306,
499,
403,
709,
355,
4512,
62,
306,
499,
403,
709,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
26791,
355,
3384,
4487,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
76,
541,
62,
26791,
355,
285,
541,
62,
26791,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
27432,
62,
26791,
355,
4512,
62,
26791,
198,
11748,
17019,
62,
27349,
62,
306,
499,
403,
709,
13,
81,
62,
25811,
355,
374,
62,
25811,
198,
198,
11748,
28034,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
629,
541,
88,
13,
18908,
4873,
198,
11748,
915,
22609,
541,
88,
198,
11748,
1822,
29572,
198,
11748,
28686,
628,
198,
4299,
7716,
62,
47003,
10599,
273,
62,
67,
4989,
873,
62,
7890,
7,
28664,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2980,
378,
262,
14729,
357,
87,
58,
77,
4357,
334,
58,
77,
12962,
4613,
357,
87,
58,
77,
10,
16,
12962,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
288,
4906,
796,
28034,
13,
22468,
2414,
198,
220,
220,
220,
4618,
796,
15094,
10599,
273,
62,
17,
67,
13,
4507,
324,
10599,
273,
17,
35,
7,
67,
4906,
8,
628,
220,
220,
220,
262,
8326,
62,
9521,
796,
25915,
37659,
13,
14415,
1220,
362,
11,
45941,
13,
14415,
1220,
362,
60,
198,
220,
220,
220,
331,
26518,
62,
9521,
796,
25915,
20,
11,
642,
60,
198,
220,
220,
220,
1976,
26518,
62,
9521,
796,
25915,
20,
11,
642,
60,
198,
220,
220,
220,
262,
83,
324,
313,
62,
9521,
796,
25915,
17,
13,
20,
11,
362,
13,
20,
60,
198,
220,
220,
220,
334,
62,
9521,
796,
25915,
15,
13,
20,
11,
807,
13,
20,
60,
198,
220,
220,
220,
1303,
775,
836,
470,
761,
284,
1011,
262,
10706,
319,
331,
290,
1976,
15793,
286,
262,
15094,
10599,
273,
11,
198,
220,
220,
220,
1303,
1201,
262,
17262,
318,
25275,
415,
1863,
777,
15225,
13,
198,
220,
220,
220,
2124,
62,
82,
12629,
796,
28034,
13,
9246,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
9107,
418,
19510,
12825,
11,
362,
828,
288,
4906,
28,
13165,
354,
13,
22468,
2414,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3384,
4487,
13,
403,
6933,
62,
39873,
62,
259,
62,
3524,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
83,
22854,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
8326,
62,
9521,
58,
15,
4357,
331,
26518,
62,
9521,
58,
15,
4357,
1976,
26518,
62,
9521,
58,
15,
4357,
262,
83,
324,
313,
62,
9521,
58,
15,
60,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
13165,
354,
13,
22468,
2414,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
83,
22854,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
8326,
62,
9521,
58,
16,
4357,
331,
26518,
62,
9521,
58,
16,
4357,
1976,
26518,
62,
9521,
58,
16,
4357,
262,
83,
324,
313,
62,
9521,
58,
16,
60,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
13165,
354,
13,
22468,
2414,
828,
8576,
36911,
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,
5391,
28,
16,
737,
51,
198,
220,
220,
220,
334,
62,
82,
12629,
796,
3384,
4487,
13,
403,
6933,
62,
39873,
62,
259,
62,
3524,
7,
198,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
12853,
19510,
17,
11,
10612,
334,
62,
9521,
58,
15,
4357,
288,
4906,
28,
67,
4906,
828,
198,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
12853,
19510,
17,
11,
10612,
334,
62,
9521,
58,
16,
4357,
288,
4906,
28,
67,
4906,
828,
8576,
737,
51,
628,
220,
220,
220,
2124,
84,
62,
83,
641,
669,
796,
17635,
198,
220,
220,
220,
2124,
62,
19545,
62,
83,
641,
669,
796,
17635,
628,
220,
220,
220,
329,
1312,
287,
2837,
7,
87,
62,
82,
12629,
13,
43358,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
84,
62,
82,
12629,
13,
43358,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
629,
541,
88,
13,
18908,
4873,
13,
82,
6442,
62,
452,
79,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
256,
11,
2124,
25,
4618,
13,
67,
4989,
873,
7,
87,
11,
334,
62,
82,
12629,
58,
45299,
474,
4083,
15255,
620,
22446,
77,
32152,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
828,
357,
15,
11,
288,
83,
828,
2124,
62,
82,
12629,
58,
45299,
1312,
4083,
15255,
620,
22446,
77,
32152,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
84,
62,
83,
641,
669,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
9246,
19510,
87,
62,
82,
12629,
58,
45299,
1312,
4357,
334,
62,
82,
12629,
58,
45299,
474,
12962,
737,
3447,
1758,
19510,
16,
11,
532,
16,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
19545,
62,
83,
641,
669,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28034,
13,
6738,
62,
77,
32152,
7,
20274,
13,
88,
58,
45299,
532,
16,
35944,
3447,
1758,
19510,
16,
11,
532,
16,
22305,
198,
220,
220,
220,
27039,
62,
15414,
796,
28034,
13,
9246,
7,
87,
84,
62,
83,
641,
669,
11,
5391,
28,
15,
8,
198,
220,
220,
220,
27039,
62,
22915,
796,
28034,
13,
9246,
7,
87,
62,
19545,
62,
83,
641,
669,
11,
5391,
28,
15,
8,
198,
220,
220,
220,
1441,
28034,
13,
26791,
13,
7890,
13,
51,
22854,
27354,
292,
316,
7,
19608,
292,
316,
62,
15414,
11,
27039,
62,
22915,
8,
628,
198,
198,
4299,
4512,
62,
75,
80,
81,
62,
8367,
62,
1324,
13907,
320,
1352,
7,
306,
499,
403,
709,
62,
260,
2290,
11,
569,
62,
50033,
11,
371,
11,
2124,
62,
4853,
24741,
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,
2124,
62,
5439,
11,
2124,
62,
929,
11,
997,
62,
82,
12629,
11,
300,
80,
81,
62,
50,
25,
28034,
13,
51,
22854,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
775,
4512,
1111,
22404,
499,
403,
709,
62,
260,
2290,
290,
371,
884,
326,
18074,
243,
7,
87,
8,
9746,
18074,
243,
7,
87,
28104,
1343,
7377,
119,
91,
49,
7,
87,
14095,
87,
9,
14726,
158,
224,
223,
198,
220,
220,
220,
5561,
26748,
262,
300,
80,
81,
1575,
12,
1462,
12,
2188,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2124,
62,
82,
12629,
796,
3384,
4487,
13,
403,
6933,
62,
39873,
62,
259,
62,
3524,
7,
87,
62,
5439,
11,
2124,
62,
929,
11,
997,
62,
82,
12629,
8,
198,
220,
220,
220,
569,
62,
82,
12629,
796,
28034,
13,
16345,
19510,
87,
62,
82,
12629,
13,
51,
532,
2124,
62,
4853,
24741,
13,
3447,
1758,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
21,
11,
352,
22305,
1635,
357,
75,
80,
81,
62,
50,
2488,
357,
87,
62,
82,
12629,
13,
51,
532,
2124,
62,
4853,
24741,
13,
3447,
1758,
19510,
21,
11,
352,
22305,
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,
5391,
28,
15,
737,
3447,
1758,
19510,
12,
16,
11,
352,
4008,
198,
220,
220,
220,
1181,
62,
8367,
62,
19608,
292,
316,
796,
28034,
13,
26791,
13,
7890,
13,
51,
22854,
27354,
292,
316,
7,
87,
62,
82,
12629,
11,
569,
62,
82,
12629,
8,
198,
220,
220,
220,
371,
13,
47911,
62,
9744,
41052,
17821,
8,
628,
220,
220,
220,
3384,
4487,
13,
27432,
62,
1324,
13907,
320,
1352,
7,
5219,
62,
8367,
62,
19608,
292,
316,
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,
22404,
499,
403,
709,
62,
260,
2290,
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,
24061,
62,
85,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
28,
1120,
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,
997,
62,
538,
5374,
82,
28,
2167,
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,
300,
81,
28,
15,
13,
8298,
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,
3224,
62,
45286,
41888,
49,
12962,
198,
220,
220,
220,
371,
13,
47911,
62,
9744,
41052,
25101,
8,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
2625,
47003,
10599,
273,
362,
67,
3047,
13605,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
8612,
378,
62,
67,
4989,
873,
62,
7890,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
2220,
62,
67,
4989,
873,
62,
7890,
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,
2099,
28,
2536,
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,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6978,
284,
262,
17262,
1366,
19570,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
27432,
62,
11813,
62,
19849,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
2220,
62,
11813,
62,
19849,
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,
2099,
28,
2536,
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,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6978,
284,
3440,
17262,
2746,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
2220,
62,
306,
499,
403,
709,
62,
260,
2290,
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,
2099,
28,
2536,
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,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6978,
284,
262,
22404,
499,
403,
709,
2746,
1366,
19570,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
2220,
62,
36500,
62,
260,
2290,
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,
2099,
28,
2536,
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,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6978,
284,
262,
10444,
1366,
19570,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
27432,
62,
75,
80,
81,
62,
1324,
13907,
320,
1352,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
12947,
62,
49,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
27432,
62,
261,
62,
82,
12629,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
21633,
62,
86,
392,
65,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
27432,
62,
324,
690,
36098,
1600,
2223,
2625,
8095,
62,
7942,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
9806,
62,
2676,
602,
1600,
2099,
28,
600,
11,
4277,
28,
27641,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
34409,
62,
2617,
1600,
2099,
28,
2536,
11,
4277,
28,
14202,
8,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
26672,
62,
6978,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
5305,
6978,
7,
834,
7753,
834,
4008,
198,
220,
220,
220,
288,
83,
796,
657,
13,
486,
198,
220,
220,
220,
288,
4906,
796,
28034,
13,
22468,
2414,
198,
220,
220,
220,
611,
26498,
13,
8612,
378,
62,
67,
4989,
873,
62,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
19608,
292,
316,
796,
7716,
62,
47003,
10599,
273,
62,
67,
4989,
873,
62,
7890,
7,
28664,
8,
628,
220,
220,
220,
611,
26498,
13,
2220,
62,
67,
4989,
873,
62,
7890,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
19608,
292,
316,
796,
28034,
13,
2220,
7,
22046,
13,
2220,
62,
67,
4989,
873,
62,
7890,
8,
628,
220,
220,
220,
611,
26498,
13,
27432,
62,
11813,
62,
19849,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
19510,
19,
11,
718,
11,
718,
11,
513,
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,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10690,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
15,
13,
486,
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,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
11813,
62,
19849,
7,
11813,
62,
19849,
11,
2746,
62,
19608,
292,
316,
11,
997,
62,
538,
5374,
82,
28,
3064,
8,
628,
220,
220,
220,
611,
26498,
13,
2220,
62,
11813,
62,
19849,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
62,
7890,
796,
28034,
13,
2220,
7,
22046,
13,
2220,
62,
11813,
62,
19849,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
62,
7890,
14692,
29127,
62,
29289,
62,
10394,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10690,
28,
11813,
62,
19849,
62,
7890,
14692,
65,
4448,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
11813,
62,
19849,
62,
7890,
14692,
31591,
62,
6649,
3008,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
13,
2220,
62,
5219,
62,
11600,
7,
11813,
62,
19849,
62,
7890,
14692,
5219,
62,
11600,
8973,
8,
628,
220,
220,
220,
4618,
796,
15094,
10599,
273,
62,
17,
67,
13,
4507,
324,
10599,
273,
17,
35,
7,
67,
4906,
8,
198,
220,
220,
220,
2124,
62,
7364,
796,
45941,
13,
9107,
418,
19510,
21,
11,
15306,
198,
220,
220,
220,
334,
62,
7364,
796,
4618,
13,
84,
62,
4853,
24741,
13,
15255,
620,
22446,
77,
32152,
3419,
198,
220,
220,
220,
300,
80,
81,
62,
48,
796,
45941,
13,
10989,
363,
26933,
940,
11,
838,
11,
838,
11,
352,
11,
352,
11,
4618,
13,
13664,
1220,
362,
13,
1220,
45941,
13,
14415,
12962,
198,
220,
220,
220,
300,
80,
81,
62,
49,
796,
45941,
13,
18747,
26933,
58,
15,
13,
16,
11,
657,
13,
2713,
4357,
685,
15,
13,
2713,
11,
657,
13,
16,
11907,
8,
198,
220,
220,
220,
509,
11,
311,
796,
4618,
13,
75,
80,
81,
62,
13716,
7,
75,
80,
81,
62,
48,
11,
300,
80,
81,
62,
49,
11,
2124,
62,
7364,
11,
334,
62,
7364,
8,
198,
220,
220,
220,
311,
62,
68,
328,
62,
8367,
11,
311,
62,
68,
328,
62,
35138,
796,
45941,
13,
75,
1292,
70,
13,
68,
328,
7,
50,
8,
628,
220,
220,
220,
1303,
371,
796,
28034,
13,
9107,
418,
19510,
24,
11,
718,
828,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
1303,
371,
58,
25,
18,
11,
1058,
18,
60,
796,
28034,
13,
25379,
7,
18,
11,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
1303,
371,
58,
18,
25,
21,
11,
1058,
18,
60,
796,
28034,
13,
25379,
7,
18,
11,
288,
4906,
28,
67,
4906,
8,
1220,
45941,
13,
31166,
17034,
7,
17,
8,
198,
220,
220,
220,
1303,
371,
58,
18,
25,
21,
11,
513,
25,
21,
60,
796,
28034,
13,
25379,
7,
18,
11,
288,
4906,
28,
67,
4906,
8,
1220,
45941,
13,
31166,
17034,
7,
17,
8,
198,
220,
220,
220,
1303,
371,
58,
21,
25,
24,
11,
1058,
18,
60,
796,
532,
13165,
354,
13,
25379,
7,
18,
11,
288,
4906,
28,
67,
4906,
8,
1220,
45941,
13,
31166,
17034,
7,
17,
8,
198,
220,
220,
220,
1303,
371,
58,
21,
25,
24,
11,
513,
25,
21,
60,
796,
28034,
13,
25379,
7,
18,
11,
288,
4906,
28,
67,
4906,
8,
1220,
45941,
13,
31166,
17034,
7,
17,
8,
198,
220,
220,
220,
1303,
371,
796,
28034,
13,
9246,
19510,
49,
11,
28034,
13,
6738,
62,
77,
32152,
7,
50,
62,
68,
328,
62,
35138,
36911,
5391,
28,
15,
8,
198,
220,
220,
220,
371,
796,
28034,
13,
6738,
62,
77,
32152,
7,
50,
8,
1343,
657,
13,
486,
1635,
28034,
13,
25379,
7,
21,
11,
288,
4906,
28,
67,
4906,
8,
628,
220,
220,
220,
22404,
499,
403,
709,
62,
260,
2290,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
19510,
21,
11,
838,
11,
838,
11,
604,
11,
352,
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,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
15,
13,
16,
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,
10690,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
569,
62,
50033,
796,
657,
13,
24,
198,
220,
220,
220,
611,
26498,
13,
2220,
62,
306,
499,
403,
709,
62,
260,
2290,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
22404,
499,
403,
709,
62,
7890,
796,
28034,
13,
2220,
7,
22046,
13,
2220,
62,
306,
499,
403,
709,
62,
260,
2290,
8,
198,
220,
220,
220,
220,
220,
220,
220,
22404,
499,
403,
709,
62,
260,
2290,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22404,
499,
403,
709,
62,
7890,
14692,
29127,
62,
29289,
62,
10394,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
306,
499,
403,
709,
62,
7890,
14692,
31591,
62,
6649,
3008,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10690,
28,
306,
499,
403,
709,
62,
7890,
14692,
65,
4448,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
22404,
499,
403,
709,
62,
260,
2290,
13,
2220,
62,
5219,
62,
11600,
7,
306,
499,
403,
709,
62,
7890,
14692,
5219,
62,
11600,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
569,
62,
50033,
796,
22404,
499,
403,
709,
62,
7890,
14692,
53,
62,
50033,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
371,
796,
22404,
499,
403,
709,
62,
7890,
14692,
49,
8973,
628,
220,
220,
220,
10444,
62,
260,
2290,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
19510,
21,
11,
718,
11,
604,
11,
362,
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,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
15,
13,
486,
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,
10690,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
611,
26498,
13,
2220,
62,
36500,
62,
260,
2290,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10444,
62,
7890,
796,
28034,
13,
2220,
7,
22046,
13,
2220,
62,
36500,
62,
260,
2290,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10444,
62,
260,
2290,
796,
3384,
4487,
13,
40406,
62,
260,
2290,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10444,
62,
7890,
14692,
29127,
62,
29289,
62,
10394,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
6649,
3008,
28,
36500,
62,
7890,
14692,
31591,
62,
6649,
3008,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10690,
28,
36500,
62,
7890,
14692,
65,
4448,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10444,
62,
260,
2290,
13,
2220,
62,
5219,
62,
11600,
7,
36500,
62,
7890,
14692,
5219,
62,
11600,
8973,
8,
628,
220,
220,
220,
10662,
62,
4853,
24741,
796,
28034,
13,
83,
22854,
26933,
15,
11,
657,
11,
657,
4357,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
334,
62,
4853,
24741,
796,
4618,
13,
84,
62,
4853,
24741,
198,
220,
220,
220,
2124,
62,
5439,
796,
28034,
13,
83,
22854,
26933,
12,
15,
13,
22,
11,
532,
15,
13,
22,
11,
532,
37659,
13,
14415,
1635,
657,
13,
20,
11,
532,
18,
13,
2425,
11,
532,
18,
13,
2425,
11,
532,
17,
13,
20,
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,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
2124,
62,
929,
796,
532,
87,
62,
5439,
198,
220,
220,
220,
334,
62,
5439,
796,
28034,
13,
83,
22854,
26933,
15,
11,
657,
4357,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
334,
62,
929,
796,
28034,
13,
83,
22854,
26933,
23,
11,
807,
4357,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
611,
26498,
13,
21633,
62,
86,
392,
65,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
26791,
13,
86,
392,
65,
62,
11250,
62,
19119,
7,
22046,
11,
22404,
499,
403,
709,
62,
260,
2290,
11,
10444,
62,
260,
2290,
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,
2124,
62,
5439,
11,
2124,
62,
929,
11,
334,
62,
5439,
11,
334,
62,
929,
8,
198,
220,
220,
220,
611,
26498,
13,
27432,
62,
75,
80,
81,
62,
1324,
13907,
320,
1352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
4853,
24741,
796,
28034,
13,
9246,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
80,
62,
4853,
24741,
11,
28034,
13,
9107,
418,
19510,
18,
11,
10612,
288,
4906,
28,
67,
4906,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
75,
80,
81,
62,
13716,
62,
1324,
13907,
320,
1352,
7,
36500,
62,
260,
2290,
11,
2124,
62,
4853,
24741,
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,
334,
62,
4853,
24741,
11,
2124,
62,
5439,
11,
2124,
62,
929,
11,
1802,
830,
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,
28034,
13,
6738,
62,
77,
32152,
7,
42,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
75,
80,
81,
62,
8367,
62,
1324,
13907,
320,
1352,
7,
306,
499,
403,
709,
62,
260,
2290,
11,
569,
62,
50033,
11,
371,
11,
2124,
62,
4853,
24741,
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,
2124,
62,
5439,
11,
2124,
62,
929,
11,
1802,
830,
11,
28034,
13,
6738,
62,
77,
32152,
7,
50,
4008,
198,
220,
220,
220,
2651,
62,
10057,
796,
823,
84,
62,
10057,
13,
3041,
43,
2937,
721,
623,
18743,
4965,
312,
518,
11964,
15056,
23588,
24741,
7,
198,
220,
220,
220,
220,
220,
220,
220,
288,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
5439,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
929,
11,
198,
220,
220,
220,
220,
220,
220,
220,
334,
62,
5439,
11,
198,
220,
220,
220,
220,
220,
220,
220,
334,
62,
929,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
19849,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10662,
62,
4853,
24741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
334,
62,
4853,
24741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
288,
83,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3127,
62,
15414,
62,
87,
62,
521,
1063,
41888,
17,
11,
642,
12962,
198,
220,
220,
220,
4838,
62,
26268,
62,
10057,
796,
7538,
62,
10057,
13,
18332,
1891,
11964,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
10057,
11,
10444,
62,
260,
2290,
11,
2651,
62,
10057,
13,
87,
62,
4853,
24741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
10057,
13,
84,
62,
4853,
24741,
11,
198,
220,
220,
220,
220,
220,
220,
220,
334,
62,
5439,
13,
15255,
620,
22446,
77,
32152,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
334,
62,
929,
13,
15255,
620,
22446,
77,
32152,
28955,
198,
220,
220,
220,
22404,
499,
796,
22404,
499,
403,
709,
13,
31633,
499,
403,
709,
15642,
8374,
7575,
21217,
10236,
11964,
7,
20225,
62,
26268,
62,
10057,
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,
22404,
499,
403,
709,
62,
260,
2290,
8,
628,
220,
220,
220,
611,
26498,
13,
12947,
62,
49,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
371,
62,
82,
13495,
11,
4808,
796,
45941,
13,
75,
1292,
70,
13,
82,
20306,
7,
49,
13,
15255,
620,
22446,
77,
32152,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
371,
62,
25811,
796,
374,
62,
25811,
13,
18243,
49,
4480,
50,
8898,
29046,
7,
49,
13,
43358,
11,
371,
62,
82,
13495,
1635,
657,
13,
23,
8,
198,
220,
220,
220,
220,
220,
220,
220,
371,
62,
25811,
13,
2617,
62,
45286,
62,
8367,
7,
49,
13,
15255,
620,
22446,
77,
32152,
28955,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
371,
62,
25811,
796,
374,
62,
25811,
13,
13715,
13252,
8544,
7,
49,
8,
198,
220,
220,
220,
288,
315,
796,
4512,
62,
306,
499,
403,
709,
13,
44077,
31633,
499,
403,
709,
3041,
41596,
7,
306,
499,
11,
569,
62,
50033,
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,
4838,
62,
26268,
62,
10057,
13,
87,
62,
4853,
24741,
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,
371,
62,
25811,
8,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1930,
11365,
62,
76,
541,
62,
7742,
62,
82,
14191,
796,
352,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
76,
541,
62,
7742,
62,
82,
14191,
796,
352,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
1102,
332,
12745,
62,
83,
349,
796,
352,
36,
12,
20,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1930,
11365,
62,
1102,
332,
12745,
62,
83,
349,
796,
642,
68,
12,
21,
198,
220,
220,
220,
288,
315,
13,
9806,
62,
2676,
602,
796,
26498,
13,
9806,
62,
2676,
602,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1930,
11365,
62,
538,
18217,
261,
796,
657,
13,
16,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
538,
18217,
261,
796,
657,
13,
8298,
198,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
25386,
62,
4906,
796,
22404,
499,
403,
709,
13,
3103,
332,
12745,
36,
862,
13,
16870,
31426,
198,
220,
220,
220,
1181,
62,
82,
12629,
62,
439,
796,
3384,
4487,
13,
1136,
62,
76,
5069,
25928,
62,
82,
12629,
7,
87,
62,
5439,
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,
2124,
62,
929,
11,
357,
22,
11,
767,
11,
767,
11,
767,
11,
767,
11,
767,
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,
288,
4906,
28,
67,
4906,
8,
198,
220,
220,
220,
288,
315,
13,
22915,
62,
32109,
796,
6407,
198,
220,
220,
220,
611,
26498,
13,
27432,
62,
261,
62,
82,
12629,
25,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
27432,
62,
306,
499,
403,
709,
62,
261,
62,
82,
12629,
7,
5219,
62,
82,
12629,
62,
439,
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,
997,
62,
538,
5374,
82,
28,
940,
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,
15458,
62,
7857,
28,
1120,
8,
198,
220,
220,
220,
288,
315,
13,
21633,
62,
86,
392,
65,
796,
26498,
13,
21633,
62,
86,
392,
65,
198,
220,
220,
220,
611,
26498,
13,
27432,
62,
324,
690,
36098,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3689,
796,
4512,
62,
306,
499,
403,
709,
13,
44077,
31633,
499,
403,
709,
3041,
41596,
13,
2782,
690,
36098,
44357,
29046,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3689,
13,
22510,
62,
8664,
2052,
796,
838,
198,
220,
220,
220,
220,
220,
220,
220,
3689,
13,
22510,
62,
538,
5374,
82,
62,
525,
62,
76,
541,
796,
1160,
198,
220,
220,
220,
220,
220,
220,
220,
3689,
13,
1930,
11365,
62,
82,
12629,
62,
7742,
62,
7857,
796,
33028,
198,
220,
220,
220,
220,
220,
220,
220,
3689,
13,
1082,
452,
876,
62,
82,
12629,
62,
7742,
62,
7857,
796,
1802,
830,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1930,
11365,
62,
76,
541,
62,
7742,
62,
82,
14191,
796,
1802,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
76,
541,
62,
7742,
62,
82,
14191,
796,
5323,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
2860,
62,
1082,
452,
876,
62,
324,
690,
36098,
62,
5219,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
2860,
62,
1930,
11365,
62,
324,
690,
36098,
62,
5219,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2651,
62,
10057,
13,
27349,
62,
7784,
62,
22930,
37861,
62,
24396,
796,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
541,
62,
26791,
13,
24331,
37861,
33,
3733,
17410,
13,
44,
4061,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
12114,
10236,
62,
10057,
13,
27349,
62,
7784,
62,
22930,
37861,
62,
24396,
796,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
541,
62,
26791,
13,
24331,
37861,
33,
3733,
17410,
13,
44,
4061,
198,
220,
220,
220,
220,
220,
220,
220,
4838,
62,
26268,
62,
10057,
13,
36500,
62,
27349,
62,
7784,
62,
22930,
37861,
62,
24396,
796,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
541,
62,
26791,
13,
24331,
37861,
33,
3733,
17410,
13,
44,
4061,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
306,
499,
403,
709,
62,
1082,
452,
876,
62,
76,
541,
62,
37266,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
915,
22609,
541,
88,
13,
10761,
33,
13,
22973,
13,
26410,
34227,
25,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
34409,
62,
2617,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3047,
62,
2617,
62,
7890,
796,
28034,
13,
2220,
7,
22046,
13,
34409,
62,
2617,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1426,
11365,
62,
5219,
62,
82,
12629,
62,
15003,
796,
3047,
62,
2617,
62,
7890,
58,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1930,
11365,
62,
5219,
62,
82,
12629,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27255,
62,
5219,
62,
82,
12629,
62,
15003,
796,
3047,
62,
2617,
62,
7890,
58,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1082,
452,
876,
62,
5219,
62,
82,
12629,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1426,
11365,
62,
5219,
62,
82,
12629,
62,
15003,
796,
3384,
4487,
13,
403,
6933,
62,
39873,
62,
259,
62,
3524,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
5439,
11,
2124,
62,
929,
11,
8576,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27255,
62,
5219,
62,
82,
12629,
62,
15003,
796,
1426,
11365,
62,
5219,
62,
82,
12629,
62,
15003,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
288,
315,
13,
27432,
62,
324,
690,
36098,
7,
1930,
11365,
62,
5219,
62,
82,
12629,
62,
15003,
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,
27255,
62,
5219,
62,
82,
12629,
62,
15003,
11,
3689,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
288,
315,
13,
27432,
7,
13165,
354,
13,
28920,
19510,
15,
11,
718,
828,
288,
4906,
28,
67,
4906,
4008,
198,
220,
220,
220,
1208,
198
] | 1.868843 | 6,923 |
#!/usr/bin/env python
# generate hotindexing undo provisional tests with 2 nested transactions
import sys
sys.exit(main())
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
7716,
3024,
9630,
278,
23981,
37042,
5254,
351,
362,
28376,
8945,
198,
198,
11748,
25064,
198,
198,
17597,
13,
37023,
7,
12417,
28955,
198
] | 3.676471 | 34 |
#!/usr/bin/env python3
#
# initializes your docker development environment by creating
# random passwords for the database connections
# and then updating the configuration files with those passwords
#
import os
import os.path
import random
import re
import shutil
import string
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
198,
2,
4238,
4340,
534,
36253,
2478,
2858,
416,
4441,
198,
2,
4738,
21442,
329,
262,
6831,
8787,
198,
2,
290,
788,
19698,
262,
8398,
3696,
351,
883,
21442,
198,
2,
198,
198,
11748,
28686,
198,
11748,
28686,
13,
6978,
198,
11748,
4738,
198,
11748,
302,
198,
11748,
4423,
346,
198,
11748,
4731,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 3.843373 | 83 |
import spacy
import numpy as np
from sklearn.base import BaseEstimator
nlp = spacy.load("en_core_web_sm")
| [
11748,
599,
1590,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
1341,
35720,
13,
8692,
1330,
7308,
22362,
320,
1352,
198,
198,
21283,
79,
796,
599,
1590,
13,
2220,
7203,
268,
62,
7295,
62,
12384,
62,
5796,
4943,
628,
628,
628,
628
] | 2.714286 | 42 |
# Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
#
# push(x) -- Push element x onto stack.
# pop() -- Removes the element on top of the stack.
# top() -- Get the top element.
# getMin() -- Retrieve the minimum element in the stack.
# Example:
# MinStack minStack = new MinStack();
# minStack.push(-2);
# minStack.push(0);
# minStack.push(-3);
# minStack.getMin(); --> Returns -3.
# minStack.pop();
# minStack.top(); --> Returns 0.
# minStack.getMin(); --> Returns -2.
| [
2,
8495,
257,
8931,
326,
6971,
4574,
11,
1461,
11,
1353,
11,
290,
50122,
262,
5288,
5002,
287,
6937,
640,
13,
198,
2,
198,
2,
4574,
7,
87,
8,
1377,
23691,
5002,
2124,
4291,
8931,
13,
198,
2,
1461,
3419,
1377,
3982,
5241,
262,
5002,
319,
1353,
286,
262,
8931,
13,
198,
2,
1353,
3419,
1377,
3497,
262,
1353,
5002,
13,
198,
2,
651,
9452,
3419,
1377,
4990,
30227,
262,
5288,
5002,
287,
262,
8931,
13,
198,
2,
17934,
25,
198,
2,
1855,
25896,
949,
25896,
796,
649,
1855,
25896,
9783,
198,
2,
949,
25896,
13,
14689,
32590,
17,
1776,
198,
2,
949,
25896,
13,
14689,
7,
15,
1776,
198,
2,
949,
25896,
13,
14689,
32590,
18,
1776,
198,
2,
949,
25896,
13,
1136,
9452,
9783,
220,
220,
14610,
16409,
532,
18,
13,
198,
2,
949,
25896,
13,
12924,
9783,
198,
2,
949,
25896,
13,
4852,
9783,
220,
220,
220,
220,
220,
14610,
16409,
657,
13,
198,
2,
949,
25896,
13,
1136,
9452,
9783,
220,
220,
14610,
16409,
532,
17,
13,
628
] | 3.075581 | 172 |
import discord
import math
client = discord.Client()
@client.event
@client.event
# Здесь должен быть токен
client.run('token')
| [
11748,
36446,
198,
11748,
10688,
198,
198,
16366,
796,
36446,
13,
11792,
3419,
628,
198,
31,
16366,
13,
15596,
628,
198,
31,
16366,
13,
15596,
198,
198,
2,
12466,
245,
43666,
16843,
21727,
45367,
12466,
112,
25443,
119,
140,
114,
16843,
22177,
12466,
109,
45035,
20375,
45367,
220,
20375,
25443,
118,
16843,
22177,
198,
16366,
13,
5143,
10786,
30001,
11537,
198
] | 2.180328 | 61 |
import subprocess
from unittest import mock
import pymediainfo
from fffw.wrapper import ensure_binary
from video_transcoding import transcoding
from video_transcoding.tests.base import BaseTestCase
class TranscodingTestCase(BaseTestCase):
""" Video file transcoding tests."""
# Minimal mediainfo output template to mock MediaInfo.parse result
media_info_xml = """<?xml version="1.0" encoding="UTF-8"?>
<File>
<track type="General">
<VideoCount>1</VideoCount>
<AudioCount>1</AudioCount>
</track>
<track type="Video">
<Duration>{video_duration:.3f}</Duration>
<Bit_Rate>{video_bitrate}</Bit_Rate>
<Width>{width}</Width>
<Height>{height}</Height>
<Pixel_Aspect_Ratio>{par:.3f}</Pixel_Aspect_Ratio>
<Display_Aspect_Ratio>{aspect:.3f}</Display_Aspect_Ratio>
<Frame_Rate>{video_frame_rate:.3f}</Frame_Rate>
</track>
<track type="Audio">
<Duration>{audio_duration:.3f}</Duration>
<Bit_Rate>{audio_bitrate}</Bit_Rate>
<Sampling_Rate>{audio_sampling_rate}</Sampling_Rate>
</track>
</File>
"""
# Default video file metadata
metadata = {
'width': 1920,
'height': 1080,
'aspect': 1.778,
'par': 1.0,
transcoding.VIDEO_DURATION: 3600.22,
'video_bitrate': 5000000,
'video_frame_rate': 24.97,
'audio_bitrate': 192000,
'audio_sampling_rate': 48000,
transcoding.AUDIO_DURATION: 3600.22,
}
def prepare_metadata(self, **kwargs):
"""
Modifies metadata template with new values.
"""
media_info = self.metadata.copy()
media_info.update(kwargs)
return media_info
def get_media_info(self, filename) -> pymediainfo.MediaInfo:
""" Prepares mediainfo result for file."""
metadata = self.media_info[filename]
xml = self.media_info_xml.format(filename=filename, **metadata)
return pymediainfo.MediaInfo(xml)
def test_smoke(self):
"""
ffmpeg arguments test.
"""
self.transcoder.transcode()
ffmpeg_args = list(map(ensure_binary, [
'ffmpeg',
'-loglevel', 'repeat+level+info',
'-i', self.source,
'-y',
'-map', '0:v',
'-c:v', 'libx264',
'-b:v', '5000000',
'-map', '0:a',
'-c:a', 'aac',
'-b:a', '192000',
'-f', 'mp4', self.dest
]))
self.popen_mock.assert_called_once_with(
ffmpeg_args, stderr=subprocess.PIPE)
| [
11748,
850,
14681,
198,
6738,
555,
715,
395,
1330,
15290,
198,
198,
11748,
12972,
2379,
391,
6513,
198,
6738,
277,
487,
86,
13,
48553,
1330,
4155,
62,
39491,
198,
198,
6738,
2008,
62,
7645,
66,
7656,
1330,
23589,
7656,
198,
6738,
2008,
62,
7645,
66,
7656,
13,
41989,
13,
8692,
1330,
7308,
14402,
20448,
628,
198,
4871,
3602,
66,
7656,
14402,
20448,
7,
14881,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
7623,
2393,
23589,
7656,
5254,
526,
15931,
628,
220,
220,
220,
1303,
1855,
4402,
16957,
391,
6513,
5072,
11055,
284,
15290,
6343,
12360,
13,
29572,
1255,
198,
220,
220,
220,
2056,
62,
10951,
62,
19875,
796,
37227,
47934,
19875,
2196,
2625,
16,
13,
15,
1,
21004,
2625,
48504,
12,
23,
13984,
29,
198,
27,
8979,
29,
198,
27,
11659,
2099,
2625,
12218,
5320,
198,
27,
10798,
12332,
29,
16,
3556,
10798,
12332,
29,
198,
27,
21206,
12332,
29,
16,
3556,
21206,
12332,
29,
198,
3556,
11659,
29,
198,
198,
27,
11659,
2099,
2625,
10798,
5320,
198,
27,
26054,
29,
90,
15588,
62,
32257,
25,
13,
18,
69,
92,
3556,
26054,
29,
198,
27,
13128,
62,
32184,
29,
90,
15588,
62,
2545,
4873,
92,
3556,
13128,
62,
32184,
29,
198,
27,
30916,
29,
90,
10394,
92,
3556,
30916,
29,
198,
27,
23106,
29,
90,
17015,
92,
3556,
23106,
29,
198,
27,
40809,
62,
1722,
806,
62,
29665,
952,
29,
90,
1845,
25,
13,
18,
69,
92,
3556,
40809,
62,
1722,
806,
62,
29665,
952,
29,
198,
27,
23114,
62,
1722,
806,
62,
29665,
952,
29,
90,
292,
806,
25,
13,
18,
69,
92,
3556,
23114,
62,
1722,
806,
62,
29665,
952,
29,
198,
27,
19778,
62,
32184,
29,
90,
15588,
62,
14535,
62,
4873,
25,
13,
18,
69,
92,
3556,
19778,
62,
32184,
29,
198,
3556,
11659,
29,
198,
198,
27,
11659,
2099,
2625,
21206,
5320,
198,
27,
26054,
29,
90,
24051,
62,
32257,
25,
13,
18,
69,
92,
3556,
26054,
29,
198,
27,
13128,
62,
32184,
29,
90,
24051,
62,
2545,
4873,
92,
3556,
13128,
62,
32184,
29,
198,
27,
16305,
11347,
62,
32184,
29,
90,
24051,
62,
37687,
11347,
62,
4873,
92,
3556,
16305,
11347,
62,
32184,
29,
198,
3556,
11659,
29,
198,
198,
3556,
8979,
29,
198,
37811,
628,
220,
220,
220,
1303,
15161,
2008,
2393,
20150,
198,
220,
220,
220,
20150,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10394,
10354,
14062,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
17015,
10354,
17729,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
292,
806,
10354,
352,
13,
39761,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1845,
10354,
352,
13,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
23589,
7656,
13,
42937,
62,
35,
4261,
6234,
25,
4570,
405,
13,
1828,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15588,
62,
2545,
4873,
10354,
642,
10535,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15588,
62,
14535,
62,
4873,
10354,
1987,
13,
5607,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24051,
62,
2545,
4873,
10354,
678,
11024,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24051,
62,
37687,
11347,
62,
4873,
10354,
4764,
830,
11,
198,
220,
220,
220,
220,
220,
220,
220,
23589,
7656,
13,
48877,
9399,
62,
35,
4261,
6234,
25,
4570,
405,
13,
1828,
11,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
825,
8335,
62,
38993,
7,
944,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3401,
6945,
20150,
11055,
351,
649,
3815,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2056,
62,
10951,
796,
2116,
13,
38993,
13,
30073,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2056,
62,
10951,
13,
19119,
7,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2056,
62,
10951,
628,
220,
220,
220,
825,
651,
62,
11431,
62,
10951,
7,
944,
11,
29472,
8,
4613,
12972,
2379,
391,
6513,
13,
13152,
12360,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19141,
3565,
16957,
391,
6513,
1255,
329,
2393,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
20150,
796,
2116,
13,
11431,
62,
10951,
58,
34345,
60,
198,
220,
220,
220,
220,
220,
220,
220,
35555,
796,
2116,
13,
11431,
62,
10951,
62,
19875,
13,
18982,
7,
34345,
28,
34345,
11,
12429,
38993,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
12972,
2379,
391,
6513,
13,
13152,
12360,
7,
19875,
8,
628,
220,
220,
220,
825,
1332,
62,
5796,
2088,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
31246,
43913,
7159,
1332,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7645,
66,
12342,
13,
7645,
8189,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
31246,
43913,
62,
22046,
796,
1351,
7,
8899,
7,
641,
495,
62,
39491,
11,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
487,
43913,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
75,
2467,
626,
3256,
705,
44754,
10,
5715,
10,
10951,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
72,
3256,
2116,
13,
10459,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
88,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
8899,
3256,
705,
15,
25,
85,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
66,
25,
85,
3256,
705,
8019,
87,
18897,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
65,
25,
85,
3256,
705,
20,
10535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
8899,
3256,
705,
15,
25,
64,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
66,
25,
64,
3256,
705,
64,
330,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
65,
25,
64,
3256,
705,
1129,
11024,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
69,
3256,
705,
3149,
19,
3256,
2116,
13,
16520,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
79,
9654,
62,
76,
735,
13,
30493,
62,
7174,
62,
27078,
62,
4480,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31246,
43913,
62,
22046,
11,
336,
1082,
81,
28,
7266,
14681,
13,
47,
4061,
36,
8,
198
] | 2.163906 | 1,147 |
from egnyte.tests.config import EgnyteTestCase
from egnyte.tests.helpers import upload_file
EGNYTE_FILE_NAME = '/sample.png'
FILE_NAME = 'FILE1.png'
COMMENT = 'test comment'
| [
6738,
29206,
3281,
660,
13,
41989,
13,
11250,
1330,
36386,
3281,
660,
14402,
20448,
198,
6738,
29206,
3281,
660,
13,
41989,
13,
16794,
364,
1330,
9516,
62,
7753,
198,
198,
7156,
12805,
9328,
62,
25664,
62,
20608,
796,
31051,
39873,
13,
11134,
6,
198,
25664,
62,
20608,
796,
705,
25664,
16,
13,
11134,
6,
198,
9858,
10979,
796,
705,
9288,
2912,
6,
628
] | 2.793651 | 63 |
from setuptools import setup
import re
requirements = []
for line in open('requirements.txt'):
req = line.split('#', 1)[0] # strip comments
requirements.append(req.strip())
# follow https://stackoverflow.com/a/7071358/419116
VERSIONFILE = "ncluster/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(scripts=['ncluster/ncluster_cloud_setup.py', # also used as module
'ncluster/ncluster_cloud_wipe.py',
'tools/nsync',
'tools/ncluster'],
install_requires=requirements,
version=verstr,
)
| [
6738,
900,
37623,
10141,
1330,
9058,
198,
11748,
302,
198,
198,
8897,
18883,
796,
17635,
198,
1640,
1627,
287,
1280,
10786,
8897,
18883,
13,
14116,
6,
2599,
198,
220,
43089,
796,
1627,
13,
35312,
10786,
2,
3256,
352,
38381,
15,
60,
220,
1303,
10283,
3651,
198,
220,
5359,
13,
33295,
7,
42180,
13,
36311,
28955,
198,
198,
2,
1061,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
64,
14,
24038,
1485,
3365,
14,
45068,
18298,
198,
43717,
25664,
796,
366,
77,
565,
5819,
47835,
9641,
13,
9078,
1,
198,
332,
2536,
1370,
796,
1280,
7,
43717,
25664,
11,
366,
17034,
11074,
961,
3419,
198,
20304,
2200,
796,
374,
1,
61,
834,
9641,
834,
796,
37250,
7879,
16151,
58,
61,
6,
7879,
60,
28104,
17816,
7879,
30866,
198,
5908,
796,
302,
13,
12947,
7,
20304,
2200,
11,
3326,
2536,
1370,
11,
302,
13,
44,
8,
198,
361,
6941,
25,
198,
220,
3326,
2536,
796,
6941,
13,
8094,
7,
16,
8,
198,
17772,
25,
198,
220,
5298,
43160,
12331,
7203,
3118,
540,
284,
1064,
2196,
4731,
287,
4064,
82,
526,
4064,
357,
43717,
25664,
11,
4008,
198,
198,
40406,
7,
46521,
28,
17816,
77,
565,
5819,
14,
77,
565,
5819,
62,
17721,
62,
40406,
13,
9078,
3256,
220,
1303,
635,
973,
355,
8265,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
77,
565,
5819,
14,
77,
565,
5819,
62,
17721,
62,
86,
3757,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31391,
14,
77,
27261,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31391,
14,
77,
565,
5819,
6,
4357,
198,
220,
220,
220,
220,
220,
2721,
62,
47911,
28,
8897,
18883,
11,
198,
220,
220,
220,
220,
220,
2196,
28,
332,
2536,
11,
198,
220,
220,
220,
220,
220,
1267,
198
] | 2.41195 | 318 |
# Copyright 2019 Apex.AI, Inc.
#
# 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 os
import sys
import time
import unittest
import uuid
import launch
import launch_ros
import launch_ros.actions
import launch_testing.actions
import launch_testing_ros
import pytest
import std_msgs.msg
@pytest.mark.rostest
| [
2,
15069,
13130,
49440,
13,
20185,
11,
3457,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
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,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
640,
198,
11748,
555,
715,
395,
198,
11748,
334,
27112,
198,
198,
11748,
4219,
198,
11748,
4219,
62,
4951,
198,
11748,
4219,
62,
4951,
13,
4658,
198,
11748,
4219,
62,
33407,
13,
4658,
198,
11748,
4219,
62,
33407,
62,
4951,
198,
198,
11748,
12972,
9288,
198,
198,
11748,
14367,
62,
907,
14542,
13,
19662,
628,
198,
31,
9078,
9288,
13,
4102,
13,
23341,
395,
628
] | 3.617778 | 225 |
# coding: utf-8
"""
No descripton provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1
Generated by: https://github.com/swagger-api/swagger-codegen.git
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from pprint import pformat
from six import iteritems
import re
class V1ServiceSpec(object):
"""
NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
def __init__(self, ports=None, selector=None, clusterIP=None, type=None, externalIPs=None, deprecatedPublicIPs=None, sessionAffinity=None, loadBalancerIP=None, loadBalancerSourceRanges=None):
"""
V1ServiceSpec - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
"""
self.swagger_types = {
'ports': 'list[V1ServicePort]',
'selector': 'object',
'clusterIP': 'str',
'type': 'str',
'externalIPs': 'list[str]',
'deprecatedPublicIPs': 'list[str]',
'sessionAffinity': 'str',
'loadBalancerIP': 'str',
'loadBalancerSourceRanges': 'list[str]'
}
self.attribute_map = {
'ports': 'ports',
'selector': 'selector',
'clusterIP': 'clusterIP',
'type': 'type',
'externalIPs': 'externalIPs',
'deprecatedPublicIPs': 'deprecatedPublicIPs',
'sessionAffinity': 'sessionAffinity',
'loadBalancerIP': 'loadBalancerIP',
'loadBalancerSourceRanges': 'loadBalancerSourceRanges'
}
self._ports = ports
self._selector = selector
self._clusterIP = clusterIP
self._type = type
self._externalIPs = externalIPs
self._deprecatedPublicIPs = deprecatedPublicIPs
self._sessionAffinity = sessionAffinity
self._loadBalancerIP = loadBalancerIP
self._loadBalancerSourceRanges = loadBalancerSourceRanges
@property
def ports(self):
"""
Gets the ports of this V1ServiceSpec.
The list of ports that are exposed by this service. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:return: The ports of this V1ServiceSpec.
:rtype: list[V1ServicePort]
"""
return self._ports
@ports.setter
def ports(self, ports):
"""
Sets the ports of this V1ServiceSpec.
The list of ports that are exposed by this service. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:param ports: The ports of this V1ServiceSpec.
:type: list[V1ServicePort]
"""
self._ports = ports
@property
def selector(self):
"""
Gets the selector of this V1ServiceSpec.
This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview
:return: The selector of this V1ServiceSpec.
:rtype: object
"""
return self._selector
@selector.setter
def selector(self, selector):
"""
Sets the selector of this V1ServiceSpec.
This service will route traffic to pods having labels matching this selector. Label keys and values that must match in order to receive traffic for this service. If not specified, endpoints must be manually specified and the system will not automatically manage them. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#overview
:param selector: The selector of this V1ServiceSpec.
:type: object
"""
self._selector = selector
@property
def clusterIP(self):
"""
Gets the clusterIP of this V1ServiceSpec.
ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:return: The clusterIP of this V1ServiceSpec.
:rtype: str
"""
return self._clusterIP
@clusterIP.setter
def clusterIP(self, clusterIP):
"""
Sets the clusterIP of this V1ServiceSpec.
ClusterIP is usually assigned by the master and is the IP address of the service. If specified, it will be allocated to the service if it is unused or else creation of the service will fail. Valid values are None, empty string (\"\"), or a valid IP address. 'None' can be specified for a headless service when proxying is not required. Cannot be updated. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:param clusterIP: The clusterIP of this V1ServiceSpec.
:type: str
"""
self._clusterIP = clusterIP
@property
def type(self):
"""
Gets the type of this V1ServiceSpec.
Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services
:return: The type of this V1ServiceSpec.
:rtype: str
"""
return self._type
@type.setter
def type(self, type):
"""
Sets the type of this V1ServiceSpec.
Type of exposed service. Must be ClusterIP, NodePort, or LoadBalancer. Defaults to ClusterIP. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#external-services
:param type: The type of this V1ServiceSpec.
:type: str
"""
self._type = type
@property
def externalIPs(self):
"""
Gets the externalIPs of this V1ServiceSpec.
externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.
:return: The externalIPs of this V1ServiceSpec.
:rtype: list[str]
"""
return self._externalIPs
@externalIPs.setter
def externalIPs(self, externalIPs):
"""
Sets the externalIPs of this V1ServiceSpec.
externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. A previous form of this functionality exists as the deprecatedPublicIPs field. When using this field, callers should also clear the deprecatedPublicIPs field.
:param externalIPs: The externalIPs of this V1ServiceSpec.
:type: list[str]
"""
self._externalIPs = externalIPs
@property
def deprecatedPublicIPs(self):
"""
Gets the deprecatedPublicIPs of this V1ServiceSpec.
deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs *and* externalIPs are set, deprecatedPublicIPs is used.
:return: The deprecatedPublicIPs of this V1ServiceSpec.
:rtype: list[str]
"""
return self._deprecatedPublicIPs
@deprecatedPublicIPs.setter
def deprecatedPublicIPs(self, deprecatedPublicIPs):
"""
Sets the deprecatedPublicIPs of this V1ServiceSpec.
deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics. This field is retained in the v1 API for compatibility until at least 8/20/2016. It will be removed from any new API revisions. If both deprecatedPublicIPs *and* externalIPs are set, deprecatedPublicIPs is used.
:param deprecatedPublicIPs: The deprecatedPublicIPs of this V1ServiceSpec.
:type: list[str]
"""
self._deprecatedPublicIPs = deprecatedPublicIPs
@property
def sessionAffinity(self):
"""
Gets the sessionAffinity of this V1ServiceSpec.
Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:return: The sessionAffinity of this V1ServiceSpec.
:rtype: str
"""
return self._sessionAffinity
@sessionAffinity.setter
def sessionAffinity(self, sessionAffinity):
"""
Sets the sessionAffinity of this V1ServiceSpec.
Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://releases.k8s.io/HEAD/docs/user-guide/services.md#virtual-ips-and-service-proxies
:param sessionAffinity: The sessionAffinity of this V1ServiceSpec.
:type: str
"""
self._sessionAffinity = sessionAffinity
@property
def loadBalancerIP(self):
"""
Gets the loadBalancerIP of this V1ServiceSpec.
Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.
:return: The loadBalancerIP of this V1ServiceSpec.
:rtype: str
"""
return self._loadBalancerIP
@loadBalancerIP.setter
def loadBalancerIP(self, loadBalancerIP):
"""
Sets the loadBalancerIP of this V1ServiceSpec.
Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.
:param loadBalancerIP: The loadBalancerIP of this V1ServiceSpec.
:type: str
"""
self._loadBalancerIP = loadBalancerIP
@property
def loadBalancerSourceRanges(self):
"""
Gets the loadBalancerSourceRanges of this V1ServiceSpec.
If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md
:return: The loadBalancerSourceRanges of this V1ServiceSpec.
:rtype: list[str]
"""
return self._loadBalancerSourceRanges
@loadBalancerSourceRanges.setter
def loadBalancerSourceRanges(self, loadBalancerSourceRanges):
"""
Sets the loadBalancerSourceRanges of this V1ServiceSpec.
If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://releases.k8s.io/HEAD/docs/user-guide/services-firewalls.md
:param loadBalancerSourceRanges: The loadBalancerSourceRanges of this V1ServiceSpec.
:type: list[str]
"""
self._loadBalancerSourceRanges = loadBalancerSourceRanges
def to_dict(self):
"""
Returns the model properties as a dict
"""
result = {}
for attr, _ in iteritems(self.swagger_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
return result
def to_str(self):
"""
Returns the string representation of the model
"""
return pformat(self.to_dict())
def __repr__(self):
"""
For `print` and `pprint`
"""
return self.to_str()
def __eq__(self, other):
"""
Returns true if both objects are equal
"""
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""
Returns true if both objects are not equal
"""
return not self == other
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
37811,
628,
220,
220,
220,
1400,
12145,
261,
2810,
357,
27568,
416,
2451,
7928,
6127,
5235,
3740,
1378,
12567,
13,
785,
14,
2032,
7928,
12,
15042,
14,
2032,
7928,
12,
8189,
5235,
8,
628,
220,
220,
220,
4946,
17614,
1020,
2196,
25,
410,
16,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2980,
515,
416,
25,
3740,
1378,
12567,
13,
785,
14,
2032,
7928,
12,
15042,
14,
2032,
7928,
12,
8189,
5235,
13,
18300,
628,
220,
220,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
220,
220,
220,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
220,
220,
220,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
628,
220,
220,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
220,
220,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
220,
220,
220,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
220,
220,
220,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
220,
220,
220,
11247,
739,
262,
13789,
13,
198,
37811,
198,
198,
6738,
279,
4798,
1330,
279,
18982,
198,
6738,
2237,
1330,
11629,
23814,
198,
11748,
302,
628,
198,
4871,
569,
16,
16177,
22882,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
24550,
25,
770,
1398,
318,
8295,
7560,
416,
262,
1509,
7928,
2438,
17301,
1430,
13,
198,
220,
220,
220,
2141,
407,
4370,
262,
1398,
14500,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
14090,
28,
14202,
11,
31870,
28,
14202,
11,
13946,
4061,
28,
14202,
11,
2099,
28,
14202,
11,
7097,
4061,
82,
28,
14202,
11,
39224,
15202,
4061,
82,
28,
14202,
11,
6246,
35191,
6269,
28,
14202,
11,
3440,
24597,
8250,
4061,
28,
14202,
11,
3440,
24597,
8250,
7416,
49,
6231,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
569,
16,
16177,
22882,
532,
257,
2746,
5447,
287,
2451,
7928,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
1509,
7928,
31431,
25,
383,
1994,
318,
11688,
1438,
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,
290,
262,
1988,
318,
11688,
2099,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
11688,
13912,
25,
383,
1994,
318,
11688,
1438,
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,
290,
262,
1988,
318,
33918,
1994,
287,
6770,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2032,
7928,
62,
19199,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3742,
10354,
705,
4868,
58,
53,
16,
16177,
13924,
60,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19738,
273,
10354,
705,
15252,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
565,
5819,
4061,
10354,
705,
2536,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
2536,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22615,
4061,
82,
10354,
705,
4868,
58,
2536,
60,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10378,
31023,
15202,
4061,
82,
10354,
705,
4868,
58,
2536,
60,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29891,
35191,
6269,
10354,
705,
2536,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2220,
24597,
8250,
4061,
10354,
705,
2536,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2220,
24597,
8250,
7416,
49,
6231,
10354,
705,
4868,
58,
2536,
49946,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42348,
62,
8899,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3742,
10354,
705,
3742,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19738,
273,
10354,
705,
19738,
273,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
565,
5819,
4061,
10354,
705,
565,
5819,
4061,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
4906,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22615,
4061,
82,
10354,
705,
22615,
4061,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10378,
31023,
15202,
4061,
82,
10354,
705,
10378,
31023,
15202,
4061,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29891,
35191,
6269,
10354,
705,
29891,
35191,
6269,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2220,
24597,
8250,
4061,
10354,
705,
2220,
24597,
8250,
4061,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2220,
24597,
8250,
7416,
49,
6231,
10354,
705,
2220,
24597,
8250,
7416,
49,
6231,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3742,
796,
14090,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
19738,
273,
796,
31870,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
565,
5819,
4061,
796,
13946,
4061,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4906,
796,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
22615,
4061,
82,
796,
7097,
4061,
82,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10378,
31023,
15202,
4061,
82,
796,
39224,
15202,
4061,
82,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
29891,
35191,
6269,
796,
6246,
35191,
6269,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2220,
24597,
8250,
4061,
796,
3440,
24597,
8250,
4061,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2220,
24597,
8250,
7416,
49,
6231,
796,
3440,
24597,
8250,
7416,
49,
6231,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
14090,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
14090,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1351,
286,
14090,
326,
389,
7362,
416,
428,
2139,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
14090,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
53,
16,
16177,
13924,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
3742,
628,
220,
220,
220,
2488,
3742,
13,
2617,
353,
198,
220,
220,
220,
825,
14090,
7,
944,
11,
14090,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
14090,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1351,
286,
14090,
326,
389,
7362,
416,
428,
2139,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
14090,
25,
383,
14090,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
1351,
58,
53,
16,
16177,
13924,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3742,
796,
14090,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
31870,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
31870,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2139,
481,
6339,
4979,
284,
37185,
1719,
14722,
12336,
428,
31870,
13,
36052,
8251,
290,
3815,
326,
1276,
2872,
287,
1502,
284,
3328,
4979,
329,
428,
2139,
13,
1002,
407,
7368,
11,
886,
13033,
1276,
307,
14500,
7368,
290,
262,
1080,
481,
407,
6338,
6687,
606,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
2502,
1177,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
31870,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
19738,
273,
628,
220,
220,
220,
2488,
19738,
273,
13,
2617,
353,
198,
220,
220,
220,
825,
31870,
7,
944,
11,
31870,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
31870,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2139,
481,
6339,
4979,
284,
37185,
1719,
14722,
12336,
428,
31870,
13,
36052,
8251,
290,
3815,
326,
1276,
2872,
287,
1502,
284,
3328,
4979,
329,
428,
2139,
13,
1002,
407,
7368,
11,
886,
13033,
1276,
307,
14500,
7368,
290,
262,
1080,
481,
407,
6338,
6687,
606,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
2502,
1177,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
31870,
25,
383,
31870,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
19738,
273,
796,
31870,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
13946,
4061,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
13946,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
38279,
4061,
318,
3221,
8686,
416,
262,
4958,
290,
318,
262,
6101,
2209,
286,
262,
2139,
13,
1002,
7368,
11,
340,
481,
307,
19171,
284,
262,
2139,
611,
340,
318,
21958,
393,
2073,
6282,
286,
262,
2139,
481,
2038,
13,
48951,
3815,
389,
6045,
11,
6565,
4731,
357,
7879,
7879,
828,
393,
257,
4938,
6101,
2209,
13,
705,
14202,
6,
460,
307,
7368,
329,
257,
1182,
1203,
2139,
618,
14793,
1112,
318,
407,
2672,
13,
26003,
307,
6153,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
13946,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
565,
5819,
4061,
628,
220,
220,
220,
2488,
565,
5819,
4061,
13,
2617,
353,
198,
220,
220,
220,
825,
13946,
4061,
7,
944,
11,
13946,
4061,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
13946,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
38279,
4061,
318,
3221,
8686,
416,
262,
4958,
290,
318,
262,
6101,
2209,
286,
262,
2139,
13,
1002,
7368,
11,
340,
481,
307,
19171,
284,
262,
2139,
611,
340,
318,
21958,
393,
2073,
6282,
286,
262,
2139,
481,
2038,
13,
48951,
3815,
389,
6045,
11,
6565,
4731,
357,
7879,
7879,
828,
393,
257,
4938,
6101,
2209,
13,
705,
14202,
6,
460,
307,
7368,
329,
257,
1182,
1203,
2139,
618,
14793,
1112,
318,
407,
2672,
13,
26003,
307,
6153,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13946,
4061,
25,
383,
13946,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
565,
5819,
4061,
796,
13946,
4061,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
2099,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
2099,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5994,
286,
7362,
2139,
13,
12039,
307,
38279,
4061,
11,
19081,
13924,
11,
393,
8778,
24597,
8250,
13,
2896,
13185,
284,
38279,
4061,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
22615,
12,
30416,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
2099,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
4906,
628,
220,
220,
220,
2488,
4906,
13,
2617,
353,
198,
220,
220,
220,
825,
2099,
7,
944,
11,
2099,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
2099,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5994,
286,
7362,
2139,
13,
12039,
307,
38279,
4061,
11,
19081,
13924,
11,
393,
8778,
24597,
8250,
13,
2896,
13185,
284,
38279,
4061,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
22615,
12,
30416,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2099,
25,
383,
2099,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4906,
796,
2099,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
7097,
4061,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
7097,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7097,
4061,
82,
318,
257,
1351,
286,
6101,
9405,
329,
543,
13760,
287,
262,
13946,
481,
635,
2453,
4979,
329,
428,
2139,
13,
220,
2312,
6101,
82,
389,
407,
5257,
416,
12554,
527,
3262,
274,
13,
220,
383,
2836,
318,
4497,
329,
13359,
326,
4979,
14443,
379,
257,
10139,
351,
428,
6101,
13,
220,
317,
2219,
1672,
318,
7097,
3440,
12,
6893,
20811,
326,
389,
407,
636,
286,
262,
12554,
527,
3262,
274,
1080,
13,
220,
317,
2180,
1296,
286,
428,
11244,
7160,
355,
262,
39224,
15202,
4061,
82,
2214,
13,
220,
1649,
1262,
428,
2214,
11,
869,
364,
815,
635,
1598,
262,
39224,
15202,
4061,
82,
2214,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
7097,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
22615,
4061,
82,
628,
220,
220,
220,
2488,
22615,
4061,
82,
13,
2617,
353,
198,
220,
220,
220,
825,
7097,
4061,
82,
7,
944,
11,
7097,
4061,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
7097,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7097,
4061,
82,
318,
257,
1351,
286,
6101,
9405,
329,
543,
13760,
287,
262,
13946,
481,
635,
2453,
4979,
329,
428,
2139,
13,
220,
2312,
6101,
82,
389,
407,
5257,
416,
12554,
527,
3262,
274,
13,
220,
383,
2836,
318,
4497,
329,
13359,
326,
4979,
14443,
379,
257,
10139,
351,
428,
6101,
13,
220,
317,
2219,
1672,
318,
7097,
3440,
12,
6893,
20811,
326,
389,
407,
636,
286,
262,
12554,
527,
3262,
274,
1080,
13,
220,
317,
2180,
1296,
286,
428,
11244,
7160,
355,
262,
39224,
15202,
4061,
82,
2214,
13,
220,
1649,
1262,
428,
2214,
11,
869,
364,
815,
635,
1598,
262,
39224,
15202,
4061,
82,
2214,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
7097,
4061,
82,
25,
383,
7097,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
22615,
4061,
82,
796,
7097,
4061,
82,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
39224,
15202,
4061,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
39224,
15202,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
39224,
15202,
4061,
82,
318,
39224,
290,
6928,
416,
262,
7097,
4061,
82,
2214,
351,
2048,
262,
2748,
976,
33815,
13,
220,
770,
2214,
318,
17383,
287,
262,
410,
16,
7824,
329,
17764,
1566,
379,
1551,
807,
14,
1238,
14,
5304,
13,
220,
632,
481,
307,
4615,
422,
597,
649,
7824,
33315,
13,
220,
1002,
1111,
39224,
15202,
4061,
82,
1635,
392,
9,
7097,
4061,
82,
389,
900,
11,
39224,
15202,
4061,
82,
318,
973,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
39224,
15202,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10378,
31023,
15202,
4061,
82,
628,
220,
220,
220,
2488,
10378,
31023,
15202,
4061,
82,
13,
2617,
353,
198,
220,
220,
220,
825,
39224,
15202,
4061,
82,
7,
944,
11,
39224,
15202,
4061,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
39224,
15202,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
39224,
15202,
4061,
82,
318,
39224,
290,
6928,
416,
262,
7097,
4061,
82,
2214,
351,
2048,
262,
2748,
976,
33815,
13,
220,
770,
2214,
318,
17383,
287,
262,
410,
16,
7824,
329,
17764,
1566,
379,
1551,
807,
14,
1238,
14,
5304,
13,
220,
632,
481,
307,
4615,
422,
597,
649,
7824,
33315,
13,
220,
1002,
1111,
39224,
15202,
4061,
82,
1635,
392,
9,
7097,
4061,
82,
389,
900,
11,
39224,
15202,
4061,
82,
318,
973,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
39224,
15202,
4061,
82,
25,
383,
39224,
15202,
4061,
82,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10378,
31023,
15202,
4061,
82,
796,
39224,
15202,
4061,
82,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
6246,
35191,
6269,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
6246,
35191,
6269,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
45267,
19990,
11792,
4061,
7879,
290,
19990,
14202,
59,
1911,
16718,
284,
5529,
6246,
28430,
13,
27882,
5456,
6101,
1912,
6246,
28430,
13,
12039,
307,
20985,
4061,
393,
6045,
13,
2896,
13185,
284,
6045,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
6246,
35191,
6269,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
29891,
35191,
6269,
628,
220,
220,
220,
2488,
29891,
35191,
6269,
13,
2617,
353,
198,
220,
220,
220,
825,
6246,
35191,
6269,
7,
944,
11,
6246,
35191,
6269,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
6246,
35191,
6269,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
45267,
19990,
11792,
4061,
7879,
290,
19990,
14202,
59,
1911,
16718,
284,
5529,
6246,
28430,
13,
27882,
5456,
6101,
1912,
6246,
28430,
13,
12039,
307,
20985,
4061,
393,
6045,
13,
2896,
13185,
284,
6045,
13,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
13,
9132,
2,
32844,
12,
2419,
12,
392,
12,
15271,
12,
1676,
87,
444,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6246,
35191,
6269,
25,
383,
6246,
35191,
6269,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
29891,
35191,
6269,
796,
6246,
35191,
6269,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
3440,
24597,
8250,
4061,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
3440,
24597,
8250,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5514,
8991,
284,
4809,
5994,
25,
8778,
24597,
8250,
8778,
24597,
8250,
481,
651,
2727,
351,
262,
6101,
7368,
287,
428,
2214,
13,
770,
3895,
8338,
319,
1771,
262,
10238,
6279,
12,
15234,
1304,
6971,
31577,
262,
3440,
24597,
8250,
4061,
618,
257,
3440,
3652,
8250,
318,
2727,
13,
770,
2214,
481,
307,
9514,
611,
262,
6279,
12,
15234,
1304,
857,
407,
1104,
262,
3895,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
3440,
24597,
8250,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
2220,
24597,
8250,
4061,
628,
220,
220,
220,
2488,
2220,
24597,
8250,
4061,
13,
2617,
353,
198,
220,
220,
220,
825,
3440,
24597,
8250,
4061,
7,
944,
11,
3440,
24597,
8250,
4061,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
3440,
24597,
8250,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5514,
8991,
284,
4809,
5994,
25,
8778,
24597,
8250,
8778,
24597,
8250,
481,
651,
2727,
351,
262,
6101,
7368,
287,
428,
2214,
13,
770,
3895,
8338,
319,
1771,
262,
10238,
6279,
12,
15234,
1304,
6971,
31577,
262,
3440,
24597,
8250,
4061,
618,
257,
3440,
3652,
8250,
318,
2727,
13,
770,
2214,
481,
307,
9514,
611,
262,
6279,
12,
15234,
1304,
857,
407,
1104,
262,
3895,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3440,
24597,
8250,
4061,
25,
383,
3440,
24597,
8250,
4061,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2220,
24597,
8250,
4061,
796,
3440,
24597,
8250,
4061,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
3440,
24597,
8250,
7416,
49,
6231,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
3440,
24597,
8250,
7416,
49,
6231,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
7368,
290,
4855,
416,
262,
3859,
11,
428,
481,
4239,
4979,
832,
262,
6279,
12,
15234,
1304,
3440,
12,
6893,
8250,
481,
307,
10770,
284,
262,
7368,
5456,
6101,
82,
13,
770,
2214,
481,
307,
9514,
611,
262,
6279,
12,
15234,
1304,
857,
407,
1104,
262,
3895,
13,
7879,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
12,
6495,
86,
5691,
13,
9132,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
3440,
24597,
8250,
7416,
49,
6231,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
2220,
24597,
8250,
7416,
49,
6231,
628,
220,
220,
220,
2488,
2220,
24597,
8250,
7416,
49,
6231,
13,
2617,
353,
198,
220,
220,
220,
825,
3440,
24597,
8250,
7416,
49,
6231,
7,
944,
11,
3440,
24597,
8250,
7416,
49,
6231,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
3440,
24597,
8250,
7416,
49,
6231,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
7368,
290,
4855,
416,
262,
3859,
11,
428,
481,
4239,
4979,
832,
262,
6279,
12,
15234,
1304,
3440,
12,
6893,
8250,
481,
307,
10770,
284,
262,
7368,
5456,
6101,
82,
13,
770,
2214,
481,
307,
9514,
611,
262,
6279,
12,
15234,
1304,
857,
407,
1104,
262,
3895,
13,
7879,
3125,
7508,
25,
2638,
1378,
260,
29329,
13,
74,
23,
82,
13,
952,
14,
37682,
14,
31628,
14,
7220,
12,
41311,
14,
30416,
12,
6495,
86,
5691,
13,
9132,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3440,
24597,
8250,
7416,
49,
6231,
25,
383,
3440,
24597,
8250,
7416,
49,
6231,
286,
428,
569,
16,
16177,
22882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
1351,
58,
2536,
60,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2220,
24597,
8250,
7416,
49,
6231,
796,
3440,
24597,
8250,
7416,
49,
6231,
628,
220,
220,
220,
825,
284,
62,
11600,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
262,
2746,
6608,
355,
257,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
23884,
628,
220,
220,
220,
220,
220,
220,
220,
329,
708,
81,
11,
4808,
287,
11629,
23814,
7,
944,
13,
2032,
7928,
62,
19199,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
651,
35226,
7,
944,
11,
708,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
8367,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1351,
7,
8899,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
2124,
25,
2124,
13,
1462,
62,
11600,
3419,
611,
468,
35226,
7,
87,
11,
366,
1462,
62,
11600,
4943,
2073,
2124,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
468,
35226,
7,
8367,
11,
366,
1462,
62,
11600,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1988,
13,
1462,
62,
11600,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
318,
39098,
7,
8367,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
8633,
7,
8899,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
2378,
25,
357,
9186,
58,
15,
4357,
2378,
58,
16,
4083,
1462,
62,
11600,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
9186,
58,
16,
4357,
366,
1462,
62,
11600,
4943,
2073,
2378,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
13,
23814,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1988,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
220,
220,
220,
825,
284,
62,
2536,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
262,
4731,
10552,
286,
262,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
279,
18982,
7,
944,
13,
1462,
62,
11600,
28955,
628,
220,
220,
220,
825,
11593,
260,
1050,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1114,
4600,
4798,
63,
290,
4600,
381,
22272,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1462,
62,
2536,
3419,
628,
220,
220,
220,
825,
11593,
27363,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
2081,
611,
1111,
5563,
389,
4961,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
834,
11600,
834,
6624,
584,
13,
834,
11600,
834,
628,
220,
220,
220,
825,
11593,
710,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
2081,
611,
1111,
5563,
389,
407,
4961,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
407,
2116,
6624,
584,
198
] | 2.705067 | 5,408 |
# This file is part of PeachPy package and is licensed under the Simplified BSD license.
# See license.rst for the full text of the license.
import peachpy.x86_64.abi
import peachpy.x86_64.uarch
import peachpy.x86_64.isa
from peachpy.x86_64.registers import GeneralPurposeRegister, \
GeneralPurposeRegister8, GeneralPurposeRegister16, GeneralPurposeRegister32, GeneralPurposeRegister64, \
MMXRegister, XMMRegister, YMMRegister, ZMMRegister, KRegister, \
rax, rbx, rcx, rdx, rsi, rdi, rbp, r8, r9, r10, r11, r12, r13, r14, r15, \
eax, ebx, ecx, edx, esi, edi, ebp, r8d, r9d, r10d, r11d, r12d, r13d, r14d, r15d, \
ax, bx, cx, dx, si, di, bp, r8w, r9w, r10w, r11w, r12w, r13w, r14w, r15w, \
al, ah, bl, bh, cl, ch, dl, dh, sil, dil, bpl, r8b, r9b, r10b, r11b, r12b, r13b, r14b, r15b, \
mm0, mm1, mm2, mm3, mm4, mm5, mm6, mm7, \
xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, \
xmm16, xmm17, xmm18, xmm19, xmm20, xmm21, xmm22, xmm23, xmm24, xmm25, xmm26, xmm27, xmm28, xmm29, xmm30, xmm31, \
ymm0, ymm1, ymm2, ymm3, ymm4, ymm5, ymm6, ymm7, ymm8, ymm9, ymm10, ymm11, ymm12, ymm13, ymm14, ymm15, \
ymm16, ymm17, ymm18, ymm19, ymm20, ymm21, ymm22, ymm23, ymm24, ymm25, ymm26, ymm27, ymm28, ymm29, ymm30, ymm31, \
zmm0, zmm1, zmm2, zmm3, zmm4, zmm5, zmm6, zmm7, zmm8, zmm9, zmm10, zmm11, zmm12, zmm13, zmm14, zmm15, \
zmm16, zmm17, zmm18, zmm19, zmm20, zmm21, zmm22, zmm23, zmm24, zmm25, zmm26, zmm27, zmm28, zmm29, zmm30, zmm31, \
k0, k1, k2, k3, k4, k5, k6, k7
from peachpy.x86_64.function import Function, LocalVariable
from peachpy.x86_64.operand import byte, word, dword, qword, oword, hword, yword, zword, \
rn_sae, rz_sae, ru_sae, rd_sae, sae
from peachpy.x86_64.pseudo import Label, Loop, Block, \
LABEL, ALIGN, IACA, RETURN, LOAD, STORE, SWAP, REDUCE
from peachpy.x86_64.nacl import NACLJMP
from peachpy.x86_64.generic import \
ADD, SUB, ADC, SBB, ADCX, ADOX, \
AND, OR, XOR, ANDN, \
NOT, NEG, INC, DEC, \
TEST, CMP, \
MOV, MOVZX, MOVSX, MOVSXD, MOVBE, MOVNTI, \
BT, BTS, BTR, BTC, POPCNT, BSWAP, \
BSF, BSR, LZCNT, TZCNT, \
SHR, SAR, SHL, SAL, SHRX, SARX, SHLX, \
SHRD, SHLD, \
ROR, ROL, RORX, \
RCR, RCL, \
IMUL, MUL, MULX, \
IDIV, DIV, \
LEA, PUSH, POP, \
POPCNT, LZCNT, TZCNT, \
BEXTR, PDEP, PEXT, \
BZHI, \
BLCFILL, BLCI, BLCIC, BLCMSK, BLCS, \
BLSFILL, BLSI, BLSIC, BLSMSK, BLSR, \
T1MSKC, TZMSK, \
CRC32, \
CBW, CDQ, CQO, \
CWD, CWDE, CDQE, \
CMOVA, CMOVNA, CMOVAE, CMOVNAE, \
CMOVB, CMOVNB, CMOVBE, CMOVNBE, \
CMOVC, CMOVNC, CMOVE, CMOVNE, \
CMOVG, CMOVNG, CMOVGE, CMOVNGE, \
CMOVL, CMOVNL, CMOVLE, CMOVNLE, \
CMOVO, CMOVNO, CMOVP, CMOVNP, \
CMOVS, CMOVNS, CMOVZ, CMOVNZ, \
CMOVPE, CMOVPO, \
SETA, SETNA, SETAE, SETNAE, \
SETB, SETNB, SETBE, SETNBE, \
SETC, SETNC, SETE, SETNE, \
SETG, SETNG, SETGE, SETNGE, \
SETL, SETNL, SETLE, SETNLE, \
SETO, SETNO, SETP, SETNP, \
SETS, SETNS, SETZ, SETNZ, \
SETPE, SETPO, \
JA, JNA, JAE, JNAE, \
JB, JNB, JBE, JNBE, \
JC, JNC, JE, JNE, \
JG, JNG, JGE, JNGE, \
JL, JNL, JLE, JNLE, \
JO, JNO, JP, JNP, \
JS, JNS, JZ, JNZ, \
JPE, JPO, JMP, \
JRCXZ, JECXZ, \
RET, CALL, \
PAUSE, NOP, \
INT, UD2, \
CPUID, RDTSC, RDTSCP, XGETBV, \
SYSCALL, \
STC, CLC, CMC, \
STD, CLD, \
XADD, XCHG, \
CMPXCHG, CMPXCHG8B, CMPXCHG16B, \
SFENCE, MFENCE, LFENCE, \
PREFETCHNTA, PREFETCHT0, PREFETCHT1, PREFETCHT2, PREFETCH, PREFETCHW, PREFETCHWT1, \
CLFLUSH, CLFLUSHOPT, CLWB, CLZERO
from peachpy.x86_64.mmxsse import \
MOVSS, EXTRACTPS, INSERTPS, \
ADDSS, SUBSS, MULSS, DIVSS, SQRTSS, \
ROUNDSS, MINSS, MAXSS, RCPSS, RSQRTSS, \
CMPSS, COMISS, UCOMISS, \
MOVSD, ADDSD, SUBSD, MULSD, DIVSD, SQRTSD, \
ROUNDSD, MINSD, MAXSD, \
CMPSD, COMISD, UCOMISD, \
MOVAPS, MOVUPS, MOVLPS, MOVNTPS, \
MOVHPS, MOVSLDUP, MOVSHDUP, \
MOVAPD, MOVUPD, MOVLPD, MOVNTPD, \
MOVHPD, MOVDDUP, \
ADDPS, HADDPS, SUBPS, HSUBPS, ADDSUBPS, MULPS, DIVPS, SQRTPS, \
ADDPD, HADDPD, SUBPD, HSUBPD, ADDSUBPD, MULPD, DIVPD, SQRTPD, \
ROUNDPS, MINPS, MAXPS, RCPPS, RSQRTPS, DPPS, \
CMPPS, MOVMSKPS, \
ROUNDPD, MINPD, MAXPD, DPPD, \
CMPPD, MOVMSKPD, \
ANDPS, ANDNPS, ORPS, XORPS, BLENDPS, BLENDVPS, \
ANDPD, ANDNPD, ORPD, XORPD, BLENDPD, BLENDVPD, \
UNPCKLPS, UNPCKHPS, MOVLHPS, MOVHLPS, SHUFPS, \
UNPCKLPD, UNPCKHPD, SHUFPD, \
MOVD, MOVQ, MOVDQ2Q, MOVQ2DQ, MOVDQA, MOVDQU, LDDQU, \
MASKMOVQ, MASKMOVDQU, \
MOVNTQ, MOVNTDQ, MOVNTDQA, \
PMOVSXBW, PMOVSXBD, PMOVSXBQ, PMOVSXWD, PMOVSXWQ, PMOVSXDQ, \
PMOVZXBW, PMOVZXBD, PMOVZXBQ, PMOVZXWD, PMOVZXWQ, PMOVZXDQ, \
PEXTRB, PEXTRW, PEXTRD, PEXTRQ, \
PINSRB, PINSRW, PINSRD, PINSRQ, \
PMOVMSKB, PTEST, \
PADDB, PADDW, PADDD, PADDQ, PADDSB, PADDSW, PADDUSB, PADDUSW, \
PHADDW, PHADDD, PHADDSW, \
PSUBB, PSUBW, PSUBD, PSUBQ, PSUBSB, PSUBSW, PSUBUSB, PSUBUSW, \
PHSUBW, PHSUBD, PHSUBSW, \
PMAXSB, PMAXSW, PMAXSD, PMAXUB, PMAXUW, PMAXUD, \
PMINSB, PMINSW, PMINSD, PMINUB, PMINUW, PMINUD, \
PSLLW, PSLLD, PSLLQ, PSRLW, PSRLD, PSRLQ, PSRAW, PSRAD, \
PMULLW, PMULHW, PMULHUW, PMULLD, PMULDQ, PMULUDQ, \
PMULHRSW, PMADDWD, PMADDUBSW, \
PAVGB, PAVGW, \
PSADBW, MPSADBW, PHMINPOSUW, \
PCMPEQB, PCMPEQW, PCMPEQD, PCMPEQQ, \
PCMPGTB, PCMPGTW, PCMPGTD, PCMPGTQ, \
PABSB, PABSW, PABSD, PSIGNB, PSIGNW, PSIGND, \
PAND, PANDN, POR, PXOR, PBLENDW, PBLENDVB, \
PUNPCKLBW, PUNPCKLWD, PUNPCKLDQ, PUNPCKLQDQ, \
PUNPCKHBW, PUNPCKHWD, PUNPCKHDQ, PUNPCKHQDQ, \
PACKSSWB, PACKSSDW, PACKUSWB, PACKUSDW, \
PSHUFB, PSHUFW, PSHUFLW, PSHUFHW, PSHUFD, \
PSLLDQ, PSRLDQ, PALIGNR, \
PCMPESTRI, PCMPESTRM, PCMPISTRI, PCMPISTRM, \
CVTSS2SI, CVTTSS2SI, CVTSI2SS, \
CVTSD2SI, CVTTSD2SI, CVTSI2SD, \
CVTPS2DQ, CVTTPS2DQ, CVTDQ2PS, \
CVTPD2DQ, CVTTPD2DQ, CVTDQ2PD, \
CVTPS2PI, CVTTPS2PI, CVTPI2PS, \
CVTPD2PI, CVTTPD2PI, CVTPI2PD, \
CVTSD2SS, CVTSS2SD, \
CVTPD2PS, CVTPS2PD, \
LDMXCSR, STMXCSR, \
EMMS
from peachpy.x86_64.avx import \
VMOVSS, VEXTRACTPS, VINSERTPS, \
VADDSS, VSUBSS, VMULSS, VDIVSS, VSQRTSS, \
VROUNDSS, VRNDSCALESS, VRANGESS, \
VMINSS, VMAXSS, VREDUCESS, \
VGETMANTSS, VGETEXPSS, VSCALEFSS, VFIXUPIMMSS, VFPCLASSSS, \
VRCPSS, VRSQRTSS, VRCP14SS, VRSQRT14SS, VRCP28SS, VRSQRT28SS, \
VCMPSS, VCOMISS, VUCOMISS, \
VMOVSD, VADDSD, VSUBSD, VMULSD, VDIVSD, VSQRTSD, \
VROUNDSD, VRNDSCALESD, VRANGESD, \
VMINSD, VMAXSD, VREDUCESD, \
VGETMANTSD, VGETEXPSD, VSCALEFSD, VFIXUPIMMSD, VFPCLASSSD, \
VRCP14SD, VRSQRT14SD, VRCP28SD, VRSQRT28SD, \
VCMPSD, VCOMISD, VUCOMISD, \
VMOVAPS, VMOVUPS, VMOVLPS, VMOVHPS, \
VMASKMOVPS, VMOVMSKPS, VMOVNTPS, \
VBROADCASTSS, VMOVSLDUP, VMOVSHDUP, \
VEXPANDPS, VCOMPRESSPS, \
VGATHERDPS, VGATHERQPS, \
VGATHERPF0DPS, VGATHERPF0QPS, \
VGATHERPF1DPS, VGATHERPF1QPS, \
VSCATTERDPS, VSCATTERQPS, \
VSCATTERPF0DPS, VSCATTERPF0QPS, \
VSCATTERPF1DPS, VSCATTERPF1QPS, \
VMOVAPD, VMOVUPD, VMOVLPD, VMOVHPD, \
VMASKMOVPD, VMOVMSKPD, VMOVNTPD, \
VBROADCASTSD, VMOVDDUP, \
VEXPANDPD, VCOMPRESSPD, \
VGATHERDPD, VGATHERQPD, \
VGATHERPF0DPD, VGATHERPF0QPD, \
VGATHERPF1DPD, VGATHERPF1QPD, \
VSCATTERDPD, VSCATTERQPD, \
VSCATTERPF0DPD, VSCATTERPF0QPD, \
VSCATTERPF1DPD, VSCATTERPF1QPD, \
VADDPS, VHADDPS, VSUBPS, VHSUBPS, VADDSUBPS, VMULPS, VDIVPS, VSQRTPS, \
VADDPD, VHADDPD, VSUBPD, VHSUBPD, VADDSUBPD, VMULPD, VDIVPD, VSQRTPD, \
VROUNDPS, VRNDSCALEPS, VRANGEPS, \
VMINPS, VMAXPS, VREDUCEPS, VDPPS, \
VGETMANTPS, VGETEXPPS, VSCALEFPS, VFIXUPIMMPS, VFPCLASSPS, \
VRCPPS, VRSQRTPS, VRCP14PS, VRSQRT14PS, VRCP28PS, VRSQRT28PS, VEXP2PS, \
VCMPPS, VTESTPS, \
VROUNDPD, VRNDSCALEPD, VRANGEPD, \
VMINPD, VMAXPD, VREDUCEPD, VDPPD, \
VGETMANTPD, VGETEXPPD, VSCALEFPD, VFIXUPIMMPD, VFPCLASSPD, \
VRCP14PD, VRSQRT14PD, VRCP28PD, VRSQRT28PD, VEXP2PD, \
VCMPPD, VTESTPD, \
VANDPS, VANDNPS, VORPS, VXORPS, VBLENDPS, VBLENDVPS, VBLENDMPS, \
VANDPD, VANDNPD, VORPD, VXORPD, VBLENDPD, VBLENDVPD, VBLENDMPD, \
VUNPCKLPS, VUNPCKHPS, VMOVLHPS, VMOVHLPS, VSHUFPS, \
VUNPCKLPD, VUNPCKHPD, VSHUFPD, \
VPERMPS, VPERMILPS, VPERMT2PS, VPERMI2PS, \
VPERMPD, VPERMILPD, VPERMT2PD, VPERMI2PD, \
VMOVD, VMOVQ, VMOVDQA, VMOVDQA32, VMOVDQA64, \
VMOVDQU, VMOVDQU8, VMOVDQU16, VMOVDQU32, VMOVDQU64, VLDDQU, \
VPBROADCASTB, VPBROADCASTW, VPBROADCASTD, VPBROADCASTQ, \
VPEXPANDD, VPEXPANDQ, \
VPCOMPRESSD, VPCOMPRESSQ, \
VPMASKMOVD, VPMASKMOVQ, VMASKMOVDQU, VMOVNTDQ, VMOVNTDQA, \
VPMOVSXBW, VPMOVSXBD, VPMOVSXBQ, VPMOVSXWD, VPMOVSXWQ, VPMOVSXDQ, \
VPMOVZXBW, VPMOVZXBD, VPMOVZXBQ, VPMOVZXWD, VPMOVZXWQ, VPMOVZXDQ, \
VPMOVWB, VPMOVDB, VPMOVDW, VPMOVQB, VPMOVQW, VPMOVQD, \
VPMOVSWB, VPMOVSDB, VPMOVSDW, VPMOVSQB, VPMOVSQW, VPMOVSQD, \
VPMOVUSWB, VPMOVUSDB, VPMOVUSDW, VPMOVUSQB, VPMOVUSQW, VPMOVUSQD, \
VPEXTRB, VPEXTRW, VPEXTRD, VPEXTRQ, \
VPINSRB, VPINSRW, VPINSRD, VPINSRQ, \
VPGATHERDD, VPGATHERDQ, VPGATHERQD, VPGATHERQQ, \
VPSCATTERDD, VPSCATTERDQ, VPSCATTERQD, VPSCATTERQQ, \
VPCONFLICTD, VPCONFLICTQ, \
VPLZCNTD, VPLZCNTQ, \
VPTEST, VPMOVMSKB, \
VPADDB, VPADDW, VPADDD, VPADDQ, VPADDSB, VPADDSW, VPADDUSB, VPADDUSW, \
VPHADDW, VPHADDD, VPHADDSW, \
VPSUBB, VPSUBW, VPSUBD, VPSUBQ, VPSUBSB, VPSUBSW, VPSUBUSB, VPSUBUSW, \
VPHSUBW, VPHSUBD, VPHSUBSW, \
VPMAXSB, VPMAXSW, VPMAXSD, VPMAXSQ, VPMAXUB, VPMAXUW, VPMAXUD, VPMAXUQ, \
VPMINSB, VPMINSW, VPMINSD, VPMINSQ, VPMINUB, VPMINUW, VPMINUD, VPMINUQ, \
VPSLLW, VPSLLD, VPSLLQ, VPSRLW, VPSRLD, VPSRLQ, VPSRAW, VPSRAD, VPSRAQ, \
VPROLD, VPROLQ, VPRORD, VPRORQ, \
VPSLLVW, VPSLLVD, VPSLLVQ, VPSRLVW, VPSRLVD, VPSRLVQ, VPSRAVW, VPSRAVD, VPSRAVQ, \
VPROLVD, VPROLVQ, VPRORVD, VPRORVQ, \
VPMULLW, VPMULHW, VPMULHUW, VPMULLD, VPMULLQ, VPMULDQ, VPMULUDQ, \
VPMULHRSW, VPMADDWD, VPMADDUBSW, \
VPMADD52LUQ, VPMADD52HUQ, \
VPAVGB, VPAVGW, \
VPSADBW, VMPSADBW, VDBPSADBW, VPHMINPOSUW, \
VPCMPEQB, VPCMPEQW, VPCMPEQD, VPCMPEQQ, \
VPCMPGTB, VPCMPGTW, VPCMPGTD, VPCMPGTQ, \
VPCMPB, VPCMPW, VPCMPD, VPCMPQ, \
VPCMPUB, VPCMPUW, VPCMPUD, VPCMPUQ, \
VPABSB, VPABSW, VPABSD, VPABSQ, VPSIGNB, VPSIGNW, VPSIGND, \
VPAND, VPANDD, VPANDQ, VPANDN, VPANDND, VPANDNQ, \
VPOR, VPORD, VPORQ, VPXOR, VPXORD, VPXORQ, \
VPTERNLOGD, VPTERNLOGQ, \
VPBLENDW, VPBLENDVB, VPBLENDD, \
VPBLENDMB, VPBLENDMW, VPBLENDMD, VPBLENDMQ, \
VPUNPCKLBW, VPUNPCKLWD, VPUNPCKLDQ, VPUNPCKLQDQ, \
VPUNPCKHBW, VPUNPCKHWD, VPUNPCKHDQ, VPUNPCKHQDQ, \
VPACKSSWB, VPACKSSDW, VPACKUSWB, VPACKUSDW, \
VPSHUFB, VPSHUFLW, VPSHUFHW, VPSHUFD, \
VPERMB, VPERMW, VPERMD, VPERMQ, \
VPERMT2B, VPERMT2W, VPERMT2D, VPERMT2Q, \
VPERMI2B, VPERMI2W, VPERMI2D, VPERMI2Q, \
VPSLLDQ, VPSRLDQ, VPALIGNR, VALIGND, VALIGNQ, VPMULTISHIFTQB, \
VPOPCNTD, VPOPCNTQ, \
VPCMPESTRI, VPCMPESTRM, VPCMPISTRI, VPCMPISTRM, \
VCVTSS2SI, VCVTSS2USI, VCVTTSS2SI, VCVTTSS2USI, VCVTSI2SS, VCVTUSI2SS, \
VCVTSD2SI, VCVTSD2USI, VCVTTSD2SI, VCVTTSD2USI, VCVTSI2SD, VCVTUSI2SD, \
VCVTPS2DQ, VCVTPS2UDQ, VCVTTPS2DQ, VCVTTPS2UDQ, VCVTDQ2PS, VCVTUDQ2PS, \
VCVTPS2QQ, VCVTPS2UQQ, VCVTTPS2QQ, VCVTTPS2UQQ, VCVTQQ2PS, VCVTUQQ2PS, \
VCVTPD2DQ, VCVTPD2UDQ, VCVTTPD2DQ, VCVTTPD2UDQ, VCVTDQ2PD, VCVTUDQ2PD, \
VCVTPD2QQ, VCVTPD2UQQ, VCVTTPD2QQ, VCVTTPD2UQQ, VCVTQQ2PD, VCVTUQQ2PD, \
VCVTSD2SS, VCVTSS2SD, \
VCVTPD2PS, VCVTPS2PD, \
VCVTPS2PH, VCVTPH2PS, \
VBROADCASTF128, VBROADCASTI128, \
VBROADCASTF32X2, VBROADCASTI32X2, \
VBROADCASTF32X4, VBROADCASTI32X4, \
VBROADCASTF32X8, VBROADCASTI32X8, \
VBROADCASTF64X2, VBROADCASTI64X2, \
VBROADCASTF64X4, VBROADCASTI64X4, \
VEXTRACTF128, VEXTRACTI128, \
VEXTRACTF32X4, VEXTRACTI32X4, \
VEXTRACTF32X8, VEXTRACTI32X8, \
VEXTRACTF64X2, VEXTRACTI64X2, \
VEXTRACTF64X4, VEXTRACTI64X4, \
VINSERTF128, VINSERTI128, \
VINSERTF32X4, VINSERTI32X4, \
VINSERTF32X8, VINSERTI32X8, \
VINSERTF64X2, VINSERTI64X2, \
VINSERTF64X4, VINSERTI64X4, \
VPERM2F128, VPERM2I128, \
VSHUFF32X4, VSHUFI32X4, \
VSHUFF64X2, VSHUFI64X2, \
VPTESTMB, VPTESTMW, VPTESTMD, VPTESTMQ, \
VPTESTNMB, VPTESTNMW, VPTESTNMD, VPTESTNMQ, \
VPMOVB2M, VPMOVW2M, VPMOVD2M, VPMOVQ2M, \
VPMOVM2B, VPMOVM2W, VPMOVM2D, VPMOVM2Q, \
VPBROADCASTMB2Q, VPBROADCASTMW2D, \
VPTESTMB, VPTESTMW, VPTESTMD, VPTESTMQ, \
VPTESTNMB, VPTESTNMW, VPTESTNMD, VPTESTNMQ, \
VLDMXCSR, VSTMXCSR, \
VZEROUPPER, VZEROALL
from peachpy.x86_64.fma import \
VFMADD132SS, VFMADD213SS, VFMADD231SS, VFMADDSS, \
VFMSUB132SS, VFMSUB213SS, VFMSUB231SS, VFMSUBSS, \
VFNMADD132SS, VFNMADD213SS, VFNMADD231SS, VFNMADDSS, \
VFNMSUB132SS, VFNMSUB213SS, VFNMSUB231SS, VFNMSUBSS, \
VFMADD132SD, VFMADD213SD, VFMADD231SD, VFMADDSD, \
VFMSUB132SD, VFMSUB213SD, VFMSUB231SD, VFMSUBSD, \
VFNMADD132SD, VFNMADD213SD, VFNMADD231SD, VFNMADDSD, \
VFNMSUB132SD, VFNMSUB213SD, VFNMSUB231SD, VFNMSUBSD, \
VFMADD132PS, VFMADD213PS, VFMADD231PS, VFMADDPS, \
VFMSUB132PS, VFMSUB213PS, VFMSUB231PS, VFMSUBPS, \
VFNMADD132PS, VFNMADD213PS, VFNMADD231PS, VFNMADDPS, \
VFNMSUB132PS, VFNMSUB213PS, VFNMSUB231PS, VFNMSUBPS, \
VFMADD132PD, VFMADD213PD, VFMADD231PD, VFMADDPD, \
VFMSUB132PD, VFMSUB213PD, VFMSUB231PD, VFMSUBPD, \
VFNMADD132PD, VFNMADD213PD, VFNMADD231PD, VFNMADDPD, \
VFNMSUB132PD, VFNMSUB213PD, VFNMSUB231PD, VFNMSUBPD, \
VFMADDSUB132PS, VFMADDSUB213PS, VFMADDSUB231PS, VFMADDSUBPS, \
VFMSUBADD132PS, VFMSUBADD213PS, VFMSUBADD231PS, VFMSUBADDPS, \
VFMADDSUB132PD, VFMADDSUB213PD, VFMADDSUB231PD, VFMADDSUBPD, \
VFMSUBADD132PD, VFMSUBADD213PD, VFMSUBADD231PD, VFMSUBADDPD
from peachpy.x86_64.mask import \
KADDB, KADDW, KADDD, KADDQ, \
KANDB, KANDW, KANDD, KANDQ, \
KANDNB, KANDNW, KANDND, KANDNQ, \
KORB, KORW, KORD, KORQ, \
KXNORB, KXNORW, KXNORD, KXNORQ, \
KXORB, KXORW, KXORD, KXORQ, \
KMOVB, KMOVW, KMOVD, KMOVQ, \
KNOTB, KNOTW, KNOTD, KNOTQ, \
KUNPCKBW, KUNPCKWD, KUNPCKDQ, \
KTESTB, KTESTW, KTESTD, KTESTQ, \
KORTESTB, KORTESTW, KORTESTD, KORTESTQ, \
KSHIFTLB, KSHIFTLW, KSHIFTLD, KSHIFTLQ, \
KSHIFTRB, KSHIFTRW, KSHIFTRD, KSHIFTRQ
from peachpy.x86_64.crypto import \
AESDEC, AESDECLAST, AESENC, AESENCLAST, AESIMC, AESKEYGENASSIST, \
VAESDEC, VAESDECLAST, VAESENC, VAESENCLAST, VAESIMC, VAESKEYGENASSIST, \
SHA1MSG1, SHA1MSG2, SHA1NEXTE, SHA1RNDS4, SHA256MSG1, SHA256MSG2, SHA256RNDS2, \
PCLMULQDQ, VPCLMULQDQ, \
RDRAND, RDSEED
from peachpy.x86_64.amd import \
PAVGUSB, PMULHRW, \
PF2ID, PF2IW, PI2FW, PI2FD, \
PFADD, PFSUB, PFSUBR, PFMUL, PFMAX, PFMIN, \
PFACC, PFNACC, PFPNACC, PSWAPD, \
PFCMPEQ, PFCMPGT, PFCMPGE, \
PFRCP, PFRCPIT1, PFRCPIT2, PFRSQRT, PFRSQIT1, \
FEMMS, \
MOVNTSS, MOVNTSD, \
INSERTQ, EXTRQ, \
VPPERM, VPCMOV, \
VPROTB, VPROTW, VPROTD, VPROTQ, \
VPSHAB, VPSHAW, VPSHAD, VPSHAQ, \
VPSHLB, VPSHLW, VPSHLD, VPSHLQ, \
VPCOMB, VPCOMW, VPCOMD, VPCOMQ, \
VPCOMUB, VPCOMUW, VPCOMUD, VPCOMUQ, \
VPHADDBW, VPHADDBD, VPHADDBQ, VPHADDWD, VPHADDWQ, VPHADDDQ, \
VPHADDUBW, VPHADDUBD, VPHADDUBQ, VPHADDUWD, VPHADDUWQ, VPHADDUDQ, \
VPHSUBBW, VPHSUBWD, VPHSUBDQ, \
VPMACSDQH, VPMACSDQL, VPMACSDD, VPMACSWD, VPMACSWW, VPMADCSWD, \
VPMACSSDD, VPMACSSDQH, VPMACSSDQL, VPMACSSWD, VPMACSSWW, VPMADCSSWD, \
VFRCZSS, VFRCZSD, VFRCZPS, VFRCZPD, \
VPERMIL2PD, VPERMIL2PS
from peachpy.x86_64.types import \
m64, m128, m128d, m128i, m256, m256d, m256i, m512, m512d, m512i, mmask8, mmask16
| [
2,
770,
2393,
318,
636,
286,
33230,
20519,
5301,
290,
318,
11971,
739,
262,
45157,
1431,
347,
10305,
5964,
13,
198,
2,
220,
220,
220,
4091,
5964,
13,
81,
301,
329,
262,
1336,
2420,
286,
262,
5964,
13,
628,
198,
11748,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
17914,
198,
11748,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
84,
998,
198,
11748,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
9160,
628,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
2301,
6223,
1330,
3611,
30026,
3455,
38804,
11,
3467,
198,
220,
220,
220,
3611,
30026,
3455,
38804,
23,
11,
3611,
30026,
3455,
38804,
1433,
11,
3611,
30026,
3455,
38804,
2624,
11,
3611,
30026,
3455,
38804,
2414,
11,
3467,
198,
220,
220,
220,
20806,
55,
38804,
11,
1395,
12038,
38804,
11,
575,
12038,
38804,
11,
1168,
12038,
38804,
11,
509,
38804,
11,
3467,
198,
220,
220,
220,
374,
897,
11,
374,
65,
87,
11,
48321,
87,
11,
374,
34350,
11,
374,
13396,
11,
374,
10989,
11,
374,
46583,
11,
374,
23,
11,
374,
24,
11,
374,
940,
11,
374,
1157,
11,
374,
1065,
11,
374,
1485,
11,
374,
1415,
11,
374,
1314,
11,
3467,
198,
220,
220,
220,
304,
897,
11,
36649,
87,
11,
9940,
87,
11,
1225,
87,
11,
1658,
72,
11,
1225,
72,
11,
36649,
79,
11,
374,
23,
67,
11,
374,
24,
67,
11,
374,
940,
67,
11,
374,
1157,
67,
11,
374,
1065,
67,
11,
374,
1485,
67,
11,
374,
1415,
67,
11,
374,
1314,
67,
11,
3467,
198,
220,
220,
220,
7877,
11,
275,
87,
11,
43213,
11,
44332,
11,
33721,
11,
2566,
11,
275,
79,
11,
374,
23,
86,
11,
374,
24,
86,
11,
374,
940,
86,
11,
374,
1157,
86,
11,
374,
1065,
86,
11,
374,
1485,
86,
11,
374,
1415,
86,
11,
374,
1314,
86,
11,
3467,
198,
220,
220,
220,
435,
11,
29042,
11,
698,
11,
275,
71,
11,
537,
11,
442,
11,
288,
75,
11,
34590,
11,
3313,
11,
11844,
11,
275,
489,
11,
374,
23,
65,
11,
374,
24,
65,
11,
374,
940,
65,
11,
374,
1157,
65,
11,
374,
1065,
65,
11,
374,
1485,
65,
11,
374,
1415,
65,
11,
374,
1314,
65,
11,
3467,
198,
220,
220,
220,
8085,
15,
11,
8085,
16,
11,
8085,
17,
11,
8085,
18,
11,
8085,
19,
11,
8085,
20,
11,
8085,
21,
11,
8085,
22,
11,
3467,
198,
220,
220,
220,
2124,
3020,
15,
11,
2124,
3020,
16,
11,
2124,
3020,
17,
11,
2124,
3020,
18,
11,
2124,
3020,
19,
11,
2124,
3020,
20,
11,
2124,
3020,
21,
11,
2124,
3020,
22,
11,
2124,
3020,
23,
11,
2124,
3020,
24,
11,
2124,
3020,
940,
11,
2124,
3020,
1157,
11,
2124,
3020,
1065,
11,
2124,
3020,
1485,
11,
2124,
3020,
1415,
11,
2124,
3020,
1314,
11,
3467,
198,
220,
220,
220,
2124,
3020,
1433,
11,
2124,
3020,
1558,
11,
2124,
3020,
1507,
11,
2124,
3020,
1129,
11,
2124,
3020,
1238,
11,
2124,
3020,
2481,
11,
2124,
3020,
1828,
11,
2124,
3020,
1954,
11,
2124,
3020,
1731,
11,
2124,
3020,
1495,
11,
2124,
3020,
2075,
11,
2124,
3020,
1983,
11,
2124,
3020,
2078,
11,
2124,
3020,
1959,
11,
2124,
3020,
1270,
11,
2124,
3020,
3132,
11,
3467,
198,
220,
220,
220,
331,
3020,
15,
11,
331,
3020,
16,
11,
331,
3020,
17,
11,
331,
3020,
18,
11,
331,
3020,
19,
11,
331,
3020,
20,
11,
331,
3020,
21,
11,
331,
3020,
22,
11,
331,
3020,
23,
11,
331,
3020,
24,
11,
331,
3020,
940,
11,
331,
3020,
1157,
11,
331,
3020,
1065,
11,
331,
3020,
1485,
11,
331,
3020,
1415,
11,
331,
3020,
1314,
11,
3467,
198,
220,
220,
220,
331,
3020,
1433,
11,
331,
3020,
1558,
11,
331,
3020,
1507,
11,
331,
3020,
1129,
11,
331,
3020,
1238,
11,
331,
3020,
2481,
11,
331,
3020,
1828,
11,
331,
3020,
1954,
11,
331,
3020,
1731,
11,
331,
3020,
1495,
11,
331,
3020,
2075,
11,
331,
3020,
1983,
11,
331,
3020,
2078,
11,
331,
3020,
1959,
11,
331,
3020,
1270,
11,
331,
3020,
3132,
11,
3467,
198,
220,
220,
220,
1976,
3020,
15,
11,
1976,
3020,
16,
11,
1976,
3020,
17,
11,
1976,
3020,
18,
11,
1976,
3020,
19,
11,
1976,
3020,
20,
11,
1976,
3020,
21,
11,
1976,
3020,
22,
11,
1976,
3020,
23,
11,
1976,
3020,
24,
11,
1976,
3020,
940,
11,
1976,
3020,
1157,
11,
1976,
3020,
1065,
11,
1976,
3020,
1485,
11,
1976,
3020,
1415,
11,
1976,
3020,
1314,
11,
3467,
198,
220,
220,
220,
1976,
3020,
1433,
11,
1976,
3020,
1558,
11,
1976,
3020,
1507,
11,
1976,
3020,
1129,
11,
1976,
3020,
1238,
11,
1976,
3020,
2481,
11,
1976,
3020,
1828,
11,
1976,
3020,
1954,
11,
1976,
3020,
1731,
11,
1976,
3020,
1495,
11,
1976,
3020,
2075,
11,
1976,
3020,
1983,
11,
1976,
3020,
2078,
11,
1976,
3020,
1959,
11,
1976,
3020,
1270,
11,
1976,
3020,
3132,
11,
3467,
198,
220,
220,
220,
479,
15,
11,
479,
16,
11,
479,
17,
11,
479,
18,
11,
479,
19,
11,
479,
20,
11,
479,
21,
11,
479,
22,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
8818,
1330,
15553,
11,
10714,
43015,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
3575,
392,
1330,
18022,
11,
1573,
11,
288,
4775,
11,
10662,
4775,
11,
267,
4775,
11,
289,
4775,
11,
331,
4775,
11,
1976,
4775,
11,
3467,
198,
220,
220,
220,
374,
77,
62,
82,
3609,
11,
374,
89,
62,
82,
3609,
11,
7422,
62,
82,
3609,
11,
374,
67,
62,
82,
3609,
11,
473,
68,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
7752,
12003,
1330,
36052,
11,
26304,
11,
9726,
11,
3467,
198,
220,
220,
220,
406,
6242,
3698,
11,
8355,
16284,
11,
314,
26576,
11,
30826,
27064,
11,
17579,
2885,
11,
3563,
6965,
11,
12672,
2969,
11,
23848,
52,
5222,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
77,
37779,
1330,
399,
2246,
43,
41,
7378,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
41357,
1330,
3467,
198,
220,
220,
220,
27841,
11,
28932,
11,
49169,
11,
311,
15199,
11,
49169,
55,
11,
5984,
48632,
11,
3467,
198,
220,
220,
220,
5357,
11,
6375,
11,
1395,
1581,
11,
5357,
45,
11,
3467,
198,
220,
220,
220,
5626,
11,
399,
7156,
11,
19387,
11,
27196,
11,
3467,
198,
220,
220,
220,
43001,
11,
327,
7378,
11,
3467,
198,
220,
220,
220,
28184,
11,
28184,
40692,
11,
28184,
50,
55,
11,
28184,
50,
55,
35,
11,
28184,
12473,
11,
28184,
11251,
40,
11,
3467,
198,
220,
220,
220,
22205,
11,
347,
4694,
11,
347,
5446,
11,
14503,
11,
37586,
34,
11251,
11,
347,
17887,
2969,
11,
3467,
198,
220,
220,
220,
347,
20802,
11,
347,
12562,
11,
406,
57,
34,
11251,
11,
309,
57,
34,
11251,
11,
3467,
198,
220,
220,
220,
6006,
49,
11,
47341,
11,
6006,
43,
11,
42475,
11,
6006,
49,
55,
11,
47341,
55,
11,
6006,
43,
55,
11,
3467,
198,
220,
220,
220,
6006,
35257,
11,
6006,
11163,
11,
3467,
198,
220,
220,
220,
371,
1581,
11,
371,
3535,
11,
371,
1581,
55,
11,
3467,
198,
220,
220,
220,
371,
9419,
11,
371,
5097,
11,
3467,
198,
220,
220,
220,
8959,
6239,
11,
337,
6239,
11,
337,
6239,
55,
11,
3467,
198,
220,
220,
220,
4522,
3824,
11,
360,
3824,
11,
3467,
198,
220,
220,
220,
12509,
32,
11,
350,
27143,
11,
37586,
11,
3467,
198,
220,
220,
220,
37586,
34,
11251,
11,
406,
57,
34,
11251,
11,
309,
57,
34,
11251,
11,
3467,
198,
220,
220,
220,
347,
6369,
5446,
11,
350,
46162,
11,
350,
13918,
11,
3467,
198,
220,
220,
220,
347,
57,
25374,
11,
3467,
198,
220,
220,
220,
347,
5639,
37,
8267,
11,
347,
5639,
40,
11,
347,
5639,
2149,
11,
347,
5639,
5653,
42,
11,
347,
29814,
11,
3467,
198,
220,
220,
220,
347,
6561,
37,
8267,
11,
347,
6561,
40,
11,
347,
6561,
2149,
11,
347,
6561,
5653,
42,
11,
347,
6561,
49,
11,
3467,
198,
220,
220,
220,
309,
16,
5653,
36222,
11,
309,
57,
5653,
42,
11,
3467,
198,
220,
220,
220,
45623,
2624,
11,
3467,
198,
220,
220,
220,
10078,
54,
11,
6458,
48,
11,
327,
48,
46,
11,
3467,
198,
220,
220,
220,
327,
22332,
11,
24006,
7206,
11,
6458,
48,
36,
11,
3467,
198,
220,
220,
220,
16477,
41576,
11,
16477,
8874,
4535,
11,
16477,
8874,
14242,
11,
16477,
8874,
4535,
36,
11,
3467,
198,
220,
220,
220,
16477,
8874,
33,
11,
16477,
8874,
32819,
11,
16477,
8874,
12473,
11,
16477,
8874,
45,
12473,
11,
3467,
198,
220,
220,
220,
16477,
8874,
34,
11,
16477,
8874,
7792,
11,
327,
11770,
6089,
11,
16477,
8874,
12161,
11,
3467,
198,
220,
220,
220,
16477,
8874,
38,
11,
16477,
8874,
10503,
11,
16477,
8874,
8264,
11,
16477,
8874,
45,
8264,
11,
3467,
198,
220,
220,
220,
16477,
8874,
43,
11,
16477,
8874,
32572,
11,
16477,
8874,
2538,
11,
16477,
8874,
45,
2538,
11,
3467,
198,
220,
220,
220,
16477,
8874,
46,
11,
16477,
8874,
15285,
11,
327,
11770,
8859,
11,
16477,
8874,
22182,
11,
3467,
198,
220,
220,
220,
16477,
8874,
50,
11,
16477,
8874,
8035,
11,
16477,
8874,
57,
11,
16477,
8874,
37371,
11,
3467,
198,
220,
220,
220,
327,
11770,
8859,
36,
11,
327,
11770,
8859,
46,
11,
3467,
198,
220,
220,
220,
311,
20892,
11,
25823,
4535,
11,
25823,
14242,
11,
25823,
4535,
36,
11,
3467,
198,
220,
220,
220,
25823,
33,
11,
25823,
32819,
11,
25823,
12473,
11,
25823,
45,
12473,
11,
3467,
198,
220,
220,
220,
25823,
34,
11,
25823,
7792,
11,
25823,
36,
11,
25823,
12161,
11,
3467,
198,
220,
220,
220,
25823,
38,
11,
25823,
10503,
11,
25823,
8264,
11,
25823,
45,
8264,
11,
3467,
198,
220,
220,
220,
25823,
43,
11,
25823,
32572,
11,
25823,
2538,
11,
25823,
45,
2538,
11,
3467,
198,
220,
220,
220,
25823,
46,
11,
25823,
15285,
11,
25823,
47,
11,
25823,
22182,
11,
3467,
198,
220,
220,
220,
25823,
50,
11,
25823,
8035,
11,
25823,
57,
11,
25823,
37371,
11,
3467,
198,
220,
220,
220,
25823,
11401,
11,
25823,
16402,
11,
3467,
198,
220,
220,
220,
41722,
11,
449,
4535,
11,
449,
14242,
11,
449,
4535,
36,
11,
3467,
198,
220,
220,
220,
449,
33,
11,
449,
32819,
11,
449,
12473,
11,
449,
45,
12473,
11,
3467,
198,
220,
220,
220,
39408,
11,
449,
7792,
11,
449,
36,
11,
449,
12161,
11,
3467,
198,
220,
220,
220,
449,
38,
11,
449,
10503,
11,
449,
8264,
11,
449,
45,
8264,
11,
3467,
198,
220,
220,
220,
449,
43,
11,
449,
32572,
11,
449,
2538,
11,
449,
45,
2538,
11,
3467,
198,
220,
220,
220,
32357,
11,
449,
15285,
11,
21331,
11,
449,
22182,
11,
3467,
198,
220,
220,
220,
26755,
11,
449,
8035,
11,
449,
57,
11,
449,
37371,
11,
3467,
198,
220,
220,
220,
449,
11401,
11,
449,
16402,
11,
449,
7378,
11,
3467,
198,
220,
220,
220,
449,
7397,
55,
57,
11,
449,
2943,
55,
57,
11,
3467,
198,
220,
220,
220,
30826,
11,
42815,
11,
3467,
198,
220,
220,
220,
8147,
19108,
11,
399,
3185,
11,
3467,
198,
220,
220,
220,
17828,
11,
43700,
17,
11,
3467,
198,
220,
220,
220,
9135,
2389,
11,
31475,
4694,
34,
11,
31475,
4694,
8697,
11,
1395,
18851,
33,
53,
11,
3467,
198,
220,
220,
220,
19704,
6173,
7036,
11,
3467,
198,
220,
220,
220,
3563,
34,
11,
327,
5639,
11,
327,
9655,
11,
3467,
198,
220,
220,
220,
48571,
11,
7852,
35,
11,
3467,
198,
220,
220,
220,
1395,
29266,
11,
1395,
3398,
38,
11,
3467,
198,
220,
220,
220,
327,
7378,
55,
3398,
38,
11,
327,
7378,
55,
3398,
38,
23,
33,
11,
327,
7378,
55,
3398,
38,
1433,
33,
11,
3467,
198,
220,
220,
220,
14362,
18310,
11,
32850,
18310,
11,
47629,
18310,
11,
3467,
198,
220,
220,
220,
22814,
37,
2767,
3398,
45,
5603,
11,
22814,
37,
2767,
3398,
51,
15,
11,
22814,
37,
2767,
3398,
51,
16,
11,
22814,
37,
2767,
3398,
51,
17,
11,
22814,
37,
2767,
3398,
11,
22814,
37,
2767,
3398,
54,
11,
22814,
37,
2767,
3398,
39386,
16,
11,
3467,
198,
220,
220,
220,
7852,
3697,
27143,
11,
7852,
3697,
27143,
3185,
51,
11,
7852,
45607,
11,
7852,
57,
34812,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
3020,
34223,
325,
1330,
3467,
198,
220,
220,
220,
28184,
5432,
11,
7788,
5446,
10659,
3705,
11,
29194,
17395,
3705,
11,
3467,
198,
220,
220,
220,
5984,
5258,
50,
11,
13558,
4462,
50,
11,
337,
6239,
5432,
11,
360,
3824,
5432,
11,
49747,
49,
4694,
50,
11,
3467,
198,
220,
220,
220,
371,
19385,
5258,
50,
11,
20625,
5432,
11,
25882,
5432,
11,
13987,
3705,
50,
11,
19340,
48,
49,
4694,
50,
11,
3467,
198,
220,
220,
220,
16477,
3705,
50,
11,
9440,
16744,
11,
471,
9858,
16744,
11,
3467,
198,
220,
220,
220,
28184,
10305,
11,
5984,
5258,
35,
11,
13558,
21800,
11,
337,
6239,
10305,
11,
360,
3824,
10305,
11,
49747,
49,
4694,
35,
11,
3467,
198,
220,
220,
220,
371,
19385,
5258,
35,
11,
20625,
10305,
11,
25882,
10305,
11,
3467,
198,
220,
220,
220,
16477,
3705,
35,
11,
9440,
1797,
35,
11,
471,
9858,
1797,
35,
11,
3467,
198,
220,
220,
220,
28184,
44580,
11,
28184,
52,
3705,
11,
28184,
43,
3705,
11,
28184,
11251,
3705,
11,
3467,
198,
220,
220,
220,
28184,
39,
3705,
11,
28184,
8634,
35,
8577,
11,
28184,
9693,
35,
8577,
11,
3467,
198,
220,
220,
220,
28184,
35349,
11,
28184,
52,
5760,
11,
28184,
43,
5760,
11,
28184,
11251,
5760,
11,
3467,
198,
220,
220,
220,
28184,
39,
5760,
11,
28184,
16458,
8577,
11,
3467,
198,
220,
220,
220,
27841,
3705,
11,
367,
29266,
3705,
11,
28932,
3705,
11,
18070,
10526,
3705,
11,
5984,
5258,
10526,
3705,
11,
337,
6239,
3705,
11,
360,
3824,
3705,
11,
49747,
14181,
3705,
11,
3467,
198,
220,
220,
220,
27841,
5760,
11,
367,
29266,
5760,
11,
28932,
5760,
11,
18070,
10526,
5760,
11,
5984,
5258,
10526,
5760,
11,
337,
6239,
5760,
11,
360,
3824,
5760,
11,
49747,
14181,
5760,
11,
3467,
198,
220,
220,
220,
371,
15919,
3705,
11,
20625,
3705,
11,
25882,
3705,
11,
371,
8697,
3705,
11,
19340,
48,
14181,
3705,
11,
27704,
3705,
11,
3467,
198,
220,
220,
220,
327,
7378,
3705,
11,
28184,
5653,
42,
3705,
11,
3467,
198,
220,
220,
220,
371,
15919,
5760,
11,
20625,
5760,
11,
25882,
5760,
11,
27704,
5760,
11,
3467,
198,
220,
220,
220,
327,
7378,
5760,
11,
28184,
5653,
42,
5760,
11,
3467,
198,
220,
220,
220,
5357,
3705,
11,
5357,
45,
3705,
11,
6375,
3705,
11,
1395,
1581,
3705,
11,
9878,
10619,
3705,
11,
9878,
10619,
53,
3705,
11,
3467,
198,
220,
220,
220,
5357,
5760,
11,
5357,
45,
5760,
11,
6375,
5760,
11,
1395,
1581,
5760,
11,
9878,
10619,
5760,
11,
9878,
10619,
53,
5760,
11,
3467,
198,
220,
220,
220,
4725,
5662,
42,
43,
3705,
11,
4725,
5662,
42,
39,
3705,
11,
28184,
43,
39,
3705,
11,
28184,
6581,
3705,
11,
6006,
36820,
3705,
11,
3467,
198,
220,
220,
220,
4725,
5662,
42,
43,
5760,
11,
4725,
5662,
42,
39,
5760,
11,
6006,
36820,
5760,
11,
3467,
198,
220,
220,
220,
28184,
35,
11,
28184,
48,
11,
28184,
35,
48,
17,
48,
11,
28184,
48,
17,
35,
48,
11,
28184,
35,
48,
32,
11,
28184,
35,
10917,
11,
406,
16458,
10917,
11,
3467,
198,
220,
220,
220,
32337,
42,
44,
8874,
48,
11,
32337,
42,
44,
8874,
35,
10917,
11,
3467,
198,
220,
220,
220,
28184,
11251,
48,
11,
28184,
11251,
35,
48,
11,
28184,
11251,
35,
48,
32,
11,
3467,
198,
220,
220,
220,
3122,
8874,
50,
55,
48802,
11,
3122,
8874,
50,
55,
14529,
11,
3122,
8874,
50,
55,
33,
48,
11,
3122,
8874,
50,
55,
22332,
11,
3122,
8874,
50,
55,
54,
48,
11,
3122,
8874,
50,
55,
35,
48,
11,
3467,
198,
220,
220,
220,
3122,
8874,
40692,
48802,
11,
3122,
8874,
40692,
14529,
11,
3122,
8874,
40692,
33,
48,
11,
3122,
8874,
40692,
22332,
11,
3122,
8874,
40692,
54,
48,
11,
3122,
8874,
40692,
35,
48,
11,
3467,
198,
220,
220,
220,
350,
6369,
5446,
33,
11,
350,
6369,
5446,
54,
11,
350,
6369,
5446,
35,
11,
350,
6369,
5446,
48,
11,
3467,
198,
220,
220,
220,
34279,
12562,
33,
11,
34279,
12562,
54,
11,
34279,
12562,
35,
11,
34279,
12562,
48,
11,
3467,
198,
220,
220,
220,
3122,
8874,
5653,
22764,
11,
19310,
6465,
11,
3467,
198,
220,
220,
220,
350,
2885,
11012,
11,
350,
29266,
54,
11,
350,
2885,
16458,
11,
350,
29266,
48,
11,
350,
2885,
5258,
33,
11,
350,
2885,
5258,
54,
11,
350,
29266,
27155,
11,
350,
29266,
2937,
54,
11,
3467,
198,
220,
220,
220,
9370,
29266,
54,
11,
9370,
2885,
16458,
11,
9370,
2885,
5258,
54,
11,
3467,
198,
220,
220,
220,
6599,
10526,
33,
11,
6599,
10526,
54,
11,
6599,
10526,
35,
11,
6599,
10526,
48,
11,
48189,
4462,
33,
11,
48189,
4462,
54,
11,
6599,
10526,
27155,
11,
6599,
10526,
2937,
54,
11,
3467,
198,
220,
220,
220,
350,
7998,
10526,
54,
11,
350,
7998,
10526,
35,
11,
350,
7998,
52,
4462,
54,
11,
3467,
198,
220,
220,
220,
3122,
25922,
16811,
11,
3122,
25922,
17887,
11,
3122,
25922,
10305,
11,
3122,
25922,
10526,
11,
3122,
25922,
52,
54,
11,
3122,
25922,
8322,
11,
3467,
198,
220,
220,
220,
3122,
1268,
16811,
11,
3122,
1268,
17887,
11,
3122,
1268,
10305,
11,
3122,
1268,
10526,
11,
3122,
1268,
52,
54,
11,
3122,
1268,
8322,
11,
3467,
198,
220,
220,
220,
6599,
3069,
54,
11,
6599,
3069,
35,
11,
6599,
3069,
48,
11,
6599,
7836,
54,
11,
6599,
7836,
35,
11,
6599,
7836,
48,
11,
6599,
20530,
11,
6599,
49,
2885,
11,
3467,
198,
220,
220,
220,
3122,
9994,
54,
11,
3122,
6239,
39,
54,
11,
3122,
6239,
39,
52,
54,
11,
3122,
9994,
35,
11,
3122,
6239,
35,
48,
11,
3122,
6239,
8322,
48,
11,
3467,
198,
220,
220,
220,
3122,
6239,
39,
6998,
54,
11,
3122,
29266,
22332,
11,
3122,
29266,
52,
4462,
54,
11,
3467,
198,
220,
220,
220,
8147,
53,
4579,
11,
8147,
53,
33191,
11,
3467,
198,
220,
220,
220,
6599,
2885,
48802,
11,
337,
3705,
2885,
48802,
11,
9370,
23678,
37997,
52,
54,
11,
3467,
198,
220,
220,
220,
4217,
7378,
36,
40291,
11,
4217,
7378,
36,
48,
54,
11,
4217,
7378,
36,
48,
35,
11,
4217,
7378,
36,
48,
48,
11,
3467,
198,
220,
220,
220,
4217,
44,
6968,
22737,
11,
4217,
44,
6968,
34551,
11,
4217,
44,
6968,
21016,
11,
4217,
44,
6968,
51,
48,
11,
3467,
198,
220,
220,
220,
8147,
4462,
33,
11,
8147,
4462,
54,
11,
8147,
21800,
11,
6599,
16284,
33,
11,
6599,
16284,
54,
11,
6599,
3528,
8575,
11,
3467,
198,
220,
220,
220,
350,
6981,
11,
350,
6981,
45,
11,
350,
1581,
11,
350,
55,
1581,
11,
350,
9148,
10619,
54,
11,
350,
9148,
10619,
44526,
11,
3467,
198,
220,
220,
220,
350,
4944,
5662,
42,
30501,
54,
11,
350,
4944,
5662,
42,
43,
22332,
11,
350,
4944,
5662,
42,
11163,
48,
11,
350,
4944,
5662,
42,
43,
48,
35,
48,
11,
3467,
198,
220,
220,
220,
350,
4944,
5662,
42,
32886,
54,
11,
350,
4944,
5662,
42,
39,
22332,
11,
350,
4944,
5662,
42,
10227,
48,
11,
350,
4944,
5662,
42,
41275,
35,
48,
11,
3467,
198,
220,
220,
220,
47035,
5432,
45607,
11,
47035,
5432,
42955,
11,
47035,
2937,
45607,
11,
47035,
29072,
54,
11,
3467,
198,
220,
220,
220,
6599,
39,
52,
26001,
11,
6599,
39,
52,
24160,
11,
6599,
39,
52,
3697,
54,
11,
6599,
39,
36820,
39,
54,
11,
6599,
39,
52,
26009,
11,
3467,
198,
220,
220,
220,
6599,
3069,
35,
48,
11,
6599,
7836,
35,
48,
11,
40795,
16284,
49,
11,
3467,
198,
220,
220,
220,
4217,
7378,
1546,
5446,
40,
11,
4217,
7378,
1546,
5446,
44,
11,
4217,
7378,
1797,
5446,
40,
11,
4217,
7378,
1797,
5446,
44,
11,
3467,
198,
220,
220,
220,
26196,
4694,
50,
17,
11584,
11,
26196,
51,
4694,
50,
17,
11584,
11,
26196,
4694,
40,
17,
5432,
11,
3467,
198,
220,
220,
220,
26196,
4694,
35,
17,
11584,
11,
26196,
51,
4694,
35,
17,
11584,
11,
26196,
4694,
40,
17,
10305,
11,
3467,
198,
220,
220,
220,
26196,
28820,
17,
35,
48,
11,
26196,
15751,
3705,
17,
35,
48,
11,
26196,
21016,
48,
17,
3705,
11,
3467,
198,
220,
220,
220,
26196,
51,
5760,
17,
35,
48,
11,
26196,
15751,
5760,
17,
35,
48,
11,
26196,
21016,
48,
17,
5760,
11,
3467,
198,
220,
220,
220,
26196,
28820,
17,
11901,
11,
26196,
15751,
3705,
17,
11901,
11,
26196,
7250,
40,
17,
3705,
11,
3467,
198,
220,
220,
220,
26196,
51,
5760,
17,
11901,
11,
26196,
15751,
5760,
17,
11901,
11,
26196,
7250,
40,
17,
5760,
11,
3467,
198,
220,
220,
220,
26196,
4694,
35,
17,
5432,
11,
26196,
4694,
50,
17,
10305,
11,
3467,
198,
220,
220,
220,
26196,
51,
5760,
17,
3705,
11,
26196,
28820,
17,
5760,
11,
3467,
198,
220,
220,
220,
406,
23127,
55,
7902,
49,
11,
3563,
43243,
7902,
49,
11,
3467,
198,
220,
220,
220,
17228,
5653,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
615,
87,
1330,
3467,
198,
220,
220,
220,
16990,
8874,
5432,
11,
569,
6369,
5446,
10659,
3705,
11,
569,
20913,
17395,
3705,
11,
3467,
198,
220,
220,
220,
569,
2885,
5258,
50,
11,
569,
12564,
4462,
50,
11,
16990,
6239,
5432,
11,
569,
33569,
5432,
11,
22269,
48,
49,
4694,
50,
11,
3467,
198,
220,
220,
220,
6453,
19385,
5258,
50,
11,
6453,
45,
5258,
34,
1847,
7597,
11,
6453,
15567,
7597,
11,
3467,
198,
220,
220,
220,
16990,
1268,
5432,
11,
569,
22921,
5432,
11,
6453,
1961,
9598,
7597,
11,
3467,
198,
220,
220,
220,
569,
18851,
10725,
4694,
50,
11,
569,
18851,
6369,
3705,
50,
11,
569,
6173,
21358,
37,
5432,
11,
569,
47084,
8577,
3955,
44,
5432,
11,
569,
5837,
5097,
1921,
5432,
50,
11,
3467,
198,
220,
220,
220,
6453,
34,
3705,
50,
11,
6453,
50,
48,
49,
4694,
50,
11,
6453,
8697,
1415,
5432,
11,
6453,
50,
48,
14181,
1415,
5432,
11,
6453,
8697,
2078,
5432,
11,
6453,
50,
48,
14181,
2078,
5432,
11,
3467,
198,
220,
220,
220,
569,
24187,
3705,
50,
11,
569,
9858,
16744,
11,
569,
9598,
2662,
16744,
11,
3467,
198,
220,
220,
220,
16990,
8874,
10305,
11,
569,
2885,
5258,
35,
11,
569,
12564,
21800,
11,
16990,
6239,
10305,
11,
569,
33569,
10305,
11,
22269,
48,
49,
4694,
35,
11,
3467,
198,
220,
220,
220,
6453,
19385,
5258,
35,
11,
6453,
45,
5258,
34,
1847,
1546,
35,
11,
6453,
15567,
1546,
35,
11,
3467,
198,
220,
220,
220,
16990,
1268,
10305,
11,
569,
22921,
10305,
11,
6453,
1961,
9598,
1546,
35,
11,
3467,
198,
220,
220,
220,
569,
18851,
10725,
4694,
35,
11,
569,
18851,
6369,
3705,
35,
11,
569,
6173,
21358,
37,
10305,
11,
569,
47084,
8577,
3955,
5653,
35,
11,
569,
5837,
5097,
1921,
5432,
35,
11,
3467,
198,
220,
220,
220,
6453,
8697,
1415,
10305,
11,
6453,
50,
48,
14181,
1415,
10305,
11,
6453,
8697,
2078,
10305,
11,
6453,
50,
48,
14181,
2078,
10305,
11,
3467,
198,
220,
220,
220,
569,
24187,
3705,
35,
11,
569,
9858,
1797,
35,
11,
569,
9598,
2662,
1797,
35,
11,
3467,
198,
220,
220,
220,
16990,
8874,
44580,
11,
16990,
8874,
52,
3705,
11,
16990,
8874,
43,
3705,
11,
16990,
8874,
39,
3705,
11,
3467,
198,
220,
220,
220,
16990,
1921,
42,
44,
8874,
3705,
11,
16990,
8874,
5653,
42,
3705,
11,
16990,
8874,
11251,
3705,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
4694,
50,
11,
16990,
8874,
8634,
35,
8577,
11,
16990,
8874,
9693,
35,
8577,
11,
3467,
198,
220,
220,
220,
569,
49864,
6981,
3705,
11,
569,
9858,
32761,
3705,
11,
3467,
198,
220,
220,
220,
34627,
45226,
35,
3705,
11,
34627,
45226,
48,
3705,
11,
3467,
198,
220,
220,
220,
34627,
45226,
42668,
15,
35,
3705,
11,
34627,
45226,
42668,
15,
48,
3705,
11,
3467,
198,
220,
220,
220,
34627,
45226,
42668,
16,
35,
3705,
11,
34627,
45226,
42668,
16,
48,
3705,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
35,
3705,
11,
569,
6173,
1404,
5781,
48,
3705,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
42668,
15,
35,
3705,
11,
569,
6173,
1404,
5781,
42668,
15,
48,
3705,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
42668,
16,
35,
3705,
11,
569,
6173,
1404,
5781,
42668,
16,
48,
3705,
11,
3467,
198,
220,
220,
220,
16990,
8874,
35349,
11,
16990,
8874,
52,
5760,
11,
16990,
8874,
43,
5760,
11,
16990,
8874,
39,
5760,
11,
3467,
198,
220,
220,
220,
16990,
1921,
42,
44,
8874,
5760,
11,
16990,
8874,
5653,
42,
5760,
11,
16990,
8874,
11251,
5760,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
4694,
35,
11,
16990,
8874,
16458,
8577,
11,
3467,
198,
220,
220,
220,
569,
49864,
6981,
5760,
11,
569,
9858,
48296,
4303,
35,
11,
3467,
198,
220,
220,
220,
34627,
45226,
35,
5760,
11,
34627,
45226,
48,
5760,
11,
3467,
198,
220,
220,
220,
34627,
45226,
42668,
15,
35,
5760,
11,
34627,
45226,
42668,
15,
48,
5760,
11,
3467,
198,
220,
220,
220,
34627,
45226,
42668,
16,
35,
5760,
11,
34627,
45226,
42668,
16,
48,
5760,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
35,
5760,
11,
569,
6173,
1404,
5781,
48,
5760,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
42668,
15,
35,
5760,
11,
569,
6173,
1404,
5781,
42668,
15,
48,
5760,
11,
3467,
198,
220,
220,
220,
569,
6173,
1404,
5781,
42668,
16,
35,
5760,
11,
569,
6173,
1404,
5781,
42668,
16,
48,
5760,
11,
3467,
198,
220,
220,
220,
569,
29266,
3705,
11,
569,
39,
29266,
3705,
11,
22269,
10526,
3705,
11,
569,
7998,
10526,
3705,
11,
569,
2885,
5258,
10526,
3705,
11,
16990,
6239,
3705,
11,
569,
33569,
3705,
11,
22269,
48,
14181,
3705,
11,
3467,
198,
220,
220,
220,
569,
29266,
5760,
11,
569,
39,
29266,
5760,
11,
22269,
10526,
5760,
11,
569,
7998,
10526,
5760,
11,
569,
2885,
5258,
10526,
5760,
11,
16990,
6239,
5760,
11,
569,
33569,
5760,
11,
22269,
48,
14181,
5760,
11,
3467,
198,
220,
220,
220,
6453,
15919,
3705,
11,
6453,
45,
5258,
34,
21358,
3705,
11,
6453,
27746,
3705,
11,
3467,
198,
220,
220,
220,
16990,
1268,
3705,
11,
569,
22921,
3705,
11,
6453,
1961,
52,
5222,
3705,
11,
569,
6322,
3705,
11,
3467,
198,
220,
220,
220,
569,
18851,
44,
8643,
3705,
11,
569,
18851,
49864,
3705,
11,
569,
6173,
21358,
37,
3705,
11,
569,
47084,
8577,
3955,
44,
3705,
11,
569,
5837,
31631,
3705,
11,
3467,
198,
220,
220,
220,
6453,
8697,
3705,
11,
6453,
50,
48,
14181,
3705,
11,
6453,
8697,
1415,
3705,
11,
6453,
50,
48,
14181,
1415,
3705,
11,
6453,
8697,
2078,
3705,
11,
6453,
50,
48,
14181,
2078,
3705,
11,
569,
49864,
17,
3705,
11,
3467,
198,
220,
220,
220,
26706,
7378,
3705,
11,
32751,
6465,
3705,
11,
3467,
198,
220,
220,
220,
6453,
15919,
5760,
11,
6453,
45,
5258,
34,
21358,
5760,
11,
6453,
27746,
5760,
11,
3467,
198,
220,
220,
220,
16990,
1268,
5760,
11,
569,
22921,
5760,
11,
6453,
1961,
52,
5222,
5760,
11,
569,
6322,
5760,
11,
3467,
198,
220,
220,
220,
569,
18851,
44,
8643,
5760,
11,
569,
18851,
49864,
5760,
11,
569,
6173,
21358,
37,
5760,
11,
569,
47084,
8577,
3955,
44,
5760,
11,
569,
5837,
5097,
1921,
4303,
35,
11,
3467,
198,
220,
220,
220,
6453,
8697,
1415,
5760,
11,
6453,
50,
48,
14181,
1415,
5760,
11,
6453,
8697,
2078,
5760,
11,
6453,
50,
48,
14181,
2078,
5760,
11,
569,
49864,
17,
5760,
11,
3467,
198,
220,
220,
220,
26706,
7378,
5760,
11,
32751,
6465,
5760,
11,
3467,
198,
220,
220,
220,
569,
6981,
3705,
11,
569,
6981,
45,
3705,
11,
569,
1581,
3705,
11,
569,
55,
1581,
3705,
11,
569,
9148,
10619,
3705,
11,
569,
9148,
10619,
53,
3705,
11,
569,
9148,
10619,
44,
3705,
11,
3467,
198,
220,
220,
220,
569,
6981,
5760,
11,
569,
6981,
45,
5760,
11,
569,
1581,
5760,
11,
569,
55,
1581,
5760,
11,
569,
9148,
10619,
5760,
11,
569,
9148,
10619,
53,
5760,
11,
569,
9148,
10619,
44,
5760,
11,
3467,
198,
220,
220,
220,
569,
4944,
5662,
42,
43,
3705,
11,
569,
4944,
5662,
42,
39,
3705,
11,
16990,
8874,
43,
39,
3705,
11,
16990,
8874,
6581,
3705,
11,
569,
9693,
36820,
3705,
11,
3467,
198,
220,
220,
220,
569,
4944,
5662,
42,
43,
5760,
11,
569,
4944,
5662,
42,
39,
5760,
11,
569,
9693,
36820,
5760,
11,
3467,
198,
220,
220,
220,
569,
18973,
44,
3705,
11,
569,
18973,
44,
4146,
3705,
11,
569,
18973,
13752,
17,
3705,
11,
569,
18973,
8895,
17,
3705,
11,
3467,
198,
220,
220,
220,
569,
18973,
44,
5760,
11,
569,
18973,
44,
4146,
5760,
11,
569,
18973,
13752,
17,
5760,
11,
569,
18973,
8895,
17,
5760,
11,
3467,
198,
220,
220,
220,
16990,
8874,
35,
11,
16990,
8874,
48,
11,
16990,
8874,
35,
48,
32,
11,
16990,
8874,
35,
48,
32,
2624,
11,
16990,
8874,
35,
48,
32,
2414,
11,
3467,
198,
220,
220,
220,
16990,
8874,
35,
10917,
11,
16990,
8874,
35,
10917,
23,
11,
16990,
8874,
35,
10917,
1433,
11,
16990,
8874,
35,
10917,
2624,
11,
16990,
8874,
35,
10917,
2414,
11,
569,
11163,
35,
10917,
11,
3467,
198,
220,
220,
220,
23342,
11473,
41048,
44647,
33,
11,
23342,
11473,
41048,
44647,
54,
11,
23342,
11473,
41048,
44647,
35,
11,
23342,
11473,
41048,
44647,
48,
11,
3467,
198,
220,
220,
220,
23342,
49864,
6981,
35,
11,
23342,
49864,
6981,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
2662,
32761,
35,
11,
569,
5662,
2662,
32761,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
1921,
42,
44,
8874,
35,
11,
569,
5868,
1921,
42,
44,
8874,
48,
11,
16990,
1921,
42,
44,
8874,
35,
10917,
11,
16990,
8874,
11251,
35,
48,
11,
16990,
8874,
11251,
35,
48,
32,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
50,
55,
48802,
11,
569,
5868,
8874,
50,
55,
14529,
11,
569,
5868,
8874,
50,
55,
33,
48,
11,
569,
5868,
8874,
50,
55,
22332,
11,
569,
5868,
8874,
50,
55,
54,
48,
11,
569,
5868,
8874,
50,
55,
35,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
40692,
48802,
11,
569,
5868,
8874,
40692,
14529,
11,
569,
5868,
8874,
40692,
33,
48,
11,
569,
5868,
8874,
40692,
22332,
11,
569,
5868,
8874,
40692,
54,
48,
11,
569,
5868,
8874,
40692,
35,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
45607,
11,
569,
5868,
8874,
11012,
11,
569,
5868,
8874,
42955,
11,
569,
5868,
8874,
40291,
11,
569,
5868,
8874,
48,
54,
11,
569,
5868,
8874,
48,
35,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
17887,
33,
11,
569,
5868,
8874,
10305,
33,
11,
569,
5868,
8874,
10305,
54,
11,
569,
5868,
8874,
50,
40291,
11,
569,
5868,
8874,
50,
48,
54,
11,
569,
5868,
8874,
50,
48,
35,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
2937,
45607,
11,
569,
5868,
8874,
2937,
11012,
11,
569,
5868,
8874,
29072,
54,
11,
569,
5868,
8874,
2937,
40291,
11,
569,
5868,
8874,
2937,
48,
54,
11,
569,
5868,
8874,
2937,
48,
35,
11,
3467,
198,
220,
220,
220,
23342,
6369,
5446,
33,
11,
23342,
6369,
5446,
54,
11,
23342,
6369,
5446,
35,
11,
23342,
6369,
5446,
48,
11,
3467,
198,
220,
220,
220,
23342,
1268,
12562,
33,
11,
23342,
1268,
12562,
54,
11,
23342,
1268,
12562,
35,
11,
23342,
1268,
12562,
48,
11,
3467,
198,
220,
220,
220,
569,
6968,
45226,
16458,
11,
569,
6968,
45226,
35,
48,
11,
569,
6968,
45226,
48,
35,
11,
569,
6968,
45226,
48,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
34,
1404,
5781,
16458,
11,
569,
3705,
34,
1404,
5781,
35,
48,
11,
569,
3705,
34,
1404,
5781,
48,
35,
11,
569,
3705,
34,
1404,
5781,
48,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
1340,
3697,
18379,
35,
11,
569,
5662,
1340,
3697,
18379,
48,
11,
3467,
198,
220,
220,
220,
569,
6489,
57,
34,
11251,
35,
11,
569,
6489,
57,
34,
11251,
48,
11,
3467,
198,
220,
220,
220,
569,
11571,
6465,
11,
569,
5868,
8874,
5653,
22764,
11,
3467,
198,
220,
220,
220,
23342,
2885,
11012,
11,
23342,
29266,
54,
11,
23342,
2885,
16458,
11,
23342,
29266,
48,
11,
23342,
2885,
5258,
33,
11,
23342,
2885,
5258,
54,
11,
23342,
29266,
27155,
11,
23342,
29266,
2937,
54,
11,
3467,
198,
220,
220,
220,
569,
11909,
29266,
54,
11,
569,
11909,
2885,
16458,
11,
569,
11909,
2885,
5258,
54,
11,
3467,
198,
220,
220,
220,
569,
3705,
10526,
33,
11,
569,
3705,
10526,
54,
11,
569,
3705,
10526,
35,
11,
569,
3705,
10526,
48,
11,
569,
3705,
52,
4462,
33,
11,
569,
3705,
52,
4462,
54,
11,
569,
3705,
10526,
27155,
11,
569,
3705,
10526,
2937,
54,
11,
3467,
198,
220,
220,
220,
23342,
7998,
10526,
54,
11,
23342,
7998,
10526,
35,
11,
23342,
7998,
52,
4462,
54,
11,
3467,
198,
220,
220,
220,
23342,
22921,
16811,
11,
23342,
22921,
17887,
11,
23342,
22921,
10305,
11,
23342,
22921,
50,
48,
11,
23342,
22921,
10526,
11,
23342,
22921,
52,
54,
11,
23342,
22921,
8322,
11,
23342,
22921,
52,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
1268,
16811,
11,
569,
5868,
1268,
17887,
11,
569,
5868,
1268,
10305,
11,
569,
5868,
20913,
48,
11,
569,
5868,
1268,
10526,
11,
569,
5868,
1268,
52,
54,
11,
569,
5868,
1268,
8322,
11,
569,
5868,
1268,
52,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
3069,
54,
11,
569,
3705,
3069,
35,
11,
569,
3705,
3069,
48,
11,
569,
3705,
7836,
54,
11,
569,
3705,
7836,
35,
11,
569,
3705,
7836,
48,
11,
569,
3705,
20530,
11,
569,
3705,
49,
2885,
11,
569,
3705,
3861,
48,
11,
3467,
198,
220,
220,
220,
569,
4805,
15173,
11,
569,
4805,
3535,
48,
11,
569,
4805,
12532,
11,
569,
4805,
1581,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
3069,
30133,
11,
569,
3705,
3069,
8898,
11,
569,
3705,
3069,
53,
48,
11,
569,
3705,
7836,
30133,
11,
569,
3705,
7836,
8898,
11,
569,
3705,
7836,
53,
48,
11,
569,
3705,
3861,
30133,
11,
569,
3705,
3861,
8898,
11,
569,
3705,
3861,
53,
48,
11,
3467,
198,
220,
220,
220,
569,
4805,
3535,
8898,
11,
569,
4805,
3535,
53,
48,
11,
569,
4805,
1581,
8898,
11,
569,
4805,
1581,
53,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
9994,
54,
11,
569,
5868,
6239,
39,
54,
11,
569,
5868,
6239,
39,
52,
54,
11,
569,
5868,
9994,
35,
11,
569,
5868,
9994,
48,
11,
569,
5868,
6239,
35,
48,
11,
569,
5868,
6239,
8322,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
6239,
39,
6998,
54,
11,
569,
5868,
29266,
22332,
11,
569,
5868,
29266,
52,
4462,
54,
11,
3467,
198,
220,
220,
220,
569,
5868,
29266,
4309,
41596,
48,
11,
569,
5868,
29266,
4309,
39,
52,
48,
11,
3467,
198,
220,
220,
220,
569,
4537,
53,
4579,
11,
569,
4537,
53,
33191,
11,
3467,
198,
220,
220,
220,
569,
3705,
2885,
48802,
11,
16990,
3705,
2885,
48802,
11,
569,
11012,
3705,
2885,
48802,
11,
569,
11909,
23678,
37997,
52,
54,
11,
3467,
198,
220,
220,
220,
569,
5662,
7378,
36,
40291,
11,
569,
5662,
7378,
36,
48,
54,
11,
569,
5662,
7378,
36,
48,
35,
11,
569,
5662,
7378,
36,
48,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
44,
6968,
22737,
11,
569,
5662,
44,
6968,
34551,
11,
569,
5662,
44,
6968,
21016,
11,
569,
5662,
44,
6968,
51,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
7378,
33,
11,
569,
5662,
7378,
54,
11,
569,
5662,
44,
5760,
11,
569,
5662,
7378,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
44,
5105,
33,
11,
569,
5662,
44,
5105,
54,
11,
569,
5662,
44,
5105,
35,
11,
569,
5662,
44,
5105,
48,
11,
3467,
198,
220,
220,
220,
569,
4537,
4462,
33,
11,
569,
4537,
4462,
54,
11,
569,
4537,
21800,
11,
569,
4537,
4462,
48,
11,
569,
3705,
16284,
33,
11,
569,
3705,
16284,
54,
11,
569,
3705,
3528,
8575,
11,
3467,
198,
220,
220,
220,
23342,
6981,
11,
23342,
6981,
35,
11,
23342,
6981,
48,
11,
23342,
6981,
45,
11,
23342,
6981,
8575,
11,
23342,
6981,
45,
48,
11,
3467,
198,
220,
220,
220,
23342,
1581,
11,
23342,
12532,
11,
23342,
1581,
48,
11,
23342,
55,
1581,
11,
23342,
55,
12532,
11,
23342,
55,
1581,
48,
11,
3467,
198,
220,
220,
220,
23342,
31800,
25294,
35,
11,
23342,
31800,
25294,
48,
11,
3467,
198,
220,
220,
220,
23342,
9148,
10619,
54,
11,
23342,
9148,
10619,
44526,
11,
23342,
9148,
10619,
35,
11,
3467,
198,
220,
220,
220,
23342,
9148,
10619,
10744,
11,
23342,
9148,
10619,
14326,
11,
23342,
9148,
10619,
12740,
11,
23342,
9148,
10619,
49215,
11,
3467,
198,
220,
220,
220,
23342,
4944,
5662,
42,
30501,
54,
11,
23342,
4944,
5662,
42,
43,
22332,
11,
23342,
4944,
5662,
42,
11163,
48,
11,
23342,
4944,
5662,
42,
43,
48,
35,
48,
11,
3467,
198,
220,
220,
220,
23342,
4944,
5662,
42,
32886,
54,
11,
23342,
4944,
5662,
42,
39,
22332,
11,
23342,
4944,
5662,
42,
10227,
48,
11,
23342,
4944,
5662,
42,
41275,
35,
48,
11,
3467,
198,
220,
220,
220,
23342,
8120,
5432,
45607,
11,
23342,
8120,
5432,
42955,
11,
23342,
8120,
2937,
45607,
11,
23342,
8120,
29072,
54,
11,
3467,
198,
220,
220,
220,
569,
3705,
39,
52,
26001,
11,
569,
3705,
39,
52,
3697,
54,
11,
569,
3705,
39,
36820,
39,
54,
11,
569,
3705,
39,
52,
26009,
11,
3467,
198,
220,
220,
220,
569,
18973,
10744,
11,
569,
18973,
14326,
11,
569,
18973,
12740,
11,
569,
18973,
49215,
11,
3467,
198,
220,
220,
220,
569,
18973,
13752,
17,
33,
11,
569,
18973,
13752,
17,
54,
11,
569,
18973,
13752,
17,
35,
11,
569,
18973,
13752,
17,
48,
11,
3467,
198,
220,
220,
220,
569,
18973,
8895,
17,
33,
11,
569,
18973,
8895,
17,
54,
11,
569,
18973,
8895,
17,
35,
11,
569,
18973,
8895,
17,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
3069,
35,
48,
11,
569,
3705,
7836,
35,
48,
11,
23342,
1847,
16284,
49,
11,
26173,
3528,
8575,
11,
26173,
16284,
48,
11,
569,
5868,
16724,
18422,
32297,
40291,
11,
3467,
198,
220,
220,
220,
23342,
3185,
34,
11251,
35,
11,
23342,
3185,
34,
11251,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
7378,
1546,
5446,
40,
11,
569,
5662,
7378,
1546,
5446,
44,
11,
569,
5662,
7378,
1797,
5446,
40,
11,
569,
5662,
7378,
1797,
5446,
44,
11,
3467,
198,
220,
220,
220,
26706,
53,
4694,
50,
17,
11584,
11,
26706,
53,
4694,
50,
17,
2937,
40,
11,
26706,
36392,
4694,
50,
17,
11584,
11,
26706,
36392,
4694,
50,
17,
2937,
40,
11,
26706,
53,
4694,
40,
17,
5432,
11,
26706,
36392,
2937,
40,
17,
5432,
11,
3467,
198,
220,
220,
220,
26706,
53,
4694,
35,
17,
11584,
11,
26706,
53,
4694,
35,
17,
2937,
40,
11,
26706,
36392,
4694,
35,
17,
11584,
11,
26706,
36392,
4694,
35,
17,
2937,
40,
11,
26706,
53,
4694,
40,
17,
10305,
11,
26706,
36392,
2937,
40,
17,
10305,
11,
3467,
198,
220,
220,
220,
26706,
53,
28820,
17,
35,
48,
11,
26706,
53,
28820,
17,
8322,
48,
11,
26706,
53,
15751,
3705,
17,
35,
48,
11,
26706,
53,
15751,
3705,
17,
8322,
48,
11,
26706,
53,
21016,
48,
17,
3705,
11,
26706,
36392,
8322,
48,
17,
3705,
11,
3467,
198,
220,
220,
220,
26706,
53,
28820,
17,
48,
48,
11,
26706,
53,
28820,
17,
52,
48,
48,
11,
26706,
53,
15751,
3705,
17,
48,
48,
11,
26706,
53,
15751,
3705,
17,
52,
48,
48,
11,
26706,
36392,
48,
48,
17,
3705,
11,
26706,
36392,
52,
48,
48,
17,
3705,
11,
3467,
198,
220,
220,
220,
26706,
36392,
5760,
17,
35,
48,
11,
26706,
36392,
5760,
17,
8322,
48,
11,
26706,
53,
15751,
5760,
17,
35,
48,
11,
26706,
53,
15751,
5760,
17,
8322,
48,
11,
26706,
53,
21016,
48,
17,
5760,
11,
26706,
36392,
8322,
48,
17,
5760,
11,
3467,
198,
220,
220,
220,
26706,
36392,
5760,
17,
48,
48,
11,
26706,
36392,
5760,
17,
52,
48,
48,
11,
26706,
53,
15751,
5760,
17,
48,
48,
11,
26706,
53,
15751,
5760,
17,
52,
48,
48,
11,
26706,
36392,
48,
48,
17,
5760,
11,
26706,
36392,
52,
48,
48,
17,
5760,
11,
3467,
198,
220,
220,
220,
26706,
53,
4694,
35,
17,
5432,
11,
26706,
53,
4694,
50,
17,
10305,
11,
3467,
198,
220,
220,
220,
26706,
36392,
5760,
17,
3705,
11,
26706,
53,
28820,
17,
5760,
11,
3467,
198,
220,
220,
220,
26706,
53,
28820,
17,
11909,
11,
26706,
53,
7250,
39,
17,
3705,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
12762,
11,
569,
11473,
41048,
44647,
40,
12762,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
2624,
55,
17,
11,
569,
11473,
41048,
44647,
40,
2624,
55,
17,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
2624,
55,
19,
11,
569,
11473,
41048,
44647,
40,
2624,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
2624,
55,
23,
11,
569,
11473,
41048,
44647,
40,
2624,
55,
23,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
2414,
55,
17,
11,
569,
11473,
41048,
44647,
40,
2414,
55,
17,
11,
3467,
198,
220,
220,
220,
569,
11473,
41048,
34,
1921,
10234,
2414,
55,
19,
11,
569,
11473,
41048,
44647,
40,
2414,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
6369,
5446,
2246,
10234,
12762,
11,
569,
6369,
5446,
10659,
40,
12762,
11,
3467,
198,
220,
220,
220,
569,
6369,
5446,
2246,
10234,
2624,
55,
19,
11,
569,
6369,
5446,
10659,
40,
2624,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
6369,
5446,
2246,
10234,
2624,
55,
23,
11,
569,
6369,
5446,
10659,
40,
2624,
55,
23,
11,
3467,
198,
220,
220,
220,
569,
6369,
5446,
2246,
10234,
2414,
55,
17,
11,
569,
6369,
5446,
10659,
40,
2414,
55,
17,
11,
3467,
198,
220,
220,
220,
569,
6369,
5446,
2246,
10234,
2414,
55,
19,
11,
569,
6369,
5446,
10659,
40,
2414,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
20913,
1137,
10234,
12762,
11,
569,
20913,
17395,
40,
12762,
11,
3467,
198,
220,
220,
220,
569,
20913,
1137,
10234,
2624,
55,
19,
11,
569,
20913,
17395,
40,
2624,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
20913,
1137,
10234,
2624,
55,
23,
11,
569,
20913,
17395,
40,
2624,
55,
23,
11,
3467,
198,
220,
220,
220,
569,
20913,
1137,
10234,
2414,
55,
17,
11,
569,
20913,
17395,
40,
2414,
55,
17,
11,
3467,
198,
220,
220,
220,
569,
20913,
1137,
10234,
2414,
55,
19,
11,
569,
20913,
17395,
40,
2414,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
18973,
44,
17,
37,
12762,
11,
569,
18973,
44,
17,
40,
12762,
11,
3467,
198,
220,
220,
220,
569,
9693,
47588,
2624,
55,
19,
11,
569,
9693,
52,
11674,
2624,
55,
19,
11,
3467,
198,
220,
220,
220,
569,
9693,
47588,
2414,
55,
17,
11,
569,
9693,
52,
11674,
2414,
55,
17,
11,
3467,
198,
220,
220,
220,
569,
11571,
6465,
10744,
11,
569,
11571,
6465,
14326,
11,
569,
11571,
6465,
12740,
11,
569,
11571,
6465,
49215,
11,
3467,
198,
220,
220,
220,
569,
11571,
6465,
45,
10744,
11,
569,
11571,
6465,
45,
14326,
11,
569,
11571,
6465,
45,
12740,
11,
569,
11571,
6465,
32755,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
33,
17,
44,
11,
569,
5868,
8874,
54,
17,
44,
11,
569,
5868,
8874,
35,
17,
44,
11,
569,
5868,
8874,
48,
17,
44,
11,
3467,
198,
220,
220,
220,
569,
5868,
8874,
44,
17,
33,
11,
569,
5868,
8874,
44,
17,
54,
11,
569,
5868,
8874,
44,
17,
35,
11,
569,
5868,
8874,
44,
17,
48,
11,
3467,
198,
220,
220,
220,
23342,
11473,
41048,
44647,
10744,
17,
48,
11,
23342,
11473,
41048,
44647,
14326,
17,
35,
11,
3467,
198,
220,
220,
220,
569,
11571,
6465,
10744,
11,
569,
11571,
6465,
14326,
11,
569,
11571,
6465,
12740,
11,
569,
11571,
6465,
49215,
11,
3467,
198,
220,
220,
220,
569,
11571,
6465,
45,
10744,
11,
569,
11571,
6465,
45,
14326,
11,
569,
11571,
6465,
45,
12740,
11,
569,
11571,
6465,
32755,
48,
11,
3467,
198,
220,
220,
220,
569,
11163,
43243,
7902,
49,
11,
569,
2257,
43243,
7902,
49,
11,
3467,
198,
220,
220,
220,
569,
57,
1137,
2606,
10246,
1137,
11,
569,
57,
34812,
7036,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
69,
2611,
1330,
3467,
198,
220,
220,
220,
569,
23264,
29266,
19924,
5432,
11,
220,
569,
23264,
29266,
26427,
5432,
11,
220,
569,
23264,
29266,
25667,
5432,
11,
220,
569,
23264,
2885,
5258,
50,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
19924,
5432,
11,
220,
569,
37,
5653,
10526,
26427,
5432,
11,
220,
569,
37,
5653,
10526,
25667,
5432,
11,
220,
569,
37,
5653,
52,
4462,
50,
11,
3467,
198,
220,
220,
220,
569,
37,
32755,
29266,
19924,
5432,
11,
569,
37,
32755,
29266,
26427,
5432,
11,
569,
37,
32755,
29266,
25667,
5432,
11,
569,
37,
32755,
2885,
5258,
50,
11,
3467,
198,
220,
220,
220,
569,
43221,
5653,
10526,
19924,
5432,
11,
569,
43221,
5653,
10526,
26427,
5432,
11,
569,
43221,
5653,
10526,
25667,
5432,
11,
569,
43221,
5653,
52,
4462,
50,
11,
3467,
198,
220,
220,
220,
569,
23264,
29266,
19924,
10305,
11,
220,
569,
23264,
29266,
26427,
10305,
11,
220,
569,
23264,
29266,
25667,
10305,
11,
220,
569,
23264,
2885,
5258,
35,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
19924,
10305,
11,
220,
569,
37,
5653,
10526,
26427,
10305,
11,
220,
569,
37,
5653,
10526,
25667,
10305,
11,
220,
569,
37,
5653,
52,
21800,
11,
3467,
198,
220,
220,
220,
569,
37,
32755,
29266,
19924,
10305,
11,
569,
37,
32755,
29266,
26427,
10305,
11,
569,
37,
32755,
29266,
25667,
10305,
11,
569,
37,
32755,
2885,
5258,
35,
11,
3467,
198,
220,
220,
220,
569,
43221,
5653,
10526,
19924,
10305,
11,
569,
43221,
5653,
10526,
26427,
10305,
11,
569,
43221,
5653,
10526,
25667,
10305,
11,
569,
43221,
5653,
52,
21800,
11,
3467,
198,
220,
220,
220,
569,
23264,
29266,
19924,
3705,
11,
220,
569,
23264,
29266,
26427,
3705,
11,
220,
569,
23264,
29266,
25667,
3705,
11,
220,
569,
23264,
29266,
3705,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
19924,
3705,
11,
220,
569,
37,
5653,
10526,
26427,
3705,
11,
220,
569,
37,
5653,
10526,
25667,
3705,
11,
220,
569,
37,
5653,
10526,
3705,
11,
3467,
198,
220,
220,
220,
569,
37,
32755,
29266,
19924,
3705,
11,
569,
37,
32755,
29266,
26427,
3705,
11,
569,
37,
32755,
29266,
25667,
3705,
11,
569,
37,
32755,
29266,
3705,
11,
3467,
198,
220,
220,
220,
569,
43221,
5653,
10526,
19924,
3705,
11,
569,
43221,
5653,
10526,
26427,
3705,
11,
569,
43221,
5653,
10526,
25667,
3705,
11,
569,
43221,
5653,
10526,
3705,
11,
3467,
198,
220,
220,
220,
569,
23264,
29266,
19924,
5760,
11,
220,
569,
23264,
29266,
26427,
5760,
11,
220,
569,
23264,
29266,
25667,
5760,
11,
220,
569,
23264,
29266,
5760,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
19924,
5760,
11,
220,
569,
37,
5653,
10526,
26427,
5760,
11,
220,
569,
37,
5653,
10526,
25667,
5760,
11,
220,
569,
37,
5653,
10526,
5760,
11,
3467,
198,
220,
220,
220,
569,
37,
32755,
29266,
19924,
5760,
11,
569,
37,
32755,
29266,
26427,
5760,
11,
569,
37,
32755,
29266,
25667,
5760,
11,
569,
37,
32755,
29266,
5760,
11,
3467,
198,
220,
220,
220,
569,
43221,
5653,
10526,
19924,
5760,
11,
569,
43221,
5653,
10526,
26427,
5760,
11,
569,
43221,
5653,
10526,
25667,
5760,
11,
569,
43221,
5653,
10526,
5760,
11,
3467,
198,
220,
220,
220,
569,
23264,
2885,
5258,
10526,
19924,
3705,
11,
569,
23264,
2885,
5258,
10526,
26427,
3705,
11,
569,
23264,
2885,
5258,
10526,
25667,
3705,
11,
569,
23264,
2885,
5258,
10526,
3705,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
29266,
19924,
3705,
11,
569,
37,
5653,
10526,
29266,
26427,
3705,
11,
569,
37,
5653,
10526,
29266,
25667,
3705,
11,
569,
37,
5653,
10526,
29266,
3705,
11,
3467,
198,
220,
220,
220,
569,
23264,
2885,
5258,
10526,
19924,
5760,
11,
569,
23264,
2885,
5258,
10526,
26427,
5760,
11,
569,
23264,
2885,
5258,
10526,
25667,
5760,
11,
569,
23264,
2885,
5258,
10526,
5760,
11,
3467,
198,
220,
220,
220,
569,
37,
5653,
10526,
29266,
19924,
5760,
11,
569,
37,
5653,
10526,
29266,
26427,
5760,
11,
569,
37,
5653,
10526,
29266,
25667,
5760,
11,
569,
37,
5653,
10526,
29266,
5760,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
27932,
1330,
3467,
198,
220,
220,
220,
509,
2885,
11012,
11,
509,
29266,
54,
11,
509,
2885,
16458,
11,
509,
29266,
48,
11,
3467,
198,
220,
220,
220,
509,
6981,
33,
11,
509,
6981,
54,
11,
509,
6981,
35,
11,
509,
6981,
48,
11,
3467,
198,
220,
220,
220,
509,
6981,
32819,
11,
509,
6981,
27605,
11,
509,
6981,
8575,
11,
509,
6981,
45,
48,
11,
3467,
198,
220,
220,
220,
509,
1581,
33,
11,
509,
1581,
54,
11,
509,
12532,
11,
509,
1581,
48,
11,
3467,
198,
220,
220,
220,
509,
55,
35510,
33,
11,
509,
55,
35510,
54,
11,
509,
55,
45,
12532,
11,
509,
55,
35510,
48,
11,
3467,
198,
220,
220,
220,
509,
55,
1581,
33,
11,
509,
55,
1581,
54,
11,
509,
55,
12532,
11,
509,
55,
1581,
48,
11,
3467,
198,
220,
220,
220,
46646,
8874,
33,
11,
46646,
8874,
54,
11,
46646,
8874,
35,
11,
46646,
8874,
48,
11,
3467,
198,
220,
220,
220,
509,
11929,
33,
11,
509,
11929,
54,
11,
509,
11929,
35,
11,
509,
11929,
48,
11,
3467,
198,
220,
220,
220,
509,
4944,
5662,
22764,
54,
11,
509,
4944,
5662,
42,
22332,
11,
509,
4944,
5662,
42,
35,
48,
11,
3467,
198,
220,
220,
220,
42293,
6465,
33,
11,
42293,
6465,
54,
11,
42293,
6465,
35,
11,
42293,
6465,
48,
11,
3467,
198,
220,
220,
220,
509,
9863,
6465,
33,
11,
509,
9863,
6465,
54,
11,
509,
9863,
6465,
35,
11,
509,
9863,
6465,
48,
11,
3467,
198,
220,
220,
220,
509,
9693,
5064,
14990,
33,
11,
509,
9693,
5064,
14990,
54,
11,
509,
9693,
32297,
11163,
11,
509,
9693,
5064,
14990,
48,
11,
3467,
198,
220,
220,
220,
509,
9693,
5064,
5446,
33,
11,
509,
9693,
5064,
5446,
54,
11,
509,
9693,
5064,
5446,
35,
11,
509,
9693,
5064,
5446,
48,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
29609,
78,
1330,
3467,
198,
220,
220,
220,
34329,
41374,
11,
34329,
41374,
43,
11262,
11,
34329,
24181,
11,
34329,
1677,
5097,
11262,
11,
34329,
3955,
34,
11,
34329,
20373,
35353,
10705,
8808,
11,
3467,
198,
220,
220,
220,
13753,
1546,
41374,
11,
13753,
1546,
41374,
43,
11262,
11,
13753,
1546,
24181,
11,
13753,
1546,
1677,
5097,
11262,
11,
13753,
1546,
3955,
34,
11,
13753,
1546,
20373,
35353,
10705,
8808,
11,
3467,
198,
220,
220,
220,
25630,
16,
5653,
38,
16,
11,
25630,
16,
5653,
38,
17,
11,
25630,
16,
45,
6369,
9328,
11,
25630,
16,
42336,
5258,
19,
11,
25630,
11645,
5653,
38,
16,
11,
25630,
11645,
5653,
38,
17,
11,
25630,
11645,
42336,
5258,
17,
11,
3467,
198,
220,
220,
220,
4217,
31288,
6239,
48,
35,
48,
11,
23342,
5097,
44,
6239,
48,
35,
48,
11,
3467,
198,
220,
220,
220,
371,
7707,
6981,
11,
31475,
5188,
1961,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
28745,
1330,
3467,
198,
220,
220,
220,
8147,
43490,
27155,
11,
3122,
6239,
17184,
54,
11,
3467,
198,
220,
220,
220,
28223,
17,
2389,
11,
28223,
17,
40,
54,
11,
30434,
17,
24160,
11,
30434,
17,
26009,
11,
3467,
198,
220,
220,
220,
28223,
29266,
11,
350,
10652,
10526,
11,
350,
10652,
10526,
49,
11,
350,
23264,
6239,
11,
28223,
22921,
11,
350,
23264,
1268,
11,
3467,
198,
220,
220,
220,
28223,
26861,
11,
28223,
45,
26861,
11,
350,
5837,
45,
26861,
11,
6599,
54,
35349,
11,
3467,
198,
220,
220,
220,
350,
4851,
7378,
36,
48,
11,
350,
4851,
44,
6968,
51,
11,
350,
4851,
44,
6968,
36,
11,
3467,
198,
220,
220,
220,
28223,
7397,
47,
11,
28223,
7397,
47,
2043,
16,
11,
28223,
7397,
47,
2043,
17,
11,
28223,
6998,
48,
14181,
11,
28223,
6998,
48,
2043,
16,
11,
3467,
198,
220,
220,
220,
376,
3620,
5653,
11,
3467,
198,
220,
220,
220,
28184,
45,
4694,
50,
11,
28184,
45,
4694,
35,
11,
3467,
198,
220,
220,
220,
29194,
17395,
48,
11,
7788,
5446,
48,
11,
3467,
198,
220,
220,
220,
569,
10246,
1137,
44,
11,
569,
5662,
44,
8874,
11,
3467,
198,
220,
220,
220,
569,
4805,
2394,
33,
11,
569,
4805,
2394,
54,
11,
569,
4805,
2394,
35,
11,
569,
4805,
2394,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
39,
6242,
11,
569,
3705,
7801,
54,
11,
569,
3705,
39,
2885,
11,
569,
3705,
7801,
48,
11,
3467,
198,
220,
220,
220,
569,
3705,
6581,
33,
11,
569,
3705,
6581,
54,
11,
569,
3705,
6581,
35,
11,
569,
3705,
6581,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
2662,
33,
11,
569,
5662,
2662,
54,
11,
569,
5662,
2662,
35,
11,
569,
5662,
2662,
48,
11,
3467,
198,
220,
220,
220,
569,
5662,
2662,
10526,
11,
569,
5662,
2662,
52,
54,
11,
569,
5662,
2662,
8322,
11,
569,
5662,
2662,
52,
48,
11,
3467,
198,
220,
220,
220,
569,
11909,
2885,
11012,
54,
11,
569,
11909,
2885,
11012,
35,
11,
569,
11909,
2885,
11012,
48,
11,
569,
11909,
29266,
22332,
11,
569,
11909,
29266,
54,
48,
11,
569,
11909,
2885,
16458,
48,
11,
3467,
198,
220,
220,
220,
569,
11909,
29266,
10526,
54,
11,
569,
11909,
29266,
10526,
35,
11,
569,
11909,
29266,
10526,
48,
11,
569,
11909,
29266,
52,
22332,
11,
569,
11909,
29266,
52,
54,
48,
11,
569,
11909,
29266,
8322,
48,
11,
3467,
198,
220,
220,
220,
23342,
7998,
10526,
48802,
11,
23342,
7998,
10526,
22332,
11,
23342,
7998,
10526,
35,
48,
11,
3467,
198,
220,
220,
220,
569,
5868,
2246,
10305,
48,
39,
11,
569,
5868,
2246,
10305,
9711,
11,
569,
5868,
2246,
10305,
35,
11,
569,
5868,
2246,
17887,
35,
11,
569,
5868,
2246,
17887,
54,
11,
569,
5868,
2885,
7902,
22332,
11,
3467,
198,
220,
220,
220,
569,
5868,
2246,
5432,
16458,
11,
569,
5868,
2246,
5432,
35,
48,
39,
11,
569,
5868,
2246,
5432,
35,
9711,
11,
569,
5868,
2246,
5432,
22332,
11,
569,
5868,
2246,
5432,
17947,
11,
569,
5868,
2885,
49155,
22332,
11,
3467,
198,
220,
220,
220,
569,
37,
7397,
57,
5432,
11,
569,
37,
7397,
57,
10305,
11,
569,
37,
7397,
57,
3705,
11,
569,
37,
7397,
57,
5760,
11,
3467,
198,
220,
220,
220,
569,
18973,
44,
4146,
17,
5760,
11,
569,
18973,
44,
4146,
17,
3705,
198,
198,
6738,
47565,
9078,
13,
87,
4521,
62,
2414,
13,
19199,
1330,
3467,
198,
220,
220,
220,
285,
2414,
11,
285,
12762,
11,
285,
12762,
67,
11,
285,
12762,
72,
11,
285,
11645,
11,
285,
11645,
67,
11,
285,
11645,
72,
11,
285,
25836,
11,
285,
25836,
67,
11,
285,
25836,
72,
11,
8085,
2093,
23,
11,
8085,
2093,
1433,
198
] | 1.724553 | 9,225 |
#!/usr/bin/python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
print(dir_path)
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
198,
11748,
28686,
198,
15908,
62,
6978,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
5305,
6978,
7,
834,
7753,
834,
4008,
198,
4798,
7,
15908,
62,
6978,
8,
198
] | 2.380952 | 42 |
from setuptools import setup
VERSION = "0.0.1"
setup(
name="fast_docker_web",
version=VERSION,
description="Wrapps the php web code with Docker environment",
long_description_content_type="text/markdown",
long_description=readme(),
keywords="Docker web php development",
url="https://github.com/danilocgsilva/fast-docker-web",
author="Danilo Silva",
author_email="[email protected]",
packages=["fast_docker_web"],
entry_points={"console_scripts": ["fdocker=fast_docker_web.__main__:main"],},
include_package_data=True
)
| [
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
43717,
796,
366,
15,
13,
15,
13,
16,
1,
198,
198,
40406,
7,
198,
220,
220,
220,
1438,
2625,
7217,
62,
45986,
62,
12384,
1600,
198,
220,
220,
220,
2196,
28,
43717,
11,
198,
220,
220,
220,
6764,
2625,
36918,
41799,
262,
39347,
3992,
2438,
351,
25716,
2858,
1600,
198,
220,
220,
220,
890,
62,
11213,
62,
11299,
62,
4906,
2625,
5239,
14,
4102,
2902,
1600,
198,
220,
220,
220,
890,
62,
11213,
28,
961,
1326,
22784,
198,
220,
220,
220,
26286,
2625,
35,
12721,
3992,
39347,
2478,
1600,
198,
220,
220,
220,
19016,
2625,
5450,
1378,
12567,
13,
785,
14,
25604,
346,
420,
14542,
346,
6862,
14,
7217,
12,
45986,
12,
12384,
1600,
198,
220,
220,
220,
1772,
2625,
21174,
18526,
23720,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
32057,
31,
25604,
346,
420,
14542,
346,
6862,
13,
1326,
1600,
198,
220,
220,
220,
10392,
28,
14692,
7217,
62,
45986,
62,
12384,
33116,
198,
220,
220,
220,
5726,
62,
13033,
28,
4895,
41947,
62,
46521,
1298,
14631,
16344,
12721,
28,
7217,
62,
45986,
62,
12384,
13,
834,
12417,
834,
25,
12417,
33116,
5512,
198,
220,
220,
220,
2291,
62,
26495,
62,
7890,
28,
17821,
198,
8,
628
] | 2.778846 | 208 |
from datetime import date
CURRENT_DATE = date.today().strftime("%Y-%m-%e")
# FETCH_MEAL_RECORDS = 'SELECT * FROM app_slackuser;'
FETCH_MEAL_RECORDS = f"""
SELECT
to_char(app_mealservice.date, 'DD-MM-YYYY'),
app_mealservice.date_modified,
app_mealservice.user_id,
app_slackuser.firstname,
app_slackuser.lastname,
app_slackuser.user_type,
app_mealservice.breakfast,
app_mealservice.lunch
FROM
app_mealservice
LEFT JOIN
app_slackuser
ON
app_mealservice.user_id = app_slackuser.id
WHERE
date < '{CURRENT_DATE}'
ORDER BY
app_mealservice.date
DESC;
"""
DELETE_MEAL_RECORDS = f"""
DELETE FROM
app_mealservice
WHERE
date < '{CURRENT_DATE}';
"""
FETCH_PANTRY_RECORDS = f"""
SELECT
app_pantry.date,
app_slackuser.id,
app_slackuser.firstname,
app_slackuser.lastname,
app_slackuser.user_type
FROM
app_pantry
LEFT JOIN
app_slackuser
ON
app_pantry.user_id=app_slackuser.id
WHERE
date <= '{CURRENT_DATE}'
ORDER BY
app_pantry.date
DESC;
"""
DELETE_PANTRY_RECORDS = f"""
DELETE FROM
app_pantry
WHERE
date < '{CURRENT_DATE}';
"""
| [
6738,
4818,
8079,
1330,
3128,
198,
198,
34,
39237,
62,
35,
6158,
796,
3128,
13,
40838,
22446,
2536,
31387,
7203,
4,
56,
12,
4,
76,
12,
4,
68,
4943,
198,
198,
2,
376,
2767,
3398,
62,
11682,
1847,
62,
38827,
1581,
5258,
796,
705,
46506,
1635,
16034,
598,
62,
6649,
441,
7220,
26,
6,
198,
37,
2767,
3398,
62,
11682,
1847,
62,
38827,
1581,
5258,
796,
277,
37811,
198,
46506,
198,
220,
220,
220,
284,
62,
10641,
7,
1324,
62,
1326,
874,
712,
501,
13,
4475,
11,
705,
16458,
12,
12038,
12,
26314,
26314,
33809,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
4475,
62,
41771,
11,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
7220,
62,
312,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
11085,
3672,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
12957,
3672,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
7220,
62,
4906,
11,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
9032,
7217,
11,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
75,
3316,
198,
10913,
2662,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
198,
2538,
9792,
32357,
1268,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
198,
1340,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
7220,
62,
312,
796,
598,
62,
6649,
441,
7220,
13,
312,
198,
47357,
198,
220,
220,
220,
3128,
1279,
705,
90,
34,
39237,
62,
35,
6158,
92,
6,
198,
12532,
1137,
11050,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
13,
4475,
198,
30910,
34,
26,
198,
37811,
198,
198,
7206,
2538,
9328,
62,
11682,
1847,
62,
38827,
1581,
5258,
796,
277,
37811,
198,
7206,
2538,
9328,
16034,
198,
220,
220,
220,
598,
62,
1326,
874,
712,
501,
198,
47357,
198,
220,
220,
220,
3128,
1279,
705,
90,
34,
39237,
62,
35,
6158,
92,
17020,
198,
37811,
198,
198,
37,
2767,
3398,
62,
47,
1565,
40405,
62,
38827,
1581,
5258,
796,
277,
37811,
198,
46506,
198,
220,
220,
220,
598,
62,
79,
21238,
13,
4475,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
312,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
11085,
3672,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
12957,
3672,
11,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
13,
7220,
62,
4906,
198,
10913,
2662,
198,
220,
220,
220,
598,
62,
79,
21238,
198,
2538,
9792,
32357,
1268,
198,
220,
220,
220,
598,
62,
6649,
441,
7220,
198,
1340,
198,
220,
220,
220,
598,
62,
79,
21238,
13,
7220,
62,
312,
28,
1324,
62,
6649,
441,
7220,
13,
312,
198,
47357,
198,
220,
220,
220,
3128,
19841,
705,
90,
34,
39237,
62,
35,
6158,
92,
6,
198,
12532,
1137,
11050,
198,
220,
220,
220,
598,
62,
79,
21238,
13,
4475,
198,
30910,
34,
26,
198,
37811,
198,
198,
7206,
2538,
9328,
62,
47,
1565,
40405,
62,
38827,
1581,
5258,
796,
277,
37811,
198,
7206,
2538,
9328,
16034,
198,
220,
220,
220,
598,
62,
79,
21238,
198,
47357,
198,
220,
220,
220,
3128,
1279,
705,
90,
34,
39237,
62,
35,
6158,
92,
17020,
198,
37811,
198
] | 2.068015 | 544 |
import requests
import pytz
from datetime import datetime, timedelta
from bs4 import BeautifulSoup
from model.news import News
from database import Database
import locale
from urllib.request import Request, urlopen
from utils.paragraph_utils import ParagraphUtils
from utils.anchor_utils import AnchorUtils
from utils.log_utils import LogUtils
db = None
def get_news_content_by_href(href):
""" Returns the paragraphs of the article """
paragraphs = []
hdr = {'User-Agent': 'Mozilla/5.0'}
req = Request(href, headers=hdr)
page = urlopen(req).read()
soup = BeautifulSoup(page, 'html.parser')
fullContent = soup.find('div', itemprop="articleBody")
# Get the texts that are outside paragraphs
article_paragraphs = fullContent.find_all('p', recursive=False)
for paragraph in article_paragraphs:
text = paragraph.getText()
if ParagraphUtils.is_valid(text):
text = ParagraphUtils.sanitize(text)
paragraphs.extend(ParagraphUtils.split(text))
# get publish time
datetime_object = get_metadata(soup)
return paragraphs, datetime_object
if __name__ == "__main__":
scrap()
| [
11748,
7007,
198,
11748,
12972,
22877,
198,
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198,
6738,
2746,
13,
10827,
1330,
3000,
198,
6738,
6831,
1330,
24047,
198,
11748,
36693,
198,
6738,
2956,
297,
571,
13,
25927,
1330,
19390,
11,
19016,
9654,
198,
6738,
3384,
4487,
13,
20360,
62,
26791,
1330,
2547,
6111,
18274,
4487,
198,
6738,
3384,
4487,
13,
3702,
273,
62,
26791,
1330,
29253,
273,
18274,
4487,
198,
6738,
3384,
4487,
13,
6404,
62,
26791,
1330,
5972,
18274,
4487,
198,
198,
9945,
796,
6045,
628,
628,
198,
198,
4299,
651,
62,
10827,
62,
11299,
62,
1525,
62,
33257,
7,
33257,
2599,
198,
220,
220,
220,
37227,
16409,
262,
23549,
286,
262,
2708,
37227,
198,
220,
220,
220,
23549,
796,
17635,
198,
220,
220,
220,
220,
198,
220,
220,
220,
289,
7109,
796,
1391,
6,
12982,
12,
36772,
10354,
705,
44,
8590,
5049,
14,
20,
13,
15,
6,
92,
198,
220,
220,
220,
43089,
796,
19390,
7,
33257,
11,
24697,
28,
71,
7109,
8,
198,
220,
220,
220,
2443,
796,
19016,
9654,
7,
42180,
737,
961,
3419,
198,
220,
220,
220,
17141,
796,
23762,
50,
10486,
7,
7700,
11,
705,
6494,
13,
48610,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1336,
19746,
796,
17141,
13,
19796,
10786,
7146,
3256,
2378,
22930,
2625,
20205,
25842,
4943,
198,
220,
220,
220,
1303,
3497,
262,
13399,
326,
389,
2354,
23549,
198,
220,
220,
220,
2708,
62,
20360,
82,
796,
1336,
19746,
13,
19796,
62,
439,
10786,
79,
3256,
45115,
28,
25101,
8,
198,
220,
220,
220,
329,
7322,
287,
2708,
62,
20360,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
7322,
13,
1136,
8206,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2547,
6111,
18274,
4487,
13,
271,
62,
12102,
7,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
2547,
6111,
18274,
4487,
13,
12807,
270,
1096,
7,
5239,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23549,
13,
2302,
437,
7,
10044,
6111,
18274,
4487,
13,
35312,
7,
5239,
4008,
628,
220,
220,
220,
1303,
651,
7715,
640,
198,
220,
220,
220,
4818,
8079,
62,
15252,
796,
651,
62,
38993,
7,
82,
10486,
8,
628,
220,
220,
220,
1441,
23549,
11,
4818,
8079,
62,
15252,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
15881,
3419,
198
] | 2.829736 | 417 |
from adaline_gd import *
import matplotlib.pyplot as plt
import numpy as np
# ### Reading-in the Iris data
import pandas as pd
df = pd.read_csv('https://archive.ics.uci.edu/ml/'
'machine-learning-databases/iris/iris.data', header=None)
df.tail()
# select setosa and versicolor
y = df.iloc[0:100, 4].values
y = np.where(y == 'Iris-setosa', -1, 1)
# extract sepal length and petal length
X = df.iloc[0:100, [0, 2]].values
# ### adaline
fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(8, 4))
ada1 = AdalineGD(n_iter=10, eta=0.01).fit(X, y)
ax[0].plot(range(1, len(ada1.cost_) + 1), np.log10(ada1.cost_), marker='o')
ax[0].set_xlabel('Epochs')
ax[0].set_ylabel('log(Sum-squared-error)')
ax[0].set_title('Adaline - Learning rate 0.01')
ada2 = AdalineGD(n_iter=10, eta=0.0001).fit(X, y)
ax[1].plot(range(1, len(ada2.cost_) + 1), ada2.cost_, marker='o')
ax[1].set_xlabel('Epochs')
ax[1].set_ylabel('Sum-squared-error')
ax[1].set_title('Adaline - Learning rate 0.0001')
plt.tight_layout()
# plt.savefig('./adaline_1.png', dpi=300)
plt.show()
| [
6738,
512,
20663,
62,
21287,
1330,
1635,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
198,
2,
44386,
11725,
12,
259,
262,
34230,
1366,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
7568,
796,
279,
67,
13,
961,
62,
40664,
10786,
5450,
1378,
17474,
13,
873,
13,
42008,
13,
15532,
14,
4029,
14,
6,
198,
220,
220,
220,
220,
220,
220,
220,
705,
30243,
12,
40684,
12,
19608,
18826,
14,
29616,
14,
29616,
13,
7890,
3256,
13639,
28,
14202,
8,
198,
7568,
13,
13199,
3419,
198,
198,
2,
2922,
900,
8546,
290,
1646,
27045,
273,
198,
88,
796,
47764,
13,
346,
420,
58,
15,
25,
3064,
11,
604,
4083,
27160,
198,
88,
796,
45941,
13,
3003,
7,
88,
6624,
705,
40,
2442,
12,
2617,
8546,
3256,
532,
16,
11,
352,
8,
198,
198,
2,
7925,
384,
18596,
4129,
290,
4273,
282,
4129,
198,
55,
796,
47764,
13,
346,
420,
58,
15,
25,
3064,
11,
685,
15,
11,
362,
60,
4083,
27160,
628,
198,
2,
44386,
512,
20663,
198,
5647,
11,
7877,
796,
458,
83,
13,
7266,
489,
1747,
7,
77,
8516,
28,
16,
11,
299,
4033,
82,
28,
17,
11,
2336,
7857,
16193,
23,
11,
604,
4008,
198,
198,
4763,
16,
796,
1215,
20663,
45113,
7,
77,
62,
2676,
28,
940,
11,
2123,
64,
28,
15,
13,
486,
737,
11147,
7,
55,
11,
331,
8,
198,
897,
58,
15,
4083,
29487,
7,
9521,
7,
16,
11,
18896,
7,
4763,
16,
13,
15805,
62,
8,
1343,
352,
828,
45941,
13,
6404,
940,
7,
4763,
16,
13,
15805,
62,
828,
18364,
11639,
78,
11537,
198,
897,
58,
15,
4083,
2617,
62,
87,
18242,
10786,
13807,
5374,
82,
11537,
198,
897,
58,
15,
4083,
2617,
62,
2645,
9608,
10786,
6404,
7,
13065,
12,
16485,
1144,
12,
18224,
8,
11537,
198,
897,
58,
15,
4083,
2617,
62,
7839,
10786,
2782,
20663,
532,
18252,
2494,
657,
13,
486,
11537,
198,
198,
4763,
17,
796,
1215,
20663,
45113,
7,
77,
62,
2676,
28,
940,
11,
2123,
64,
28,
15,
13,
18005,
737,
11147,
7,
55,
11,
331,
8,
198,
897,
58,
16,
4083,
29487,
7,
9521,
7,
16,
11,
18896,
7,
4763,
17,
13,
15805,
62,
8,
1343,
352,
828,
512,
64,
17,
13,
15805,
62,
11,
18364,
11639,
78,
11537,
198,
897,
58,
16,
4083,
2617,
62,
87,
18242,
10786,
13807,
5374,
82,
11537,
198,
897,
58,
16,
4083,
2617,
62,
2645,
9608,
10786,
13065,
12,
16485,
1144,
12,
18224,
11537,
198,
897,
58,
16,
4083,
2617,
62,
7839,
10786,
2782,
20663,
532,
18252,
2494,
657,
13,
18005,
11537,
198,
198,
489,
83,
13,
33464,
62,
39786,
3419,
198,
2,
458,
83,
13,
21928,
5647,
7,
4458,
14,
324,
20663,
62,
16,
13,
11134,
3256,
288,
14415,
28,
6200,
8,
198,
489,
83,
13,
12860,
3419,
198
] | 2.226216 | 473 |
from django import template
from django.utils.html import escape
from django.utils.safestring import mark_safe
from django.utils.html import format_html
register = template.Library()
# Rows
@register.simple_tag
@register.simple_tag
# Columns
@register.simple_tag
@register.simple_tag
# Container
@register.simple_tag
@register.simple_tag | [
6738,
42625,
14208,
1330,
11055,
198,
6738,
42625,
14208,
13,
26791,
13,
6494,
1330,
6654,
198,
6738,
42625,
14208,
13,
26791,
13,
49585,
395,
1806,
1330,
1317,
62,
21230,
198,
6738,
42625,
14208,
13,
26791,
13,
6494,
1330,
5794,
62,
6494,
628,
198,
30238,
796,
11055,
13,
23377,
3419,
198,
198,
2,
371,
1666,
198,
31,
30238,
13,
36439,
62,
12985,
198,
198,
31,
30238,
13,
36439,
62,
12985,
628,
198,
2,
29201,
82,
198,
31,
30238,
13,
36439,
62,
12985,
198,
198,
31,
30238,
13,
36439,
62,
12985,
198,
198,
2,
43101,
198,
31,
30238,
13,
36439,
62,
12985,
198,
198,
31,
30238,
13,
36439,
62,
12985
] | 3.203704 | 108 |
import json
import chardet
import codecs
import os.path
from . import page
from . import entry
| [
11748,
33918,
198,
11748,
442,
446,
316,
198,
11748,
40481,
82,
198,
11748,
28686,
13,
6978,
198,
198,
6738,
764,
1330,
2443,
198,
6738,
764,
1330,
5726,
628
] | 3.464286 | 28 |
# Generated by Django 2.2.3 on 2019-08-07 16:56
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
13,
18,
319,
13130,
12,
2919,
12,
2998,
1467,
25,
3980,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
from .io_file import *
from .io_data import *
from .io_model import *
from .io_args import *
| [
6738,
764,
952,
62,
7753,
1330,
1635,
198,
6738,
764,
952,
62,
7890,
1330,
1635,
198,
6738,
764,
952,
62,
19849,
1330,
1635,
198,
6738,
764,
952,
62,
22046,
1330,
1635,
198
] | 2.90625 | 32 |
from django.contrib import admin
# Register your models here.
from .models import Menu
admin.site.register(Menu, BaseAdmin)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
198,
2,
17296,
534,
4981,
994,
13,
198,
198,
6738,
764,
27530,
1330,
21860,
628,
628,
198,
198,
28482,
13,
15654,
13,
30238,
7,
23381,
11,
7308,
46787,
8,
628,
198
] | 3.325 | 40 |
import copy
import utils
| [
11748,
4866,
198,
11748,
3384,
4487,
628,
628
] | 3.5 | 8 |
import numpy as np
import onnx
import onnxruntime
from layers import *
from data import voc, coco
import torch
import cv2
if __name__ == '__main__':
from data import VOC_CLASSES as labels
num_classes = 21
cfg = voc
priorbox = PriorBox(cfg)
with torch.no_grad():
priors = priorbox.forward()
print('prior:', priors[0, :])
detect = Detect(num_classes, 0, 200, 0.01, 0.45)
model = onnx.load('ssd_vgg300.onnx')
onnx.checker.check_model(model)
ort_session = onnxruntime.InferenceSession("ssd_vgg300.onnx")
img = cv2.imread('../data/car.jpg')
x = cv2.resize(img, (300, 300)).astype(np.float32)
print(x.shape)
print(x[0,0,:])
x -= np.array([104.0, 117.0, 123.0])
x = x.astype(np.float32)
print(x.shape)
x = np.transpose(x, (2, 0, 1))
x = x.reshape((1, x.shape[0], x.shape[1], x.shape[2]))
print(x.shape)
ort_inputs = {ort_session.get_inputs()[0].name: x}
ort_outs = ort_session.run(None, ort_inputs)
reg = torch.from_numpy(ort_outs[0][0])
cls = torch.from_numpy(ort_outs[1][0])
print(reg[0])
print(cls[0][0])
detections = detect(reg, cls, priors)
# # scale each detection back up to the image
scale = torch.Tensor(img.shape[1::-1]).repeat(2)
for i in range(detections.size(1)):
j = 0
while detections[0, i, j, 0] >= 0.6:
score = detections[0, i, j, 0]
label_name = labels[i - 1]
display_txt = '%s: %.2f' % (label_name, score)
print(i-1);
pt = (detections[0, i, j, 1:] * scale).cpu().numpy()
#coords = (pt[0], pt[1]), pt[2] - pt[0] + 1, pt[3] - pt[1] + 1)
print(pt, score, label_name)
j+=1
cv2.rectangle(img, (pt[0], pt[1]), (pt[2], pt[3]),(0, 0, 255), 2 )
cv2.imshow('result', img)
cv2.waitKey(-1) | [
11748,
220,
299,
32152,
355,
45941,
201,
198,
11748,
319,
77,
87,
201,
198,
11748,
220,
319,
77,
87,
43282,
201,
198,
6738,
11685,
1330,
1635,
201,
198,
6738,
1366,
1330,
12776,
11,
8954,
78,
201,
198,
11748,
28034,
201,
198,
11748,
220,
269,
85,
17,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
422,
1366,
1330,
569,
4503,
62,
31631,
1546,
355,
14722,
201,
198,
220,
220,
220,
997,
62,
37724,
796,
2310,
201,
198,
220,
220,
220,
30218,
70,
796,
12776,
201,
198,
220,
220,
220,
3161,
3524,
796,
14481,
14253,
7,
37581,
8,
201,
198,
220,
220,
220,
351,
28034,
13,
3919,
62,
9744,
33529,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1293,
669,
796,
3161,
3524,
13,
11813,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
3448,
273,
25,
3256,
1293,
669,
58,
15,
11,
1058,
12962,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4886,
796,
35874,
7,
22510,
62,
37724,
11,
657,
11,
939,
11,
657,
13,
486,
11,
657,
13,
2231,
8,
201,
198,
220,
220,
220,
2746,
796,
319,
77,
87,
13,
2220,
10786,
824,
67,
62,
85,
1130,
6200,
13,
261,
77,
87,
11537,
201,
198,
220,
220,
220,
319,
77,
87,
13,
9122,
263,
13,
9122,
62,
19849,
7,
19849,
8,
201,
198,
201,
198,
220,
220,
220,
393,
83,
62,
29891,
796,
319,
77,
87,
43282,
13,
818,
4288,
36044,
7203,
824,
67,
62,
85,
1130,
6200,
13,
261,
77,
87,
4943,
201,
198,
201,
198,
220,
220,
220,
33705,
796,
269,
85,
17,
13,
320,
961,
10786,
40720,
7890,
14,
7718,
13,
9479,
11537,
201,
198,
220,
220,
220,
2124,
796,
269,
85,
17,
13,
411,
1096,
7,
9600,
11,
357,
6200,
11,
5867,
29720,
459,
2981,
7,
37659,
13,
22468,
2624,
8,
201,
198,
220,
220,
220,
3601,
7,
87,
13,
43358,
8,
201,
198,
220,
220,
220,
3601,
7,
87,
58,
15,
11,
15,
11,
25,
12962,
201,
198,
220,
220,
220,
2124,
48185,
45941,
13,
18747,
26933,
13464,
13,
15,
11,
19048,
13,
15,
11,
17031,
13,
15,
12962,
201,
198,
220,
220,
220,
2124,
796,
2124,
13,
459,
2981,
7,
37659,
13,
22468,
2624,
8,
201,
198,
220,
220,
220,
3601,
7,
87,
13,
43358,
8,
201,
198,
220,
220,
220,
2124,
796,
45941,
13,
7645,
3455,
7,
87,
11,
357,
17,
11,
657,
11,
352,
4008,
201,
198,
201,
198,
201,
198,
220,
220,
220,
2124,
796,
2124,
13,
3447,
1758,
19510,
16,
11,
2124,
13,
43358,
58,
15,
4357,
2124,
13,
43358,
58,
16,
4357,
2124,
13,
43358,
58,
17,
60,
4008,
201,
198,
220,
220,
220,
3601,
7,
87,
13,
43358,
8,
201,
198,
220,
220,
220,
393,
83,
62,
15414,
82,
796,
1391,
419,
62,
29891,
13,
1136,
62,
15414,
82,
3419,
58,
15,
4083,
3672,
25,
2124,
92,
201,
198,
220,
220,
220,
393,
83,
62,
5269,
796,
393,
83,
62,
29891,
13,
5143,
7,
14202,
11,
393,
83,
62,
15414,
82,
8,
201,
198,
201,
198,
220,
220,
220,
842,
796,
28034,
13,
6738,
62,
77,
32152,
7,
419,
62,
5269,
58,
15,
7131,
15,
12962,
201,
198,
220,
220,
220,
537,
82,
796,
28034,
13,
6738,
62,
77,
32152,
7,
419,
62,
5269,
58,
16,
7131,
15,
12962,
201,
198,
201,
198,
220,
220,
220,
3601,
7,
2301,
58,
15,
12962,
201,
198,
220,
220,
220,
3601,
7,
565,
82,
58,
15,
7131,
15,
12962,
201,
198,
220,
220,
220,
4886,
507,
796,
4886,
7,
2301,
11,
537,
82,
11,
1293,
669,
8,
201,
198,
201,
198,
201,
198,
220,
220,
220,
1303,
1303,
5046,
1123,
13326,
736,
510,
284,
262,
2939,
201,
198,
220,
220,
220,
5046,
796,
28034,
13,
51,
22854,
7,
9600,
13,
43358,
58,
16,
3712,
12,
16,
35944,
44754,
7,
17,
8,
201,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
15255,
478,
507,
13,
7857,
7,
16,
8,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
474,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
981,
4886,
507,
58,
15,
11,
1312,
11,
474,
11,
657,
60,
18189,
657,
13,
21,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4776,
796,
4886,
507,
58,
15,
11,
1312,
11,
474,
11,
657,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6167,
62,
3672,
796,
14722,
58,
72,
532,
352,
60,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3359,
62,
14116,
796,
705,
4,
82,
25,
4064,
13,
17,
69,
6,
4064,
357,
18242,
62,
3672,
11,
4776,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
72,
12,
16,
1776,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42975,
796,
357,
15255,
478,
507,
58,
15,
11,
1312,
11,
474,
11,
352,
47715,
1635,
5046,
737,
36166,
22446,
77,
32152,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1073,
3669,
796,
357,
457,
58,
15,
4357,
42975,
58,
16,
46570,
42975,
58,
17,
60,
532,
42975,
58,
15,
60,
1343,
352,
11,
42975,
58,
18,
60,
532,
42975,
58,
16,
60,
1343,
352,
8,
201,
198,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
457,
11,
4776,
11,
6167,
62,
3672,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
474,
47932,
16,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
2554,
9248,
7,
9600,
11,
357,
457,
58,
15,
4357,
42975,
58,
16,
46570,
357,
457,
58,
17,
4357,
42975,
58,
18,
46570,
7,
15,
11,
657,
11,
14280,
828,
362,
1267,
201,
198,
220,
220,
220,
269,
85,
17,
13,
320,
12860,
10786,
20274,
3256,
33705,
8,
201,
198,
220,
220,
220,
269,
85,
17,
13,
17077,
9218,
32590,
16,
8
] | 1.908012 | 1,011 |
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: Devialet/CallMeMaybe/GeneratorOptions.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='Devialet/CallMeMaybe/GeneratorOptions.proto',
package='Devialet.CallMeMaybe',
syntax='proto3',
serialized_options=None,
serialized_pb=_b('\n+Devialet/CallMeMaybe/GeneratorOptions.proto\x12\x14\x44\x65vialet.CallMeMaybe\x1a google/protobuf/descriptor.proto\">\n\x14\x45xtendedFieldOptions\x12\x0e\n\x06secret\x18\x01 \x01(\x08\x12\x16\n\x0e\x64isableLogging\x18\x02 \x01(\x08\"\xa2\x02\n\x19\x45xtendedBytesFieldOptions\x12\x42\n\x04type\x18\x01 \x01(\x0e\x32\x34.Devialet.CallMeMaybe.ExtendedBytesFieldOptions.Type\x12H\n\x07logMode\x18\x02 \x01(\x0e\x32\x37.Devialet.CallMeMaybe.ExtendedBytesFieldOptions.LogMode\x12\x14\n\x0clogMaxLength\x18\x03 \x01(\x05\"-\n\x04Type\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\x08\n\x04Uuid\x10\x01\x12\x0e\n\nJsonObject\x10\x02\"2\n\x07LogMode\x12\x08\n\x04\x41uto\x10\x00\x12\n\n\x06\x42\x61se64\x10\x01\x12\x07\n\x03Raw\x10\x02\x12\x08\n\x04\x44\x65sc\x10\x03\"\x7f\n\x1a\x45xtendedStringFieldOptions\x12\x43\n\x04type\x18\x01 \x01(\x0e\x32\x35.Devialet.CallMeMaybe.ExtendedStringFieldOptions.Type\"\x1c\n\x04Type\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\x07\n\x03Url\x10\x01\"\xc4\x01\n\x19\x45xtendedInt64FieldOptions\x12\x42\n\x04type\x18\x01 \x01(\x0e\x32\x34.Devialet.CallMeMaybe.ExtendedInt64FieldOptions.Type\"c\n\x04Type\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\x0c\n\x08\x44\x61teTime\x10\x01\x12\x0b\n\x07Seconds\x10\x02\x12\x10\n\x0cMilliseconds\x10\x03\x12\x10\n\x0cMicroseconds\x10\x04\x12\x0f\n\x0bNanoseconds\x10\x05\"\x83\x01\n\x1c\x45xtendedRepeatedFieldOptions\x12\x45\n\x04type\x18\x01 \x01(\x0e\x32\x37.Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions.Type\"\x1c\n\x04Type\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\x07\n\x03Set\x10\x01\"\xe0\x01\n\x17\x45xtendedMapFieldOptions\x12@\n\x04type\x18\x01 \x01(\x0e\x32\x32.Devialet.CallMeMaybe.ExtendedMapFieldOptions.Type\x12\x46\n\x07keyType\x18\x02 \x01(\x0e\x32\x35.Devialet.CallMeMaybe.ExtendedMapFieldOptions.KeyType\"\x19\n\x04Type\x12\x07\n\x03Map\x10\x00\x12\x08\n\x04Hash\x10\x01\" \n\x07KeyType\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\x08\n\x04Uuid\x10\x01\"\xc7\x01\n\x1c\x45xtendedPropertyFieldOptions\x12\x19\n\x11minimumApiVersion\x18\x01 \x01(\r\x12\x19\n\x11maximumApiVersion\x18\x02 \x01(\r\x12\x10\n\x08readOnly\x18\x03 \x01(\x08\x12\x10\n\x08\x63onstant\x18\x04 \x01(\x08\x12\x16\n\x0e\x64isableLogging\x18\x05 \x01(\x08\x12\x1c\n\x14\x64isableUpdateLogging\x18\x06 \x01(\x08\x12\x17\n\x0fsupportsReplace\x18\x07 \x01(\x08\"^\n\x16\x45xtendedServiceOptions\x12\x12\n\napiVersion\x18\x01 \x01(\r\x12\x0e\n\x06parent\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x12\n\nproperties\x18\x04 \x01(\t\"\x99\x01\n\x15\x45xtendedMethodOptions\x12\x19\n\x11minimumApiVersion\x18\x01 \x01(\r\x12\x19\n\x11maximumApiVersion\x18\x02 \x01(\r\x12\x14\n\x0cnotification\x18\x03 \x01(\x08\x12\x16\n\x0e\x64isableLogging\x18\x04 \x01(\x08\x12\x1c\n\x14useMessageAsArgument\x18\x05 \x01(\x08\"/\n\x18\x45xtendedEnumValueOptions\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t:e\n\tenumValue\x12!.google.protobuf.EnumValueOptions\x18\xe8\x07 \x01(\x0b\x32..Devialet.CallMeMaybe.ExtendedEnumValueOptions:Y\n\x05\x66ield\x12\x1d.google.protobuf.FieldOptions\x18\xe8\x07 \x01(\x0b\x32*.Devialet.CallMeMaybe.ExtendedFieldOptions:^\n\x05\x62ytes\x12\x1d.google.protobuf.FieldOptions\x18\xe9\x07 \x01(\x0b\x32/.Devialet.CallMeMaybe.ExtendedBytesFieldOptions:Z\n\x03map\x12\x1d.google.protobuf.FieldOptions\x18\xea\x07 \x01(\x0b\x32-.Devialet.CallMeMaybe.ExtendedMapFieldOptions:d\n\x08property\x12\x1d.google.protobuf.FieldOptions\x18\xeb\x07 \x01(\x0b\x32\x32.Devialet.CallMeMaybe.ExtendedPropertyFieldOptions:`\n\x06string\x12\x1d.google.protobuf.FieldOptions\x18\xec\x07 \x01(\x0b\x32\x30.Devialet.CallMeMaybe.ExtendedStringFieldOptions:^\n\x05int64\x12\x1d.google.protobuf.FieldOptions\x18\xed\x07 \x01(\x0b\x32/.Devialet.CallMeMaybe.ExtendedInt64FieldOptions:d\n\x08repeated\x12\x1d.google.protobuf.FieldOptions\x18\xee\x07 \x01(\x0b\x32\x32.Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions:_\n\x07service\x12\x1f.google.protobuf.ServiceOptions\x18\xe8\x07 \x01(\x0b\x32,.Devialet.CallMeMaybe.ExtendedServiceOptions:\\\n\x06method\x12\x1e.google.protobuf.MethodOptions\x18\xe8\x07 \x01(\x0b\x32+.Devialet.CallMeMaybe.ExtendedMethodOptionsb\x06proto3')
,
dependencies=[google_dot_protobuf_dot_descriptor__pb2.DESCRIPTOR,])
ENUMVALUE_FIELD_NUMBER = 1000
enumValue = _descriptor.FieldDescriptor(
name='enumValue', full_name='Devialet.CallMeMaybe.enumValue', index=0,
number=1000, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
FIELD_FIELD_NUMBER = 1000
field = _descriptor.FieldDescriptor(
name='field', full_name='Devialet.CallMeMaybe.field', index=1,
number=1000, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
BYTES_FIELD_NUMBER = 1001
bytes = _descriptor.FieldDescriptor(
name='bytes', full_name='Devialet.CallMeMaybe.bytes', index=2,
number=1001, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
MAP_FIELD_NUMBER = 1002
map = _descriptor.FieldDescriptor(
name='map', full_name='Devialet.CallMeMaybe.map', index=3,
number=1002, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
PROPERTY_FIELD_NUMBER = 1003
property = _descriptor.FieldDescriptor(
name='property', full_name='Devialet.CallMeMaybe.property', index=4,
number=1003, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
STRING_FIELD_NUMBER = 1004
string = _descriptor.FieldDescriptor(
name='string', full_name='Devialet.CallMeMaybe.string', index=5,
number=1004, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
INT64_FIELD_NUMBER = 1005
int64 = _descriptor.FieldDescriptor(
name='int64', full_name='Devialet.CallMeMaybe.int64', index=6,
number=1005, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
REPEATED_FIELD_NUMBER = 1006
repeated = _descriptor.FieldDescriptor(
name='repeated', full_name='Devialet.CallMeMaybe.repeated', index=7,
number=1006, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
SERVICE_FIELD_NUMBER = 1000
service = _descriptor.FieldDescriptor(
name='service', full_name='Devialet.CallMeMaybe.service', index=8,
number=1000, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
METHOD_FIELD_NUMBER = 1000
method = _descriptor.FieldDescriptor(
name='method', full_name='Devialet.CallMeMaybe.method', index=9,
number=1000, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=True, extension_scope=None,
serialized_options=None, file=DESCRIPTOR)
_EXTENDEDBYTESFIELDOPTIONS_TYPE = _descriptor.EnumDescriptor(
name='Type',
full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions.Type',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Default', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Uuid', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='JsonObject', index=2, number=2,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=361,
serialized_end=406,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDBYTESFIELDOPTIONS_TYPE)
_EXTENDEDBYTESFIELDOPTIONS_LOGMODE = _descriptor.EnumDescriptor(
name='LogMode',
full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions.LogMode',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Auto', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Base64', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Raw', index=2, number=2,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Desc', index=3, number=3,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=408,
serialized_end=458,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDBYTESFIELDOPTIONS_LOGMODE)
_EXTENDEDSTRINGFIELDOPTIONS_TYPE = _descriptor.EnumDescriptor(
name='Type',
full_name='Devialet.CallMeMaybe.ExtendedStringFieldOptions.Type',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Default', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Url', index=1, number=1,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=559,
serialized_end=587,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDSTRINGFIELDOPTIONS_TYPE)
_EXTENDEDINT64FIELDOPTIONS_TYPE = _descriptor.EnumDescriptor(
name='Type',
full_name='Devialet.CallMeMaybe.ExtendedInt64FieldOptions.Type',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Default', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='DateTime', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Seconds', index=2, number=2,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Milliseconds', index=3, number=3,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Microseconds', index=4, number=4,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Nanoseconds', index=5, number=5,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=687,
serialized_end=786,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDINT64FIELDOPTIONS_TYPE)
_EXTENDEDREPEATEDFIELDOPTIONS_TYPE = _descriptor.EnumDescriptor(
name='Type',
full_name='Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions.Type',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Default', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Set', index=1, number=1,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=892,
serialized_end=920,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDREPEATEDFIELDOPTIONS_TYPE)
_EXTENDEDMAPFIELDOPTIONS_TYPE = _descriptor.EnumDescriptor(
name='Type',
full_name='Devialet.CallMeMaybe.ExtendedMapFieldOptions.Type',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Map', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Hash', index=1, number=1,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=1088,
serialized_end=1113,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDMAPFIELDOPTIONS_TYPE)
_EXTENDEDMAPFIELDOPTIONS_KEYTYPE = _descriptor.EnumDescriptor(
name='KeyType',
full_name='Devialet.CallMeMaybe.ExtendedMapFieldOptions.KeyType',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='Default', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='Uuid', index=1, number=1,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=1115,
serialized_end=1147,
)
_sym_db.RegisterEnumDescriptor(_EXTENDEDMAPFIELDOPTIONS_KEYTYPE)
_EXTENDEDFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='secret', full_name='Devialet.CallMeMaybe.ExtendedFieldOptions.secret', index=0,
number=1, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='disableLogging', full_name='Devialet.CallMeMaybe.ExtendedFieldOptions.disableLogging', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=103,
serialized_end=165,
)
_EXTENDEDBYTESFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedBytesFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='type', full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions.type', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='logMode', full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions.logMode', index=1,
number=2, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='logMaxLength', full_name='Devialet.CallMeMaybe.ExtendedBytesFieldOptions.logMaxLength', index=2,
number=3, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
_EXTENDEDBYTESFIELDOPTIONS_TYPE,
_EXTENDEDBYTESFIELDOPTIONS_LOGMODE,
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=168,
serialized_end=458,
)
_EXTENDEDSTRINGFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedStringFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedStringFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='type', full_name='Devialet.CallMeMaybe.ExtendedStringFieldOptions.type', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
_EXTENDEDSTRINGFIELDOPTIONS_TYPE,
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=460,
serialized_end=587,
)
_EXTENDEDINT64FIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedInt64FieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedInt64FieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='type', full_name='Devialet.CallMeMaybe.ExtendedInt64FieldOptions.type', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
_EXTENDEDINT64FIELDOPTIONS_TYPE,
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=590,
serialized_end=786,
)
_EXTENDEDREPEATEDFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedRepeatedFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='type', full_name='Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions.type', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
_EXTENDEDREPEATEDFIELDOPTIONS_TYPE,
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=789,
serialized_end=920,
)
_EXTENDEDMAPFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedMapFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedMapFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='type', full_name='Devialet.CallMeMaybe.ExtendedMapFieldOptions.type', index=0,
number=1, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='keyType', full_name='Devialet.CallMeMaybe.ExtendedMapFieldOptions.keyType', index=1,
number=2, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
_EXTENDEDMAPFIELDOPTIONS_TYPE,
_EXTENDEDMAPFIELDOPTIONS_KEYTYPE,
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=923,
serialized_end=1147,
)
_EXTENDEDPROPERTYFIELDOPTIONS = _descriptor.Descriptor(
name='ExtendedPropertyFieldOptions',
full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='minimumApiVersion', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.minimumApiVersion', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='maximumApiVersion', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.maximumApiVersion', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='readOnly', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.readOnly', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='constant', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.constant', index=3,
number=4, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='disableLogging', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.disableLogging', index=4,
number=5, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='disableUpdateLogging', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.disableUpdateLogging', index=5,
number=6, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='supportsReplace', full_name='Devialet.CallMeMaybe.ExtendedPropertyFieldOptions.supportsReplace', index=6,
number=7, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1150,
serialized_end=1349,
)
_EXTENDEDSERVICEOPTIONS = _descriptor.Descriptor(
name='ExtendedServiceOptions',
full_name='Devialet.CallMeMaybe.ExtendedServiceOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='apiVersion', full_name='Devialet.CallMeMaybe.ExtendedServiceOptions.apiVersion', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='parent', full_name='Devialet.CallMeMaybe.ExtendedServiceOptions.parent', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='name', full_name='Devialet.CallMeMaybe.ExtendedServiceOptions.name', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='properties', full_name='Devialet.CallMeMaybe.ExtendedServiceOptions.properties', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1351,
serialized_end=1445,
)
_EXTENDEDMETHODOPTIONS = _descriptor.Descriptor(
name='ExtendedMethodOptions',
full_name='Devialet.CallMeMaybe.ExtendedMethodOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='minimumApiVersion', full_name='Devialet.CallMeMaybe.ExtendedMethodOptions.minimumApiVersion', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='maximumApiVersion', full_name='Devialet.CallMeMaybe.ExtendedMethodOptions.maximumApiVersion', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='notification', full_name='Devialet.CallMeMaybe.ExtendedMethodOptions.notification', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='disableLogging', full_name='Devialet.CallMeMaybe.ExtendedMethodOptions.disableLogging', index=3,
number=4, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='useMessageAsArgument', full_name='Devialet.CallMeMaybe.ExtendedMethodOptions.useMessageAsArgument', index=4,
number=5, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1448,
serialized_end=1601,
)
_EXTENDEDENUMVALUEOPTIONS = _descriptor.Descriptor(
name='ExtendedEnumValueOptions',
full_name='Devialet.CallMeMaybe.ExtendedEnumValueOptions',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='description', full_name='Devialet.CallMeMaybe.ExtendedEnumValueOptions.description', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1603,
serialized_end=1650,
)
_EXTENDEDBYTESFIELDOPTIONS.fields_by_name['type'].enum_type = _EXTENDEDBYTESFIELDOPTIONS_TYPE
_EXTENDEDBYTESFIELDOPTIONS.fields_by_name['logMode'].enum_type = _EXTENDEDBYTESFIELDOPTIONS_LOGMODE
_EXTENDEDBYTESFIELDOPTIONS_TYPE.containing_type = _EXTENDEDBYTESFIELDOPTIONS
_EXTENDEDBYTESFIELDOPTIONS_LOGMODE.containing_type = _EXTENDEDBYTESFIELDOPTIONS
_EXTENDEDSTRINGFIELDOPTIONS.fields_by_name['type'].enum_type = _EXTENDEDSTRINGFIELDOPTIONS_TYPE
_EXTENDEDSTRINGFIELDOPTIONS_TYPE.containing_type = _EXTENDEDSTRINGFIELDOPTIONS
_EXTENDEDINT64FIELDOPTIONS.fields_by_name['type'].enum_type = _EXTENDEDINT64FIELDOPTIONS_TYPE
_EXTENDEDINT64FIELDOPTIONS_TYPE.containing_type = _EXTENDEDINT64FIELDOPTIONS
_EXTENDEDREPEATEDFIELDOPTIONS.fields_by_name['type'].enum_type = _EXTENDEDREPEATEDFIELDOPTIONS_TYPE
_EXTENDEDREPEATEDFIELDOPTIONS_TYPE.containing_type = _EXTENDEDREPEATEDFIELDOPTIONS
_EXTENDEDMAPFIELDOPTIONS.fields_by_name['type'].enum_type = _EXTENDEDMAPFIELDOPTIONS_TYPE
_EXTENDEDMAPFIELDOPTIONS.fields_by_name['keyType'].enum_type = _EXTENDEDMAPFIELDOPTIONS_KEYTYPE
_EXTENDEDMAPFIELDOPTIONS_TYPE.containing_type = _EXTENDEDMAPFIELDOPTIONS
_EXTENDEDMAPFIELDOPTIONS_KEYTYPE.containing_type = _EXTENDEDMAPFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedFieldOptions'] = _EXTENDEDFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedBytesFieldOptions'] = _EXTENDEDBYTESFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedStringFieldOptions'] = _EXTENDEDSTRINGFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedInt64FieldOptions'] = _EXTENDEDINT64FIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedRepeatedFieldOptions'] = _EXTENDEDREPEATEDFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedMapFieldOptions'] = _EXTENDEDMAPFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedPropertyFieldOptions'] = _EXTENDEDPROPERTYFIELDOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedServiceOptions'] = _EXTENDEDSERVICEOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedMethodOptions'] = _EXTENDEDMETHODOPTIONS
DESCRIPTOR.message_types_by_name['ExtendedEnumValueOptions'] = _EXTENDEDENUMVALUEOPTIONS
DESCRIPTOR.extensions_by_name['enumValue'] = enumValue
DESCRIPTOR.extensions_by_name['field'] = field
DESCRIPTOR.extensions_by_name['bytes'] = bytes
DESCRIPTOR.extensions_by_name['map'] = map
DESCRIPTOR.extensions_by_name['property'] = property
DESCRIPTOR.extensions_by_name['string'] = string
DESCRIPTOR.extensions_by_name['int64'] = int64
DESCRIPTOR.extensions_by_name['repeated'] = repeated
DESCRIPTOR.extensions_by_name['service'] = service
DESCRIPTOR.extensions_by_name['method'] = method
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
ExtendedFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedFieldOptions)
))
_sym_db.RegisterMessage(ExtendedFieldOptions)
ExtendedBytesFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedBytesFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDBYTESFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedBytesFieldOptions)
))
_sym_db.RegisterMessage(ExtendedBytesFieldOptions)
ExtendedStringFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedStringFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDSTRINGFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedStringFieldOptions)
))
_sym_db.RegisterMessage(ExtendedStringFieldOptions)
ExtendedInt64FieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedInt64FieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDINT64FIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedInt64FieldOptions)
))
_sym_db.RegisterMessage(ExtendedInt64FieldOptions)
ExtendedRepeatedFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedRepeatedFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDREPEATEDFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedRepeatedFieldOptions)
))
_sym_db.RegisterMessage(ExtendedRepeatedFieldOptions)
ExtendedMapFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedMapFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDMAPFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedMapFieldOptions)
))
_sym_db.RegisterMessage(ExtendedMapFieldOptions)
ExtendedPropertyFieldOptions = _reflection.GeneratedProtocolMessageType('ExtendedPropertyFieldOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDPROPERTYFIELDOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedPropertyFieldOptions)
))
_sym_db.RegisterMessage(ExtendedPropertyFieldOptions)
ExtendedServiceOptions = _reflection.GeneratedProtocolMessageType('ExtendedServiceOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDSERVICEOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedServiceOptions)
))
_sym_db.RegisterMessage(ExtendedServiceOptions)
ExtendedMethodOptions = _reflection.GeneratedProtocolMessageType('ExtendedMethodOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDMETHODOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedMethodOptions)
))
_sym_db.RegisterMessage(ExtendedMethodOptions)
ExtendedEnumValueOptions = _reflection.GeneratedProtocolMessageType('ExtendedEnumValueOptions', (_message.Message,), dict(
DESCRIPTOR = _EXTENDEDENUMVALUEOPTIONS,
__module__ = 'Devialet.CallMeMaybe.GeneratorOptions_pb2'
# @@protoc_insertion_point(class_scope:Devialet.CallMeMaybe.ExtendedEnumValueOptions)
))
_sym_db.RegisterMessage(ExtendedEnumValueOptions)
enumValue.message_type = _EXTENDEDENUMVALUEOPTIONS
google_dot_protobuf_dot_descriptor__pb2.EnumValueOptions.RegisterExtension(enumValue)
field.message_type = _EXTENDEDFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(field)
bytes.message_type = _EXTENDEDBYTESFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(bytes)
map.message_type = _EXTENDEDMAPFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(map)
property.message_type = _EXTENDEDPROPERTYFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(property)
string.message_type = _EXTENDEDSTRINGFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(string)
int64.message_type = _EXTENDEDINT64FIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(int64)
repeated.message_type = _EXTENDEDREPEATEDFIELDOPTIONS
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(repeated)
service.message_type = _EXTENDEDSERVICEOPTIONS
google_dot_protobuf_dot_descriptor__pb2.ServiceOptions.RegisterExtension(service)
method.message_type = _EXTENDEDMETHODOPTIONS
google_dot_protobuf_dot_descriptor__pb2.MethodOptions.RegisterExtension(method)
# @@protoc_insertion_point(module_scope)
| [
2,
2980,
515,
416,
262,
8435,
11876,
17050,
13,
220,
8410,
5626,
48483,
0,
198,
2,
2723,
25,
6245,
498,
316,
14,
14134,
5308,
13300,
14,
8645,
1352,
29046,
13,
1676,
1462,
198,
198,
11748,
25064,
198,
62,
65,
28,
17597,
13,
9641,
62,
10951,
58,
15,
60,
27,
18,
290,
357,
50033,
2124,
25,
87,
8,
393,
357,
50033,
2124,
25,
87,
13,
268,
8189,
10786,
75,
10680,
16,
6,
4008,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
355,
4808,
20147,
1968,
273,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
3275,
355,
4808,
20500,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
14580,
355,
4808,
5420,
1564,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
6194,
62,
48806,
355,
4808,
1837,
23650,
62,
48806,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
320,
3742,
8,
198,
198,
62,
37047,
62,
9945,
796,
4808,
1837,
23650,
62,
48806,
13,
19463,
3419,
628,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
62,
40842,
17,
355,
23645,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
628,
198,
30910,
36584,
32961,
796,
4808,
20147,
1968,
273,
13,
8979,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
13603,
498,
316,
14,
14134,
5308,
13300,
14,
8645,
1352,
29046,
13,
1676,
1462,
3256,
198,
220,
5301,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
3256,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
40842,
28,
62,
65,
10786,
59,
77,
10,
13603,
498,
316,
14,
14134,
5308,
13300,
14,
8645,
1352,
29046,
13,
1676,
1462,
59,
87,
1065,
59,
87,
1415,
59,
87,
2598,
59,
87,
2996,
85,
498,
316,
13,
14134,
5308,
13300,
59,
87,
16,
64,
23645,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
1676,
1462,
38214,
59,
77,
59,
87,
1415,
59,
87,
2231,
742,
1631,
15878,
29046,
59,
87,
1065,
59,
87,
15,
68,
59,
77,
59,
87,
3312,
21078,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
1433,
59,
77,
59,
87,
15,
68,
59,
87,
2414,
43942,
11187,
2667,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
87,
2919,
7879,
59,
27865,
17,
59,
87,
2999,
59,
77,
59,
87,
1129,
59,
87,
2231,
742,
1631,
45992,
15878,
29046,
59,
87,
1065,
59,
87,
3682,
59,
77,
59,
87,
3023,
4906,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2682,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
6030,
59,
87,
1065,
39,
59,
77,
59,
87,
2998,
6404,
19076,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2718,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
11187,
19076,
59,
87,
1065,
59,
87,
1415,
59,
77,
59,
87,
15,
565,
519,
11518,
24539,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
2713,
7879,
12,
59,
77,
59,
87,
3023,
6030,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
59,
87,
2598,
59,
87,
2996,
59,
87,
2791,
59,
87,
5333,
586,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
2919,
59,
77,
59,
87,
3023,
52,
27112,
59,
87,
940,
59,
87,
486,
59,
87,
1065,
59,
87,
15,
68,
59,
77,
59,
77,
41,
1559,
10267,
59,
87,
940,
59,
87,
2999,
7879,
17,
59,
77,
59,
87,
2998,
11187,
19076,
59,
87,
1065,
59,
87,
2919,
59,
77,
59,
87,
3023,
59,
87,
3901,
9390,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
77,
59,
77,
59,
87,
3312,
59,
87,
3682,
59,
87,
5333,
325,
2414,
59,
87,
940,
59,
87,
486,
59,
87,
1065,
59,
87,
2998,
59,
77,
59,
87,
3070,
27369,
59,
87,
940,
59,
87,
2999,
59,
87,
1065,
59,
87,
2919,
59,
77,
59,
87,
3023,
59,
87,
2598,
59,
87,
2996,
1416,
59,
87,
940,
59,
87,
3070,
7879,
59,
87,
22,
69,
59,
77,
59,
87,
16,
64,
59,
87,
2231,
742,
1631,
10100,
15878,
29046,
59,
87,
1065,
59,
87,
3559,
59,
77,
59,
87,
3023,
4906,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2327,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
13,
6030,
7879,
59,
87,
16,
66,
59,
77,
59,
87,
3023,
6030,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
59,
87,
2598,
59,
87,
2996,
59,
87,
2791,
59,
87,
5333,
586,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
2998,
59,
77,
59,
87,
3070,
28165,
59,
87,
940,
59,
87,
486,
7879,
59,
25306,
19,
59,
87,
486,
59,
77,
59,
87,
1129,
59,
87,
2231,
742,
1631,
5317,
2414,
15878,
29046,
59,
87,
1065,
59,
87,
3682,
59,
77,
59,
87,
3023,
4906,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2682,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
13,
6030,
7879,
66,
59,
77,
59,
87,
3023,
6030,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
59,
87,
2598,
59,
87,
2996,
59,
87,
2791,
59,
87,
5333,
586,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
15,
66,
59,
77,
59,
87,
2919,
59,
87,
2598,
59,
87,
5333,
660,
7575,
59,
87,
940,
59,
87,
486,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
12211,
82,
59,
87,
940,
59,
87,
2999,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
15,
66,
22603,
27866,
24764,
59,
87,
940,
59,
87,
3070,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
15,
66,
13031,
43012,
59,
87,
940,
59,
87,
3023,
59,
87,
1065,
59,
87,
15,
69,
59,
77,
59,
87,
15,
65,
45,
272,
577,
17561,
82,
59,
87,
940,
59,
87,
2713,
7879,
59,
87,
5999,
59,
87,
486,
59,
77,
59,
87,
16,
66,
59,
87,
2231,
742,
1631,
47541,
515,
15878,
29046,
59,
87,
1065,
59,
87,
2231,
59,
77,
59,
87,
3023,
4906,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2718,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
13,
6030,
7879,
59,
87,
16,
66,
59,
77,
59,
87,
3023,
6030,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
59,
87,
2598,
59,
87,
2996,
59,
87,
2791,
59,
87,
5333,
586,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
2998,
59,
77,
59,
87,
3070,
7248,
59,
87,
940,
59,
87,
486,
7879,
59,
27705,
15,
59,
87,
486,
59,
77,
59,
87,
1558,
59,
87,
2231,
742,
1631,
13912,
15878,
29046,
59,
87,
1065,
31,
59,
77,
59,
87,
3023,
4906,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2624,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
6030,
59,
87,
1065,
59,
87,
3510,
59,
77,
59,
87,
2998,
2539,
6030,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
87,
15,
68,
59,
87,
2624,
59,
87,
2327,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
9218,
6030,
7879,
59,
87,
1129,
59,
77,
59,
87,
3023,
6030,
59,
87,
1065,
59,
87,
2998,
59,
77,
59,
87,
3070,
13912,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
2919,
59,
77,
59,
87,
3023,
26257,
59,
87,
940,
59,
87,
486,
7879,
3467,
77,
59,
87,
2998,
9218,
6030,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
2998,
59,
87,
2598,
59,
87,
2996,
59,
87,
2791,
59,
87,
5333,
586,
59,
87,
940,
59,
87,
405,
59,
87,
1065,
59,
87,
2919,
59,
77,
59,
87,
3023,
52,
27112,
59,
87,
940,
59,
87,
486,
7879,
59,
25306,
22,
59,
87,
486,
59,
77,
59,
87,
16,
66,
59,
87,
2231,
742,
1631,
21746,
15878,
29046,
59,
87,
1065,
59,
87,
1129,
59,
77,
59,
87,
1157,
39504,
32,
14415,
14815,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
81,
59,
87,
1065,
59,
87,
1129,
59,
77,
59,
87,
1157,
47033,
32,
14415,
14815,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
81,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
2919,
961,
10049,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
940,
59,
77,
59,
87,
2919,
59,
87,
5066,
261,
18797,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
1433,
59,
77,
59,
87,
15,
68,
59,
87,
2414,
43942,
11187,
2667,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
16,
66,
59,
77,
59,
87,
1415,
59,
87,
2414,
43942,
10260,
11187,
2667,
59,
87,
1507,
59,
87,
3312,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
1558,
59,
77,
59,
87,
15,
69,
18608,
2096,
3041,
5372,
59,
87,
1507,
59,
87,
2998,
3467,
87,
486,
38016,
87,
2919,
7879,
61,
59,
77,
59,
87,
1433,
59,
87,
2231,
742,
1631,
16177,
29046,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
77,
15042,
14815,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
81,
59,
87,
1065,
59,
87,
15,
68,
59,
77,
59,
87,
3312,
8000,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
15,
66,
59,
77,
59,
87,
3023,
3672,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
1065,
59,
77,
59,
77,
48310,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
83,
7879,
59,
87,
2079,
59,
87,
486,
59,
77,
59,
87,
1314,
59,
87,
2231,
742,
1631,
17410,
29046,
59,
87,
1065,
59,
87,
1129,
59,
77,
59,
87,
1157,
39504,
32,
14415,
14815,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
81,
59,
87,
1065,
59,
87,
1129,
59,
77,
59,
87,
1157,
47033,
32,
14415,
14815,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
81,
59,
87,
1065,
59,
87,
1415,
59,
77,
59,
87,
15,
66,
1662,
2649,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
1433,
59,
77,
59,
87,
15,
68,
59,
87,
2414,
43942,
11187,
2667,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
87,
2919,
59,
87,
1065,
59,
87,
16,
66,
59,
77,
59,
87,
1415,
1904,
12837,
1722,
28100,
1713,
59,
87,
1507,
59,
87,
2713,
3467,
87,
486,
38016,
87,
2919,
7879,
14,
59,
77,
59,
87,
1507,
59,
87,
2231,
742,
1631,
4834,
388,
11395,
29046,
59,
87,
1065,
59,
87,
1485,
59,
77,
59,
87,
15,
65,
59,
87,
2414,
59,
87,
2996,
33584,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
83,
25,
68,
59,
77,
59,
1452,
388,
11395,
59,
87,
1065,
43179,
13297,
13,
11235,
672,
3046,
13,
4834,
388,
11395,
29046,
59,
87,
1507,
59,
27705,
23,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
492,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
4834,
388,
11395,
29046,
25,
56,
59,
77,
59,
87,
2713,
59,
87,
2791,
1164,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
27705,
23,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
24620,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
15878,
29046,
25,
61,
59,
77,
59,
87,
2713,
59,
87,
5237,
88,
4879,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
27705,
24,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
11757,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
25,
57,
59,
77,
59,
87,
3070,
8899,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
87,
18213,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
34507,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
25,
67,
59,
77,
59,
87,
2919,
26745,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
87,
1765,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
59,
87,
2624,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
25,
63,
59,
77,
59,
87,
3312,
8841,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
87,
721,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
59,
87,
1270,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
25,
61,
59,
77,
59,
87,
2713,
600,
2414,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
87,
276,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
11757,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
25,
67,
59,
77,
59,
87,
2919,
45956,
515,
59,
87,
1065,
59,
87,
16,
67,
13,
13297,
13,
11235,
672,
3046,
13,
15878,
29046,
59,
87,
1507,
59,
87,
1453,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
59,
87,
2624,
13,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
25,
62,
59,
77,
59,
87,
2998,
15271,
59,
87,
1065,
59,
87,
16,
69,
13,
13297,
13,
11235,
672,
3046,
13,
16177,
29046,
59,
87,
1507,
59,
27705,
23,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
38508,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
25,
6852,
59,
77,
59,
87,
3312,
24396,
59,
87,
1065,
59,
87,
16,
68,
13,
13297,
13,
11235,
672,
3046,
13,
17410,
29046,
59,
87,
1507,
59,
27705,
23,
59,
87,
2998,
3467,
87,
486,
38016,
87,
15,
65,
59,
87,
2624,
27613,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
65,
59,
87,
3312,
1676,
1462,
18,
11537,
198,
220,
837,
198,
220,
20086,
41888,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
30910,
36584,
32961,
11,
12962,
628,
198,
1677,
5883,
39488,
62,
44603,
62,
41359,
13246,
796,
8576,
198,
44709,
11395,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
44709,
11395,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
44709,
11395,
3256,
6376,
28,
15,
11,
198,
220,
1271,
28,
12825,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
44603,
62,
44603,
62,
41359,
13246,
796,
8576,
198,
3245,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
3245,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
3245,
3256,
6376,
28,
16,
11,
198,
220,
1271,
28,
12825,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
17513,
51,
1546,
62,
44603,
62,
41359,
13246,
796,
1802,
16,
198,
33661,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
33661,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
33661,
3256,
6376,
28,
17,
11,
198,
220,
1271,
28,
47705,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
33767,
62,
44603,
62,
41359,
13246,
796,
1802,
17,
198,
8899,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
8899,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8899,
3256,
6376,
28,
18,
11,
198,
220,
1271,
28,
3064,
17,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
4805,
31054,
9936,
62,
44603,
62,
41359,
13246,
796,
1802,
18,
198,
26745,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
26745,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
26745,
3256,
6376,
28,
19,
11,
198,
220,
1271,
28,
3064,
18,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
18601,
2751,
62,
44603,
62,
41359,
13246,
796,
1802,
19,
198,
8841,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
8841,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8841,
3256,
6376,
28,
20,
11,
198,
220,
1271,
28,
3064,
19,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
12394,
2414,
62,
44603,
62,
41359,
13246,
796,
1802,
20,
198,
600,
2414,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
600,
2414,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
600,
2414,
3256,
6376,
28,
21,
11,
198,
220,
1271,
28,
3064,
20,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
2200,
11401,
11617,
62,
44603,
62,
41359,
13246,
796,
1802,
21,
198,
45956,
515,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
45956,
515,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
45956,
515,
3256,
6376,
28,
22,
11,
198,
220,
1271,
28,
3064,
21,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
35009,
27389,
62,
44603,
62,
41359,
13246,
796,
8576,
198,
15271,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
15271,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
15271,
3256,
6376,
28,
23,
11,
198,
220,
1271,
28,
12825,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
49273,
62,
44603,
62,
41359,
13246,
796,
8576,
198,
24396,
796,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
24396,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
24396,
3256,
6376,
28,
24,
11,
198,
220,
1271,
28,
12825,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
16,
11,
198,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
14202,
11,
198,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
318,
62,
2302,
3004,
28,
17821,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
8,
198,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
19463,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
52,
27112,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
41,
1559,
10267,
3256,
6376,
28,
17,
11,
1271,
28,
17,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
35195,
11,
198,
220,
11389,
1143,
62,
437,
28,
29703,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25216,
8,
198,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25294,
49058,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11187,
19076,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
11187,
19076,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
27722,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
14881,
2414,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
27369,
3256,
6376,
28,
17,
11,
1271,
28,
17,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
24564,
3256,
6376,
28,
18,
11,
1271,
28,
18,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
26200,
11,
198,
220,
11389,
1143,
62,
437,
28,
29334,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25294,
49058,
8,
198,
198,
62,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
62,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
13,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
19463,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
28165,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
38605,
11,
198,
220,
11389,
1143,
62,
437,
28,
44617,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
62,
25216,
8,
198,
198,
62,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
62,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
13,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
19463,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
10430,
7575,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
12211,
82,
3256,
6376,
28,
17,
11,
1271,
28,
17,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
22603,
27866,
24764,
3256,
6376,
28,
18,
11,
1271,
28,
18,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
13031,
43012,
3256,
6376,
28,
19,
11,
1271,
28,
19,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
45,
272,
577,
17561,
82,
3256,
6376,
28,
20,
11,
1271,
28,
20,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
39925,
11,
198,
220,
11389,
1143,
62,
437,
28,
46302,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
62,
25216,
8,
198,
198,
62,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
62,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
13,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
19463,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
7248,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
4531,
17,
11,
198,
220,
11389,
1143,
62,
437,
28,
37128,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
62,
25216,
8,
198,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
13912,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
26257,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
940,
3459,
11,
198,
220,
11389,
1143,
62,
437,
28,
1157,
1485,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
25216,
8,
198,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
20373,
25216,
796,
4808,
20147,
1968,
273,
13,
4834,
388,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
9218,
6030,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
9218,
6030,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
3815,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
19463,
3256,
6376,
28,
15,
11,
1271,
28,
15,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
4834,
388,
11395,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
52,
27112,
3256,
6376,
28,
16,
11,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
2099,
28,
14202,
828,
198,
220,
16589,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
11389,
1143,
62,
9688,
28,
1157,
1314,
11,
198,
220,
11389,
1143,
62,
437,
28,
1157,
2857,
11,
198,
8,
198,
62,
37047,
62,
9945,
13,
38804,
4834,
388,
24564,
1968,
273,
28264,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
20373,
25216,
8,
628,
198,
62,
13918,
49361,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
21078,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
15878,
29046,
13,
21078,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
40223,
11187,
2667,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
15878,
29046,
13,
40223,
11187,
2667,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
15197,
11,
198,
220,
11389,
1143,
62,
437,
28,
20986,
11,
198,
8,
628,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
45992,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
4906,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
4906,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
6404,
19076,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
6404,
19076,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
6404,
11518,
24539,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
13,
6404,
11518,
24539,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
20,
11,
269,
381,
62,
4906,
28,
16,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25216,
11,
198,
220,
220,
220,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25294,
49058,
11,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
14656,
11,
198,
220,
11389,
1143,
62,
437,
28,
29334,
11,
198,
8,
628,
198,
62,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
10100,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
4906,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
13,
4906,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
62,
25216,
11,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
34716,
11,
198,
220,
11389,
1143,
62,
437,
28,
44617,
11,
198,
8,
628,
198,
62,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
5317,
2414,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
4906,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
13,
4906,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
62,
25216,
11,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
36993,
11,
198,
220,
11389,
1143,
62,
437,
28,
46302,
11,
198,
8,
628,
198,
62,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
47541,
515,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
4906,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
13,
4906,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
62,
25216,
11,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
40401,
11,
198,
220,
11389,
1143,
62,
437,
28,
37128,
11,
198,
8,
628,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
13912,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
4906,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
4906,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
2539,
6030,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
13,
2539,
6030,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
1415,
11,
269,
381,
62,
4906,
28,
23,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
220,
220,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
25216,
11,
198,
220,
220,
220,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
20373,
25216,
11,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
24,
1954,
11,
198,
220,
11389,
1143,
62,
437,
28,
1157,
2857,
11,
198,
8,
628,
198,
62,
13918,
49361,
4805,
31054,
9936,
44603,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
21746,
15878,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
39504,
32,
14415,
14815,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
39504,
32,
14415,
14815,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1485,
11,
269,
381,
62,
4906,
28,
18,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
47033,
32,
14415,
14815,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
47033,
32,
14415,
14815,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
1485,
11,
269,
381,
62,
4906,
28,
18,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
961,
10049,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
961,
10049,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
9979,
415,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
9979,
415,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
40223,
11187,
2667,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
40223,
11187,
2667,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
40223,
10260,
11187,
2667,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
40223,
10260,
11187,
2667,
3256,
6376,
28,
20,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
21,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
18608,
2096,
3041,
5372,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
13,
18608,
2096,
3041,
5372,
3256,
6376,
28,
21,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
22,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
1157,
1120,
11,
198,
220,
11389,
1143,
62,
437,
28,
1485,
2920,
11,
198,
8,
628,
198,
62,
13918,
49361,
35009,
27389,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
16177,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
15042,
14815,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
13,
15042,
14815,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1485,
11,
269,
381,
62,
4906,
28,
18,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
8000,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
13,
8000,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
3672,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
13,
3672,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
48310,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
13,
48310,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
1485,
4349,
11,
198,
220,
11389,
1143,
62,
437,
28,
1415,
2231,
11,
198,
8,
628,
198,
62,
13918,
49361,
49273,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
17410,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
39504,
32,
14415,
14815,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
13,
39504,
32,
14415,
14815,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
1485,
11,
269,
381,
62,
4906,
28,
18,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
47033,
32,
14415,
14815,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
13,
47033,
32,
14415,
14815,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
1485,
11,
269,
381,
62,
4906,
28,
18,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
15,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
1662,
2649,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
13,
1662,
2649,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
40223,
11187,
2667,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
13,
40223,
11187,
2667,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
1904,
12837,
1722,
28100,
1713,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
13,
1904,
12837,
1722,
28100,
1713,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
23,
11,
269,
381,
62,
4906,
28,
22,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
1415,
2780,
11,
198,
220,
11389,
1143,
62,
437,
28,
1433,
486,
11,
198,
8,
628,
198,
62,
13918,
49361,
1677,
5883,
39488,
3185,
51,
11053,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
11627,
1631,
4834,
388,
11395,
29046,
3256,
198,
220,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
4834,
388,
11395,
29046,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
11213,
3256,
1336,
62,
3672,
11639,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
4834,
388,
11395,
29046,
13,
11213,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
1433,
3070,
11,
198,
220,
11389,
1143,
62,
437,
28,
1433,
1120,
11,
198,
8,
198,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
4906,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25216,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
6404,
19076,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25294,
49058,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
62,
25294,
49058,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
4906,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
62,
25216,
198,
62,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
62,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
4906,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
62,
25216,
198,
62,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
62,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
4906,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
62,
25216,
198,
62,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
62,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
4906,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
25216,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
13,
25747,
62,
1525,
62,
3672,
17816,
2539,
6030,
6,
4083,
44709,
62,
4906,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
20373,
25216,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
198,
62,
13918,
49361,
33767,
44603,
3185,
51,
11053,
62,
20373,
25216,
13,
38301,
62,
4906,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
15878,
29046,
20520,
796,
4808,
13918,
49361,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
45992,
15878,
29046,
20520,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
10100,
15878,
29046,
20520,
796,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
5317,
2414,
15878,
29046,
20520,
796,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
47541,
515,
15878,
29046,
20520,
796,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
13912,
15878,
29046,
20520,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
21746,
15878,
29046,
20520,
796,
4808,
13918,
49361,
4805,
31054,
9936,
44603,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
16177,
29046,
20520,
796,
4808,
13918,
49361,
35009,
27389,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
17410,
29046,
20520,
796,
4808,
13918,
49361,
49273,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
11627,
1631,
4834,
388,
11395,
29046,
20520,
796,
4808,
13918,
49361,
1677,
5883,
39488,
3185,
51,
11053,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
44709,
11395,
20520,
796,
33829,
11395,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
3245,
20520,
796,
2214,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
33661,
20520,
796,
9881,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
8899,
20520,
796,
3975,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
26745,
20520,
796,
3119,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
8841,
20520,
796,
4731,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
600,
2414,
20520,
796,
493,
2414,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
45956,
515,
20520,
796,
5100,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
15271,
20520,
796,
2139,
198,
30910,
36584,
32961,
13,
2302,
5736,
62,
1525,
62,
3672,
17816,
24396,
20520,
796,
2446,
198,
62,
37047,
62,
9945,
13,
38804,
8979,
24564,
1968,
273,
7,
30910,
36584,
32961,
8,
198,
198,
11627,
1631,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
15878,
29046,
8,
198,
198,
11627,
1631,
45992,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
45992,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
45992,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
45992,
15878,
29046,
8,
198,
198,
11627,
1631,
10100,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
10100,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
10100,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
10100,
15878,
29046,
8,
198,
198,
11627,
1631,
5317,
2414,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
5317,
2414,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
5317,
2414,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
5317,
2414,
15878,
29046,
8,
198,
198,
11627,
1631,
47541,
515,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
47541,
515,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
47541,
515,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
47541,
515,
15878,
29046,
8,
198,
198,
11627,
1631,
13912,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
13912,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
13912,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
13912,
15878,
29046,
8,
198,
198,
11627,
1631,
21746,
15878,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
21746,
15878,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
4805,
31054,
9936,
44603,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
21746,
15878,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
21746,
15878,
29046,
8,
198,
198,
11627,
1631,
16177,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
16177,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
35009,
27389,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
16177,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
16177,
29046,
8,
198,
198,
11627,
1631,
17410,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
17410,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
49273,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
17410,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
17410,
29046,
8,
198,
198,
11627,
1631,
4834,
388,
11395,
29046,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
11627,
1631,
4834,
388,
11395,
29046,
3256,
44104,
20500,
13,
12837,
11,
828,
8633,
7,
198,
220,
22196,
36584,
32961,
796,
4808,
13918,
49361,
1677,
5883,
39488,
3185,
51,
11053,
11,
198,
220,
11593,
21412,
834,
796,
705,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
8645,
1352,
29046,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
13603,
498,
316,
13,
14134,
5308,
13300,
13,
11627,
1631,
4834,
388,
11395,
29046,
8,
198,
220,
15306,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
11627,
1631,
4834,
388,
11395,
29046,
8,
198,
198,
44709,
11395,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
1677,
5883,
39488,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
4834,
388,
11395,
29046,
13,
38804,
11627,
3004,
7,
44709,
11395,
8,
198,
3245,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
3245,
8,
198,
33661,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
17513,
51,
1546,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
33661,
8,
198,
8899,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
33767,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
8899,
8,
198,
26745,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
4805,
31054,
9936,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
26745,
8,
198,
8841,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
18601,
2751,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
8841,
8,
198,
600,
2414,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
12394,
2414,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
600,
2414,
8,
198,
45956,
515,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
2200,
11401,
11617,
44603,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
15878,
29046,
13,
38804,
11627,
3004,
7,
45956,
515,
8,
198,
15271,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
35009,
27389,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
16177,
29046,
13,
38804,
11627,
3004,
7,
15271,
8,
198,
24396,
13,
20500,
62,
4906,
796,
4808,
13918,
49361,
49273,
3185,
51,
11053,
198,
13297,
62,
26518,
62,
11235,
672,
3046,
62,
26518,
62,
20147,
1968,
273,
834,
40842,
17,
13,
17410,
29046,
13,
38804,
11627,
3004,
7,
24396,
8,
198,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
21412,
62,
29982,
8,
198
] | 2.516469 | 14,694 |
import json
import pytest
from mythx_models.exceptions import ValidationError
from mythx_models.response import AuthRefreshResponse
from . import common as testdata
ACCESS_TOKEN = "my_fancy_access_token"
REFRESH_TOKEN = "my_fancy_refresh_token"
AUTH_REFRESH = {"access": ACCESS_TOKEN, "refresh": REFRESH_TOKEN}
AUTH_REFRESH_RESPONSE = AuthRefreshResponse(
access_token=ACCESS_TOKEN, refresh_token=REFRESH_TOKEN
)
| [
11748,
33918,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
7918,
87,
62,
27530,
13,
1069,
11755,
1330,
3254,
24765,
12331,
198,
6738,
7918,
87,
62,
27530,
13,
26209,
1330,
26828,
8134,
3447,
31077,
198,
198,
6738,
764,
1330,
2219,
355,
1332,
7890,
198,
198,
26861,
7597,
62,
10468,
43959,
796,
366,
1820,
62,
69,
3883,
62,
15526,
62,
30001,
1,
198,
2200,
10913,
44011,
62,
10468,
43959,
796,
366,
1820,
62,
69,
3883,
62,
5420,
3447,
62,
30001,
1,
198,
32,
24318,
62,
2200,
10913,
44011,
796,
19779,
15526,
1298,
15859,
7597,
62,
10468,
43959,
11,
366,
5420,
3447,
1298,
4526,
10913,
44011,
62,
10468,
43959,
92,
198,
32,
24318,
62,
2200,
10913,
44011,
62,
19535,
47,
1340,
5188,
796,
26828,
8134,
3447,
31077,
7,
198,
220,
220,
220,
1895,
62,
30001,
28,
26861,
7597,
62,
10468,
43959,
11,
14976,
62,
30001,
28,
2200,
10913,
44011,
62,
10468,
43959,
198,
8,
628,
628,
628,
628
] | 2.74359 | 156 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 27 02:08:31 2018
@author: Kazuki
"""
import pandas as pd
import numpy as np
import utils, os
#utils.start(__file__)
#==============================================================================
PREF = 'f024_'
path_user_id = '../data/user_id_v5.csv.zip'
KEY = 'SK_ID_CURR'
os.system(f'rm ../feature/t*_{PREF}*')
#==============================================================================
user_id = pd.read_csv(path_user_id)
user_unq = user_id[user_id.user_id==1]
user_dup = user_id[user_id.user_id!=1]
start = user_dup.user_id.max()+1
user_unq['user_id'] = range(start, start+user_unq.shape[0])
user_id = pd.concat([user_unq, user_dup])
user_id.to_csv(path_user_id.replace('zip', 'gz'), index=False, compression='gzip')
train = pd.read_csv('../input/application_train.csv.zip')
train['is_train'] = 1
test = pd.read_csv('../input/application_test.csv.zip')
test['is_train'] = 0
trte = pd.concat([train, test], ignore_index=True)
dup = user_id[user_id.duplicated('user_id', False)]
cnt = dup.groupby('user_id').size()
cnt.name = 'dup_cnt'
cnt = cnt.reset_index()
cnt['dup_id'] = range(cnt.shape[0])
dup = pd.merge(dup, cnt, on='user_id', how='left')
dup = pd.merge(dup, trte, on=KEY, how='left')
col = train.columns.tolist() + [c for c in dup.columns if c not in train.columns]
dup = dup[col]
dup.loc[dup['DAYS_EMPLOYED']==365243, 'DAYS_EMPLOYED'] = np.nan
dup['seq'] = 1
dup['seq'] = dup.groupby('dup_id').seq.cumsum()-1
category = dup.select_dtypes('O').columns
dup = pd.get_dummies(dup, columns=category)
col = dup.columns.tolist()
for c in ['dup_id', 'dup_cnt', 'user_id']:
col.remove(c)
col = ['user_id'] + col
# =============================================================================
#
# =============================================================================
dup.sort_values(['user_id', 'DAYS_BIRTH'], ascending=[True, False], inplace=True)
#dup.sort_values(['user_id', 'DAYS_REGISTRATION'], ascending=[True, False], inplace=True)
#dup.sort_values(['user_id', 'DAYS_BIRTH'], inplace=True)
#tmp1 = dup.sort_values(['user_id', 'DAYS_REGISTRATION'], )
#tmp2 = dup.sort_values(['user_id', 'DAYS_BIRTH'], )
#
#tmp1.equals(tmp2)
feature = dup[['SK_ID_CURR']].set_index('SK_ID_CURR')
gr = dup.groupby('dup_id')
# last
for c in col[2:]:
feature[f'last_{c}'] = gr[c].shift(1).values
feature[f'lastlast_{c}'] = gr[c].shift(2).values
feature[f'last_{c}_r'] = gr[c].shift(-1).values
feature[f'lastlast_{c}_r'] = gr[c].shift(-2).values
# other
for c in col[3:]:
feature[f'{c}_diff'] = gr[c].diff(1).values
feature[f'{c}_ratio'] = ( dup[c] / gr[c].shift(1) ).values
feature[f'{c}_min'] = pd.concat([ dup[c], gr[c].shift(1), gr[c].shift(2)], axis=1).min(1).values
feature[f'{c}_max'] = pd.concat([ dup[c], gr[c].shift(1), gr[c].shift(2)], axis=1).max(1).values
feature[f'{c}_mean'] = pd.concat([ dup[c], gr[c].shift(1), gr[c].shift(2)], axis=1).mean(1).values
feature[f'{c}_diff_r'] = gr[c].diff(-1).values
feature[f'{c}_ratio_r'] = ( dup[c] / gr[c].shift(-1) ).values
feature[f'{c}_min_r'] = pd.concat([ dup[c], gr[c].shift(-1), gr[c].shift(-2)], axis=1).min(1).values
feature[f'{c}_max_r'] = pd.concat([ dup[c], gr[c].shift(-1), gr[c].shift(-2)], axis=1).max(1).values
feature[f'{c}_mean_r'] = pd.concat([ dup[c], gr[c].shift(-1), gr[c].shift(-2)], axis=1).mean(1).values
feature.dropna(how='all', inplace=True)
utils.remove_feature(feature, var_limit=0, corr_limit=0.98, sample_size=19999)
train = utils.load_train([KEY])
test = utils.load_test([KEY])
feature.reset_index(inplace=True)
feature = pd.merge(feature, user_id, on=KEY, how='left')
tmp = pd.merge(train, feature, on=KEY, how='left').drop(KEY, axis=1)
utils.to_feature(tmp.add_prefix(PREF), '../feature/train')
tmp = pd.merge(test, feature, on=KEY, how='left').drop(KEY, axis=1)
utils.to_feature(tmp.add_prefix(PREF), '../feature/test')
#==============================================================================
#utils.end(__file__)
| [
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,
2892,
2447,
2681,
7816,
25,
2919,
25,
3132,
2864,
198,
198,
31,
9800,
25,
16385,
11308,
198,
37811,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
3384,
4487,
11,
28686,
198,
2,
26791,
13,
9688,
7,
834,
7753,
834,
8,
198,
2,
23926,
25609,
855,
198,
47,
31688,
796,
705,
69,
40839,
62,
6,
198,
198,
6978,
62,
7220,
62,
312,
796,
705,
40720,
7890,
14,
7220,
62,
312,
62,
85,
20,
13,
40664,
13,
13344,
6,
198,
198,
20373,
796,
705,
18831,
62,
2389,
62,
34,
31302,
6,
198,
198,
418,
13,
10057,
7,
69,
6,
26224,
11485,
14,
30053,
14,
83,
9,
23330,
47,
31688,
92,
9,
11537,
198,
2,
23926,
25609,
855,
198,
198,
7220,
62,
312,
796,
279,
67,
13,
961,
62,
40664,
7,
6978,
62,
7220,
62,
312,
8,
198,
198,
7220,
62,
403,
80,
796,
2836,
62,
312,
58,
7220,
62,
312,
13,
7220,
62,
312,
855,
16,
60,
198,
7220,
62,
646,
79,
796,
2836,
62,
312,
58,
7220,
62,
312,
13,
7220,
62,
312,
0,
28,
16,
60,
198,
198,
9688,
796,
2836,
62,
646,
79,
13,
7220,
62,
312,
13,
9806,
3419,
10,
16,
198,
7220,
62,
403,
80,
17816,
7220,
62,
312,
20520,
796,
2837,
7,
9688,
11,
923,
10,
7220,
62,
403,
80,
13,
43358,
58,
15,
12962,
198,
198,
7220,
62,
312,
796,
279,
67,
13,
1102,
9246,
26933,
7220,
62,
403,
80,
11,
2836,
62,
646,
79,
12962,
198,
7220,
62,
312,
13,
1462,
62,
40664,
7,
6978,
62,
7220,
62,
312,
13,
33491,
10786,
13344,
3256,
705,
34586,
33809,
6376,
28,
25101,
11,
19794,
11639,
70,
13344,
11537,
198,
198,
27432,
220,
796,
279,
67,
13,
961,
62,
40664,
10786,
40720,
15414,
14,
31438,
62,
27432,
13,
40664,
13,
13344,
11537,
198,
27432,
17816,
271,
62,
27432,
20520,
796,
352,
198,
198,
9288,
220,
796,
279,
67,
13,
961,
62,
40664,
10786,
40720,
15414,
14,
31438,
62,
9288,
13,
40664,
13,
13344,
11537,
198,
9288,
17816,
271,
62,
27432,
20520,
796,
657,
198,
198,
2213,
660,
796,
279,
67,
13,
1102,
9246,
26933,
27432,
11,
1332,
4357,
8856,
62,
9630,
28,
17821,
8,
198,
198,
646,
79,
796,
2836,
62,
312,
58,
7220,
62,
312,
13,
646,
489,
3474,
10786,
7220,
62,
312,
3256,
10352,
15437,
198,
66,
429,
796,
32597,
13,
8094,
1525,
10786,
7220,
62,
312,
27691,
7857,
3419,
198,
66,
429,
13,
3672,
796,
705,
646,
79,
62,
66,
429,
6,
198,
66,
429,
796,
269,
429,
13,
42503,
62,
9630,
3419,
198,
66,
429,
17816,
646,
79,
62,
312,
20520,
796,
2837,
7,
66,
429,
13,
43358,
58,
15,
12962,
198,
198,
646,
79,
796,
279,
67,
13,
647,
469,
7,
646,
79,
11,
269,
429,
11,
319,
11639,
7220,
62,
312,
3256,
703,
11639,
9464,
11537,
198,
646,
79,
796,
279,
67,
13,
647,
469,
7,
646,
79,
11,
491,
660,
11,
319,
28,
20373,
11,
703,
11639,
9464,
11537,
198,
198,
4033,
796,
4512,
13,
28665,
82,
13,
83,
349,
396,
3419,
1343,
685,
66,
329,
269,
287,
32597,
13,
28665,
82,
611,
269,
407,
287,
4512,
13,
28665,
82,
60,
198,
198,
646,
79,
796,
32597,
58,
4033,
60,
628,
628,
198,
198,
646,
79,
13,
17946,
58,
646,
79,
17816,
26442,
50,
62,
3620,
6489,
21414,
1961,
20520,
855,
24760,
26660,
11,
705,
26442,
50,
62,
3620,
6489,
21414,
1961,
20520,
796,
45941,
13,
12647,
198,
198,
646,
79,
17816,
41068,
20520,
796,
352,
198,
646,
79,
17816,
41068,
20520,
796,
32597,
13,
8094,
1525,
10786,
646,
79,
62,
312,
27691,
41068,
13,
66,
5700,
388,
3419,
12,
16,
198,
198,
22872,
796,
32597,
13,
19738,
62,
67,
19199,
10786,
46,
27691,
28665,
82,
198,
646,
79,
796,
279,
67,
13,
1136,
62,
67,
39578,
7,
646,
79,
11,
15180,
28,
22872,
8,
628,
198,
4033,
796,
32597,
13,
28665,
82,
13,
83,
349,
396,
3419,
198,
1640,
269,
287,
37250,
646,
79,
62,
312,
3256,
705,
646,
79,
62,
66,
429,
3256,
705,
7220,
62,
312,
6,
5974,
198,
220,
220,
220,
951,
13,
28956,
7,
66,
8,
198,
4033,
796,
37250,
7220,
62,
312,
20520,
1343,
951,
628,
198,
2,
38093,
25609,
198,
2,
220,
198,
2,
38093,
25609,
198,
646,
79,
13,
30619,
62,
27160,
7,
17816,
7220,
62,
312,
3256,
705,
26442,
50,
62,
3483,
49,
4221,
6,
4357,
41988,
41888,
17821,
11,
10352,
4357,
287,
5372,
28,
17821,
8,
198,
2,
646,
79,
13,
30619,
62,
27160,
7,
17816,
7220,
62,
312,
3256,
705,
26442,
50,
62,
31553,
1797,
5446,
6234,
6,
4357,
41988,
41888,
17821,
11,
10352,
4357,
287,
5372,
28,
17821,
8,
198,
2,
646,
79,
13,
30619,
62,
27160,
7,
17816,
7220,
62,
312,
3256,
705,
26442,
50,
62,
3483,
49,
4221,
6,
4357,
287,
5372,
28,
17821,
8,
198,
198,
2,
22065,
16,
796,
32597,
13,
30619,
62,
27160,
7,
17816,
7220,
62,
312,
3256,
705,
26442,
50,
62,
31553,
1797,
5446,
6234,
6,
4357,
1267,
198,
2,
22065,
17,
796,
32597,
13,
30619,
62,
27160,
7,
17816,
7220,
62,
312,
3256,
705,
26442,
50,
62,
3483,
49,
4221,
6,
4357,
1267,
198,
2,
198,
2,
22065,
16,
13,
4853,
874,
7,
22065,
17,
8,
628,
198,
30053,
796,
32597,
58,
17816,
18831,
62,
2389,
62,
34,
31302,
20520,
4083,
2617,
62,
9630,
10786,
18831,
62,
2389,
62,
34,
31302,
11537,
198,
2164,
796,
32597,
13,
8094,
1525,
10786,
646,
79,
62,
312,
11537,
628,
198,
2,
938,
198,
1640,
269,
287,
951,
58,
17,
25,
5974,
198,
220,
220,
220,
3895,
58,
69,
6,
12957,
23330,
66,
92,
20520,
796,
1036,
58,
66,
4083,
30846,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
12957,
12957,
23330,
66,
92,
20520,
796,
1036,
58,
66,
4083,
30846,
7,
17,
737,
27160,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3895,
58,
69,
6,
12957,
23330,
66,
92,
62,
81,
20520,
796,
1036,
58,
66,
4083,
30846,
32590,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
12957,
12957,
23330,
66,
92,
62,
81,
20520,
796,
1036,
58,
66,
4083,
30846,
32590,
17,
737,
27160,
198,
198,
2,
584,
198,
1640,
269,
287,
951,
58,
18,
25,
5974,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
26069,
20520,
796,
1036,
58,
66,
4083,
26069,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
10366,
952,
20520,
796,
357,
32597,
58,
66,
60,
1220,
1036,
58,
66,
4083,
30846,
7,
16,
8,
6739,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
1084,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
7,
16,
828,
1036,
58,
66,
4083,
30846,
7,
17,
8,
4357,
16488,
28,
16,
737,
1084,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
9806,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
7,
16,
828,
1036,
58,
66,
4083,
30846,
7,
17,
8,
4357,
16488,
28,
16,
737,
9806,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
32604,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
7,
16,
828,
1036,
58,
66,
4083,
30846,
7,
17,
8,
4357,
16488,
28,
16,
737,
32604,
7,
16,
737,
27160,
198,
220,
220,
220,
220,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
26069,
62,
81,
20520,
796,
1036,
58,
66,
4083,
26069,
32590,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
10366,
952,
62,
81,
20520,
796,
357,
32597,
58,
66,
60,
1220,
1036,
58,
66,
4083,
30846,
32590,
16,
8,
6739,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
1084,
62,
81,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
32590,
16,
828,
1036,
58,
66,
4083,
30846,
32590,
17,
8,
4357,
16488,
28,
16,
737,
1084,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
9806,
62,
81,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
32590,
16,
828,
1036,
58,
66,
4083,
30846,
32590,
17,
8,
4357,
16488,
28,
16,
737,
9806,
7,
16,
737,
27160,
198,
220,
220,
220,
3895,
58,
69,
6,
90,
66,
92,
62,
32604,
62,
81,
20520,
796,
279,
67,
13,
1102,
9246,
26933,
32597,
58,
66,
4357,
1036,
58,
66,
4083,
30846,
32590,
16,
828,
1036,
58,
66,
4083,
30846,
32590,
17,
8,
4357,
16488,
28,
16,
737,
32604,
7,
16,
737,
27160,
198,
198,
30053,
13,
14781,
2616,
7,
4919,
11639,
439,
3256,
287,
5372,
28,
17821,
8,
198,
198,
26791,
13,
28956,
62,
30053,
7,
30053,
11,
1401,
62,
32374,
28,
15,
11,
1162,
81,
62,
32374,
28,
15,
13,
4089,
11,
6291,
62,
7857,
28,
1129,
17032,
8,
628,
198,
27432,
796,
3384,
4487,
13,
2220,
62,
27432,
26933,
20373,
12962,
198,
9288,
796,
3384,
4487,
13,
2220,
62,
9288,
26933,
20373,
12962,
198,
198,
30053,
13,
42503,
62,
9630,
7,
259,
5372,
28,
17821,
8,
198,
30053,
796,
279,
67,
13,
647,
469,
7,
30053,
11,
2836,
62,
312,
11,
319,
28,
20373,
11,
703,
11639,
9464,
11537,
198,
198,
22065,
796,
279,
67,
13,
647,
469,
7,
27432,
11,
3895,
11,
319,
28,
20373,
11,
703,
11639,
9464,
27691,
14781,
7,
20373,
11,
16488,
28,
16,
8,
198,
26791,
13,
1462,
62,
30053,
7,
22065,
13,
2860,
62,
40290,
7,
47,
31688,
828,
705,
40720,
30053,
14,
27432,
11537,
198,
198,
22065,
796,
279,
67,
13,
647,
469,
7,
9288,
11,
3895,
11,
319,
28,
20373,
11,
703,
11639,
9464,
27691,
14781,
7,
20373,
11,
16488,
28,
16,
8,
198,
26791,
13,
1462,
62,
30053,
7,
22065,
13,
2860,
62,
40290,
7,
47,
31688,
828,
220,
705,
40720,
30053,
14,
9288,
11537,
628,
628,
198,
2,
23926,
25609,
855,
198,
2,
26791,
13,
437,
7,
834,
7753,
834,
8,
628,
628,
628
] | 2.360967 | 1,737 |
from collections import OrderedDict
import numpy as np
import tensorflow as tf
import deepfnf_utils.tf_utils as tfu
| [
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
198,
11748,
2769,
22184,
69,
62,
26791,
13,
27110,
62,
26791,
355,
256,
20942,
628
] | 3.216216 | 37 |
# Sama kuin 01_neural.xor, paitsi eri syntaksi ja parempi SGD optimoija
import numpy as np
import tensorflow as tf
# Parametrit: 2-4-1 verkko
learning_rate = 0.01
n_hidden1 = 4
n_input = 2
n_ouput = 1
inputs = tf.placeholder("float", [None, n_input])
desired_outputs = tf.placeholder("float", [None, n_ouput])
# Verkon painot ja biasit
weights = {
'h1': tf.Variable(tf.random_normal([n_input, n_hidden1])),
'out': tf.Variable(tf.random_normal([n_hidden1, n_ouput]))
}
biases = {
'b1': tf.Variable(tf.random_normal([n_hidden1])),
'out': tf.Variable(tf.random_normal([n_ouput]))
}
# Tehdään layerit, käytetään sigmoidia
layer_hidden_output = tf.add(tf.matmul(inputs, weights['h1']), biases['b1'])
layer_hidden_output = tf.nn.sigmoid(layer_hidden_output)
layer_output_output = tf.add(tf.matmul(layer_hidden_output, weights['out']), biases['out'])
##layer_output_output = tf.nn.sigmoid(layer_output_output)
# Cross entropy ja monipuolisempi metodi sen käyttöön.
error_function = tf.reduce_sum(tf.nn.sigmoid_cross_entropy_with_logits(layer_output_output, desired_outputs))
# SGD Adam
train_step = tf.train.AdamOptimizer(learning_rate).minimize(error_function)
# XOR:n neljä eri tilaa opetusta varten
training_inputs = [[0.0, 0.0], [0.0, 1.0], [1.0, 0.0], [1.0, 1.0]]
training_outputs = [[0.0], [1.0], [1.0], [0.0]]
init = tf.initialize_all_variables()
with tf.Session() as sess:
sess.run(init)
for i in range(10000):
_, error = sess.run([train_step, error_function],
feed_dict={inputs: np.array(training_inputs),
desired_outputs: np.array(training_outputs)})
if i%1000 == 0:
print("Epoch ",i ,", Error: ", error)
# Tulostetaan lopputulokset. Huomaa että layer_output_output:sta
# ei ole otettu sigmoida kuten 01-esimerkissä koska käytämme eri
# error_functiota
print("{0,0} = " ,sess.run(tf.nn.sigmoid(layer_output_output), feed_dict={inputs: np.array([[0.0, 0.0]])}))
print("{0,1} = " ,sess.run(tf.nn.sigmoid(layer_output_output), feed_dict={inputs: np.array([[0.0, 1.0]])}))
print("{1,0} = " ,sess.run(tf.nn.sigmoid(layer_output_output), feed_dict={inputs: np.array([[1.0, 0.0]])}))
print("{1,1} = " ,sess.run(tf.nn.sigmoid(layer_output_output), feed_dict={inputs: np.array([[1.0, 1.0]])}))
| [
2,
311,
1689,
479,
48441,
5534,
62,
710,
1523,
13,
87,
273,
11,
14187,
896,
72,
1931,
72,
7419,
4730,
72,
45091,
279,
533,
3149,
72,
26147,
35,
6436,
78,
34655,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
198,
2,
25139,
316,
799,
25,
362,
12,
19,
12,
16,
3326,
74,
7204,
198,
40684,
62,
4873,
796,
657,
13,
486,
198,
77,
62,
30342,
16,
796,
604,
220,
198,
77,
62,
15414,
796,
362,
220,
198,
77,
62,
280,
1996,
796,
352,
220,
198,
198,
15414,
82,
796,
48700,
13,
5372,
13829,
7203,
22468,
1600,
685,
14202,
11,
299,
62,
15414,
12962,
198,
8906,
1202,
62,
22915,
82,
796,
48700,
13,
5372,
13829,
7203,
22468,
1600,
685,
14202,
11,
299,
62,
280,
1996,
12962,
198,
198,
2,
4643,
74,
261,
2356,
313,
45091,
10690,
270,
198,
43775,
796,
1391,
198,
220,
220,
220,
705,
71,
16,
10354,
48700,
13,
43015,
7,
27110,
13,
25120,
62,
11265,
26933,
77,
62,
15414,
11,
299,
62,
30342,
16,
12962,
828,
198,
220,
220,
220,
705,
448,
10354,
48700,
13,
43015,
7,
27110,
13,
25120,
62,
11265,
26933,
77,
62,
30342,
16,
11,
299,
62,
280,
1996,
60,
4008,
198,
92,
198,
8482,
1386,
796,
1391,
198,
220,
220,
220,
705,
65,
16,
10354,
48700,
13,
43015,
7,
27110,
13,
25120,
62,
11265,
26933,
77,
62,
30342,
16,
12962,
828,
198,
220,
220,
220,
705,
448,
10354,
48700,
13,
43015,
7,
27110,
13,
25120,
62,
11265,
26933,
77,
62,
280,
1996,
60,
4008,
198,
92,
198,
198,
2,
1665,
31298,
11033,
11033,
77,
7679,
270,
11,
479,
11033,
20760,
316,
11033,
11033,
77,
264,
17225,
1868,
544,
220,
198,
29289,
62,
30342,
62,
22915,
796,
48700,
13,
2860,
7,
27110,
13,
6759,
76,
377,
7,
15414,
82,
11,
19590,
17816,
71,
16,
20520,
828,
29275,
17816,
65,
16,
6,
12962,
198,
29289,
62,
30342,
62,
22915,
796,
48700,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
30342,
62,
22915,
8,
198,
198,
29289,
62,
22915,
62,
22915,
796,
48700,
13,
2860,
7,
27110,
13,
6759,
76,
377,
7,
29289,
62,
30342,
62,
22915,
11,
19590,
17816,
448,
20520,
828,
29275,
17816,
448,
6,
12962,
198,
2235,
29289,
62,
22915,
62,
22915,
796,
48700,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
22915,
62,
22915,
8,
198,
198,
2,
6372,
40709,
45091,
937,
541,
84,
8506,
368,
14415,
1138,
23130,
3308,
479,
11033,
88,
926,
9101,
48863,
13,
220,
198,
18224,
62,
8818,
796,
48700,
13,
445,
7234,
62,
16345,
7,
27110,
13,
20471,
13,
82,
17225,
1868,
62,
19692,
62,
298,
28338,
62,
4480,
62,
6404,
896,
7,
29289,
62,
22915,
62,
22915,
11,
10348,
62,
22915,
82,
4008,
198,
198,
2,
26147,
35,
7244,
198,
27432,
62,
9662,
796,
48700,
13,
27432,
13,
23159,
27871,
320,
7509,
7,
40684,
62,
4873,
737,
1084,
48439,
7,
18224,
62,
8818,
8,
198,
198,
2,
1395,
1581,
25,
77,
299,
417,
73,
11033,
1931,
72,
21502,
7252,
1034,
316,
436,
64,
410,
23996,
198,
34409,
62,
15414,
82,
796,
16410,
15,
13,
15,
11,
657,
13,
15,
4357,
685,
15,
13,
15,
11,
352,
13,
15,
4357,
685,
16,
13,
15,
11,
657,
13,
15,
4357,
685,
16,
13,
15,
11,
352,
13,
15,
11907,
198,
34409,
62,
22915,
82,
796,
16410,
15,
13,
15,
4357,
685,
16,
13,
15,
4357,
685,
16,
13,
15,
4357,
685,
15,
13,
15,
11907,
198,
198,
15003,
796,
48700,
13,
36733,
1096,
62,
439,
62,
25641,
2977,
3419,
198,
198,
4480,
48700,
13,
36044,
3419,
355,
264,
408,
25,
198,
220,
220,
220,
264,
408,
13,
5143,
7,
15003,
8,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
49388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
4049,
796,
264,
408,
13,
5143,
26933,
27432,
62,
9662,
11,
4049,
62,
8818,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3745,
62,
11600,
34758,
15414,
82,
25,
45941,
13,
18747,
7,
34409,
62,
15414,
82,
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,
10348,
62,
22915,
82,
25,
45941,
13,
18747,
7,
34409,
62,
22915,
82,
8,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
4,
12825,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
13807,
5374,
33172,
72,
42911,
11,
13047,
25,
33172,
4049,
8,
628,
220,
220,
220,
1303,
30941,
455,
17167,
272,
2376,
381,
315,
377,
482,
2617,
13,
11256,
6086,
64,
304,
926,
11033,
7679,
62,
22915,
62,
22915,
25,
38031,
220,
198,
220,
220,
220,
1303,
304,
72,
267,
293,
30972,
3087,
84,
264,
17225,
1868,
64,
479,
7809,
5534,
12,
274,
320,
9587,
747,
11033,
479,
418,
4914,
479,
11033,
20760,
11033,
76,
1326,
1931,
72,
198,
220,
220,
220,
1303,
4049,
62,
12543,
310,
72,
4265,
198,
220,
220,
220,
3601,
7203,
90,
15,
11,
15,
92,
796,
366,
837,
82,
408,
13,
5143,
7,
27110,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
22915,
62,
22915,
828,
3745,
62,
11600,
34758,
15414,
82,
25,
45941,
13,
18747,
26933,
58,
15,
13,
15,
11,
657,
13,
15,
11907,
38165,
4008,
198,
220,
220,
220,
3601,
7203,
90,
15,
11,
16,
92,
796,
366,
837,
82,
408,
13,
5143,
7,
27110,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
22915,
62,
22915,
828,
3745,
62,
11600,
34758,
15414,
82,
25,
45941,
13,
18747,
26933,
58,
15,
13,
15,
11,
352,
13,
15,
11907,
38165,
4008,
198,
220,
220,
220,
3601,
7203,
90,
16,
11,
15,
92,
796,
366,
837,
82,
408,
13,
5143,
7,
27110,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
22915,
62,
22915,
828,
3745,
62,
11600,
34758,
15414,
82,
25,
45941,
13,
18747,
26933,
58,
16,
13,
15,
11,
657,
13,
15,
11907,
38165,
4008,
198,
220,
220,
220,
3601,
7203,
90,
16,
11,
16,
92,
796,
366,
837,
82,
408,
13,
5143,
7,
27110,
13,
20471,
13,
82,
17225,
1868,
7,
29289,
62,
22915,
62,
22915,
828,
3745,
62,
11600,
34758,
15414,
82,
25,
45941,
13,
18747,
26933,
58,
16,
13,
15,
11,
352,
13,
15,
11907,
38165,
4008,
198
] | 2.173752 | 1,082 |
import sys
import click
from pathlib import Path
from easy_ftp.setting import Setting
from easy_ftp import _print_version, VERSION_HELP, _command_wrapper
@click.group()
@click.option('--version', is_flag=True, callback=_print_version, expose_value=False, is_eager=True, help=VERSION_HELP)
def main():
"""
Super Simple FTP/SFTP Client
Type `easy-ftp COMMAND --help` for more information.
"""
@main.command('ls')
@click.argument('remote_path', nargs=-1)
@click.option('--config', type=str, metavar='PATH', default=None, help='Use the specific configuration file.')
@click.option('--key', type=str, metavar='PATH', default=None, help='Use the specific encryption key.')
@click.option('--debug', flag_value=True, default=False, help="Print the stack trace of the Exception.")
def ftp_list(remote_path, config, key, debug):
"""
Prints the list of files in the remote server.
@param remote_path: list of paths to get information
"""
_command_wrapper(_ftp_list_impl, debug, config, key, remote_path)
@main.command('get')
@click.argument('remote_path', nargs=-1)
@click.option('--config', type=str, metavar='PATH', default=None, help='Use the specific configuration file.')
@click.option('--key', type=str, metavar='PATH', default=None, help='Use the specific encryption key.')
@click.option('--debug', flag_value=True, default=False, help="Print the stack trace of the Exception.")
def ftp_get(remote_path, config, key, debug):
"""
Downloads remote files.
@param remote_path: list of remote file paths to download.
If the last argument is an existing local directory, it will be interpreted as the local destination.
"""
_command_wrapper(_ftp_get_impl, debug, config, key, remote_path)
@main.command('put')
@click.argument('local_path', nargs=-1)
@click.option('--config', type=str, metavar='PATH', default=None, help='Use the specific configuration file.')
@click.option('--key', type=str, metavar='PATH', default=None, help='Use the specific encryption key.')
@click.option('--debug', flag_value=True, default=False, help="Print the stack trace of the Exception.")
def ftp_put(local_path, config, key, debug):
"""
Uploads local files.
@param local_path: list of local file paths to upload.
If the last argument ends with '/', it will be interpreted as the remote destination.
"""
_command_wrapper(_ftp_put_impl, debug, config, key, local_path)
@main.command('encrypt')
@click.option('--key', type=str, metavar='PATH', default=None, help='Use the specific encryption key.')
@click.option('--debug', flag_value=True, default=False, help="Print the stack trace of the Exception.")
def encrypt(key, debug):
"""
Encrypts a password.
A key file will be generated if it does not exist. You will be prompted for a password.
"""
_command_wrapper(lambda key: Setting(encrypt_key_path=key).encrypt_password(), debug, key)
| [
11748,
25064,
198,
11748,
3904,
198,
6738,
3108,
8019,
1330,
10644,
198,
6738,
2562,
62,
701,
79,
13,
33990,
1330,
25700,
198,
6738,
2562,
62,
701,
79,
1330,
4808,
4798,
62,
9641,
11,
44156,
2849,
62,
39,
3698,
47,
11,
4808,
21812,
62,
48553,
628,
198,
31,
12976,
13,
8094,
3419,
198,
31,
12976,
13,
18076,
10786,
438,
9641,
3256,
318,
62,
32109,
28,
17821,
11,
23838,
28,
62,
4798,
62,
9641,
11,
15651,
62,
8367,
28,
25101,
11,
318,
62,
68,
3536,
28,
17821,
11,
1037,
28,
43717,
62,
39,
3698,
47,
8,
198,
4299,
1388,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3115,
17427,
45854,
14,
20802,
7250,
20985,
628,
220,
220,
220,
5994,
4600,
38171,
12,
701,
79,
22240,
6981,
1377,
16794,
63,
329,
517,
1321,
13,
198,
220,
220,
220,
37227,
628,
198,
31,
12417,
13,
21812,
10786,
7278,
11537,
198,
31,
12976,
13,
49140,
10786,
47960,
62,
6978,
3256,
299,
22046,
10779,
16,
8,
198,
31,
12976,
13,
18076,
10786,
438,
11250,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
8398,
2393,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
2539,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
15835,
1994,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
24442,
3256,
6056,
62,
8367,
28,
17821,
11,
4277,
28,
25101,
11,
1037,
2625,
18557,
262,
8931,
12854,
286,
262,
35528,
19570,
198,
4299,
10117,
79,
62,
4868,
7,
47960,
62,
6978,
11,
4566,
11,
1994,
11,
14257,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12578,
82,
262,
1351,
286,
3696,
287,
262,
6569,
4382,
13,
628,
220,
220,
220,
2488,
17143,
6569,
62,
6978,
25,
1351,
286,
13532,
284,
651,
1321,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4808,
21812,
62,
48553,
28264,
701,
79,
62,
4868,
62,
23928,
11,
14257,
11,
4566,
11,
1994,
11,
6569,
62,
6978,
8,
628,
198,
198,
31,
12417,
13,
21812,
10786,
1136,
11537,
198,
31,
12976,
13,
49140,
10786,
47960,
62,
6978,
3256,
299,
22046,
10779,
16,
8,
198,
31,
12976,
13,
18076,
10786,
438,
11250,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
8398,
2393,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
2539,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
15835,
1994,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
24442,
3256,
6056,
62,
8367,
28,
17821,
11,
4277,
28,
25101,
11,
1037,
2625,
18557,
262,
8931,
12854,
286,
262,
35528,
19570,
198,
4299,
10117,
79,
62,
1136,
7,
47960,
62,
6978,
11,
4566,
11,
1994,
11,
14257,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
50093,
6569,
3696,
13,
628,
220,
220,
220,
2488,
17143,
6569,
62,
6978,
25,
1351,
286,
6569,
2393,
13532,
284,
4321,
13,
198,
220,
220,
220,
1002,
262,
938,
4578,
318,
281,
4683,
1957,
8619,
11,
340,
481,
307,
16173,
355,
262,
1957,
10965,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4808,
21812,
62,
48553,
28264,
701,
79,
62,
1136,
62,
23928,
11,
14257,
11,
4566,
11,
1994,
11,
6569,
62,
6978,
8,
628,
198,
198,
31,
12417,
13,
21812,
10786,
1996,
11537,
198,
31,
12976,
13,
49140,
10786,
12001,
62,
6978,
3256,
299,
22046,
10779,
16,
8,
198,
31,
12976,
13,
18076,
10786,
438,
11250,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
8398,
2393,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
2539,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
15835,
1994,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
24442,
3256,
6056,
62,
8367,
28,
17821,
11,
4277,
28,
25101,
11,
1037,
2625,
18557,
262,
8931,
12854,
286,
262,
35528,
19570,
198,
4299,
10117,
79,
62,
1996,
7,
12001,
62,
6978,
11,
4566,
11,
1994,
11,
14257,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
36803,
82,
1957,
3696,
13,
628,
220,
220,
220,
2488,
17143,
1957,
62,
6978,
25,
1351,
286,
1957,
2393,
13532,
284,
9516,
13,
198,
220,
220,
220,
1002,
262,
938,
4578,
5645,
351,
31051,
3256,
340,
481,
307,
16173,
355,
262,
6569,
10965,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4808,
21812,
62,
48553,
28264,
701,
79,
62,
1996,
62,
23928,
11,
14257,
11,
4566,
11,
1994,
11,
1957,
62,
6978,
8,
628,
198,
198,
31,
12417,
13,
21812,
10786,
12685,
6012,
11537,
198,
31,
12976,
13,
18076,
10786,
438,
2539,
3256,
2099,
28,
2536,
11,
1138,
615,
283,
11639,
34219,
3256,
4277,
28,
14202,
11,
1037,
11639,
11041,
262,
2176,
15835,
1994,
2637,
8,
198,
31,
12976,
13,
18076,
10786,
438,
24442,
3256,
6056,
62,
8367,
28,
17821,
11,
4277,
28,
25101,
11,
1037,
2625,
18557,
262,
8931,
12854,
286,
262,
35528,
19570,
198,
4299,
34117,
7,
2539,
11,
14257,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
14711,
6012,
82,
257,
9206,
13,
628,
220,
220,
220,
317,
1994,
2393,
481,
307,
7560,
611,
340,
857,
407,
2152,
13,
921,
481,
307,
12053,
329,
257,
9206,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4808,
21812,
62,
48553,
7,
50033,
1994,
25,
25700,
7,
12685,
6012,
62,
2539,
62,
6978,
28,
2539,
737,
12685,
6012,
62,
28712,
22784,
14257,
11,
1994,
8,
198
] | 3.131551 | 935 |
# -*- coding: utf-8 -*-
"""Test cases for the steenzout.barcode.cli package."""
import abc
import pytest
import unittest
from click.testing import CliRunner
from steenzout import barcode
from steenzout.barcode import cli
@pytest.fixture
class ClickTestCase(unittest.TestCase):
"""Abstract class to be used to test click commands."""
__metaclass__ = abc.ABCMeta
class EncodingsTestCase(ClickTestCase):
"""Test the encodings command."""
class FormatsTestCase(ClickTestCase):
"""Test the formats command."""
class GenerateTestCase(ClickTestCase):
"""Test the generate command."""
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
14402,
2663,
329,
262,
2876,
19471,
448,
13,
65,
5605,
1098,
13,
44506,
5301,
526,
15931,
198,
198,
11748,
450,
66,
198,
11748,
12972,
9288,
198,
11748,
555,
715,
395,
198,
198,
6738,
3904,
13,
33407,
1330,
1012,
72,
49493,
198,
198,
6738,
2876,
19471,
448,
1330,
2318,
8189,
198,
6738,
2876,
19471,
448,
13,
65,
5605,
1098,
1330,
537,
72,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
4871,
6914,
14402,
20448,
7,
403,
715,
395,
13,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
23839,
1398,
284,
307,
973,
284,
1332,
3904,
9729,
526,
15931,
198,
220,
220,
220,
11593,
4164,
330,
31172,
834,
796,
450,
66,
13,
24694,
48526,
628,
198,
4871,
14711,
375,
654,
14402,
20448,
7,
8164,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
14402,
262,
2207,
375,
654,
3141,
526,
15931,
628,
198,
4871,
5178,
1381,
14402,
20448,
7,
8164,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
14402,
262,
17519,
3141,
526,
15931,
628,
198,
4871,
2980,
378,
14402,
20448,
7,
8164,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
14402,
262,
7716,
3141,
526,
15931,
198
] | 3.019802 | 202 |
from django.contrib import admin
from .models import ImagerProfile
admin.site.register(ImagerProfile)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
764,
27530,
1330,
1846,
3536,
37046,
198,
198,
28482,
13,
15654,
13,
30238,
7,
3546,
3536,
37046,
8,
198
] | 3.551724 | 29 |
import time
from os.path import isfile
from os.path import join
from uuid import uuid4
import pytest
@pytest.mark.recode("no")
def test_download(session, tmpdir):
"""Expect a new file to be created from the 'download' method."""
upload = session.Upload.one()
path = tmpdir.mkdir("trident_test_downloads")
newfile = upload.download(path)
assert isfile(newfile)
@pytest.fixture
@pytest.mark.recode("no")
| [
11748,
640,
198,
6738,
28686,
13,
6978,
1330,
318,
7753,
198,
6738,
28686,
13,
6978,
1330,
4654,
198,
6738,
334,
27112,
1330,
334,
27112,
19,
198,
198,
11748,
12972,
9288,
628,
198,
31,
9078,
9288,
13,
4102,
13,
260,
8189,
7203,
3919,
4943,
198,
4299,
1332,
62,
15002,
7,
29891,
11,
45218,
15908,
2599,
198,
220,
220,
220,
37227,
3109,
806,
257,
649,
2393,
284,
307,
2727,
422,
262,
705,
15002,
6,
2446,
526,
15931,
198,
220,
220,
220,
9516,
796,
6246,
13,
41592,
13,
505,
3419,
628,
220,
220,
220,
3108,
796,
45218,
15908,
13,
28015,
15908,
7203,
2213,
738,
62,
9288,
62,
15002,
82,
4943,
198,
220,
220,
220,
649,
7753,
796,
9516,
13,
15002,
7,
6978,
8,
628,
220,
220,
220,
6818,
318,
7753,
7,
3605,
7753,
8,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
4102,
13,
260,
8189,
7203,
3919,
4943,
198
] | 2.816993 | 153 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = 'ipetrash'
# https://docs.python.org/3.5/library/enum.html
from enum import Enum, IntEnum, unique
print(Animal.ANT == Animal.BEE) # False
print(Animal.ANT == Animal.ANT) # True
print(Animal.ANT is Animal.ANT) # True
print(Animal.ANT == 1) # False
print()
print(Animal) # <enum 'Animal'>
print(list(Animal)) # [<Animal.ANT: 1>, <Animal.BEE: 2>, <Animal.CAT: 3>, <Animal.DOG: 4>]
print()
for x in Animal:
print('{}: "{}" = {}'.format(x, x.name, x.value))
print()
print(Animal2.ANT == Animal2.BEE) # False
print(Animal2.ANT == Animal2.ANT) # True
print(Animal2.ANT is Animal2.ANT) # True
print(Animal2.ANT == 1) # True
print()
print()
# https://docs.python.org/3.5/library/enum.html#planet
print(Planet.EARTH.value) # (5.976e+24, 6378140.0)
print(Planet.EARTH.surface_gravity) # 9.802652743337129
print()
@unique
print(Color.RED == 'red') # True
print(Color.GREEN == 'green') # True
print(Color.GREEN == 'red') # False
print()
print(Color.RED in Color) # True
print("red" in Color) # False
print("red" in Color) # False
print()
print('Color is ' + Color.RED) # Color is red
print('Color is ' + Color.RED + Color.GREEN) # Color is redgreen
print('Colors: ' + ', '.join(Color)) # Colors: red, green, blue
print()
data = [
{
'name': 'car',
'color': Color.RED,
},
{
'name': 'dog',
'color': Color.BLUE,
},
]
print(data)
print(Color('red')) # Color.red
print(Color('blue')) # Color.blue
# print(Color('yellow')) # ValueError: 'yellow' is not a valid Color
print()
import json
print(json.dumps(data, indent=4))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
834,
9800,
834,
796,
705,
541,
21879,
1077,
6,
628,
198,
2,
3740,
1378,
31628,
13,
29412,
13,
2398,
14,
18,
13,
20,
14,
32016,
14,
44709,
13,
6494,
198,
6738,
33829,
1330,
2039,
388,
11,
2558,
4834,
388,
11,
3748,
628,
198,
198,
4798,
7,
40002,
13,
8643,
6624,
13792,
13,
33,
6500,
8,
220,
1303,
10352,
198,
4798,
7,
40002,
13,
8643,
6624,
13792,
13,
8643,
8,
220,
1303,
6407,
198,
4798,
7,
40002,
13,
8643,
318,
13792,
13,
8643,
8,
220,
1303,
6407,
198,
4798,
7,
40002,
13,
8643,
6624,
352,
8,
220,
1303,
10352,
198,
4798,
3419,
198,
198,
4798,
7,
40002,
8,
220,
1303,
1279,
44709,
705,
40002,
44167,
198,
4798,
7,
4868,
7,
40002,
4008,
220,
1303,
685,
27,
40002,
13,
8643,
25,
352,
22330,
1279,
40002,
13,
33,
6500,
25,
362,
22330,
1279,
40002,
13,
34,
1404,
25,
513,
22330,
1279,
40002,
13,
35,
7730,
25,
604,
37981,
198,
4798,
3419,
198,
198,
1640,
2124,
287,
13792,
25,
198,
220,
220,
220,
3601,
10786,
90,
38362,
45144,
36786,
796,
23884,
4458,
18982,
7,
87,
11,
2124,
13,
3672,
11,
2124,
13,
8367,
4008,
198,
198,
4798,
3419,
628,
198,
198,
4798,
7,
40002,
17,
13,
8643,
6624,
13792,
17,
13,
33,
6500,
8,
220,
1303,
10352,
198,
4798,
7,
40002,
17,
13,
8643,
6624,
13792,
17,
13,
8643,
8,
220,
1303,
6407,
198,
4798,
7,
40002,
17,
13,
8643,
318,
13792,
17,
13,
8643,
8,
220,
1303,
6407,
198,
4798,
7,
40002,
17,
13,
8643,
6624,
352,
8,
220,
1303,
6407,
198,
4798,
3419,
628,
198,
4798,
3419,
628,
198,
2,
3740,
1378,
31628,
13,
29412,
13,
2398,
14,
18,
13,
20,
14,
32016,
14,
44709,
13,
6494,
2,
47427,
628,
198,
4798,
7,
41801,
13,
17133,
4221,
13,
8367,
8,
220,
1303,
357,
20,
13,
24,
4304,
68,
10,
1731,
11,
718,
30695,
15187,
13,
15,
8,
198,
4798,
7,
41801,
13,
17133,
4221,
13,
42029,
62,
46453,
8,
220,
1303,
860,
13,
1795,
22980,
28857,
2091,
2718,
18741,
198,
4798,
3419,
628,
198,
198,
31,
34642,
628,
198,
4798,
7,
10258,
13,
22083,
6624,
705,
445,
11537,
220,
1303,
6407,
198,
4798,
7,
10258,
13,
43016,
6624,
705,
14809,
11537,
220,
1303,
6407,
198,
4798,
7,
10258,
13,
43016,
6624,
705,
445,
11537,
220,
1303,
10352,
198,
4798,
3419,
198,
4798,
7,
10258,
13,
22083,
287,
5315,
8,
220,
1303,
6407,
198,
4798,
7203,
445,
1,
287,
5315,
8,
220,
1303,
10352,
198,
4798,
7203,
445,
1,
287,
5315,
8,
220,
1303,
10352,
198,
4798,
3419,
198,
4798,
10786,
10258,
318,
705,
1343,
5315,
13,
22083,
8,
220,
1303,
5315,
318,
2266,
198,
4798,
10786,
10258,
318,
705,
1343,
5315,
13,
22083,
1343,
5315,
13,
43016,
8,
220,
1303,
5315,
318,
2266,
14809,
198,
4798,
10786,
5216,
669,
25,
705,
1343,
46083,
45302,
22179,
7,
10258,
4008,
220,
1303,
29792,
25,
2266,
11,
4077,
11,
4171,
198,
4798,
3419,
198,
198,
7890,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
705,
7718,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
8043,
10354,
5315,
13,
22083,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
705,
9703,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
8043,
10354,
5315,
13,
9148,
8924,
11,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
4798,
7,
7890,
8,
198,
4798,
7,
10258,
10786,
445,
6,
4008,
220,
1303,
5315,
13,
445,
198,
4798,
7,
10258,
10786,
17585,
6,
4008,
220,
1303,
5315,
13,
17585,
198,
2,
3601,
7,
10258,
10786,
36022,
6,
4008,
220,
1303,
11052,
12331,
25,
705,
36022,
6,
318,
407,
257,
4938,
5315,
198,
4798,
3419,
198,
198,
11748,
33918,
198,
4798,
7,
17752,
13,
67,
8142,
7,
7890,
11,
33793,
28,
19,
4008,
198
] | 2.463704 | 675 |
# finds solutions to quadratic equations like
# ax2 + bx + c = 0, where
# a, b and c are real numbers and
# a ≠ 0
import cmath
import tkinter as tk
| [
2,
7228,
8136,
284,
15094,
81,
1512,
27490,
588,
198,
2,
220,
220,
7877,
17,
1343,
275,
87,
1343,
269,
796,
657,
11,
810,
198,
2,
220,
220,
257,
11,
275,
290,
269,
389,
1103,
3146,
290,
198,
2,
220,
220,
257,
220,
15139,
254,
657,
198,
198,
11748,
269,
11018,
198,
11748,
256,
74,
3849,
355,
256,
74,
628,
198
] | 2.590164 | 61 |
import numpy as np
| [
11748,
299,
32152,
355,
45941,
198
] | 3.166667 | 6 |
# -*- coding: utf-8 -*-
import scrapy
from bs4 import BeautifulSoup
from cultureBigdata.items import CultureEventItem, CultureNewsItem, CultureBasicItem
import re
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium.webdriver.support.ui import WebDriverWait
import time
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
11748,
15881,
88,
201,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
201,
198,
6738,
3968,
12804,
7890,
13,
23814,
1330,
17346,
9237,
7449,
11,
17346,
9980,
7449,
11,
17346,
26416,
7449,
201,
198,
11748,
302,
201,
198,
6738,
384,
11925,
1505,
1330,
3992,
26230,
201,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11321,
13,
13083,
1330,
26363,
201,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
46659,
13,
25811,
1330,
18634,
201,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11321,
13,
8906,
1202,
62,
11128,
5738,
1330,
2935,
1202,
15610,
5738,
201,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
13,
9019,
1330,
5313,
32103,
21321,
201,
198,
11748,
640,
201,
198,
201,
198
] | 3.304348 | 138 |
from gen.java9 import Java9_v2Listener
| [
6738,
2429,
13,
12355,
24,
1330,
7349,
24,
62,
85,
17,
33252,
628,
198
] | 2.928571 | 14 |
import textwrap
import requests
from coinbase_commerce.api_resources.charge import Charge
from coinbase_commerce.api_resources.checkout import Checkout
from coinbase_commerce.api_resources.event import Event
from coinbase_commerce.auth import APIAuth
from coinbase_commerce.compat import quote
from coinbase_commerce.compat import urljoin
from coinbase_commerce.error import APIError
from coinbase_commerce.error import build_api_error
from coinbase_commerce.response import CoinbaseResponse
from coinbase_commerce.util import check_uri_security, lazy_property
from coinbase_commerce.util import encode_params
class Client(object):
"""
API Client for the Coinbase API.
Entry point for making requests to the Coinbase API.
Full API docs available here: https://commerce.coinbase.com/docs/api/
"""
BASE_API_URI = 'https://api.commerce.coinbase.com/'
API_VERSION = '2018-03-22'
# Set api resource relations. with lazy evaluated descriptors
# ---->
@lazy_property
@lazy_property
@lazy_property
# <----
def _request(self, method, *relative_path_parts, **kwargs):
"""
Internal helper for creating HTTP requests to the Coinbase Commerce API.
Raises the appropriate exceptions when necessary; otherwise, returns the
response.
"""
uri = self._create_api_uri(*relative_path_parts)
data = kwargs.pop('data', None)
if data and isinstance(data, dict):
kwargs['data'] = encode_params(data)
try:
response = getattr(self.session, method)(uri, **kwargs)
except Exception as e:
self._handle_request_error(e)
else:
proceeded_response = self._proceed_response(response)
return proceeded_response
| [
11748,
2420,
37150,
198,
198,
11748,
7007,
198,
198,
6738,
10752,
8692,
62,
27061,
13,
15042,
62,
37540,
13,
10136,
1330,
20260,
198,
6738,
10752,
8692,
62,
27061,
13,
15042,
62,
37540,
13,
9122,
448,
1330,
6822,
448,
198,
6738,
10752,
8692,
62,
27061,
13,
15042,
62,
37540,
13,
15596,
1330,
8558,
198,
6738,
10752,
8692,
62,
27061,
13,
18439,
1330,
3486,
3539,
1071,
198,
6738,
10752,
8692,
62,
27061,
13,
5589,
265,
1330,
9577,
198,
6738,
10752,
8692,
62,
27061,
13,
5589,
265,
1330,
19016,
22179,
198,
6738,
10752,
8692,
62,
27061,
13,
18224,
1330,
7824,
12331,
198,
6738,
10752,
8692,
62,
27061,
13,
18224,
1330,
1382,
62,
15042,
62,
18224,
198,
6738,
10752,
8692,
62,
27061,
13,
26209,
1330,
45802,
31077,
198,
6738,
10752,
8692,
62,
27061,
13,
22602,
1330,
2198,
62,
9900,
62,
12961,
11,
16931,
62,
26745,
198,
6738,
10752,
8692,
62,
27061,
13,
22602,
1330,
37773,
62,
37266,
628,
198,
4871,
20985,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7824,
20985,
329,
262,
45802,
7824,
13,
198,
220,
220,
220,
21617,
966,
329,
1642,
7007,
284,
262,
45802,
7824,
13,
198,
220,
220,
220,
6462,
7824,
34165,
1695,
994,
25,
3740,
1378,
27061,
13,
3630,
8692,
13,
785,
14,
31628,
14,
15042,
14,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
49688,
62,
17614,
62,
47269,
796,
705,
5450,
1378,
15042,
13,
27061,
13,
3630,
8692,
13,
785,
14,
6,
198,
220,
220,
220,
7824,
62,
43717,
796,
705,
7908,
12,
3070,
12,
1828,
6,
628,
220,
220,
220,
1303,
5345,
40391,
8271,
2316,
13,
351,
16931,
16726,
12145,
669,
198,
220,
220,
220,
1303,
13498,
29,
198,
220,
220,
220,
2488,
75,
12582,
62,
26745,
628,
220,
220,
220,
2488,
75,
12582,
62,
26745,
628,
220,
220,
220,
2488,
75,
12582,
62,
26745,
198,
220,
220,
220,
1303,
1279,
650,
628,
220,
220,
220,
825,
4808,
25927,
7,
944,
11,
2446,
11,
1635,
43762,
62,
6978,
62,
42632,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
18628,
31904,
329,
4441,
14626,
7007,
284,
262,
45802,
16127,
7824,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7567,
2696,
262,
5035,
13269,
618,
3306,
26,
4306,
11,
5860,
262,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2956,
72,
796,
2116,
13557,
17953,
62,
15042,
62,
9900,
46491,
43762,
62,
6978,
62,
42632,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
479,
86,
22046,
13,
12924,
10786,
7890,
3256,
6045,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1366,
290,
318,
39098,
7,
7890,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
17816,
7890,
20520,
796,
37773,
62,
37266,
7,
7890,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
651,
35226,
7,
944,
13,
29891,
11,
2446,
5769,
9900,
11,
12429,
46265,
22046,
8,
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,
2116,
13557,
28144,
62,
25927,
62,
18224,
7,
68,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18814,
62,
26209,
796,
2116,
13557,
1676,
2707,
62,
26209,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18814,
62,
26209,
198
] | 2.901135 | 617 |
from sympy import Eq, Expr, Symbol
from sympy import latex
| [
6738,
10558,
88,
1330,
412,
80,
11,
1475,
1050,
11,
38357,
198,
6738,
10558,
88,
1330,
47038,
628,
628,
198
] | 3.15 | 20 |
#!/bin/env/python
'''
test boss_sbi.galaxies
'''
import numpy as np
from boss_sbi.halos import Quijote_LHC_HR
from boss_sbi import galaxies as Galaxies
# read in halo catalog
halos = Quijote_LHC_HR(1, z=0.5)
# get LOWZ HOD parameters
theta_hod = Galaxies.thetahod_lowz_ngc()
# apply HOD
gals = Galaxies.hodGalaxies(halos, theta_hod, seed=0)
print(np.array(gals['Position']))
| [
2,
48443,
8800,
14,
24330,
14,
29412,
198,
7061,
6,
198,
198,
9288,
6478,
62,
82,
8482,
13,
13528,
25472,
198,
198,
7061,
6,
198,
11748,
299,
32152,
355,
45941,
220,
198,
6738,
6478,
62,
82,
8482,
13,
14201,
418,
1330,
2264,
2926,
1258,
62,
43,
16045,
62,
17184,
198,
6738,
6478,
62,
82,
8482,
1330,
27982,
355,
5027,
25472,
198,
198,
2,
1100,
287,
289,
7335,
18388,
220,
198,
14201,
418,
796,
2264,
2926,
1258,
62,
43,
16045,
62,
17184,
7,
16,
11,
1976,
28,
15,
13,
20,
8,
198,
198,
2,
651,
46663,
57,
367,
3727,
10007,
198,
1169,
8326,
62,
2065,
796,
5027,
25472,
13,
1169,
83,
993,
375,
62,
9319,
89,
62,
782,
66,
3419,
198,
198,
2,
4174,
367,
3727,
220,
198,
70,
874,
796,
5027,
25472,
13,
2065,
26552,
25472,
7,
14201,
418,
11,
262,
8326,
62,
2065,
11,
9403,
28,
15,
8,
220,
198,
4798,
7,
37659,
13,
18747,
7,
70,
874,
17816,
26545,
20520,
4008,
198
] | 2.341463 | 164 |
from random import randint
| [
6738,
4738,
1330,
43720,
600,
628
] | 4.666667 | 6 |
import sys, math
input = sys.stdin.readline()
x1 = int(input.split(',')[0].split('.')[0])
y1 = int(input.split(',')[0].split('.')[1])
x2 = int(input.split(',')[1].split('.')[0])
y2 = int(input.split(',')[1].split('.')[1])
if(x1 == x2 and y1 == y2):
print str(0)
exit(0)
graph = dict()
grid_size = 12
# Cover even rows first
for row in range(-2, grid_size * 2 + 4):
for column in range(-2, grid_size + 4):
graph[str([row, column])] = dict()
node_edges = graph[str([row, column])]
# Generate the neighbours
node_edges[str([row - 1, column])] = 5
if str([row - 1, column]) not in graph:
graph[str([row - 1, column])] = dict()
node_edges[str([row + 1, column])] = 5
if str([row + 1, column]) not in graph:
graph[str([row + 1, column])] = dict()
if row % 2 == 0:
# Even rows
if(column % 2 == 0):
node_edges[str([row, column + 1])] = 5
if str([row, column + 1]) not in graph:
graph[str([row, column + 1])] = dict()
else:
node_edges[str([row, column - 1])] = 5
if str([row, column - 1]) not in graph:
graph[str([row, column - 1])] = dict()
else:
# Odd rows
if(column % 2 == 0):
node_edges[str([row, column - 1])] = 5
if str([row, column - 1]) not in graph:
graph[str([row, column - 1])] = dict()
else:
node_edges[str([row, column + 1])] = 5
if str([row, column + 1]) not in graph:
graph[str([row, column + 1])] = dict()
shortest_trip = float('inf')
src_nodes = hex_node_list(x1, y1)
dest_nodes = hex_node_list(x2, y2)
for src_node in src_nodes:
for dest_node in dest_nodes:
# print "Running dijktra from " + str(src_node) + " to " + str(dest_node)
shortest_path = dijkstra(graph, src_node, dest_node)
path_distance = ((len(shortest_path) - 1) * 5) + 10
if path_distance < shortest_trip:
shortest_trip = path_distance
# print shortest_path
#The correct answer is not being accepted correctly for this case, therefore we are brute forcing it until it is.
if x1 == 2 and y1 == 1 and x2 == 2 and y2 == 4:
shortest_trip = 0
print shortest_trip
| [
11748,
25064,
11,
10688,
628,
198,
15414,
796,
25064,
13,
19282,
259,
13,
961,
1370,
3419,
198,
87,
16,
796,
493,
7,
15414,
13,
35312,
7,
3256,
11537,
58,
15,
4083,
35312,
10786,
2637,
38381,
15,
12962,
198,
88,
16,
796,
493,
7,
15414,
13,
35312,
7,
3256,
11537,
58,
15,
4083,
35312,
10786,
2637,
38381,
16,
12962,
198,
87,
17,
796,
493,
7,
15414,
13,
35312,
7,
3256,
11537,
58,
16,
4083,
35312,
10786,
2637,
38381,
15,
12962,
198,
88,
17,
796,
493,
7,
15414,
13,
35312,
7,
3256,
11537,
58,
16,
4083,
35312,
10786,
2637,
38381,
16,
12962,
198,
198,
361,
7,
87,
16,
6624,
2124,
17,
290,
331,
16,
6624,
331,
17,
2599,
198,
220,
220,
220,
3601,
965,
7,
15,
8,
198,
220,
220,
220,
8420,
7,
15,
8,
198,
198,
34960,
796,
8633,
3419,
198,
25928,
62,
7857,
796,
1105,
198,
198,
2,
17546,
772,
15274,
717,
198,
1640,
5752,
287,
2837,
32590,
17,
11,
10706,
62,
7857,
1635,
362,
1343,
604,
2599,
198,
220,
220,
220,
329,
5721,
287,
2837,
32590,
17,
11,
10706,
62,
7857,
1343,
604,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
11,
5721,
12962,
60,
796,
8633,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
276,
3212,
796,
4823,
58,
2536,
26933,
808,
11,
5721,
12962,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2980,
378,
262,
23788,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
532,
352,
11,
5721,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
532,
352,
11,
5721,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
532,
352,
11,
5721,
12962,
60,
796,
8633,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
1343,
352,
11,
5721,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
1343,
352,
11,
5721,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
1343,
352,
11,
5721,
12962,
60,
796,
8633,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
611,
5752,
4064,
362,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3412,
15274,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7,
28665,
4064,
362,
6624,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
11,
5721,
1343,
352,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
11,
5721,
1343,
352,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
11,
5721,
1343,
352,
12962,
60,
796,
8633,
3419,
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,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
11,
5721,
532,
352,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
11,
5721,
532,
352,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
11,
5721,
532,
352,
12962,
60,
796,
8633,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20664,
15274,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7,
28665,
4064,
362,
6624,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
11,
5721,
532,
352,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
11,
5721,
532,
352,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
11,
5721,
532,
352,
12962,
60,
796,
8633,
3419,
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,
10139,
62,
276,
3212,
58,
2536,
26933,
808,
11,
5721,
1343,
352,
12962,
60,
796,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
26933,
808,
11,
5721,
1343,
352,
12962,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
2536,
26933,
808,
11,
5721,
1343,
352,
12962,
60,
796,
8633,
3419,
198,
198,
19509,
395,
62,
39813,
796,
12178,
10786,
10745,
11537,
198,
10677,
62,
77,
4147,
796,
17910,
62,
17440,
62,
4868,
7,
87,
16,
11,
331,
16,
8,
198,
16520,
62,
77,
4147,
796,
17910,
62,
17440,
62,
4868,
7,
87,
17,
11,
331,
17,
8,
198,
198,
1640,
12351,
62,
17440,
287,
12351,
62,
77,
4147,
25,
198,
220,
220,
220,
329,
2244,
62,
17440,
287,
2244,
62,
77,
4147,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
366,
28768,
2566,
73,
74,
9535,
422,
366,
1343,
965,
7,
10677,
62,
17440,
8,
1343,
366,
284,
366,
1343,
965,
7,
16520,
62,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
35581,
62,
6978,
796,
2566,
73,
74,
12044,
7,
34960,
11,
12351,
62,
17440,
11,
2244,
62,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
30246,
796,
14808,
11925,
7,
19509,
395,
62,
6978,
8,
532,
352,
8,
1635,
642,
8,
1343,
838,
628,
220,
220,
220,
220,
220,
220,
220,
611,
3108,
62,
30246,
1279,
35581,
62,
39813,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35581,
62,
39813,
796,
3108,
62,
30246,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
35581,
62,
6978,
198,
198,
2,
464,
3376,
3280,
318,
407,
852,
6292,
9380,
329,
428,
1339,
11,
4361,
356,
389,
33908,
10833,
340,
1566,
340,
318,
13,
198,
361,
2124,
16,
6624,
362,
290,
331,
16,
6624,
352,
290,
2124,
17,
6624,
362,
290,
331,
17,
6624,
604,
25,
198,
220,
220,
220,
35581,
62,
39813,
796,
657,
198,
4798,
35581,
62,
39813,
198
] | 2.058419 | 1,164 |
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019 Edward Lau <[email protected]>
# Licensed under the MIT License.
#
import os
import sys
sys.path = [os.getcwd()] + sys.path # VS Code debugger needs it because it default cwd to {workspace}/example.
from aiohttp import ClientResponse
from etlite.common import cfg ,get_logger
from etlite.common.base_etl import BaseEtl
from example.base_example_restapi_etl import BaseExampleRestApiEtl
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
198,
2,
15069,
357,
34,
8,
13130,
10443,
40014,
1279,
417,
559,
3064,
19,
31,
45938,
36435,
13,
3262,
29,
198,
2,
49962,
739,
262,
17168,
13789,
13,
198,
2,
198,
198,
11748,
220,
28686,
198,
11748,
220,
25064,
198,
17597,
13,
6978,
796,
685,
418,
13,
1136,
66,
16993,
3419,
60,
1343,
25064,
13,
6978,
1303,
22269,
6127,
49518,
2476,
340,
780,
340,
4277,
269,
16993,
284,
1391,
5225,
10223,
92,
14,
20688,
13,
198,
198,
6738,
220,
220,
220,
257,
952,
4023,
1330,
220,
20985,
31077,
198,
6738,
220,
220,
220,
2123,
36890,
13,
11321,
220,
220,
1330,
220,
30218,
70,
837,
1136,
62,
6404,
1362,
198,
6738,
220,
220,
220,
2123,
36890,
13,
11321,
13,
8692,
62,
316,
75,
220,
1330,
220,
7308,
36,
28781,
198,
6738,
220,
220,
220,
1672,
13,
8692,
62,
20688,
62,
2118,
15042,
62,
316,
75,
220,
1330,
220,
7308,
16281,
19452,
32,
14415,
36,
28781,
198
] | 2.711765 | 170 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import os
import sys
sys.path.append("..")
sys.path.append("../..")
import graph
if __name__ == '__main__':
output_directory = "compressed_graphs"
convert_graph("../baselines/profiles/inception_v3/graph.txt", output_directory, 'inception_v3')
convert_graph("../baselines/profiles/nasnetamobile/graph.txt", output_directory, 'nasnetamobile')
convert_graph("../baselines/profiles/nasnetalarge/graph.txt", output_directory, 'nasnetalarge')
| [
2,
15069,
357,
66,
8,
5413,
10501,
13,
198,
2,
49962,
739,
262,
17168,
5964,
13,
198,
198,
11748,
28686,
198,
11748,
25064,
198,
17597,
13,
6978,
13,
33295,
7203,
492,
4943,
198,
17597,
13,
6978,
13,
33295,
7203,
40720,
492,
4943,
198,
11748,
4823,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
5072,
62,
34945,
796,
366,
5589,
2790,
62,
34960,
82,
1,
198,
220,
220,
220,
10385,
62,
34960,
7203,
40720,
12093,
20655,
14,
5577,
2915,
14,
924,
1159,
62,
85,
18,
14,
34960,
13,
14116,
1600,
5072,
62,
34945,
11,
705,
924,
1159,
62,
85,
18,
11537,
198,
220,
220,
220,
10385,
62,
34960,
7203,
40720,
12093,
20655,
14,
5577,
2915,
14,
24716,
3262,
321,
3579,
14,
34960,
13,
14116,
1600,
5072,
62,
34945,
11,
705,
24716,
3262,
321,
3579,
11537,
198,
220,
220,
220,
10385,
62,
34960,
7203,
40720,
12093,
20655,
14,
5577,
2915,
14,
24716,
3262,
282,
1376,
14,
34960,
13,
14116,
1600,
5072,
62,
34945,
11,
705,
24716,
3262,
282,
1376,
11537,
198
] | 2.988701 | 177 |
PREVIEW_CHOICES = [
('slider', 'Slider'),
('pre-order', 'Pre-order'),
('new', 'New'),
('offer', 'Offer'),
('hidden', 'Hidden'),
]
CATEGORY_CHOICES = [
('accesory', 'Accesory'),
('bottom', 'Bottoms'),
('hoodie', 'Hoodies'),
('outerwear', 'Outerwears'),
('sneaker', 'Sneakers'),
('t-shirt', 'T-Shirts'),
] | [
46437,
28206,
62,
44899,
34444,
796,
685,
198,
220,
220,
220,
19203,
6649,
1304,
3256,
705,
11122,
1304,
33809,
198,
220,
220,
220,
19203,
3866,
12,
2875,
3256,
705,
6719,
12,
2875,
33809,
198,
220,
220,
220,
19203,
3605,
3256,
705,
3791,
33809,
198,
220,
220,
220,
19203,
47895,
3256,
705,
9362,
263,
33809,
198,
220,
220,
220,
19203,
30342,
3256,
705,
41691,
33809,
198,
60,
198,
198,
34,
6158,
38,
15513,
62,
44899,
34444,
796,
685,
198,
220,
220,
220,
19203,
330,
728,
652,
3256,
705,
17320,
274,
652,
33809,
198,
220,
220,
220,
19203,
22487,
3256,
705,
28653,
3150,
33809,
198,
220,
220,
220,
19203,
2894,
494,
3256,
705,
39,
702,
444,
33809,
198,
220,
220,
220,
19203,
39605,
13927,
3256,
705,
7975,
263,
86,
4127,
33809,
198,
220,
220,
220,
19203,
82,
710,
3110,
3256,
705,
50,
710,
3979,
33809,
198,
220,
220,
220,
19203,
83,
12,
15600,
3256,
705,
51,
12,
2484,
9682,
33809,
198,
60
] | 2.175 | 160 |
# -*- coding: utf-8 -*-
# Copyright (c) 2015-2016 MIT Probabilistic Computing Project
# 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 pytest
import numpy as np
from cgpm.crosscat.engine import Engine
from cgpm.utils import general as gu
DATA_NUM_0 = 100
DATA_NUM_1 = 200
NUM_SIM = 10000
NUM_ITER = 5
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
2,
15069,
357,
66,
8,
1853,
12,
5304,
17168,
30873,
14991,
2569,
38589,
4935,
198,
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,
198,
2,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
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,
198,
11748,
12972,
9288,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
269,
70,
4426,
13,
19692,
9246,
13,
18392,
1330,
7117,
198,
6738,
269,
70,
4426,
13,
26791,
1330,
2276,
355,
915,
628,
198,
26947,
62,
41359,
62,
15,
796,
1802,
198,
26947,
62,
41359,
62,
16,
796,
939,
198,
41359,
62,
48913,
796,
33028,
198,
41359,
62,
2043,
1137,
796,
642,
628
] | 3.463519 | 233 |
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2013 UnitedStack Inc.
# All Rights Reserved
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
| [
2,
43907,
25,
7400,
11338,
28,
19,
6482,
10394,
28,
19,
2705,
8658,
11338,
28,
19,
198,
198,
2,
15069,
2211,
1578,
25896,
3457,
13,
198,
2,
1439,
6923,
33876,
198,
2,
198,
2,
220,
220,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
345,
743,
198,
2,
220,
220,
220,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
921,
743,
7330,
198,
2,
220,
220,
220,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
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,
220,
220,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
220,
220,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
198,
2,
220,
220,
220,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
4091,
262,
198,
2,
220,
220,
220,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
11247,
198,
2,
220,
220,
220,
739,
262,
13789,
13,
628
] | 3.363184 | 201 |
# Tabular Data Classification with AutoML
# Import libraries
import pandas as pd
import tensorflow as tf
import autokeras as ak
from sklearn.model_selection import train_test_split
# Set logging level to hide warnings
tf.get_logger().setLevel('ERROR')
# Set folder path
file_path = "C:/Demos/1 - Tabular Data Classification/Titanic.csv"
# Read the data into a data frame
data = pd.read_csv(file_path)
# Inspect the data set
data.head()
len(data)
# Split the data into training and test sets
train_x, test_x = train_test_split(
data,
test_size = 0.2)
# Inspect the size of the data sets
len(train_x)
len(test_x)
# Pop the last column off the data frame
train_y = train_x.pop("Survived")
test_y = test_x.pop("Survived")
# Inspect the training data set
train_x.head()
train_y.head()
# Inspect the test data set
test_x.head()
test_y.head()
# Create a structured data classifier
classifier = ak.StructuredDataClassifier(
max_trials = 5)
# Train the model
classifier.fit(
x = train_x,
y = train_y,
epochs = 10)
# Summarize the best model
classifier.export_model().summary()
# Evaluate the model
score = classifier.evaluate(
x = test_x,
y = test_y)
# Inspect the accuracy
print(score[1])
# Will Rose survive the Titanic?
rose_x = pd.DataFrame(
data = [{
"Sex": "female",
"Age" : 17,
"Family" : 2,
"Class" : 1,
"Fare" : 150.0,
"Cabin" : "B",
"Port" : "Southampton"}])
# Inspect Rose's data
rose_x.head()
# Predict if Rose will survive
classifier.predict(rose_x)[0][0]
# Will Jack survive?
jack_x = pd.DataFrame(
data = [{
"Sex": "male",
"Age" : 20,
"Family" : 0,
"Class" : 3,
"Fare" : 15.0,
"Cabin" : "F",
"Port" : "Southampton"}])
# Predict if Jack will survive
classifier.predict(jack_x)[0][0]
| [
2,
16904,
934,
6060,
40984,
351,
11160,
5805,
198,
198,
2,
17267,
12782,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
1960,
11020,
292,
355,
47594,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
198,
2,
5345,
18931,
1241,
284,
7808,
14601,
198,
27110,
13,
1136,
62,
6404,
1362,
22446,
2617,
4971,
10786,
24908,
11537,
198,
198,
2,
5345,
9483,
3108,
198,
7753,
62,
6978,
796,
366,
34,
14079,
11522,
418,
14,
16,
532,
16904,
934,
6060,
40984,
14,
51,
18642,
291,
13,
40664,
1,
198,
198,
2,
4149,
262,
1366,
656,
257,
1366,
5739,
198,
7890,
796,
279,
67,
13,
961,
62,
40664,
7,
7753,
62,
6978,
8,
198,
198,
2,
20904,
262,
1366,
900,
198,
7890,
13,
2256,
3419,
198,
11925,
7,
7890,
8,
198,
198,
2,
27758,
262,
1366,
656,
3047,
290,
1332,
5621,
198,
27432,
62,
87,
11,
1332,
62,
87,
796,
4512,
62,
9288,
62,
35312,
7,
198,
220,
220,
220,
1366,
11,
198,
220,
220,
220,
1332,
62,
7857,
796,
657,
13,
17,
8,
198,
198,
2,
20904,
262,
2546,
286,
262,
1366,
5621,
198,
11925,
7,
27432,
62,
87,
8,
198,
11925,
7,
9288,
62,
87,
8,
198,
198,
2,
8099,
262,
938,
5721,
572,
262,
1366,
5739,
198,
27432,
62,
88,
796,
4512,
62,
87,
13,
12924,
7203,
34652,
1572,
4943,
198,
9288,
62,
88,
796,
1332,
62,
87,
13,
12924,
7203,
34652,
1572,
4943,
198,
198,
2,
20904,
262,
3047,
1366,
900,
198,
27432,
62,
87,
13,
2256,
3419,
198,
27432,
62,
88,
13,
2256,
3419,
198,
198,
2,
20904,
262,
1332,
1366,
900,
198,
9288,
62,
87,
13,
2256,
3419,
198,
9288,
62,
88,
13,
2256,
3419,
198,
198,
2,
13610,
257,
20793,
1366,
1398,
7483,
198,
4871,
7483,
796,
47594,
13,
44909,
1522,
6601,
9487,
7483,
7,
220,
220,
220,
220,
198,
220,
220,
220,
3509,
62,
28461,
874,
796,
642,
8,
198,
198,
2,
16835,
262,
2746,
198,
4871,
7483,
13,
11147,
7,
198,
220,
220,
220,
2124,
796,
4512,
62,
87,
11,
198,
220,
220,
220,
331,
796,
4512,
62,
88,
11,
198,
220,
220,
220,
36835,
82,
796,
838,
8,
198,
198,
2,
5060,
3876,
1096,
262,
1266,
2746,
198,
4871,
7483,
13,
39344,
62,
19849,
22446,
49736,
3419,
198,
198,
2,
26439,
4985,
262,
2746,
198,
26675,
796,
1398,
7483,
13,
49786,
7,
198,
220,
220,
220,
2124,
796,
1332,
62,
87,
11,
198,
220,
220,
220,
331,
796,
1332,
62,
88,
8,
198,
198,
2,
20904,
262,
9922,
198,
4798,
7,
26675,
58,
16,
12962,
198,
198,
2,
2561,
8049,
7866,
262,
41184,
30,
198,
13698,
62,
87,
796,
279,
67,
13,
6601,
19778,
7,
198,
220,
220,
220,
1366,
796,
685,
90,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23398,
1298,
366,
24724,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23396,
1,
1058,
1596,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24094,
1,
1058,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9487,
1,
1058,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37,
533,
1,
1058,
6640,
13,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34,
6014,
1,
1058,
366,
33,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13924,
1,
1058,
366,
14942,
23427,
20662,
12962,
198,
198,
2,
20904,
8049,
338,
1366,
198,
13698,
62,
87,
13,
2256,
3419,
198,
198,
2,
49461,
611,
8049,
481,
7866,
198,
4871,
7483,
13,
79,
17407,
7,
13698,
62,
87,
38381,
15,
7131,
15,
60,
198,
198,
2,
2561,
3619,
7866,
30,
198,
19650,
62,
87,
796,
279,
67,
13,
6601,
19778,
7,
198,
220,
220,
220,
1366,
796,
685,
90,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23398,
1298,
366,
22606,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23396,
1,
1058,
1160,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24094,
1,
1058,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9487,
1,
1058,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37,
533,
1,
1058,
1315,
13,
15,
11,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34,
6014,
1,
1058,
366,
37,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13924,
1,
1058,
366,
14942,
23427,
20662,
12962,
198,
198,
2,
49461,
611,
3619,
481,
7866,
198,
4871,
7483,
13,
79,
17407,
7,
19650,
62,
87,
38381,
15,
7131,
15,
60,
198
] | 2.395437 | 789 |
#!/usr/bin/python
# vim: set fileencoding=utf-8 :
import os
import codecs
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
43907,
25,
900,
2393,
12685,
7656,
28,
40477,
12,
23,
1058,
198,
198,
11748,
28686,
198,
11748,
40481,
82,
628,
628,
198
] | 2.548387 | 31 |
import asyncio
import functools
import threading
import numpy as np
from numba import cuda
from numba.core import utils
from numba.cuda.testing import unittest, CUDATestCase, skip_on_cudasim
asyncio_create_task = asyncio.create_task if utils.PYVERSION >= (3, 7) \
else asyncio.ensure_future
@skip_on_cudasim('CUDA Driver API unsupported in the simulator')
@skip_on_cudasim('CUDA Driver API unsupported in the simulator')
if __name__ == '__main__':
unittest.main()
| [
11748,
30351,
952,
198,
11748,
1257,
310,
10141,
198,
11748,
4704,
278,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
997,
7012,
1330,
269,
15339,
198,
6738,
997,
7012,
13,
7295,
1330,
3384,
4487,
198,
6738,
997,
7012,
13,
66,
15339,
13,
33407,
1330,
555,
715,
395,
11,
327,
8322,
1404,
395,
20448,
11,
14267,
62,
261,
62,
66,
463,
292,
320,
628,
198,
198,
292,
13361,
952,
62,
17953,
62,
35943,
796,
30351,
952,
13,
17953,
62,
35943,
611,
3384,
4487,
13,
47,
56,
43717,
18189,
357,
18,
11,
767,
8,
3467,
198,
220,
220,
220,
2073,
30351,
952,
13,
641,
495,
62,
37443,
628,
198,
31,
48267,
62,
261,
62,
66,
463,
292,
320,
10786,
43633,
5631,
12434,
7824,
24222,
287,
262,
35375,
11537,
628,
198,
31,
48267,
62,
261,
62,
66,
463,
292,
320,
10786,
43633,
5631,
12434,
7824,
24222,
287,
262,
35375,
11537,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 2.829412 | 170 |
import sys
import os
sys.path.insert(
0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
from saltunittest import TestCase, TestLoader, TextTestRunner, skipIf
try:
from mock import MagicMock, patch
has_mock = True
except ImportError:
has_mock = False
import salt.states.rvm as rvm
rvm.__salt__ = {}
rvm.__opts__ = {'test': False}
@skipIf(has_mock is False, "mock python module is unavailable")
if __name__ == "__main__":
loader = TestLoader()
tests = loader.loadTestsFromTestCase(TestRvmState)
TextTestRunner(verbosity=1).run(tests)
| [
11748,
25064,
198,
11748,
28686,
198,
17597,
13,
6978,
13,
28463,
7,
198,
220,
220,
220,
657,
11,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
828,
705,
492,
3256,
705,
492,
6,
22305,
198,
198,
6738,
8268,
403,
715,
395,
1330,
6208,
20448,
11,
6208,
17401,
11,
8255,
14402,
49493,
11,
14267,
1532,
198,
28311,
25,
198,
220,
220,
220,
422,
15290,
1330,
6139,
44,
735,
11,
8529,
198,
220,
220,
220,
468,
62,
76,
735,
796,
6407,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
468,
62,
76,
735,
796,
10352,
198,
198,
11748,
8268,
13,
27219,
13,
81,
14761,
355,
374,
14761,
198,
81,
14761,
13,
834,
82,
2501,
834,
796,
23884,
198,
81,
14761,
13,
834,
404,
912,
834,
796,
1391,
6,
9288,
10354,
10352,
92,
628,
198,
31,
48267,
1532,
7,
10134,
62,
76,
735,
318,
10352,
11,
366,
76,
735,
21015,
8265,
318,
23485,
4943,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
40213,
796,
6208,
17401,
3419,
198,
220,
220,
220,
5254,
796,
40213,
13,
2220,
51,
3558,
4863,
14402,
20448,
7,
14402,
49,
14761,
9012,
8,
198,
220,
220,
220,
8255,
14402,
49493,
7,
19011,
16579,
28,
16,
737,
5143,
7,
41989,
8,
198
] | 2.594714 | 227 |
import logging
# dump functions for debugging
| [
11748,
18931,
198,
198,
2,
10285,
5499,
329,
28769,
198
] | 4.7 | 10 |
import badcrossbar
# Applied voltages in volts.
# 2D arrays must be used to avoid ambiguity.
applied_voltages = [[1.5],
[2.3],
[1.7]]
# Device resistances in ohms.
resistances = [[345, 903, 755, 257, 646],
[652, 401, 508, 166, 454],
[442, 874, 190, 244, 635]]
# Interconnect resistance in ohms.
r_i = 0.5
# Computing the solution.
solution = badcrossbar.compute(applied_voltages, resistances, r_i)
# Printing the current through the word line segment to the left of device in
# the second row and fourth column (Python uses zero-based indexing).
current = solution.currents.word_line[1, 3]
print('\nThe current through the word line segment is {} A.'.format(current))
# Printing the current at the third output (even when only one set of inputs
# is applied, it is necessary to specify the first index, in this case -- `0`).
current = solution.currents.output[0, 2]
print('\nThe current at the third output is {} A.'.format(current))
# Printing the current through the crossbar device in the last row and the
# last column (in Python, `-1` refers to the last element in an array).
current = solution.currents.device[-1, -1]
print('\nThe current through the crossbar device is {} A.'.format(current))
# Printing the voltage on the bit line node in the last row and second column.
voltage = solution.voltages.bit_line[-1, 1]
print('\nThe voltage at the bit line node is {} V.'.format(voltage))
| [
11748,
2089,
19692,
5657,
198,
198,
2,
27684,
13161,
1095,
287,
46297,
13,
198,
2,
362,
35,
26515,
1276,
307,
973,
284,
3368,
33985,
13,
198,
1324,
18511,
62,
37764,
1095,
796,
16410,
16,
13,
20,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
17,
13,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
16,
13,
22,
11907,
198,
198,
2,
16232,
4180,
1817,
287,
11752,
907,
13,
198,
35119,
1817,
796,
16410,
27712,
11,
860,
3070,
11,
767,
2816,
11,
36100,
11,
718,
3510,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
43193,
11,
22219,
11,
2026,
23,
11,
26753,
11,
604,
4051,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
39506,
11,
807,
4524,
11,
19884,
11,
35264,
11,
718,
2327,
11907,
198,
198,
2,
4225,
8443,
6625,
287,
11752,
907,
13,
198,
81,
62,
72,
796,
657,
13,
20,
198,
198,
2,
38589,
262,
4610,
13,
198,
82,
2122,
796,
2089,
19692,
5657,
13,
5589,
1133,
7,
1324,
18511,
62,
37764,
1095,
11,
4180,
1817,
11,
374,
62,
72,
8,
198,
198,
2,
44118,
262,
1459,
832,
262,
1573,
1627,
10618,
284,
262,
1364,
286,
3335,
287,
198,
2,
262,
1218,
5752,
290,
5544,
5721,
357,
37906,
3544,
6632,
12,
3106,
6376,
278,
737,
198,
14421,
796,
4610,
13,
14421,
82,
13,
4775,
62,
1370,
58,
16,
11,
513,
60,
198,
4798,
10786,
59,
77,
464,
1459,
832,
262,
1573,
1627,
10618,
318,
23884,
317,
2637,
13,
18982,
7,
14421,
4008,
198,
198,
2,
44118,
262,
1459,
379,
262,
2368,
5072,
357,
10197,
618,
691,
530,
900,
286,
17311,
198,
2,
318,
5625,
11,
340,
318,
3306,
284,
11986,
262,
717,
6376,
11,
287,
428,
1339,
1377,
4600,
15,
63,
737,
198,
14421,
796,
4610,
13,
14421,
82,
13,
22915,
58,
15,
11,
362,
60,
198,
4798,
10786,
59,
77,
464,
1459,
379,
262,
2368,
5072,
318,
23884,
317,
2637,
13,
18982,
7,
14421,
4008,
198,
198,
2,
44118,
262,
1459,
832,
262,
3272,
5657,
3335,
287,
262,
938,
5752,
290,
262,
198,
2,
938,
5721,
357,
259,
11361,
11,
4600,
12,
16,
63,
10229,
284,
262,
938,
5002,
287,
281,
7177,
737,
198,
14421,
796,
4610,
13,
14421,
82,
13,
25202,
58,
12,
16,
11,
532,
16,
60,
198,
4798,
10786,
59,
77,
464,
1459,
832,
262,
3272,
5657,
3335,
318,
23884,
317,
2637,
13,
18982,
7,
14421,
4008,
198,
198,
2,
44118,
262,
15004,
319,
262,
1643,
1627,
10139,
287,
262,
938,
5752,
290,
1218,
5721,
13,
198,
37764,
496,
796,
4610,
13,
37764,
1095,
13,
2545,
62,
1370,
58,
12,
16,
11,
352,
60,
198,
4798,
10786,
59,
77,
464,
15004,
379,
262,
1643,
1627,
10139,
318,
23884,
569,
2637,
13,
18982,
7,
37764,
496,
4008,
198
] | 2.94 | 500 |
#!/usr/bin/env python
import os
import json
import numpy
import tqdm
import ltron.settings as settings
from ltron.bricks.brick_scene import BrickScene
omr_ldraw_directory = os.path.join(settings.paths['omr'], 'ldraw')
file_names = list(sorted(os.listdir(omr_ldraw_directory)))
path_data = {}
for file_name in tqdm.tqdm(file_names):
path = os.path.join(omr_ldraw_directory, file_name)
scene = BrickScene(track_snaps=True)
try:
scene.import_ldraw(path)
except:
print('Unable to load path: %s'%path)
continue
path_data[file_name] = {}
path_data[file_name]['brick_counts'] = {}
for instance_id, instance in scene.instances.items():
brick_shape = str(instance.brick_shape)
if brick_shape not in path_data[file_name]['brick_counts']:
path_data[file_name]['brick_counts'][brick_shape] = 0
path_data[file_name]['brick_counts'][brick_shape] += 1
edges = scene.get_all_edges(unidirectional=True)
path_data[file_name]['edge_data'] = {}
for a, b in edges.T:
instance_a = scene.instances[a]
brick_shape_a = str(instance_a.brick_shape)
transform_a = instance_a.transform
instance_b = scene.instances[b]
brick_shape_b = str(instance_b.brick_shape)
transform_b = instance_b.transform
ab = numpy.dot(numpy.linalg.inv(transform_a), transform_b)
edge_string = '%s,%s'%(brick_shape_a, brick_shape_b)
if edge_string not in path_data[file_name]['edge_data']:
path_data[file_name]['edge_data'][edge_string] = []
path_data[file_name]['edge_data'][edge_string].append(ab.tolist())
with open(os.path.join(settings.paths['omr'], 'scene_data.json'), 'w') as f:
json.dump(path_data, f, indent=2)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
11748,
28686,
198,
11748,
33918,
198,
198,
11748,
299,
32152,
198,
198,
11748,
256,
80,
36020,
198,
198,
11748,
300,
83,
1313,
13,
33692,
355,
6460,
198,
6738,
300,
83,
1313,
13,
65,
23706,
13,
1671,
624,
62,
29734,
1330,
28347,
36542,
198,
198,
296,
81,
62,
335,
1831,
62,
34945,
796,
28686,
13,
6978,
13,
22179,
7,
33692,
13,
6978,
82,
17816,
296,
81,
6,
4357,
705,
335,
1831,
11537,
198,
198,
7753,
62,
14933,
796,
1351,
7,
82,
9741,
7,
418,
13,
4868,
15908,
7,
296,
81,
62,
335,
1831,
62,
34945,
22305,
198,
198,
6978,
62,
7890,
796,
23884,
198,
198,
1640,
2393,
62,
3672,
287,
256,
80,
36020,
13,
83,
80,
36020,
7,
7753,
62,
14933,
2599,
198,
220,
220,
220,
3108,
796,
28686,
13,
6978,
13,
22179,
7,
296,
81,
62,
335,
1831,
62,
34945,
11,
2393,
62,
3672,
8,
198,
220,
220,
220,
3715,
796,
28347,
36542,
7,
11659,
62,
16184,
1686,
28,
17821,
8,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3715,
13,
11748,
62,
335,
1831,
7,
6978,
8,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
3118,
540,
284,
3440,
3108,
25,
4064,
82,
6,
4,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
60,
796,
23884,
628,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
1671,
624,
62,
9127,
82,
20520,
796,
23884,
198,
220,
220,
220,
329,
4554,
62,
312,
11,
4554,
287,
3715,
13,
8625,
1817,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
17214,
62,
43358,
796,
965,
7,
39098,
13,
1671,
624,
62,
43358,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
17214,
62,
43358,
407,
287,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
1671,
624,
62,
9127,
82,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
1671,
624,
62,
9127,
82,
6,
7131,
1671,
624,
62,
43358,
60,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
1671,
624,
62,
9127,
82,
6,
7131,
1671,
624,
62,
43358,
60,
15853,
352,
628,
220,
220,
220,
13015,
796,
3715,
13,
1136,
62,
439,
62,
276,
3212,
7,
403,
312,
4154,
282,
28,
17821,
8,
198,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
14907,
62,
7890,
20520,
796,
23884,
198,
220,
220,
220,
329,
257,
11,
275,
287,
13015,
13,
51,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4554,
62,
64,
796,
3715,
13,
8625,
1817,
58,
64,
60,
198,
220,
220,
220,
220,
220,
220,
220,
17214,
62,
43358,
62,
64,
796,
965,
7,
39098,
62,
64,
13,
1671,
624,
62,
43358,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6121,
62,
64,
796,
4554,
62,
64,
13,
35636,
628,
220,
220,
220,
220,
220,
220,
220,
4554,
62,
65,
796,
3715,
13,
8625,
1817,
58,
65,
60,
198,
220,
220,
220,
220,
220,
220,
220,
17214,
62,
43358,
62,
65,
796,
965,
7,
39098,
62,
65,
13,
1671,
624,
62,
43358,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6121,
62,
65,
796,
4554,
62,
65,
13,
35636,
628,
220,
220,
220,
220,
220,
220,
220,
450,
796,
299,
32152,
13,
26518,
7,
77,
32152,
13,
75,
1292,
70,
13,
16340,
7,
35636,
62,
64,
828,
6121,
62,
65,
8,
628,
220,
220,
220,
220,
220,
220,
220,
5743,
62,
8841,
796,
705,
4,
82,
11,
4,
82,
6,
4,
7,
1671,
624,
62,
43358,
62,
64,
11,
17214,
62,
43358,
62,
65,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5743,
62,
8841,
407,
287,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
14907,
62,
7890,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
14907,
62,
7890,
6,
7131,
14907,
62,
8841,
60,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
7890,
58,
7753,
62,
3672,
7131,
6,
14907,
62,
7890,
6,
7131,
14907,
62,
8841,
4083,
33295,
7,
397,
13,
83,
349,
396,
28955,
198,
198,
4480,
1280,
7,
418,
13,
6978,
13,
22179,
7,
33692,
13,
6978,
82,
17816,
296,
81,
6,
4357,
705,
29734,
62,
7890,
13,
17752,
33809,
705,
86,
11537,
355,
277,
25,
198,
220,
220,
220,
33918,
13,
39455,
7,
6978,
62,
7890,
11,
277,
11,
33793,
28,
17,
8,
628
] | 2.256345 | 788 |
from django.conf.urls import include,url,static
from django.contrib.auth import views as auth_views
from django.urls import reverse_lazy
from . import views
app_name='myuser'
urlpatterns = [
url(r'^login/$', auth_views.login, {'template_name':'myuser/login.html'}, name='login'),
url(r'^logout/$', auth_views.logout, {'template_name':'myuser/logout.html'}, name='logout'),
url(r'^register/$', views.register_user, name='register'),
url(r'^activate/$', views.activate_user, name='activate'),
url(r'^password_reset/$', auth_views.PasswordResetView.as_view(template_name='myuser/password_reset.html',success_url=reverse_lazy('myuser:password_reset_done'),email_template_name='myuser/password_reset_email.html'), name='password_reset'),
url(r'^password_reset_done/$', auth_views.PasswordResetDoneView.as_view(template_name='myuser/password_reset_done.html'), name='password_reset_done'),
url(r'^password_reset_confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', auth_views.PasswordResetConfirmView.as_view(template_name='myuser/password_reset_confirm.html',success_url=reverse_lazy('myuser:password_reset_complete')), name='password_reset_confirm'),
url(r'^password_reset_complete/$', auth_views.PasswordResetCompleteView.as_view(template_name='myuser/password_reset_complete.html'), name='password_reset_complete'),
url(r'^password_change/$', auth_views.PasswordChangeView.as_view(template_name='myuser/password_change.html',success_url=reverse_lazy('myuser:password_change_done')),name='password_change'),
url(r'^password_change_done/$', auth_views.PasswordChangeDoneView.as_view(template_name='myuser/password_change_done.html'),name='password_change_done'),
]
| [
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
2291,
11,
6371,
11,
12708,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
5009,
355,
6284,
62,
33571,
198,
6738,
42625,
14208,
13,
6371,
82,
1330,
9575,
62,
75,
12582,
198,
198,
6738,
764,
1330,
5009,
198,
198,
1324,
62,
3672,
11639,
1820,
7220,
6,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
38235,
32624,
3256,
6284,
62,
33571,
13,
38235,
11,
1391,
6,
28243,
62,
3672,
10354,
6,
1820,
7220,
14,
38235,
13,
6494,
6,
5512,
1438,
11639,
38235,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
6404,
448,
32624,
3256,
6284,
62,
33571,
13,
6404,
448,
11,
1391,
6,
28243,
62,
3672,
10354,
6,
1820,
7220,
14,
6404,
448,
13,
6494,
6,
5512,
1438,
11639,
6404,
448,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
30238,
32624,
3256,
5009,
13,
30238,
62,
7220,
11,
1438,
11639,
30238,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
39022,
32624,
3256,
5009,
13,
39022,
62,
7220,
11,
1438,
11639,
39022,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
42503,
32624,
3256,
6284,
62,
33571,
13,
35215,
4965,
316,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
42503,
13,
6494,
3256,
13138,
62,
6371,
28,
50188,
62,
75,
12582,
10786,
1820,
7220,
25,
28712,
62,
42503,
62,
28060,
33809,
12888,
62,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
42503,
62,
12888,
13,
6494,
33809,
1438,
11639,
28712,
62,
42503,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
42503,
62,
28060,
32624,
3256,
6284,
62,
33571,
13,
35215,
4965,
316,
45677,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
42503,
62,
28060,
13,
6494,
33809,
1438,
11639,
28712,
62,
42503,
62,
28060,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
42503,
62,
10414,
2533,
29006,
30,
47,
27,
27112,
65,
2414,
36937,
15,
12,
24,
32,
12,
57,
64,
12,
89,
62,
41441,
48688,
20679,
7,
30,
47,
27,
30001,
36937,
15,
12,
24,
32,
12,
57,
64,
12,
89,
60,
90,
16,
11,
1485,
92,
49146,
15,
12,
24,
32,
12,
57,
64,
12,
89,
60,
90,
16,
11,
1238,
92,
20679,
3,
3256,
6284,
62,
33571,
13,
35215,
4965,
316,
18546,
2533,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
42503,
62,
10414,
2533,
13,
6494,
3256,
13138,
62,
6371,
28,
50188,
62,
75,
12582,
10786,
1820,
7220,
25,
28712,
62,
42503,
62,
20751,
11537,
828,
1438,
11639,
28712,
62,
42503,
62,
10414,
2533,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
42503,
62,
20751,
32624,
3256,
6284,
62,
33571,
13,
35215,
4965,
316,
20988,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
42503,
62,
20751,
13,
6494,
33809,
1438,
11639,
28712,
62,
42503,
62,
20751,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
3803,
32624,
3256,
6284,
62,
33571,
13,
35215,
19400,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
3803,
13,
6494,
3256,
13138,
62,
6371,
28,
50188,
62,
75,
12582,
10786,
1820,
7220,
25,
28712,
62,
3803,
62,
28060,
11537,
828,
3672,
11639,
28712,
62,
3803,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
28712,
62,
3803,
62,
28060,
32624,
3256,
6284,
62,
33571,
13,
35215,
19400,
45677,
7680,
13,
292,
62,
1177,
7,
28243,
62,
3672,
11639,
1820,
7220,
14,
28712,
62,
3803,
62,
28060,
13,
6494,
33809,
3672,
11639,
28712,
62,
3803,
62,
28060,
33809,
198,
60,
198
] | 2.7792 | 625 |
import logging
# def status(self, payload):
# if not self._status_path:
# return
# if not isinstance(payload, str):
# payload = json.dumps(payload, sort_keys=True)
# self._mqtt.publish(self._status_path, payload=payload, qos=0, retain=True)
| [
11748,
18931,
628,
198,
220,
220,
220,
1303,
825,
3722,
7,
944,
11,
21437,
2599,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
611,
407,
2116,
13557,
13376,
62,
6978,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
15577,
2220,
11,
965,
2599,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
21437,
796,
33918,
13,
67,
8142,
7,
15577,
2220,
11,
3297,
62,
13083,
28,
17821,
8,
628,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13557,
76,
80,
926,
13,
12984,
1836,
7,
944,
13557,
13376,
62,
6978,
11,
21437,
28,
15577,
2220,
11,
10662,
418,
28,
15,
11,
12377,
28,
17821,
8,
198
] | 2.225564 | 133 |
# Copyright 2020 BULL SAS All rights reserved
"""This module contains different functions to perform crossover using two
chromosomes, i.e. building a child chromosome given two parents."""
# Ignore unused argument kwargs
# pylint: disable=unused-argument
import numpy as np
def single_point_crossover(parent_1, parent_2):
"""Given two parents, creates a new child by using the single point
crossover method. The parents are split in two at a given point and the
child is a mix of the beginning and the end of each parent.
Args:
parent_1 (numpy array): The first parent.
parent_2 (numpy array): The second parent.
Returns:
numpy array: The child as a single point crossover of both parents.
Examples:
>>> parent_1 = np.array([1, 2, 1, 4])
>>> parent_2 = np.array([3, 10, 20, 5])
>>> single_point_crossover(parent_1, parent_2)
np.array([1, 2, 20, 5])
"""
parents_length = parent_1.shape[0]
# if the length of the parent is equal or inferior to 2,
# the crossover point is necessarily one
if parents_length < 3:
crossover_point = 1
# else randomly draw the crossover point
else:
crossover_point = np.random.choice(np.arange(1, parents_length - 1))
part_1 = parent_1[:crossover_point]
part_2 = parent_2[crossover_point:]
return np.hstack([part_1, part_2])
def double_point_crossover(parent_1, parent_2):
"""Given two parents, creates a new child by using the double point
crossover method. The two parents are randomly split in three. The first
and the last part of the child are from the sections of the first parent
while its middle is taken from its second parent.
Args:
parent_1 (numpy array): The first parent.
parent_2 (numpy array): The second parent.
Returns:
numpy array: The child as a double point crossover of both parents.
Examples:
>>> parent_1 = np.array([1, 2, 1, 4])
>>> parent_2 = np.array([3, 10, 20, 5])
>>> double_point_crossover(parent_1, parent_2)
np.array([1, 10, 1, 4])
"""
parents_length = parent_1.shape[0]
if parents_length < 4:
# switch to single point crossover
return single_point_crossover(parent_1, parent_2)
crossover_point = np.random.choice(
np.arange(1, parents_length - 1), size=2, replace=False
)
part_1 = parent_1[: min(crossover_point)]
part_2 = parent_2[min(crossover_point): max(crossover_point)]
part_3 = parent_1[max(crossover_point):]
return np.hstack([part_1, part_2, part_3])
| [
2,
15069,
12131,
347,
9994,
35516,
1439,
2489,
10395,
198,
37811,
1212,
8265,
4909,
1180,
5499,
284,
1620,
27668,
1262,
734,
198,
28663,
418,
2586,
11,
1312,
13,
68,
13,
2615,
257,
1200,
34348,
1813,
734,
3397,
526,
15931,
198,
198,
2,
41032,
21958,
4578,
479,
86,
22046,
198,
2,
279,
2645,
600,
25,
15560,
28,
403,
1484,
12,
49140,
198,
198,
11748,
299,
32152,
355,
45941,
628,
198,
4299,
2060,
62,
4122,
62,
66,
23954,
7,
8000,
62,
16,
11,
2560,
62,
17,
2599,
198,
220,
220,
220,
37227,
15056,
734,
3397,
11,
8075,
257,
649,
1200,
416,
1262,
262,
2060,
966,
198,
220,
220,
220,
27668,
2446,
13,
383,
3397,
389,
6626,
287,
734,
379,
257,
1813,
966,
290,
262,
198,
220,
220,
220,
1200,
318,
257,
5022,
286,
262,
3726,
290,
262,
886,
286,
1123,
2560,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
16,
357,
77,
32152,
7177,
2599,
383,
717,
2560,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
17,
357,
77,
32152,
7177,
2599,
383,
1218,
2560,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
7177,
25,
383,
1200,
355,
257,
2060,
966,
27668,
286,
1111,
3397,
13,
628,
220,
220,
220,
21066,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2560,
62,
16,
796,
45941,
13,
18747,
26933,
16,
11,
362,
11,
352,
11,
604,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2560,
62,
17,
796,
45941,
13,
18747,
26933,
18,
11,
838,
11,
1160,
11,
642,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2060,
62,
4122,
62,
66,
23954,
7,
8000,
62,
16,
11,
2560,
62,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
18747,
26933,
16,
11,
362,
11,
1160,
11,
642,
12962,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3397,
62,
13664,
796,
2560,
62,
16,
13,
43358,
58,
15,
60,
198,
220,
220,
220,
1303,
611,
262,
4129,
286,
262,
2560,
318,
4961,
393,
18536,
284,
362,
11,
198,
220,
220,
220,
1303,
262,
27668,
966,
318,
6646,
530,
198,
220,
220,
220,
611,
3397,
62,
13664,
1279,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
27668,
62,
4122,
796,
352,
198,
220,
220,
220,
1303,
2073,
15456,
3197,
262,
27668,
966,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
27668,
62,
4122,
796,
45941,
13,
25120,
13,
25541,
7,
37659,
13,
283,
858,
7,
16,
11,
3397,
62,
13664,
532,
352,
4008,
198,
220,
220,
220,
636,
62,
16,
796,
2560,
62,
16,
58,
25,
66,
23954,
62,
4122,
60,
198,
220,
220,
220,
636,
62,
17,
796,
2560,
62,
17,
58,
66,
23954,
62,
4122,
47715,
628,
220,
220,
220,
1441,
45941,
13,
71,
25558,
26933,
3911,
62,
16,
11,
636,
62,
17,
12962,
628,
198,
4299,
4274,
62,
4122,
62,
66,
23954,
7,
8000,
62,
16,
11,
2560,
62,
17,
2599,
198,
220,
220,
220,
37227,
15056,
734,
3397,
11,
8075,
257,
649,
1200,
416,
1262,
262,
4274,
966,
198,
220,
220,
220,
27668,
2446,
13,
383,
734,
3397,
389,
15456,
6626,
287,
1115,
13,
383,
717,
198,
220,
220,
220,
290,
262,
938,
636,
286,
262,
1200,
389,
422,
262,
9004,
286,
262,
717,
2560,
198,
220,
220,
220,
981,
663,
3504,
318,
2077,
422,
663,
1218,
2560,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
16,
357,
77,
32152,
7177,
2599,
383,
717,
2560,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
17,
357,
77,
32152,
7177,
2599,
383,
1218,
2560,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
7177,
25,
383,
1200,
355,
257,
4274,
966,
27668,
286,
1111,
3397,
13,
628,
220,
220,
220,
21066,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2560,
62,
16,
796,
45941,
13,
18747,
26933,
16,
11,
362,
11,
352,
11,
604,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
2560,
62,
17,
796,
45941,
13,
18747,
26933,
18,
11,
838,
11,
1160,
11,
642,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
4274,
62,
4122,
62,
66,
23954,
7,
8000,
62,
16,
11,
2560,
62,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
18747,
26933,
16,
11,
838,
11,
352,
11,
604,
12962,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3397,
62,
13664,
796,
2560,
62,
16,
13,
43358,
58,
15,
60,
198,
220,
220,
220,
611,
3397,
62,
13664,
1279,
604,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5078,
284,
2060,
966,
27668,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2060,
62,
4122,
62,
66,
23954,
7,
8000,
62,
16,
11,
2560,
62,
17,
8,
198,
220,
220,
220,
27668,
62,
4122,
796,
45941,
13,
25120,
13,
25541,
7,
198,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
283,
858,
7,
16,
11,
3397,
62,
13664,
532,
352,
828,
2546,
28,
17,
11,
6330,
28,
25101,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
636,
62,
16,
796,
2560,
62,
16,
58,
25,
949,
7,
66,
23954,
62,
4122,
15437,
198,
220,
220,
220,
636,
62,
17,
796,
2560,
62,
17,
58,
1084,
7,
66,
23954,
62,
4122,
2599,
3509,
7,
66,
23954,
62,
4122,
15437,
198,
220,
220,
220,
636,
62,
18,
796,
2560,
62,
16,
58,
9806,
7,
66,
23954,
62,
4122,
2599,
60,
198,
220,
220,
220,
1441,
45941,
13,
71,
25558,
26933,
3911,
62,
16,
11,
636,
62,
17,
11,
636,
62,
18,
12962,
198
] | 2.721875 | 960 |
# Copyright (c) 2014-2019. Mount Sinai School of Medicine
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function, division, absolute_import
from six import string_types
def seq_to_str(obj, sep=","):
"""
Given a sequence convert it to a comma separated string.
If, however, the argument is a single object, return its string
representation.
"""
if isinstance(obj, string_types):
return obj
elif isinstance(obj, (list, tuple)):
return sep.join([str(x) for x in obj])
else:
return str(obj)
| [
2,
15069,
357,
66,
8,
1946,
12,
23344,
13,
5628,
33745,
3961,
286,
11558,
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,
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,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
11,
7297,
11,
4112,
62,
11748,
198,
198,
6738,
2237,
1330,
4731,
62,
19199,
198,
198,
4299,
33756,
62,
1462,
62,
2536,
7,
26801,
11,
41767,
28,
2430,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
257,
8379,
10385,
340,
284,
257,
39650,
11266,
4731,
13,
198,
220,
220,
220,
1002,
11,
2158,
11,
262,
4578,
318,
257,
2060,
2134,
11,
1441,
663,
4731,
198,
220,
220,
220,
10552,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
26801,
11,
4731,
62,
19199,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
26181,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
26801,
11,
357,
4868,
11,
46545,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
41767,
13,
22179,
26933,
2536,
7,
87,
8,
329,
2124,
287,
26181,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
965,
7,
26801,
8,
198
] | 3.273556 | 329 |
class Message:
"""
Informations needed by the end user
to read a message. Think about this
structure as a DTO in something like
java
"""
__slots__ = "sender", "time_stamp", "body"
| [
4871,
16000,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
45255,
602,
2622,
416,
262,
886,
2836,
198,
220,
220,
220,
284,
1100,
257,
3275,
13,
11382,
546,
428,
198,
220,
220,
220,
4645,
355,
257,
360,
10468,
287,
1223,
588,
198,
220,
220,
220,
20129,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
366,
82,
2194,
1600,
366,
2435,
62,
301,
696,
1600,
366,
2618,
1,
198
] | 2.75 | 76 |
#!flask/bin/python
from flask import Flask,request,send_from_directory,jsonify,Response
import json
import sys
sys.path.append('modules/')
import predict as pre
import preprocessing as pro
import diacritize as dia
app = Flask(__name__)
@app.route('/text_classification', methods=['GET'])
@app.route('/', methods=['GET'])
@app.route('/diacritize', methods=['GET'])
if __name__ == '__main__':
app.run(debug=True)
| [
2,
0,
2704,
2093,
14,
8800,
14,
29412,
198,
6738,
42903,
1330,
46947,
11,
25927,
11,
21280,
62,
6738,
62,
34945,
11,
17752,
1958,
11,
31077,
198,
11748,
33918,
198,
11748,
25064,
220,
220,
198,
17597,
13,
6978,
13,
33295,
10786,
18170,
14,
11537,
220,
220,
198,
11748,
4331,
355,
662,
198,
11748,
662,
36948,
355,
386,
198,
11748,
2566,
330,
799,
1096,
355,
288,
544,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
8,
198,
198,
31,
1324,
13,
38629,
10786,
14,
5239,
62,
4871,
2649,
3256,
5050,
28,
17816,
18851,
6,
12962,
198,
220,
220,
220,
198,
198,
31,
1324,
13,
38629,
10786,
14,
3256,
5050,
28,
17816,
18851,
6,
12962,
198,
198,
31,
1324,
13,
38629,
10786,
14,
67,
9607,
799,
1096,
3256,
5050,
28,
17816,
18851,
6,
12962,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
598,
13,
5143,
7,
24442,
28,
17821,
8,
198
] | 2.708861 | 158 |
#
# Copyright (C) [2020] Futurewei Technologies, Inc.
#
# FORCE-RISCV is 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
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR
# FIT FOR A PARTICULAR PURPOSE.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from riscv.EnvRISCV import EnvRISCV
from riscv.GenThreadRISCV import GenThreadRISCV
from base.Sequence import Sequence
MainSequenceClass = MainSequence
GenThreadClass = GenThreadRISCV
EnvClass = EnvRISCV
| [
2,
198,
2,
15069,
357,
34,
8,
685,
42334,
60,
10898,
42990,
21852,
11,
3457,
13,
198,
2,
198,
2,
7473,
5222,
12,
49,
1797,
33538,
318,
11971,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
220,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
220,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
6177,
3537,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
34764,
11015,
3963,
15529,
509,
12115,
11,
412,
10554,
1137,
198,
2,
7788,
32761,
6375,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
44521,
12,
1268,
10913,
2751,
12529,
11,
34482,
3398,
1565,
5603,
25382,
6375,
198,
2,
376,
2043,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
2,
198,
6738,
374,
2304,
85,
13,
4834,
85,
49,
1797,
33538,
1330,
2039,
85,
49,
1797,
33538,
198,
6738,
374,
2304,
85,
13,
13746,
16818,
49,
1797,
33538,
1330,
5215,
16818,
49,
1797,
33538,
198,
6738,
2779,
13,
44015,
594,
1330,
45835,
628,
198,
198,
13383,
44015,
594,
9487,
796,
8774,
44015,
594,
198,
13746,
16818,
9487,
796,
5215,
16818,
49,
1797,
33538,
198,
4834,
85,
9487,
796,
2039,
85,
49,
1797,
33538,
198
] | 3.182879 | 257 |
from django.urls import path
from .views import (
BlockchainCreateView,
BlockchainDeleteView,
BlockchainDetailView,
BlockchainListView,
BlockchainUpdateView,
)
app_name = "blockchain"
urlpatterns = [
path("", BlockchainListView.as_view(), name="blockchain_list"),
path("add/", BlockchainCreateView.as_view(), name="blockchain_add"),
path("<int:pk>/", BlockchainDetailView.as_view(), name="blockchain_detail"),
path("<int:pk>/edit/", BlockchainUpdateView.as_view(), name="blockchain_edit"),
path("<int:pk>/delete/", BlockchainDeleteView.as_view(), name="blockchain_delete"),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
198,
6738,
764,
33571,
1330,
357,
198,
220,
220,
220,
29724,
16447,
7680,
11,
198,
220,
220,
220,
29724,
38727,
7680,
11,
198,
220,
220,
220,
29724,
11242,
603,
7680,
11,
198,
220,
220,
220,
29724,
8053,
7680,
11,
198,
220,
220,
220,
29724,
10260,
7680,
11,
198,
8,
198,
198,
1324,
62,
3672,
796,
366,
9967,
7983,
1,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
7203,
1600,
29724,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9967,
7983,
62,
4868,
12340,
198,
220,
220,
220,
3108,
7203,
2860,
14,
1600,
29724,
16447,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9967,
7983,
62,
2860,
12340,
198,
220,
220,
220,
3108,
7203,
27,
600,
25,
79,
74,
29,
14,
1600,
29724,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9967,
7983,
62,
49170,
12340,
198,
220,
220,
220,
3108,
7203,
27,
600,
25,
79,
74,
29,
14,
19312,
14,
1600,
29724,
10260,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9967,
7983,
62,
19312,
12340,
198,
220,
220,
220,
3108,
7203,
27,
600,
25,
79,
74,
29,
14,
33678,
14,
1600,
29724,
38727,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9967,
7983,
62,
33678,
12340,
198,
60,
198
] | 2.874419 | 215 |
import re
from django.http import (
Http404,
HttpResponseRedirect,
HttpResponse)
ACTION_RE = re.compile(r'\w+')
class ActionMixin(object):
"""Mixin for managing actions
"""
| [
11748,
302,
198,
6738,
42625,
14208,
13,
4023,
1330,
357,
198,
220,
220,
220,
367,
29281,
26429,
11,
198,
220,
220,
220,
367,
29281,
31077,
7738,
1060,
11,
198,
220,
220,
220,
367,
29281,
31077,
8,
198,
198,
44710,
62,
2200,
796,
302,
13,
5589,
576,
7,
81,
6,
59,
86,
10,
11537,
628,
198,
220,
220,
220,
220,
198,
4871,
7561,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
35608,
259,
329,
11149,
4028,
198,
220,
220,
220,
37227,
198
] | 2.421687 | 83 |
# -*- coding: utf-8 -*-
import random
import re
import string
import sys
import threading
import traceback
import six
from six import string_types
# Python3 queue support.
try:
import Queue
except ImportError:
import queue as Queue
import logging
logger = logging.getLogger(__name__)
thread_local = threading.local()
def split_string(text, chars_per_string):
"""
Splits one string into multiple strings, with a maximum amount of `chars_per_string` characters per string.
This is very useful for splitting one giant message into multiples.
:param text: The text to split
:param chars_per_string: The number of characters per line the text is split into.
:return: The splitted text as a list of strings.
"""
return [text[i:i + chars_per_string] for i in range(0, len(text), chars_per_string)]
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
11748,
4738,
198,
11748,
302,
198,
11748,
4731,
198,
11748,
25064,
198,
11748,
4704,
278,
198,
11748,
12854,
1891,
198,
198,
11748,
2237,
198,
6738,
2237,
1330,
4731,
62,
19199,
198,
198,
2,
11361,
18,
16834,
1104,
13,
198,
198,
28311,
25,
198,
220,
220,
220,
1330,
4670,
518,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
1330,
16834,
355,
4670,
518,
198,
11748,
18931,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
16663,
62,
12001,
796,
4704,
278,
13,
12001,
3419,
628,
198,
198,
4299,
6626,
62,
8841,
7,
5239,
11,
34534,
62,
525,
62,
8841,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13341,
896,
530,
4731,
656,
3294,
13042,
11,
351,
257,
5415,
2033,
286,
4600,
354,
945,
62,
525,
62,
8841,
63,
3435,
583,
4731,
13,
198,
220,
220,
220,
770,
318,
845,
4465,
329,
26021,
530,
6175,
3275,
656,
5021,
2374,
13,
198,
220,
220,
220,
1058,
17143,
2420,
25,
383,
2420,
284,
6626,
198,
220,
220,
220,
1058,
17143,
34534,
62,
525,
62,
8841,
25,
383,
1271,
286,
3435,
583,
1627,
262,
2420,
318,
6626,
656,
13,
198,
220,
220,
220,
1058,
7783,
25,
383,
4328,
2175,
2420,
355,
257,
1351,
286,
13042,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
685,
5239,
58,
72,
25,
72,
1343,
34534,
62,
525,
62,
8841,
60,
329,
1312,
287,
2837,
7,
15,
11,
18896,
7,
5239,
828,
34534,
62,
525,
62,
8841,
15437,
198
] | 3.142322 | 267 |
#! /usr/bin/env python
# File Docstring
"""STAX
Copyright (c) 2010 by Santo Ciaravino"""
print __doc__
print
# Initialize Psyco
try:
import psyco
psyco.full()
except ImportError:
print "NOTICE: 'Psyco' could not be initialized!"
# Import Python Standard Libraries
import __init__ # Directory Import
import os # Operating System
import sys # Python System
import random # Random Generator
# Import Pygame & Other Libraries
import wx
import pygame
from pygame.locals import *
# Import Game Data
from DIR_data.DAT_mainmenu import CHP_mainmenu
from DIR_data.DAT_gamesettings import CHP_gamesettings
from DIR_data.DAT_game import CHP_game
from DIR_data.DIR_sprite.DAT_spritesheet import Spritesheet
# Display Object
class DISPLAY:
"""The Display Window Object."""
def __init__(self, # Object Instance
resolution=(800, 600), # Display Default Resolution
disp_sets=0, # Display Default Video Settings
title='STAX: Action Puzzle Game', # Display Default Title
icon=('DIR_data\\disp_icon.ico', # Display Default Icon
(255, 0, 255)), # Icon Transparency Colorkey (R, G, B)
mouse_vis=False): # Default Mouse Visibility
"""Initializes the Display."""
# Single Instance Checker
self.app_iden = "APP IDEN - %s" % wx.GetUserId()
self.instance = wx.SingleInstanceChecker(self.app_iden)
if(self.instance.IsAnotherRunning()): sys.exit()
# Screen Attributes
self.RESOLUTION = resolution
self.DISP_SETS = disp_sets
self.TITLE = title
self.ICON = icon
self.MOUSE_VIS = mouse_vis
# Screen Methods
self.Set_Caption = pygame.display.set_caption
self.Set_Icon = pygame.display.set_icon
self.Set_Mouse_Vis = pygame.mouse.set_visible
self.Set_Mode = pygame.display.set_mode
# Start The Display
self.Set_Caption(self.TITLE) # Set Title
try:
self.Set_Icon(self.Icon_Data(self.ICON[0], self.ICON[1])) # Set Icon
except:
pass
self.Set_Mouse_Vis(self.MOUSE_VIS) # Set Mouse Visibility
self.FRAME = self.Set_Mode(self.RESOLUTION, self.DISP_SETS) # Activate Display
self.SURFACE = pygame.display.get_surface() # Get Frame Surface
self.RECT = self.FRAME.get_rect() # Get Frame Rect
# Local Method to prepare icon data in initialization.
def Icon_Data(self, icon_name, colorkey):
"""Prepares an icon to use on the Display window."""
Icon_Image = pygame.image.load(icon_name) # Icon Image (Surface)
Icon_Done = pygame.Surface((32, 32)) # New Surface
Icon_Done.set_colorkey(colorkey) # Transparency Colorkey
for X in range(0, 32): # X Coordinate Pixels
for Y in range(0, 32): # Y Coordinate Pixels
Icon_Done.set_at((X, Y), Icon_Image.get_at((X, Y))) # Transfer Pixels
return Icon_Done # Return Value
# Screen Methods (for in-game use)
def Flush_Buffer(self, color=(0, 0, 0)):
"""Flushes the back buffer with a blank surface."""
SFC_flush = pygame.Surface(self.RESOLUTION).convert()
SFC_flush.fill(color)
self.FRAME.blit(SFC_flush, (0, 0))
# Start Game
if __name__ == "__main__":
# Initialize Game Data
pygame.init() # Set Pygame
os.environ['SDL_VIDEO_CENTERED'] = '1' # Center all displays.
# Splash Screen
IMG_splash = pygame.image.load('DIR_data\\splashscreen.png')
RCT_splash = IMG_splash.get_rect()
Splash = pygame.display.set_mode(RCT_splash.size, NOFRAME)
pygame.mouse.set_visible(False) # This line is optional.
Splash.blit(IMG_splash, (0, 0))
pygame.display.update()
# Choose either wait(milliseconds) or delay(milliseconds), and remove the other.
pygame.time.wait(2000) # Use this to 'wait' a specific amount of time.
# Actually it doesn't matter. They do the same thing. Still good to keep consistent.
pygame.display.quit()
# Activate Display
pygame.display.init() # Re-initialize the Pygame Display module.
SCREEN = DISPLAY() # Make a new DISPLAY.
# Prepare Constants
GameConstant = {'Clock': pygame.time.Clock(),
'Spritesheet': Spritesheet(),
'Font': pygame.font.Font(None, 20),
'BigFont': pygame.font.SysFont(None, 40),
'HighScore': 0}
# Main Loop
MLS = True # Main Loop Switch
while MLS:
# Purge Input Queue
pygame.event.get()
# Main Menu Object & Start
MainMenu = CHP_mainmenu()
GameSettings = CHP_gamesettings()
RESULT = MainMenu.Start(SCREEN, GameConstant)
if RESULT is 1:
MLS = False
elif RESULT is 0:
GameLoop = True
while GameLoop:
StartParams = GameSettings.Start(SCREEN, GameConstant)
if StartParams != 'BREAK':
Game = CHP_game(StartParams)
GAME = Game.Start(SCREEN, GameConstant)
elif StartParams == 'BREAK':
GameLoop = False
else:
pass
| [
2,
0,
1220,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
9220,
14432,
8841,
198,
37811,
2257,
25922,
198,
15269,
357,
66,
8,
3050,
416,
10844,
78,
327,
12571,
615,
2879,
37811,
198,
4798,
11593,
15390,
834,
198,
4798,
628,
198,
2,
20768,
1096,
18773,
1073,
198,
28311,
25,
198,
220,
220,
220,
1330,
17331,
1073,
198,
220,
220,
220,
17331,
1073,
13,
12853,
3419,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
3601,
366,
11929,
8476,
25,
705,
25918,
1073,
6,
714,
407,
307,
23224,
2474,
628,
198,
2,
17267,
11361,
8997,
46267,
198,
11748,
11593,
15003,
834,
1303,
27387,
17267,
198,
11748,
28686,
1303,
24850,
4482,
198,
11748,
25064,
1303,
11361,
4482,
198,
11748,
4738,
1303,
14534,
35986,
198,
198,
2,
17267,
9485,
6057,
1222,
3819,
46267,
198,
11748,
266,
87,
198,
11748,
12972,
6057,
198,
6738,
12972,
6057,
13,
17946,
874,
1330,
1635,
628,
198,
2,
17267,
3776,
6060,
198,
6738,
360,
4663,
62,
7890,
13,
35,
1404,
62,
12417,
26272,
1330,
5870,
47,
62,
12417,
26272,
198,
6738,
360,
4663,
62,
7890,
13,
35,
1404,
62,
19966,
12374,
1330,
5870,
47,
62,
19966,
12374,
198,
6738,
360,
4663,
62,
7890,
13,
35,
1404,
62,
6057,
1330,
5870,
47,
62,
6057,
198,
198,
6738,
360,
4663,
62,
7890,
13,
34720,
62,
34975,
578,
13,
35,
1404,
62,
2777,
23156,
25473,
1330,
1338,
23156,
25473,
628,
198,
2,
16531,
9515,
198,
4871,
13954,
31519,
25,
198,
220,
220,
220,
37227,
464,
16531,
26580,
9515,
526,
15931,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1303,
9515,
2262,
590,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6323,
16193,
7410,
11,
10053,
828,
1303,
16531,
15161,
22406,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4596,
62,
28709,
28,
15,
11,
1303,
16531,
15161,
7623,
16163,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3670,
11639,
2257,
25922,
25,
7561,
23966,
3776,
3256,
1303,
16531,
15161,
11851,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7196,
28,
10786,
34720,
62,
7890,
6852,
6381,
79,
62,
4749,
13,
3713,
3256,
1303,
16531,
15161,
26544,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
13381,
11,
657,
11,
14280,
36911,
1303,
26544,
49165,
5315,
2539,
357,
49,
11,
402,
11,
347,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10211,
62,
4703,
28,
25101,
2599,
1303,
15161,
21839,
6911,
2247,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
24243,
4340,
262,
16531,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
14206,
2262,
590,
6822,
263,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1324,
62,
14029,
796,
366,
24805,
4522,
1677,
532,
4064,
82,
1,
4064,
266,
87,
13,
3855,
12982,
7390,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39098,
796,
266,
87,
13,
28008,
33384,
9787,
263,
7,
944,
13,
1324,
62,
14029,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7,
944,
13,
39098,
13,
3792,
6610,
28768,
3419,
2599,
25064,
13,
37023,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
15216,
49213,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19535,
3535,
35354,
796,
6323,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26288,
47,
62,
28480,
50,
796,
4596,
62,
28709,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
49560,
2538,
796,
3670,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2149,
1340,
796,
7196,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
44,
2606,
5188,
62,
29817,
796,
10211,
62,
4703,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
15216,
25458,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
24334,
1159,
796,
12972,
6057,
13,
13812,
13,
2617,
62,
6888,
1159,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
19578,
796,
12972,
6057,
13,
13812,
13,
2617,
62,
4749,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
39643,
62,
15854,
796,
12972,
6057,
13,
35888,
13,
2617,
62,
23504,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
19076,
796,
12972,
6057,
13,
13812,
13,
2617,
62,
14171,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
7253,
383,
16531,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
24334,
1159,
7,
944,
13,
49560,
2538,
8,
1303,
5345,
11851,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
19578,
7,
944,
13,
19578,
62,
6601,
7,
944,
13,
2149,
1340,
58,
15,
4357,
2116,
13,
2149,
1340,
58,
16,
60,
4008,
1303,
5345,
26544,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7248,
62,
39643,
62,
15854,
7,
944,
13,
44,
2606,
5188,
62,
29817,
8,
1303,
5345,
21839,
6911,
2247,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
10913,
10067,
796,
2116,
13,
7248,
62,
19076,
7,
944,
13,
19535,
3535,
35354,
11,
2116,
13,
26288,
47,
62,
28480,
50,
8,
1303,
33120,
16531,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
4261,
49836,
796,
12972,
6057,
13,
13812,
13,
1136,
62,
42029,
3419,
1303,
3497,
25184,
20321,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
23988,
796,
2116,
13,
10913,
10067,
13,
1136,
62,
2554,
3419,
1303,
3497,
25184,
48599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
10714,
11789,
284,
8335,
7196,
1366,
287,
37588,
13,
198,
220,
220,
220,
825,
26544,
62,
6601,
7,
944,
11,
7196,
62,
3672,
11,
3124,
2539,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37534,
3565,
281,
7196,
284,
779,
319,
262,
16531,
4324,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
26544,
62,
5159,
796,
12972,
6057,
13,
9060,
13,
2220,
7,
4749,
62,
3672,
8,
1303,
26544,
7412,
357,
14214,
2550,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26544,
62,
45677,
796,
12972,
6057,
13,
14214,
2550,
19510,
2624,
11,
3933,
4008,
1303,
968,
20321,
198,
220,
220,
220,
220,
220,
220,
220,
26544,
62,
45677,
13,
2617,
62,
8043,
2539,
7,
8043,
2539,
8,
1303,
49165,
5315,
2539,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1395,
287,
2837,
7,
15,
11,
3933,
2599,
1303,
1395,
22819,
4559,
350,
14810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
575,
287,
2837,
7,
15,
11,
3933,
2599,
1303,
575,
22819,
4559,
350,
14810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26544,
62,
45677,
13,
2617,
62,
265,
19510,
55,
11,
575,
828,
26544,
62,
5159,
13,
1136,
62,
265,
19510,
55,
11,
575,
22305,
1303,
20558,
350,
14810,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
26544,
62,
45677,
1303,
8229,
11052,
628,
198,
220,
220,
220,
1303,
15216,
25458,
357,
1640,
287,
12,
6057,
779,
8,
628,
220,
220,
220,
825,
1610,
1530,
62,
28632,
7,
944,
11,
3124,
16193,
15,
11,
657,
11,
657,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7414,
17237,
262,
736,
11876,
351,
257,
9178,
4417,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
311,
4851,
62,
25925,
796,
12972,
6057,
13,
14214,
2550,
7,
944,
13,
19535,
3535,
35354,
737,
1102,
1851,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
311,
4851,
62,
25925,
13,
20797,
7,
8043,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
10913,
10067,
13,
2436,
270,
7,
50,
4851,
62,
25925,
11,
357,
15,
11,
657,
4008,
628,
628,
198,
198,
2,
7253,
3776,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1303,
20768,
1096,
3776,
6060,
198,
220,
220,
220,
12972,
6057,
13,
15003,
3419,
1303,
5345,
9485,
6057,
198,
220,
220,
220,
28686,
13,
268,
2268,
17816,
10305,
43,
62,
42937,
62,
43960,
1137,
1961,
20520,
796,
705,
16,
6,
1303,
3337,
477,
11298,
13,
198,
220,
220,
220,
220,
628,
220,
220,
220,
1303,
45275,
15216,
198,
220,
220,
220,
8959,
38,
62,
22018,
1077,
796,
12972,
6057,
13,
9060,
13,
2220,
10786,
34720,
62,
7890,
6852,
22018,
1077,
9612,
13,
11134,
11537,
198,
220,
220,
220,
371,
4177,
62,
22018,
1077,
796,
8959,
38,
62,
22018,
1077,
13,
1136,
62,
2554,
3419,
198,
220,
220,
220,
45275,
796,
12972,
6057,
13,
13812,
13,
2617,
62,
14171,
7,
49,
4177,
62,
22018,
1077,
13,
7857,
11,
8005,
10913,
10067,
8,
198,
220,
220,
220,
12972,
6057,
13,
35888,
13,
2617,
62,
23504,
7,
25101,
8,
1303,
770,
1627,
318,
11902,
13,
198,
220,
220,
220,
45275,
13,
2436,
270,
7,
3955,
38,
62,
22018,
1077,
11,
357,
15,
11,
657,
4008,
198,
220,
220,
220,
12972,
6057,
13,
13812,
13,
19119,
3419,
198,
220,
220,
220,
1303,
17489,
2035,
4043,
7,
17805,
27866,
24764,
8,
393,
5711,
7,
17805,
27866,
24764,
828,
290,
4781,
262,
584,
13,
198,
220,
220,
220,
12972,
6057,
13,
2435,
13,
17077,
7,
11024,
8,
1303,
5765,
428,
284,
705,
17077,
6,
257,
2176,
2033,
286,
640,
13,
198,
220,
220,
220,
1303,
18689,
340,
1595,
470,
2300,
13,
1119,
466,
262,
976,
1517,
13,
7831,
922,
284,
1394,
6414,
13,
198,
220,
220,
220,
12972,
6057,
13,
13812,
13,
47391,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
33120,
16531,
198,
220,
220,
220,
12972,
6057,
13,
13812,
13,
15003,
3419,
1303,
797,
12,
36733,
1096,
262,
9485,
6057,
16531,
8265,
13,
198,
220,
220,
220,
6374,
2200,
1677,
796,
13954,
31519,
3419,
1303,
6889,
257,
649,
13954,
31519,
13,
628,
220,
220,
220,
1303,
43426,
4757,
1187,
198,
220,
220,
220,
3776,
3103,
18797,
796,
1391,
6,
44758,
10354,
12972,
6057,
13,
2435,
13,
44758,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4561,
23156,
25473,
10354,
1338,
23156,
25473,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23252,
10354,
12972,
6057,
13,
10331,
13,
23252,
7,
14202,
11,
1160,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12804,
23252,
10354,
12972,
6057,
13,
10331,
13,
44387,
23252,
7,
14202,
11,
2319,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11922,
26595,
10354,
657,
92,
198,
220,
220,
220,
220,
628,
220,
220,
220,
1303,
8774,
26304,
198,
220,
220,
220,
13981,
796,
6407,
1303,
8774,
26304,
14645,
198,
220,
220,
220,
981,
13981,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9330,
469,
23412,
4670,
518,
198,
220,
220,
220,
220,
220,
220,
220,
12972,
6057,
13,
15596,
13,
1136,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
8774,
21860,
9515,
1222,
7253,
198,
220,
220,
220,
220,
220,
220,
220,
8774,
23381,
796,
5870,
47,
62,
12417,
26272,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3776,
26232,
796,
5870,
47,
62,
19966,
12374,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
15731,
16724,
796,
8774,
23381,
13,
10434,
7,
6173,
2200,
1677,
11,
3776,
3103,
18797,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15731,
16724,
318,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13981,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
15731,
16724,
318,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3776,
39516,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
3776,
39516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7253,
10044,
4105,
796,
3776,
26232,
13,
10434,
7,
6173,
2200,
1677,
11,
3776,
3103,
18797,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7253,
10044,
4105,
14512,
705,
40438,
10206,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3776,
796,
5870,
47,
62,
6057,
7,
10434,
10044,
4105,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30517,
796,
3776,
13,
10434,
7,
6173,
2200,
1677,
11,
3776,
3103,
18797,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
7253,
10044,
4105,
6624,
705,
40438,
10206,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3776,
39516,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198
] | 2.296167 | 2,296 |
import abc
from random import randint
from itertools import chain
from utils.dictSet import DictContainer
from database import Variable, \
Property, Event, \
SpriteProperty, TextProperty, LineProperty, \
OvalProperty, RectProperty, PolygonProperty, \
UNDEFINED_PARAMETER, KEYWORD_ID
| [
11748,
450,
66,
198,
6738,
4738,
1330,
43720,
600,
198,
6738,
340,
861,
10141,
1330,
6333,
198,
198,
6738,
3384,
4487,
13,
11600,
7248,
1330,
360,
713,
29869,
198,
6738,
6831,
1330,
35748,
11,
3467,
198,
220,
220,
220,
14161,
11,
8558,
11,
3467,
198,
220,
220,
220,
33132,
21746,
11,
8255,
21746,
11,
6910,
21746,
11,
3467,
198,
220,
220,
220,
25165,
21746,
11,
48599,
21746,
11,
12280,
14520,
21746,
11,
3467,
198,
220,
220,
220,
4725,
7206,
20032,
1961,
62,
27082,
2390,
2767,
1137,
11,
35374,
54,
12532,
62,
2389,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198
] | 3.045872 | 109 |
#############################
# DESCRIPTION
# The gen_3d_structure scripts use the EmbedMolecule function of RDKit to generate the 3D structure of compounds, which is then minimized using MM force field within RDKit.
# The ChemAxon majorms function is used to determined the protonation state at a pH of 7.
# The lines to generate the structures of the neutralized molecules are commneted since the simulations in the lipid bilayer did not lead to significant results.
#
############################
import argparse
from rdkit import Chem
from rdkit.Chem import SaltRemover, AllChem
import sys
import subprocess
import pandas as pd
parser = argparse.ArgumentParser(description='Generate 3D-structures at pH = 7 from a SMILES file. \n One output _pH7.pdb file for each SMILES in the input .smi file')
parser.add_argument('-ismi', metavar='input_file.smi', help='Input file containing a list of SMILES. It must contain a "SMILES" column. Columns "CMPD_ID" and "is_sub" are optional. The "CMPD_ID" column contains compound names while the "is_sub" column contains the classification labels. If the "CMPD_ID" column is missing, then compounds will be named as mol_N. If the "is_sub" column is present then the pdb output files will be saved into two directories, "substrates" and "nonsubstrates", instead of the current directory', required = True)
parser.add_argument('-sep', type=str, default=" ", help='column separator. Default = " "')
parser.add_argument('-calc_pH', metavar='False', help='True to calculate the main protomer form using the cxcalc function of ChemAxon', required = False, default=False)
parser.add_argument('-pH', metavar='7.0', help='pH at which to evaluate the protomer forms', required = False, default=7.0)
parser.add_argument('-output_folder', help='folder in which to save the output PDB files', required = False, default=".")
args = parser.parse_args()
out_dir = args.output_folder
if args.ismi:
input_file = args.ismi
data = pd.read_table(input_file, sep=args.sep)
try:
smiles = list(data['SMILES'])
except:
print("IOError: The input file does not contain a SMILES column")
try:
cmpd_name = list(data['CMPD_ID'])
except:
cmpd_name = ['mol_{}'.format(i) for i in range(1,len(smiles)+1)]
for i, smi in enumerate(smiles):
m = Chem.MolFromSmiles(smi)
molname = cmpd_name[i]
try:
m2=Chem.AddHs(m)
AllChem.EmbedMolecule(m2)
AllChem.MMFFOptimizeMolecule(m2)
m2.SetProp('_Name', molname)
m2.SetProp('CMPD_NAME', molname)
m2.GetProp('CMPD_NAME')
w = Chem.SDWriter('{}_3d.sdf'.format(molname))
w.write(m2)
except:
print("Skip {}".format(molname))
continue
if args.calc_pH == True:
args_subproc = "sed -i '/CHG/d' " + molname + "_3d.sdf"
subprocess.call(args_subproc, shell=True)
args_subproc = "cxcalc -o " + molname + "_pH7.sdf majorms -H {} -f sdf " + molname + "_3d.sdf".format(args.pH)
subprocess.call(args_subproc, shell=True)
args_subproc = "obabel -isdf " + molname + "_pH7.sdf -opdb -O " + out_dir + "/" + molname + "_pH7.pdb -h"
subprocess.call(args_subproc, shell=True)
args_subproc = "rm *_pH7.sdf *_3d.sdf"
subprocess.call(args_subproc, shell=True)
# To eventually neutralize the compounds using ChemAxon
#args_subproc = "standardize -c neutralize " + molname + "_3d.sdf -f sdf -o " + molname + "_neutr.sdf"
#subprocess.call(args_subproc, shell=True)
#args_subproc = "obabel -isdf " + molname + "_neutr.sdf" + " -opdb -O " + molname + "_neutr.pdb"
#subprocess.call(args_subproc, shell=True)
#args_subproc = "rm *_neutr.sdf"
#subprocess.call(args_subproc, shell=True)
else:
args_subproc = "obabel -isdf " + molname + "_3d.sdf -opdb -O " + out_dir + "/" + molname + "_3d.pdb -h"
subprocess.call(args_subproc, shell=True)
print("Done")
| [
14468,
7804,
4242,
2,
198,
2,
220,
22196,
40165,
198,
2,
220,
383,
2429,
62,
18,
67,
62,
301,
5620,
14750,
779,
262,
13302,
276,
44,
2305,
23172,
2163,
286,
31475,
20827,
284,
7716,
262,
513,
35,
4645,
286,
16439,
11,
543,
318,
788,
49491,
1262,
20806,
2700,
2214,
1626,
31475,
20827,
13,
220,
198,
2,
220,
383,
12870,
32,
23813,
16486,
579,
82,
2163,
318,
973,
284,
5295,
262,
386,
1122,
341,
1181,
379,
257,
22918,
286,
767,
13,
220,
198,
2,
220,
383,
3951,
284,
7716,
262,
8573,
286,
262,
8500,
1143,
17745,
389,
725,
3262,
276,
1201,
262,
27785,
287,
262,
34073,
47027,
2794,
750,
407,
1085,
284,
2383,
2482,
13,
220,
198,
2,
220,
220,
220,
198,
14468,
7804,
4242,
198,
198,
11748,
1822,
29572,
198,
6738,
374,
67,
15813,
1330,
12870,
198,
6738,
374,
67,
15813,
13,
41829,
1330,
13754,
8413,
2502,
11,
1439,
41829,
198,
11748,
25064,
198,
11748,
850,
14681,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
8645,
378,
513,
35,
12,
7249,
942,
379,
22918,
796,
767,
422,
257,
9447,
4146,
1546,
2393,
13,
3467,
77,
1881,
5072,
4808,
79,
39,
22,
13,
79,
9945,
2393,
329,
1123,
9447,
4146,
1546,
287,
262,
5128,
764,
5796,
72,
2393,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
1042,
72,
3256,
1138,
615,
283,
11639,
15414,
62,
7753,
13,
5796,
72,
3256,
1037,
11639,
20560,
2393,
7268,
257,
1351,
286,
9447,
4146,
1546,
13,
632,
1276,
3994,
257,
366,
12310,
4146,
1546,
1,
5721,
13,
29201,
82,
366,
24187,
5760,
62,
2389,
1,
290,
366,
271,
62,
7266,
1,
389,
11902,
13,
383,
366,
24187,
5760,
62,
2389,
1,
5721,
4909,
13061,
3891,
981,
262,
366,
271,
62,
7266,
1,
5721,
4909,
262,
17923,
14722,
13,
1002,
262,
366,
24187,
5760,
62,
2389,
1,
5721,
318,
4814,
11,
788,
16439,
481,
307,
3706,
355,
18605,
62,
45,
13,
1002,
262,
366,
271,
62,
7266,
1,
5721,
318,
1944,
788,
262,
279,
9945,
5072,
3696,
481,
307,
7448,
656,
734,
29196,
11,
366,
7266,
2536,
689,
1,
290,
366,
77,
684,
549,
2536,
689,
1600,
2427,
286,
262,
1459,
8619,
3256,
2672,
796,
6407,
8,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
325,
79,
3256,
2099,
28,
2536,
11,
4277,
2625,
33172,
1037,
11639,
28665,
2880,
1352,
13,
15161,
796,
366,
366,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
9948,
66,
62,
79,
39,
3256,
1138,
615,
283,
11639,
25101,
3256,
1037,
11639,
17821,
284,
15284,
262,
1388,
1237,
12057,
1296,
1262,
262,
43213,
9948,
66,
2163,
286,
12870,
32,
23813,
3256,
2672,
796,
10352,
11,
4277,
28,
25101,
8,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
79,
39,
3256,
1138,
615,
283,
11639,
22,
13,
15,
3256,
1037,
11639,
79,
39,
379,
543,
284,
13446,
262,
1237,
12057,
5107,
3256,
2672,
796,
10352,
11,
4277,
28,
22,
13,
15,
8,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
22915,
62,
43551,
3256,
1037,
11639,
43551,
287,
543,
284,
3613,
262,
5072,
350,
11012,
3696,
3256,
2672,
796,
10352,
11,
4277,
2625,
19570,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
448,
62,
15908,
796,
26498,
13,
22915,
62,
43551,
220,
198,
198,
361,
26498,
13,
1042,
72,
25,
198,
220,
220,
220,
5128,
62,
7753,
796,
26498,
13,
1042,
72,
198,
220,
220,
220,
1366,
796,
279,
67,
13,
961,
62,
11487,
7,
15414,
62,
7753,
11,
41767,
28,
22046,
13,
325,
79,
8,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
21845,
796,
1351,
7,
7890,
17816,
12310,
4146,
1546,
6,
12962,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
9399,
12331,
25,
383,
5128,
2393,
857,
407,
3994,
257,
9447,
4146,
1546,
5721,
4943,
198,
220,
220,
220,
1949,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
269,
3149,
67,
62,
3672,
796,
1351,
7,
7890,
17816,
24187,
5760,
62,
2389,
6,
12962,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
3149,
67,
62,
3672,
796,
37250,
43132,
23330,
92,
4458,
18982,
7,
72,
8,
329,
1312,
287,
2837,
7,
16,
11,
11925,
7,
5796,
2915,
47762,
16,
15437,
220,
198,
220,
220,
220,
329,
1312,
11,
895,
72,
287,
27056,
378,
7,
5796,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
796,
12870,
13,
44,
349,
4863,
7556,
2915,
7,
5796,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
18605,
3672,
796,
269,
3149,
67,
62,
3672,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
17,
28,
41829,
13,
4550,
39,
82,
7,
76,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1439,
41829,
13,
31567,
276,
44,
2305,
23172,
7,
76,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1439,
41829,
13,
12038,
5777,
27871,
48439,
44,
2305,
23172,
7,
76,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
17,
13,
7248,
24331,
10786,
62,
5376,
3256,
18605,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
17,
13,
7248,
24331,
10786,
24187,
5760,
62,
20608,
3256,
18605,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
17,
13,
3855,
24331,
10786,
24187,
5760,
62,
20608,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
796,
12870,
13,
10305,
34379,
10786,
90,
92,
62,
18,
67,
13,
82,
7568,
4458,
18982,
7,
43132,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
266,
13,
13564,
7,
76,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
50232,
23884,
1911,
18982,
7,
43132,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
9948,
66,
62,
79,
39,
6624,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
62,
7266,
36942,
796,
366,
36622,
532,
72,
31051,
3398,
38,
14,
67,
6,
366,
1343,
18605,
3672,
1343,
45434,
18,
67,
13,
82,
7568,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
62,
7266,
36942,
796,
366,
66,
87,
9948,
66,
532,
78,
366,
1343,
18605,
3672,
1343,
45434,
79,
39,
22,
13,
82,
7568,
16486,
579,
82,
532,
39,
23884,
532,
69,
264,
7568,
366,
1343,
18605,
3672,
1343,
45434,
18,
67,
13,
82,
7568,
1911,
18982,
7,
22046,
13,
79,
39,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
62,
7266,
36942,
796,
366,
672,
9608,
532,
271,
7568,
366,
1343,
18605,
3672,
1343,
45434,
79,
39,
22,
13,
82,
7568,
220,
532,
404,
9945,
532,
46,
366,
1343,
503,
62,
15908,
1343,
12813,
1,
1343,
18605,
3672,
1343,
45434,
79,
39,
22,
13,
79,
9945,
532,
71,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
62,
7266,
36942,
796,
366,
26224,
1635,
62,
79,
39,
22,
13,
82,
7568,
1635,
62,
18,
67,
13,
82,
7568,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1675,
4191,
8500,
1096,
262,
16439,
1262,
12870,
32,
23813,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
22046,
62,
7266,
36942,
796,
366,
20307,
1096,
532,
66,
8500,
1096,
366,
1343,
18605,
3672,
1343,
45434,
18,
67,
13,
82,
7568,
532,
69,
264,
7568,
532,
78,
366,
1343,
18605,
3672,
1343,
45434,
710,
315,
81,
13,
82,
7568,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7266,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
22046,
62,
7266,
36942,
796,
366,
672,
9608,
532,
271,
7568,
366,
1343,
18605,
3672,
1343,
45434,
710,
315,
81,
13,
82,
7568,
1,
1343,
366,
532,
404,
9945,
532,
46,
366,
1343,
18605,
3672,
1343,
45434,
710,
315,
81,
13,
79,
9945,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7266,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
22046,
62,
7266,
36942,
796,
366,
26224,
1635,
62,
710,
315,
81,
13,
82,
7568,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7266,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
62,
7266,
36942,
796,
366,
672,
9608,
532,
271,
7568,
366,
1343,
18605,
3672,
1343,
45434,
18,
67,
13,
82,
7568,
220,
532,
404,
9945,
532,
46,
366,
1343,
503,
62,
15908,
1343,
12813,
1,
1343,
18605,
3672,
1343,
45434,
18,
67,
13,
79,
9945,
532,
71,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
14681,
13,
13345,
7,
22046,
62,
7266,
36942,
11,
7582,
28,
17821,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
45677,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198
] | 2.390075 | 1,733 |
import discord
import cogs.utils.checks
from discord.ext import commands
from cogs.utils.embed import (passembed, errorembed)
# Adding the cog to main script
| [
11748,
36446,
198,
11748,
269,
18463,
13,
26791,
13,
42116,
198,
198,
6738,
36446,
13,
2302,
1330,
9729,
198,
6738,
269,
18463,
13,
26791,
13,
20521,
1330,
357,
79,
34455,
276,
11,
1931,
305,
260,
2022,
276,
8,
198,
198,
2,
18247,
262,
43072,
284,
1388,
4226,
198
] | 3.333333 | 48 |
# -*- coding: utf-8 -*-
{
'name': 'Import OFX2 Bank Statement',
'summary': "Imports Bank Statements using OFX format from banks like CBA, St George etc",
'description': """
This module adds support for the import of bank statements in `OFX format <https://en.wikipedia.org/wiki/Open_Financial_Exchange>`_.
This module is based on the module from OCA bank-statement-import/account-bank-statement-import-ofx
It has been modified to be more tollerant of finanicial entries without FIDs.
""",
'category': 'Banking addons',
'version': '0.1',
'author': "oGecko Solutions",
'website': "http://www.ogecko.com",
'depends': [
'account_bank_statement_import',
],
'data': [
'views/view_account_bank_statement_import.xml',
],
# 'external_dependencies': {
# 'python': ['ofxparse'],
# },
'installable': True,
}
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
90,
198,
220,
220,
220,
705,
3672,
10354,
705,
20939,
3963,
55,
17,
5018,
21983,
3256,
628,
220,
220,
220,
705,
49736,
10354,
366,
3546,
3742,
5018,
44936,
1262,
3963,
55,
5794,
422,
6341,
588,
327,
4339,
11,
520,
4502,
3503,
1600,
628,
220,
220,
220,
705,
11213,
10354,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
8265,
6673,
1104,
329,
262,
1330,
286,
3331,
6299,
287,
4600,
46,
17213,
5794,
1279,
5450,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
11505,
62,
43621,
62,
3109,
3803,
29,
63,
44807,
628,
220,
220,
220,
220,
220,
220,
220,
770,
8265,
318,
1912,
319,
262,
8265,
422,
440,
8141,
3331,
12,
26090,
12,
11748,
14,
23317,
12,
17796,
12,
26090,
12,
11748,
12,
1659,
87,
198,
220,
220,
220,
220,
220,
220,
220,
632,
468,
587,
9518,
284,
307,
517,
284,
6051,
415,
286,
17240,
6652,
12784,
1231,
376,
47954,
13,
220,
198,
220,
220,
220,
13538,
1600,
628,
220,
220,
220,
705,
22872,
10354,
705,
33,
15230,
751,
684,
3256,
198,
220,
220,
220,
705,
9641,
10354,
705,
15,
13,
16,
3256,
198,
220,
220,
220,
705,
9800,
10354,
366,
78,
10082,
37549,
23555,
1600,
198,
220,
220,
220,
705,
732,
12485,
10354,
366,
4023,
1378,
2503,
13,
78,
469,
37549,
13,
785,
1600,
198,
220,
220,
220,
705,
10378,
2412,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
23317,
62,
17796,
62,
26090,
62,
11748,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
7890,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33571,
14,
1177,
62,
23317,
62,
17796,
62,
26090,
62,
11748,
13,
19875,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
1303,
705,
22615,
62,
45841,
3976,
10354,
1391,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
705,
29412,
10354,
37250,
1659,
87,
29572,
6,
4357,
198,
220,
220,
220,
1303,
8964,
198,
220,
220,
220,
705,
17350,
540,
10354,
6407,
11,
198,
92,
198
] | 2.619597 | 347 |
from . import main, main_dia
import argparse
from copy import deepcopy
import logging
if __name__ == '__main__':
run()
| [
6738,
764,
1330,
1388,
11,
1388,
62,
67,
544,
198,
11748,
1822,
29572,
198,
6738,
4866,
1330,
2769,
30073,
198,
11748,
18931,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1057,
3419,
198
] | 3.02439 | 41 |
# TODO: define the 'EXPECTED_BAKE_TIME' constant
# TODO: consider defining the 'PREPARATION_TIME' constant
# equal to the time it takes to prepare a single layer
# TODO: define the 'bake_time_remaining()' function
def bake_time_remaining():
"""Calculate the bake time remaining.
:param elapsed_bake_time: int baking time already elapsed.
:return: int remaining bake time derived from 'EXPECTED_BAKE_TIME'.
Function that takes the actual minutes the lasagna has been in the oven as
an argument and returns how many minutes the lasagna still needs to bake
based on the `EXPECTED_BAKE_TIME`.
"""
pass
# TODO: define the 'preparation_time_in_minutes()' function
# and consider using 'PREPARATION_TIME' here
# TODO: define the 'elapsed_time_in_minutes()' function
| [
2,
16926,
46,
25,
8160,
262,
705,
49864,
9782,
1961,
62,
4339,
7336,
62,
34694,
6,
6937,
198,
2,
16926,
46,
25,
2074,
16215,
262,
705,
46437,
27082,
6234,
62,
34694,
6,
6937,
198,
2,
220,
220,
220,
220,
220,
220,
4961,
284,
262,
640,
340,
2753,
284,
8335,
257,
2060,
7679,
628,
198,
2,
16926,
46,
25,
8160,
262,
705,
65,
539,
62,
2435,
62,
2787,
1397,
3419,
6,
2163,
198,
4299,
28450,
62,
2435,
62,
2787,
1397,
33529,
198,
220,
220,
220,
37227,
9771,
3129,
378,
262,
28450,
640,
5637,
13,
628,
220,
220,
220,
1058,
17143,
42118,
62,
65,
539,
62,
2435,
25,
493,
16871,
640,
1541,
42118,
13,
198,
220,
220,
220,
1058,
7783,
25,
493,
5637,
28450,
640,
10944,
422,
705,
49864,
9782,
1961,
62,
4339,
7336,
62,
34694,
4458,
628,
220,
220,
220,
15553,
326,
2753,
262,
4036,
2431,
262,
39990,
48669,
468,
587,
287,
262,
14361,
355,
198,
220,
220,
220,
281,
4578,
290,
5860,
703,
867,
2431,
262,
39990,
48669,
991,
2476,
284,
28450,
198,
220,
220,
220,
1912,
319,
262,
4600,
49864,
9782,
1961,
62,
4339,
7336,
62,
34694,
44646,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1208,
198,
198,
2,
16926,
46,
25,
8160,
262,
705,
3866,
1845,
341,
62,
2435,
62,
259,
62,
1084,
1769,
3419,
6,
2163,
198,
2,
220,
220,
220,
220,
220,
220,
290,
2074,
1262,
705,
46437,
27082,
6234,
62,
34694,
6,
994,
198,
198,
2,
16926,
46,
25,
8160,
262,
705,
417,
28361,
62,
2435,
62,
259,
62,
1084,
1769,
3419,
6,
2163,
198
] | 3.091603 | 262 |
#!/usr/bin/python3.9
# -*- coding: utf-8 -*-
#
# Copyright (C) 2022 LinYulong. All Rights Reserved
#
# @Time : 2022/2/7
# @Author : LinYulong
# @Description: 逻辑斯蒂回归模型Logistics regression
# https://blog.csdn.net/u013421629/article/details/78470020
import pandas as pd
import numpy as np
from sklearn.metrics import confusion_matrix
from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import LogisticRegression
from sklearn.linear_model import SGDClassifier
from sklearn.model_selection import train_test_split
from sklearn.metrics import classification_report
# 创建特征列表。
column_names = ['Sample code number', 'Clump Thickness', 'Uniformity of Cell Size', 'Uniformity of Cell Shape',
'Marginal Adhesion', 'Single Epithelial Cell Size', 'Bare Nuclei', 'Bland Chromatin', 'Normal Nucleoli',
'Mitoses', 'Class']
# 使用pandas.read_csv函数从互联网读取指定数据。
data = pd.read_csv(
'https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin/breast-cancer-wisconsin.data',
names=column_names)
# print data
# 将?替换为标准缺失值表示。
data = data.replace(to_replace='?', value=np.nan)
# 丢弃带有缺失值的数据(只要有一个维度有缺失)。
data = data.dropna(how='any')
# 输出data的数据量和维度。
# print data.shape
# 随机采样25%的数据用于测试,剩下的75%用于构建训练集合。
x_train, x_test, y_train, y_test = train_test_split(data[column_names[1:10]], data[column_names[10]], test_size=0.25,
random_state=33)
# 查验训练样本的数量和类别分布。
# print y_train.value_counts()
# 查验测试样本的数量和类别分布。
# print y_test.value_counts()
# 标准化数据,保证每个维度的特征数据方差为1,均值为0。使得预测结果不会被某些维度过大的特征值而主导。
ss = StandardScaler()
x_train = ss.fit_transform(x_train)
x_test = ss.transform(x_test)
# 初始化LogisticRegression
lr = LogisticRegression()
# 调用LogisticRegression中的fit函数/模块用来训练模型参数。
lr.fit(x_train, y_train)
# 使用训练好的模型lr对X_test进行预测,结果储存在变量lr_y_predict中。
lr_y_predict = lr.predict(x_test)
print("=== lr_y_predict ===")
print(lr_y_predict)
print("=== end lr_y_predict ===")
# 初始化GDClassifier。
sgdc = SGDClassifier()
# 调用SGDClassifier中的fit函数/模块用来训练模型参数。
sgdc.fit(x_train, y_train)
# 使用训练好的模型sgdc对X_test进行预测,结果储存在变量sgdc_y_predict中。
sgdc_y_predict = sgdc.predict(x_test)
# print sgdc_y_predict
# 打印混淆矩阵
labels1 = list(set(lr_y_predict))
conf_mat1 = confusion_matrix(y_test, lr_y_predict, labels=labels1)
print("Logistics regression")
print(conf_mat1)
labels2 = list(set(sgdc_y_predict))
conf_mat2 = confusion_matrix(y_test, sgdc_y_predict, labels=labels2)
print("sgdc_y_predict")
print(conf_mat2)
# 使用逻辑斯蒂回归模型自带的评分函数score获得模型在测试集上的准确性结果。
print('Accuracy of LR Classifier:', lr.score(x_test, y_test))
# 利用classification_report模块获得LogisticRegression其他三个指标的结果。
print(classification_report(y_test, lr_y_predict, target_names=['Benign', 'Malignant']))
# 使用随机梯度下降模型自带的评分函数score获得模型在测试集上的准确性结果。
print('Accuarcy of SGD Classifier:', sgdc.score(x_test, y_test))
# 利用classification_report模块获得SGDClassifier其他三个指标的结果。
print(classification_report(y_test, sgdc_y_predict, target_names=['Benign', 'Malignant']))
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
13,
24,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
198,
2,
15069,
357,
34,
8,
33160,
5164,
56,
377,
506,
13,
1439,
6923,
33876,
220,
198,
2,
198,
2,
2488,
7575,
220,
220,
220,
1058,
33160,
14,
17,
14,
22,
198,
2,
2488,
13838,
220,
1058,
5164,
56,
377,
506,
198,
2,
2488,
11828,
25,
16268,
222,
119,
164,
122,
239,
23877,
107,
164,
240,
224,
32368,
252,
37605,
240,
162,
101,
94,
161,
252,
233,
11187,
3969,
20683,
198,
2,
3740,
1378,
14036,
13,
6359,
32656,
13,
3262,
14,
84,
486,
2682,
20666,
1959,
14,
20205,
14,
36604,
14,
3695,
2857,
405,
1238,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
10802,
62,
6759,
8609,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
8997,
3351,
36213,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
5972,
2569,
8081,
2234,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
26147,
35,
9487,
7483,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
17923,
62,
13116,
198,
198,
2,
10263,
230,
249,
161,
119,
118,
31965,
117,
36181,
223,
26344,
245,
26193,
101,
16764,
198,
28665,
62,
14933,
796,
37250,
36674,
2438,
1271,
3256,
705,
2601,
931,
45816,
1108,
3256,
705,
3118,
6933,
414,
286,
12440,
12849,
3256,
705,
3118,
6933,
414,
286,
12440,
25959,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
36003,
1215,
32582,
3256,
705,
28008,
4551,
270,
35566,
12440,
12849,
3256,
705,
33,
533,
399,
14913,
72,
3256,
705,
33,
1044,
18255,
10680,
3256,
705,
26447,
399,
14913,
11106,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43339,
4629,
3256,
705,
9487,
20520,
198,
198,
2,
220,
45635,
18796,
101,
79,
392,
292,
13,
961,
62,
40664,
49035,
121,
46763,
108,
20015,
236,
12859,
240,
164,
223,
242,
163,
121,
239,
46237,
119,
20998,
244,
162,
234,
229,
22522,
248,
46763,
108,
162,
235,
106,
16764,
198,
7890,
796,
279,
67,
13,
961,
62,
40664,
7,
198,
220,
220,
220,
705,
5450,
1378,
17474,
13,
873,
13,
42008,
13,
15532,
14,
4029,
14,
30243,
12,
40684,
12,
19608,
18826,
14,
4679,
459,
12,
48870,
12,
86,
8816,
14,
4679,
459,
12,
48870,
12,
86,
8816,
13,
7890,
3256,
198,
220,
220,
220,
3891,
28,
28665,
62,
14933,
8,
198,
198,
2,
3601,
1366,
198,
2,
10263,
108,
228,
30,
162,
249,
123,
162,
235,
95,
10310,
118,
43718,
229,
49035,
228,
163,
120,
118,
13783,
109,
161,
222,
120,
26193,
101,
163,
97,
118,
16764,
198,
7890,
796,
1366,
13,
33491,
7,
1462,
62,
33491,
11639,
30,
3256,
1988,
28,
37659,
13,
12647,
8,
198,
2,
220,
10310,
95,
28156,
225,
30585,
99,
17312,
231,
163,
120,
118,
13783,
109,
161,
222,
120,
21410,
46763,
108,
162,
235,
106,
171,
120,
230,
20998,
103,
17358,
223,
17312,
231,
31660,
10310,
103,
163,
119,
112,
41753,
99,
17312,
231,
163,
120,
118,
13783,
109,
171,
120,
231,
16764,
198,
7890,
796,
1366,
13,
14781,
2616,
7,
4919,
11639,
1092,
11537,
198,
198,
2,
5525,
122,
241,
49035,
118,
7890,
21410,
46763,
108,
162,
235,
106,
34932,
237,
161,
240,
234,
163,
119,
112,
41753,
99,
16764,
198,
2,
3601,
220,
1366,
13,
43358,
198,
198,
2,
16268,
248,
237,
17312,
118,
34932,
229,
43718,
115,
1495,
4,
21410,
46763,
108,
162,
235,
106,
18796,
101,
12859,
236,
38184,
233,
46237,
243,
171,
120,
234,
30298,
102,
10310,
233,
21410,
2425,
4,
18796,
101,
12859,
236,
162,
252,
226,
161,
119,
118,
164,
106,
255,
163,
119,
225,
37239,
228,
28938,
230,
16764,
198,
87,
62,
27432,
11,
2124,
62,
9288,
11,
331,
62,
27432,
11,
331,
62,
9288,
796,
4512,
62,
9288,
62,
35312,
7,
7890,
58,
28665,
62,
14933,
58,
16,
25,
940,
60,
4357,
1366,
58,
28665,
62,
14933,
58,
940,
60,
4357,
1332,
62,
7857,
28,
15,
13,
1495,
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,
4738,
62,
5219,
28,
2091,
8,
198,
198,
2,
10545,
253,
98,
165,
103,
234,
164,
106,
255,
163,
119,
225,
43718,
115,
17312,
105,
21410,
46763,
108,
34932,
237,
161,
240,
234,
163,
109,
119,
26344,
104,
26344,
228,
30585,
225,
16764,
198,
2,
3601,
220,
331,
62,
27432,
13,
8367,
62,
9127,
82,
3419,
198,
198,
2,
10545,
253,
98,
165,
103,
234,
38184,
233,
46237,
243,
43718,
115,
17312,
105,
21410,
46763,
108,
34932,
237,
161,
240,
234,
163,
109,
119,
26344,
104,
26344,
228,
30585,
225,
16764,
198,
2,
3601,
331,
62,
9288,
13,
8367,
62,
9127,
82,
3419,
198,
198,
2,
10545,
254,
229,
49035,
228,
44293,
244,
46763,
108,
162,
235,
106,
171,
120,
234,
46479,
251,
46237,
223,
162,
107,
237,
10310,
103,
163,
119,
112,
41753,
99,
21410,
31965,
117,
36181,
223,
46763,
108,
162,
235,
106,
43095,
32432,
106,
10310,
118,
16,
171,
120,
234,
161,
251,
229,
161,
222,
120,
10310,
118,
15,
16764,
45635,
36181,
245,
165,
95,
226,
38184,
233,
163,
119,
241,
162,
252,
250,
38834,
27670,
248,
164,
95,
104,
162,
253,
238,
12859,
249,
163,
119,
112,
41753,
99,
32573,
229,
32014,
21410,
31965,
117,
36181,
223,
161,
222,
120,
32003,
234,
10310,
119,
43380,
120,
16764,
198,
824,
796,
8997,
3351,
36213,
3419,
198,
87,
62,
27432,
796,
37786,
13,
11147,
62,
35636,
7,
87,
62,
27432,
8,
198,
87,
62,
9288,
796,
37786,
13,
35636,
7,
87,
62,
9288,
8,
198,
198,
2,
10263,
230,
251,
34650,
233,
44293,
244,
11187,
2569,
8081,
2234,
198,
14050,
796,
5972,
2569,
8081,
2234,
3419,
198,
2,
5525,
108,
225,
18796,
101,
11187,
2569,
8081,
2234,
40792,
21410,
11147,
49035,
121,
46763,
108,
14,
162,
101,
94,
161,
251,
245,
18796,
101,
30266,
98,
164,
106,
255,
163,
119,
225,
162,
101,
94,
161,
252,
233,
20998,
224,
46763,
108,
16764,
198,
14050,
13,
11147,
7,
87,
62,
27432,
11,
331,
62,
27432,
8,
198,
2,
220,
45635,
18796,
101,
164,
106,
255,
163,
119,
225,
25001,
121,
21410,
162,
101,
94,
161,
252,
233,
14050,
43380,
117,
55,
62,
9288,
32573,
249,
26193,
234,
165,
95,
226,
38184,
233,
171,
120,
234,
163,
119,
241,
162,
252,
250,
43636,
101,
27764,
246,
28839,
101,
20998,
246,
34932,
237,
14050,
62,
88,
62,
79,
17407,
40792,
16764,
198,
14050,
62,
88,
62,
79,
17407,
796,
300,
81,
13,
79,
17407,
7,
87,
62,
9288,
8,
198,
4798,
7203,
18604,
300,
81,
62,
88,
62,
79,
17407,
24844,
4943,
198,
4798,
7,
14050,
62,
88,
62,
79,
17407,
8,
198,
4798,
7203,
18604,
886,
300,
81,
62,
88,
62,
79,
17407,
24844,
4943,
198,
198,
2,
10263,
230,
251,
34650,
233,
44293,
244,
45113,
9487,
7483,
16764,
198,
45213,
17896,
796,
26147,
35,
9487,
7483,
3419,
198,
2,
5525,
108,
225,
18796,
101,
38475,
35,
9487,
7483,
40792,
21410,
11147,
49035,
121,
46763,
108,
14,
162,
101,
94,
161,
251,
245,
18796,
101,
30266,
98,
164,
106,
255,
163,
119,
225,
162,
101,
94,
161,
252,
233,
20998,
224,
46763,
108,
16764,
198,
45213,
17896,
13,
11147,
7,
87,
62,
27432,
11,
331,
62,
27432,
8,
198,
2,
220,
45635,
18796,
101,
164,
106,
255,
163,
119,
225,
25001,
121,
21410,
162,
101,
94,
161,
252,
233,
45213,
17896,
43380,
117,
55,
62,
9288,
32573,
249,
26193,
234,
165,
95,
226,
38184,
233,
171,
120,
234,
163,
119,
241,
162,
252,
250,
43636,
101,
27764,
246,
28839,
101,
20998,
246,
34932,
237,
45213,
17896,
62,
88,
62,
79,
17407,
40792,
16764,
198,
45213,
17896,
62,
88,
62,
79,
17407,
796,
264,
70,
17896,
13,
79,
17407,
7,
87,
62,
9288,
8,
198,
198,
2,
3601,
264,
70,
17896,
62,
88,
62,
79,
17407,
628,
198,
2,
10545,
231,
241,
39355,
108,
162,
115,
115,
162,
115,
228,
163,
253,
102,
165,
246,
113,
198,
23912,
1424,
16,
796,
1351,
7,
2617,
7,
14050,
62,
88,
62,
79,
17407,
4008,
198,
10414,
62,
6759,
16,
796,
10802,
62,
6759,
8609,
7,
88,
62,
9288,
11,
300,
81,
62,
88,
62,
79,
17407,
11,
14722,
28,
23912,
1424,
16,
8,
198,
4798,
7203,
11187,
3969,
20683,
4943,
198,
4798,
7,
10414,
62,
6759,
16,
8,
198,
198,
23912,
1424,
17,
796,
1351,
7,
2617,
7,
45213,
17896,
62,
88,
62,
79,
17407,
4008,
198,
10414,
62,
6759,
17,
796,
10802,
62,
6759,
8609,
7,
88,
62,
9288,
11,
264,
70,
17896,
62,
88,
62,
79,
17407,
11,
14722,
28,
23912,
1424,
17,
8,
198,
4798,
7203,
45213,
17896,
62,
88,
62,
79,
17407,
4943,
198,
4798,
7,
10414,
62,
6759,
17,
8,
198,
198,
2,
220,
45635,
18796,
101,
34460,
119,
164,
122,
239,
23877,
107,
164,
240,
224,
32368,
252,
37605,
240,
162,
101,
94,
161,
252,
233,
164,
229,
103,
30585,
99,
21410,
46237,
226,
26344,
228,
49035,
121,
46763,
108,
26675,
164,
236,
115,
36181,
245,
162,
101,
94,
161,
252,
233,
28839,
101,
38184,
233,
46237,
243,
37239,
228,
41468,
21410,
49035,
228,
163,
94,
106,
45250,
100,
163,
119,
241,
162,
252,
250,
16764,
198,
4798,
10786,
17320,
23843,
286,
37491,
5016,
7483,
25,
3256,
300,
81,
13,
26675,
7,
87,
62,
9288,
11,
331,
62,
9288,
4008,
198,
2,
10263,
230,
102,
18796,
101,
4871,
2649,
62,
13116,
162,
101,
94,
161,
251,
245,
164,
236,
115,
36181,
245,
11187,
2569,
8081,
2234,
17739,
114,
20015,
244,
49011,
10310,
103,
162,
234,
229,
43718,
229,
21410,
163,
119,
241,
162,
252,
250,
16764,
198,
4798,
7,
4871,
2649,
62,
13116,
7,
88,
62,
9288,
11,
300,
81,
62,
88,
62,
79,
17407,
11,
2496,
62,
14933,
28,
17816,
11696,
570,
3256,
705,
15029,
25114,
20520,
4008,
198,
198,
2,
220,
45635,
18796,
101,
49694,
237,
17312,
118,
162,
95,
107,
41753,
99,
10310,
233,
165,
247,
235,
162,
101,
94,
161,
252,
233,
164,
229,
103,
30585,
99,
21410,
46237,
226,
26344,
228,
49035,
121,
46763,
108,
26675,
164,
236,
115,
36181,
245,
162,
101,
94,
161,
252,
233,
28839,
101,
38184,
233,
46237,
243,
37239,
228,
41468,
21410,
49035,
228,
163,
94,
106,
45250,
100,
163,
119,
241,
162,
252,
250,
16764,
198,
4798,
10786,
17320,
84,
283,
948,
286,
26147,
35,
5016,
7483,
25,
3256,
264,
70,
17896,
13,
26675,
7,
87,
62,
9288,
11,
331,
62,
9288,
4008,
198,
2,
10263,
230,
102,
18796,
101,
4871,
2649,
62,
13116,
162,
101,
94,
161,
251,
245,
164,
236,
115,
36181,
245,
38475,
35,
9487,
7483,
17739,
114,
20015,
244,
49011,
10310,
103,
162,
234,
229,
43718,
229,
21410,
163,
119,
241,
162,
252,
250,
16764,
198,
4798,
7,
4871,
2649,
62,
13116,
7,
88,
62,
9288,
11,
264,
70,
17896,
62,
88,
62,
79,
17407,
11,
2496,
62,
14933,
28,
17816,
11696,
570,
3256,
705,
15029,
25114,
20520,
4008,
198
] | 1.592593 | 1,890 |
"""GitLab source."""
from ..meta.entity import Color, EntityAttributeType
from ..meta.source import Source
from ..parameters import (
Branch,
BranchesToIgnore,
Days,
FailureType,
MergeRequestState,
MultipleChoiceParameter,
MultipleChoiceWithAdditionParameter,
Upvotes,
PrivateToken,
StringParameter,
TargetBranchesToInclude,
URL,
)
ALL_GITLAB_METRICS = [
"failed_jobs",
"merge_requests",
"source_up_to_dateness",
"source_version",
"unmerged_branches",
"unused_jobs",
]
JOB_ENTITY = dict(
name="job",
attributes=[
dict(name="Job name", key="name", url="url"),
dict(name="Job stage", key="stage"),
dict(name="Branch or tag", key="branch"),
dict(
name="Status of most recent build",
key="build_status",
color=dict(canceled=Color.ACTIVE, failed=Color.NEGATIVE, success=Color.POSITIVE),
),
dict(name="Date of most recent build", key="build_date", type=EntityAttributeType.DATE),
],
)
GITLAB_BRANCH_HELP_URL = "https://docs.gitlab.com/ee/user/project/repository/branches/"
GITLAB = Source(
name="GitLab",
description="GitLab provides Git-repositories, wiki's, issue-tracking and continuous integration/continuous "
"deployment pipelines.",
url="https://about.gitlab.com/",
parameters=dict(
url=URL(
name="GitLab instance URL",
help="URL of the GitLab instance, with port if necessary, but without path. For example, "
"'https://gitlab.com'.",
validate_on=["private_token"],
metrics=ALL_GITLAB_METRICS,
),
project=StringParameter(
name="Project (name with namespace or id)",
short_name="project",
mandatory=True,
help_url="https://docs.gitlab.com/ee/user/project/",
metrics=[
"failed_jobs",
"merge_requests",
"source_up_to_dateness",
"unmerged_branches",
"unused_jobs",
],
),
private_token=PrivateToken(
name="Private token (with read_api scope)",
help_url="https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html",
metrics=ALL_GITLAB_METRICS,
),
file_path=StringParameter(
name="File or folder path",
short_name="path",
mandatory=True,
help_url="https://docs.gitlab.com/ee/api/repository_files.html",
metrics=["source_up_to_dateness"],
),
branch=Branch(help_url=GITLAB_BRANCH_HELP_URL),
branches_to_ignore=BranchesToIgnore(help_url=GITLAB_BRANCH_HELP_URL),
refs_to_ignore=MultipleChoiceWithAdditionParameter(
name="Branches and tags to ignore (regular expressions, branch names or tag names)",
short_name="branches and tags to ignore",
help_url=GITLAB_BRANCH_HELP_URL,
metrics=["failed_jobs", "unused_jobs"],
),
inactive_days=Days(
name="Number of days since last commit after which to consider branches inactive",
short_name="number of days since last commit",
default_value="7",
metrics=["unmerged_branches"],
),
inactive_job_days=Days(
name="Number of days without builds after which to consider CI-jobs unused",
short_name="number of days without builds",
default_value="90",
metrics=["unused_jobs"],
),
failure_type=FailureType(values=["canceled", "failed", "skipped"]),
jobs_to_ignore=MultipleChoiceWithAdditionParameter(
name="Jobs to ignore (regular expressions or job names)",
short_name="jobs to ignore",
help="Jobs to ignore can be specified by job name or by regular expression.",
metrics=["failed_jobs", "unused_jobs"],
),
merge_request_state=MergeRequestState(values=["opened", "locked", "merged", "closed"]),
approval_state=MultipleChoiceParameter(
name="Approval states to include (requires GitLab Premium)",
short_name="approval states",
help_url="https://docs.gitlab.com/ee/user/project/merge_requests/approvals/",
values=["approved", "not approved", "unknown"],
api_values={"approved": "yes", "not approved": "no", "unknown": "?"},
placeholder="all approval states",
metrics=["merge_requests"],
),
upvotes=Upvotes(),
target_branches_to_include=TargetBranchesToInclude(help_url=GITLAB_BRANCH_HELP_URL),
),
entities=dict(
failed_jobs=JOB_ENTITY,
merge_requests=dict(
name="merge request",
attributes=[
dict(name="Merge request", key="title", url="url"),
dict(name="Target branch"),
dict(name="State"),
dict(name="Approved"),
dict(name="Upvotes", type=EntityAttributeType.INTEGER),
dict(name="Downvotes", type=EntityAttributeType.INTEGER),
dict(name="Created", type=EntityAttributeType.DATETIME),
dict(name="Updated", type=EntityAttributeType.DATETIME),
dict(name="Merged", type=EntityAttributeType.DATETIME),
],
),
unmerged_branches=dict(
name="branch",
name_plural="branches",
attributes=[
dict(name="Branch name", key="name", url="url"),
dict(name="Date of most recent commit", key="commit_date", type=EntityAttributeType.DATE),
],
),
unused_jobs=JOB_ENTITY,
),
)
| [
37811,
38,
270,
17822,
2723,
526,
15931,
198,
198,
6738,
11485,
28961,
13,
26858,
1330,
5315,
11,
20885,
33682,
6030,
198,
6738,
11485,
28961,
13,
10459,
1330,
8090,
198,
6738,
11485,
17143,
7307,
1330,
357,
198,
220,
220,
220,
20551,
11,
198,
220,
220,
220,
1709,
12140,
2514,
32916,
382,
11,
198,
220,
220,
220,
12579,
11,
198,
220,
220,
220,
25743,
6030,
11,
198,
220,
220,
220,
39407,
18453,
9012,
11,
198,
220,
220,
220,
20401,
46770,
36301,
11,
198,
220,
220,
220,
20401,
46770,
3152,
4550,
653,
36301,
11,
198,
220,
220,
220,
3205,
29307,
11,
198,
220,
220,
220,
15348,
30642,
11,
198,
220,
220,
220,
10903,
36301,
11,
198,
220,
220,
220,
12744,
9414,
12140,
2514,
818,
9152,
11,
198,
220,
220,
220,
10289,
11,
198,
8,
628,
198,
7036,
62,
38,
2043,
48780,
62,
47123,
49,
19505,
796,
685,
198,
220,
220,
220,
366,
47904,
62,
43863,
1600,
198,
220,
220,
220,
366,
647,
469,
62,
8897,
3558,
1600,
198,
220,
220,
220,
366,
10459,
62,
929,
62,
1462,
62,
19608,
9449,
1600,
198,
220,
220,
220,
366,
10459,
62,
9641,
1600,
198,
220,
220,
220,
366,
403,
647,
2004,
62,
1671,
12140,
1600,
198,
220,
220,
220,
366,
403,
1484,
62,
43863,
1600,
198,
60,
198,
198,
41,
9864,
62,
3525,
9050,
796,
8633,
7,
198,
220,
220,
220,
1438,
2625,
21858,
1600,
198,
220,
220,
220,
12608,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
33308,
1438,
1600,
1994,
2625,
3672,
1600,
19016,
2625,
6371,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
33308,
3800,
1600,
1994,
2625,
14247,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
33,
25642,
393,
7621,
1600,
1994,
2625,
1671,
3702,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
19580,
286,
749,
2274,
1382,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
2625,
11249,
62,
13376,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3124,
28,
11600,
7,
66,
590,
992,
28,
10258,
13,
10659,
9306,
11,
4054,
28,
10258,
13,
45,
7156,
37045,
11,
1943,
28,
10258,
13,
37997,
2043,
9306,
828,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
10430,
286,
749,
2274,
1382,
1600,
1994,
2625,
11249,
62,
4475,
1600,
2099,
28,
32398,
33682,
6030,
13,
35,
6158,
828,
198,
220,
220,
220,
16589,
198,
8,
198,
198,
38,
2043,
48780,
62,
11473,
1565,
3398,
62,
39,
3698,
47,
62,
21886,
796,
366,
5450,
1378,
31628,
13,
18300,
23912,
13,
785,
14,
1453,
14,
7220,
14,
16302,
14,
260,
1930,
37765,
14,
1671,
12140,
30487,
198,
198,
38,
2043,
48780,
796,
8090,
7,
198,
220,
220,
220,
1438,
2625,
38,
270,
17822,
1600,
198,
220,
220,
220,
6764,
2625,
38,
270,
17822,
3769,
15151,
12,
260,
1930,
270,
1749,
11,
22719,
338,
11,
2071,
12,
36280,
290,
12948,
11812,
14,
18487,
5623,
366,
198,
220,
220,
220,
366,
2934,
1420,
434,
31108,
33283,
198,
220,
220,
220,
19016,
2625,
5450,
1378,
10755,
13,
18300,
23912,
13,
785,
14,
1600,
198,
220,
220,
220,
10007,
28,
11600,
7,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
28,
21886,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
38,
270,
17822,
4554,
10289,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
21886,
286,
262,
15151,
17822,
4554,
11,
351,
2493,
611,
3306,
11,
475,
1231,
3108,
13,
1114,
1672,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
5450,
1378,
18300,
23912,
13,
785,
30827,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26571,
62,
261,
28,
14692,
19734,
62,
30001,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
7036,
62,
38,
2043,
48780,
62,
47123,
49,
19505,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
28,
10100,
36301,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
16775,
357,
3672,
351,
25745,
393,
4686,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
16302,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13677,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
6371,
2625,
5450,
1378,
31628,
13,
18300,
23912,
13,
785,
14,
1453,
14,
7220,
14,
16302,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
47904,
62,
43863,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
647,
469,
62,
8897,
3558,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10459,
62,
929,
62,
1462,
62,
19608,
9449,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
403,
647,
2004,
62,
1671,
12140,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
403,
1484,
62,
43863,
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,
2839,
62,
30001,
28,
29067,
30642,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
29067,
11241,
357,
4480,
1100,
62,
15042,
8354,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
6371,
2625,
5450,
1378,
31628,
13,
18300,
23912,
13,
785,
14,
1453,
14,
7220,
14,
13317,
14,
22682,
62,
15526,
62,
83,
482,
641,
13,
6494,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
7036,
62,
38,
2043,
48780,
62,
47123,
49,
19505,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
2393,
62,
6978,
28,
10100,
36301,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
8979,
393,
9483,
3108,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
6978,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13677,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
6371,
2625,
5450,
1378,
31628,
13,
18300,
23912,
13,
785,
14,
1453,
14,
15042,
14,
260,
1930,
37765,
62,
16624,
13,
6494,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
10459,
62,
929,
62,
1462,
62,
19608,
9449,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
8478,
28,
33,
25642,
7,
16794,
62,
6371,
28,
38,
2043,
48780,
62,
11473,
1565,
3398,
62,
39,
3698,
47,
62,
21886,
828,
198,
220,
220,
220,
220,
220,
220,
220,
13737,
62,
1462,
62,
46430,
28,
9414,
12140,
2514,
32916,
382,
7,
16794,
62,
6371,
28,
38,
2043,
48780,
62,
11473,
1565,
3398,
62,
39,
3698,
47,
62,
21886,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1006,
82,
62,
1462,
62,
46430,
28,
31217,
46770,
3152,
4550,
653,
36301,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
9414,
12140,
290,
15940,
284,
8856,
357,
16338,
14700,
11,
8478,
3891,
393,
7621,
3891,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
1671,
12140,
290,
15940,
284,
8856,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
6371,
28,
38,
2043,
48780,
62,
11473,
1565,
3398,
62,
39,
3698,
47,
62,
21886,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
47904,
62,
43863,
1600,
366,
403,
1484,
62,
43863,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
28621,
62,
12545,
28,
38770,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
15057,
286,
1528,
1201,
938,
4589,
706,
543,
284,
2074,
13737,
28621,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
17618,
286,
1528,
1201,
938,
4589,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
62,
8367,
2625,
22,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
403,
647,
2004,
62,
1671,
12140,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
28621,
62,
21858,
62,
12545,
28,
38770,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
15057,
286,
1528,
1231,
12188,
706,
543,
284,
2074,
14514,
12,
43863,
21958,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
17618,
286,
1528,
1231,
12188,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
62,
8367,
2625,
3829,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
403,
1484,
62,
43863,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
5287,
62,
4906,
28,
50015,
6030,
7,
27160,
28,
14692,
66,
590,
992,
1600,
366,
47904,
1600,
366,
8135,
3949,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
3946,
62,
1462,
62,
46430,
28,
31217,
46770,
3152,
4550,
653,
36301,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
41,
8158,
284,
8856,
357,
16338,
14700,
393,
1693,
3891,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
43863,
284,
8856,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
41,
8158,
284,
8856,
460,
307,
7368,
416,
1693,
1438,
393,
416,
3218,
5408,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
47904,
62,
43863,
1600,
366,
403,
1484,
62,
43863,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
20121,
62,
25927,
62,
5219,
28,
13102,
469,
18453,
9012,
7,
27160,
28,
14692,
26350,
1600,
366,
24162,
1600,
366,
647,
2004,
1600,
366,
20225,
8973,
828,
198,
220,
220,
220,
220,
220,
220,
220,
7546,
62,
5219,
28,
31217,
46770,
36301,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
4677,
305,
2100,
2585,
284,
2291,
357,
47911,
15151,
17822,
17315,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1790,
62,
3672,
2625,
21064,
2100,
2585,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
6371,
2625,
5450,
1378,
31628,
13,
18300,
23912,
13,
785,
14,
1453,
14,
7220,
14,
16302,
14,
647,
469,
62,
8897,
3558,
14,
21064,
12786,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3815,
28,
14692,
29137,
1600,
366,
1662,
6325,
1600,
366,
34680,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
27160,
28,
4895,
29137,
1298,
366,
8505,
1600,
366,
1662,
6325,
1298,
366,
3919,
1600,
366,
34680,
1298,
366,
1701,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46076,
2625,
439,
7546,
2585,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
28,
14692,
647,
469,
62,
8897,
3558,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
510,
29307,
28,
4933,
29307,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
1671,
12140,
62,
1462,
62,
17256,
28,
21745,
9414,
12140,
2514,
818,
9152,
7,
16794,
62,
6371,
28,
38,
2043,
48780,
62,
11473,
1565,
3398,
62,
39,
3698,
47,
62,
21886,
828,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
12066,
28,
11600,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4054,
62,
43863,
28,
41,
9864,
62,
3525,
9050,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20121,
62,
8897,
3558,
28,
11600,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
647,
469,
2581,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12608,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
13102,
469,
2581,
1600,
1994,
2625,
7839,
1600,
19016,
2625,
6371,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
21745,
8478,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
9012,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
4677,
305,
1079,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
4933,
29307,
1600,
2099,
28,
32398,
33682,
6030,
13,
12394,
7156,
1137,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
8048,
29307,
1600,
2099,
28,
32398,
33682,
6030,
13,
12394,
7156,
1137,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
41972,
1600,
2099,
28,
32398,
33682,
6030,
13,
35,
1404,
2767,
12789,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
17354,
1600,
2099,
28,
32398,
33682,
6030,
13,
35,
1404,
2767,
12789,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
13102,
2004,
1600,
2099,
28,
32398,
33682,
6030,
13,
35,
1404,
2767,
12789,
828,
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,
555,
647,
2004,
62,
1671,
12140,
28,
11600,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
1671,
3702,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
62,
489,
1523,
2625,
1671,
12140,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12608,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
33,
25642,
1438,
1600,
1994,
2625,
3672,
1600,
19016,
2625,
6371,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
7,
3672,
2625,
10430,
286,
749,
2274,
4589,
1600,
1994,
2625,
41509,
62,
4475,
1600,
2099,
28,
32398,
33682,
6030,
13,
35,
6158,
828,
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,
21958,
62,
43863,
28,
41,
9864,
62,
3525,
9050,
11,
198,
220,
220,
220,
10612,
198,
8,
198
] | 2.17911 | 2,652 |
"""
Interface module defining a url storage API.
"""
import abc
import six
@six.add_metaclass(abc.ABCMeta)
| [
37811,
198,
39317,
8265,
16215,
257,
19016,
6143,
7824,
13,
198,
37811,
198,
11748,
450,
66,
198,
11748,
2237,
628,
198,
31,
19412,
13,
2860,
62,
4164,
330,
31172,
7,
39305,
13,
24694,
48526,
8,
198
] | 3.027778 | 36 |
"""
roundup.anypy - compatibility layer for any Python 2.3+
"""
VERSION = '.'.join(map(str,
(0,
3,
)))
| [
37811,
198,
744,
929,
13,
1092,
9078,
532,
17764,
7679,
329,
597,
11361,
362,
13,
18,
10,
198,
37811,
198,
43717,
796,
705,
2637,
13,
22179,
7,
8899,
7,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
15,
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,
513,
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,
47282,
198
] | 1.59633 | 109 |
# -*- coding: utf-8 -*-
import importlib
from json.encoder import (_make_iterencode, JSONEncoder,
encode_basestring_ascii, INFINITY,
encode_basestring)
discord = importlib.import_module('discord')
fortnitepy = importlib.import_module('fortnitepy')
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
11748,
1330,
8019,
201,
198,
6738,
33918,
13,
12685,
12342,
1330,
44104,
15883,
62,
270,
14226,
8189,
11,
19449,
27195,
12342,
11,
201,
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,
37773,
62,
12093,
395,
1806,
62,
292,
979,
72,
11,
3268,
20032,
9050,
11,
201,
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,
37773,
62,
12093,
395,
1806,
8,
201,
198,
201,
198,
15410,
585,
796,
1330,
8019,
13,
11748,
62,
21412,
10786,
15410,
585,
11537,
201,
198,
3319,
48825,
538,
88,
796,
1330,
8019,
13,
11748,
62,
21412,
10786,
3319,
48825,
538,
88,
11537,
201,
198,
201,
198
] | 2.059603 | 151 |
import boto3
import botocore
import json
import config
import res.utils as utils
import res.glob as glob
# =======================================================================================================================
#
# Supported services : RDS, DynamoDB, ElastiCache, Neptune, Amazon Redshift
# Unsupported services : None
#
# =======================================================================================================================
# ------------------------------------------------------------------------
#
# RDS
#
# ------------------------------------------------------------------------
def get_rds_inventory(oId):
"""
Returns RDS inventory
:param oId: ownerId (AWS account)
:type oId: string
:return: RDS inventory
:rtype: json
..note:: http://boto3.readthedocs.io/en/latest/reference/services/rds.html
"""
return glob.get_inventory(
ownerId = oId,
aws_service = "rds",
aws_region = "all",
function_name = "describe_db_instances",
key_get = "DBInstances",
pagination = True
)
# ------------------------------------------------------------------------
#
# DynamoDB
#
# ------------------------------------------------------------------------
def get_dynamodb_inventory(oId):
"""
Returns dynamoDB inventory
:param oId: ownerId (AWS account)
:type oId: string
:return: dynamoDB inventory
:rtype: json
..note:: http://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html
"""
return glob.get_inventory(
ownerId = oId,
aws_service = "dynamodb",
aws_region = "all",
function_name = "list_tables",
key_get = "TableNames",
detail_function = "describe_table",
join_key = "TableName",
detail_join_key = "TableName",
detail_get_key = "Table",
pagination = True
)
# ------------------------------------------------------------------------
#
# Neptune
#
# ------------------------------------------------------------------------
def get_neptune_inventory(oId):
"""
Returns neptune inventory (instances & clusters). Instances are listed in RDS inventory.
:param oId: ownerId (AWS account)
:type oId: string
:return: neptune inventory
:rtype: json
..note:: http://boto3.readthedocs.io/en/latest/reference/services/neptune.html
"""
neptune_inventory = {}
neptune_inventory['clusters'] = glob.get_inventory(
ownerId = oId,
aws_service = "neptune",
aws_region = "all",
function_name = "describe_db_clusters",
key_get = "DBClusters"
)
return neptune_inventory
# ------------------------------------------------------------------------
#
# ElastiCache
#
# ------------------------------------------------------------------------
def get_elasticache_inventory(oId):
"""
Returns elasticache inventory (instances & clusters). Instances are listed in RDS inventory.
:param oId: ownerId (AWS account)
:type oId: string
:return: elasticache inventory
:rtype: json
..note:: http://boto3.readthedocs.io/en/latest/reference/services/elasticache.html
"""
elasticache_inventory = {}
elasticache_inventory['cache-clusters'] = glob.get_inventory(
ownerId = oId,
aws_service = "elasticache",
aws_region = "all",
function_name = "describe_cache_clusters",
key_get = "CacheClusters",
pagination = True
)
elasticache_inventory['reserved-cache-nodes'] = glob.get_inventory(
ownerId = oId,
aws_service = "elasticache",
aws_region = "all",
function_name = "describe_reserved_cache_nodes",
key_get = "ReservedCacheNodes",
pagination = True
)
return elasticache_inventory
# ------------------------------------------------------------------------
#
# Redshift
#
# ------------------------------------------------------------------------
def get_redshift_inventory(oId):
"""
Returns redshift inventory (instances & clusters). Instances are listed in RDS inventory.
:param oId: ownerId (AWS account)
:type oId: string
:return: redshift inventory
:rtype: json
..note:: http://boto3.readthedocs.io/en/latest/reference/services/redshift.html
"""
redshift_inventory = {}
redshift_inventory['clusters'] = glob.get_inventory(
ownerId = oId,
aws_service = "redshift",
aws_region = "all",
function_name = "describe_clusters",
key_get = "Clusters",
pagination = True
)
redshift_inventory['reserved-nodes'] = glob.get_inventory(
ownerId = oId,
aws_service = "redshift",
aws_region = "all",
function_name = "describe_reserved_nodes",
key_get = "ReservedNodes",
pagination = True
)
return redshift_inventory
#
# Hey, doc: we're in a module!
#
if (__name__ == '__main__'):
print('Module => Do not execute') | [
11748,
275,
2069,
18,
198,
11748,
10214,
420,
382,
198,
11748,
33918,
198,
11748,
4566,
198,
11748,
581,
13,
26791,
355,
3384,
4487,
198,
11748,
581,
13,
4743,
672,
220,
355,
15095,
198,
198,
2,
38093,
10052,
4770,
50155,
198,
2,
198,
2,
220,
36848,
2594,
220,
220,
1058,
371,
5258,
11,
41542,
11012,
11,
2574,
459,
72,
30562,
11,
26461,
11,
6186,
2297,
30846,
198,
2,
220,
791,
15999,
2594,
1058,
6045,
198,
2,
198,
2,
38093,
10052,
4770,
50155,
198,
198,
2,
220,
16529,
982,
198,
2,
198,
2,
220,
220,
220,
371,
5258,
220,
198,
2,
198,
2,
220,
16529,
982,
198,
198,
4299,
651,
62,
4372,
82,
62,
24807,
7,
78,
7390,
2599,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
371,
5258,
13184,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
267,
7390,
25,
4870,
7390,
357,
12298,
50,
1848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
267,
7390,
25,
4731,
628,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
371,
5258,
13184,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
33918,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
11295,
3712,
2638,
1378,
65,
2069,
18,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
35790,
14,
30416,
14,
4372,
82,
13,
6494,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
1441,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
4372,
82,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
9945,
62,
8625,
1817,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
11012,
6310,
1817,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
198,
2,
220,
16529,
982,
198,
2,
198,
2,
220,
220,
220,
41542,
11012,
220,
198,
2,
198,
2,
220,
16529,
982,
198,
198,
4299,
651,
62,
67,
4989,
375,
65,
62,
24807,
7,
78,
7390,
2599,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
6382,
78,
11012,
13184,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
267,
7390,
25,
4870,
7390,
357,
12298,
50,
1848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
267,
7390,
25,
4731,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6382,
78,
11012,
13184,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
33918,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
11295,
3712,
2638,
1378,
65,
2069,
18,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
35790,
14,
30416,
14,
67,
4989,
375,
65,
13,
6494,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
1441,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
67,
4989,
375,
65,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
4868,
62,
83,
2977,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
10962,
36690,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3703,
62,
8818,
796,
366,
20147,
4892,
62,
11487,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
4654,
62,
2539,
796,
366,
10962,
5376,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3703,
62,
22179,
62,
2539,
796,
366,
10962,
5376,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3703,
62,
1136,
62,
2539,
796,
366,
10962,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
198,
2,
220,
16529,
982,
198,
2,
198,
2,
220,
220,
220,
26461,
220,
198,
2,
198,
2,
220,
16529,
982,
198,
198,
4299,
651,
62,
710,
457,
1726,
62,
24807,
7,
78,
7390,
2599,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
497,
457,
1726,
13184,
357,
8625,
1817,
1222,
23163,
737,
2262,
1817,
389,
5610,
287,
371,
5258,
13184,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
267,
7390,
25,
4870,
7390,
357,
12298,
50,
1848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
267,
7390,
25,
4731,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
497,
457,
1726,
13184,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
33918,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
11295,
3712,
2638,
1378,
65,
2069,
18,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
35790,
14,
30416,
14,
710,
457,
1726,
13,
6494,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
497,
457,
1726,
62,
24807,
796,
23884,
628,
220,
220,
220,
497,
457,
1726,
62,
24807,
17816,
565,
13654,
20520,
796,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
710,
457,
1726,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
9945,
62,
565,
13654,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
11012,
2601,
13654,
1,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
497,
457,
1726,
62,
24807,
198,
220,
220,
220,
198,
198,
2,
220,
16529,
982,
198,
2,
198,
2,
220,
220,
220,
2574,
459,
72,
30562,
198,
2,
198,
2,
220,
16529,
982,
198,
198,
4299,
651,
62,
417,
3477,
4891,
62,
24807,
7,
78,
7390,
2599,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
27468,
4891,
13184,
357,
8625,
1817,
1222,
23163,
737,
2262,
1817,
389,
5610,
287,
371,
5258,
13184,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
267,
7390,
25,
4870,
7390,
357,
12298,
50,
1848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
267,
7390,
25,
4731,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
27468,
4891,
13184,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
33918,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
11295,
3712,
2638,
1378,
65,
2069,
18,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
35790,
14,
30416,
14,
417,
3477,
4891,
13,
6494,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
27468,
4891,
62,
24807,
796,
23884,
628,
220,
220,
220,
27468,
4891,
62,
24807,
17816,
23870,
12,
565,
13654,
20520,
796,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
417,
3477,
4891,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
23870,
62,
565,
13654,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
30562,
2601,
13654,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
27468,
4891,
62,
24807,
17816,
411,
8520,
12,
23870,
12,
77,
4147,
20520,
796,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
417,
3477,
4891,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
411,
8520,
62,
23870,
62,
77,
4147,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
4965,
8520,
30562,
45,
4147,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
27468,
4891,
62,
24807,
198,
220,
220,
220,
198,
198,
2,
220,
16529,
982,
198,
2,
198,
2,
220,
220,
220,
2297,
30846,
198,
2,
198,
2,
220,
16529,
982,
198,
198,
4299,
651,
62,
445,
30846,
62,
24807,
7,
78,
7390,
2599,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
2266,
30846,
13184,
357,
8625,
1817,
1222,
23163,
737,
2262,
1817,
389,
5610,
287,
371,
5258,
13184,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
267,
7390,
25,
4870,
7390,
357,
12298,
50,
1848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
267,
7390,
25,
4731,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
2266,
30846,
13184,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
33918,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
11295,
3712,
2638,
1378,
65,
2069,
18,
13,
961,
83,
704,
420,
82,
13,
952,
14,
268,
14,
42861,
14,
35790,
14,
30416,
14,
445,
30846,
13,
6494,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
2266,
30846,
62,
24807,
796,
23884,
628,
220,
220,
220,
2266,
30846,
62,
24807,
17816,
565,
13654,
20520,
796,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
445,
30846,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
565,
13654,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
2601,
13654,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
2266,
30846,
62,
24807,
17816,
411,
8520,
12,
77,
4147,
20520,
796,
15095,
13,
1136,
62,
24807,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4870,
7390,
796,
267,
7390,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
15271,
796,
366,
445,
30846,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3253,
82,
62,
36996,
796,
366,
439,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
3672,
796,
366,
20147,
4892,
62,
411,
8520,
62,
77,
4147,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
62,
1136,
796,
366,
4965,
8520,
45,
4147,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
42208,
1883,
796,
6407,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
2266,
30846,
62,
24807,
628,
198,
2,
198,
2,
14690,
11,
2205,
25,
356,
821,
287,
257,
8265,
0,
198,
2,
198,
361,
357,
834,
3672,
834,
6624,
705,
834,
12417,
834,
6,
2599,
198,
220,
220,
220,
3601,
10786,
26796,
5218,
2141,
407,
12260,
11537
] | 2.677749 | 1,955 |
from Sockets import Client
from Sockets import Server
from argparse import ArgumentParser
if __name__ == '__main__':
parser = ArgumentParser()
parser.add_argument("-m", "--mode", dest="mode", type=str, required=True,
help="CLIENT to start a client or SERVER to start a server"
)
parser.add_argument("-d", "--debug", dest="debug", required=False,
help="to print debug messages, enable this option",
action="store_true"
)
args = parser.parse_args()
if args.debug:
print(args)
if args.mode.lower() == "client":
server = "localhost" # input("Server IP: ")
client = Client.ClientSocket(args.debug)
client.start_client(server)
elif args.mode.lower() == "server":
Server.start_server(args.debug)
| [
6738,
311,
11603,
1330,
20985,
198,
6738,
311,
11603,
1330,
9652,
198,
6738,
1822,
29572,
1330,
45751,
46677,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
197,
48610,
796,
45751,
46677,
3419,
198,
197,
48610,
13,
2860,
62,
49140,
7203,
12,
76,
1600,
366,
438,
14171,
1600,
2244,
2625,
14171,
1600,
2099,
28,
2536,
11,
2672,
28,
17821,
11,
198,
197,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
5097,
28495,
284,
923,
257,
5456,
393,
18871,
5959,
284,
923,
257,
4382,
1,
198,
197,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
197,
48610,
13,
2860,
62,
49140,
7203,
12,
67,
1600,
366,
438,
24442,
1600,
2244,
2625,
24442,
1600,
2672,
28,
25101,
11,
198,
197,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
1462,
3601,
14257,
6218,
11,
7139,
428,
3038,
1600,
198,
197,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2223,
2625,
8095,
62,
7942,
1,
198,
197,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
197,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
197,
361,
26498,
13,
24442,
25,
198,
197,
197,
4798,
7,
22046,
8,
628,
197,
361,
26498,
13,
14171,
13,
21037,
3419,
6624,
366,
16366,
1298,
198,
197,
220,
220,
220,
4382,
796,
366,
36750,
1,
1303,
5128,
7203,
10697,
6101,
25,
366,
8,
198,
197,
220,
220,
220,
5456,
796,
20985,
13,
11792,
39105,
7,
22046,
13,
24442,
8,
198,
197,
220,
220,
220,
5456,
13,
9688,
62,
16366,
7,
15388,
8,
628,
197,
417,
361,
26498,
13,
14171,
13,
21037,
3419,
6624,
366,
15388,
1298,
198,
197,
220,
220,
220,
9652,
13,
9688,
62,
15388,
7,
22046,
13,
24442,
8,
198
] | 2.434018 | 341 |
# The celery CLI points to a module (via the -A argument)
# to find tasks. This file exists to be a target for that argument.
# Examples:
# - See `worker_start_command` in dagster_celery.cli
# - deployment-flower.yaml helm chart
from .make_app import make_app
from .tasks import create_task
app = make_app()
execute_plan = create_task(app)
| [
2,
383,
18725,
1924,
43749,
2173,
284,
257,
8265,
357,
8869,
262,
532,
32,
4578,
8,
198,
2,
284,
1064,
8861,
13,
770,
2393,
7160,
284,
307,
257,
2496,
329,
326,
4578,
13,
198,
2,
21066,
25,
198,
2,
220,
220,
532,
4091,
4600,
28816,
62,
9688,
62,
21812,
63,
287,
48924,
1706,
62,
7015,
88,
13,
44506,
198,
2,
220,
220,
532,
14833,
12,
25547,
13,
88,
43695,
18030,
8262,
198,
6738,
764,
15883,
62,
1324,
1330,
787,
62,
1324,
198,
6738,
764,
83,
6791,
1330,
2251,
62,
35943,
198,
198,
1324,
796,
787,
62,
1324,
3419,
198,
198,
41049,
62,
11578,
796,
2251,
62,
35943,
7,
1324,
8,
198
] | 3.117117 | 111 |
# standard python imports
import re
import time
import random
import zipfile
import logging
logger = logging.getLogger('utility_to_osm.ssr2')
# third party imports
from bs4 import BeautifulSoup
# shared helper library
import utility_to_osm.gentle_requests as gentle_requests
def get_geonorge_url_dct(url='https://nedlasting.geonorge.no/geonorge/Basisdata/Stedsnavn/GML/'):
'''
Returns a dictionary with kommunenummer (as 4 character string) as key and the geonorge zip url as value
{kommunenummer: url}
'''
geonorge = dict()
req = gentle_requests.GentleRequests()
data = req.get(url)
#print(data.content)
soup = BeautifulSoup(data.content, 'lxml-xml')
#print(soup.prettify())
for link in soup.find_all('a'):
href = link.get('href')
if href.startswith('Basisdata_0000_Norge'):
continue
# ignore projection, for kommuner with both, the last one will be used
reg = re.match('Basisdata_(\d\d\d\d)_([-\w]+)_\d+_Stedsnavn_GML.zip', href)
if reg:
href = url + href
kommunenummer, kommunenavn = reg.groups()
kommunenavn = kommunenavn.replace('_', ' ')
geonorge[kommunenummer] = href
return geonorge
if __name__ == '__main__':
geonorge_urls = get_geonorge_url_dct()
for key, item in geonorge_urls.items():
print(key, item)
# lets try it out
c = download_unzip_geonorge(item, 'test.zip')
soup = BeautifulSoup(c, 'lxml-xml')
# print(soup.prettify())
| [
2,
3210,
21015,
17944,
198,
11748,
302,
198,
11748,
640,
198,
11748,
4738,
198,
11748,
19974,
7753,
198,
11748,
18931,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
315,
879,
62,
1462,
62,
418,
76,
13,
824,
81,
17,
11537,
198,
198,
2,
2368,
2151,
17944,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198,
198,
2,
4888,
31904,
5888,
198,
11748,
10361,
62,
1462,
62,
418,
76,
13,
6783,
293,
62,
8897,
3558,
355,
10296,
62,
8897,
3558,
198,
198,
4299,
651,
62,
6281,
3643,
62,
6371,
62,
67,
310,
7,
6371,
11639,
5450,
1378,
2817,
24810,
13,
6281,
3643,
13,
3919,
14,
6281,
3643,
14,
15522,
271,
7890,
14,
1273,
5379,
28341,
77,
14,
38,
5805,
14,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
16409,
257,
22155,
351,
479,
2002,
403,
268,
31647,
357,
292,
604,
2095,
4731,
8,
355,
1994,
290,
262,
4903,
261,
3643,
19974,
19016,
355,
1988,
198,
220,
220,
220,
1391,
74,
2002,
403,
268,
31647,
25,
19016,
92,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
4903,
261,
3643,
796,
8633,
3419,
628,
220,
220,
220,
43089,
796,
10296,
62,
8897,
3558,
13,
38,
8651,
16844,
3558,
3419,
198,
220,
220,
220,
1366,
796,
43089,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
1303,
4798,
7,
7890,
13,
11299,
8,
628,
220,
220,
220,
17141,
796,
23762,
50,
10486,
7,
7890,
13,
11299,
11,
705,
75,
19875,
12,
19875,
11537,
198,
220,
220,
220,
1303,
4798,
7,
82,
10486,
13,
3866,
926,
1958,
28955,
198,
220,
220,
220,
329,
2792,
287,
17141,
13,
19796,
62,
439,
10786,
64,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
13291,
796,
2792,
13,
1136,
10786,
33257,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13291,
13,
9688,
2032,
342,
10786,
15522,
271,
7890,
62,
2388,
62,
45,
3643,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
8856,
20128,
11,
329,
479,
2002,
38886,
351,
1111,
11,
262,
938,
530,
481,
307,
973,
198,
220,
220,
220,
220,
220,
220,
220,
842,
796,
302,
13,
15699,
10786,
15522,
271,
7890,
62,
38016,
67,
59,
67,
59,
67,
59,
67,
8,
62,
26933,
12,
59,
86,
60,
28988,
62,
59,
67,
10,
62,
1273,
5379,
28341,
77,
62,
38,
5805,
13,
13344,
3256,
13291,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
842,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13291,
796,
19016,
1343,
13291,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
2002,
403,
268,
31647,
11,
479,
2002,
403,
268,
615,
77,
796,
842,
13,
24432,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
2002,
403,
268,
615,
77,
796,
479,
2002,
403,
268,
615,
77,
13,
33491,
10786,
62,
3256,
705,
705,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4903,
261,
3643,
58,
74,
2002,
403,
268,
31647,
60,
796,
13291,
628,
220,
220,
220,
1441,
4903,
261,
3643,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
4903,
261,
3643,
62,
6371,
82,
796,
651,
62,
6281,
3643,
62,
6371,
62,
67,
310,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
329,
1994,
11,
2378,
287,
4903,
261,
3643,
62,
6371,
82,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
2539,
11,
2378,
8,
628,
220,
220,
220,
1303,
8781,
1949,
340,
503,
198,
220,
220,
220,
269,
796,
4321,
62,
403,
13344,
62,
6281,
3643,
7,
9186,
11,
705,
9288,
13,
13344,
11537,
198,
220,
220,
220,
17141,
796,
23762,
50,
10486,
7,
66,
11,
705,
75,
19875,
12,
19875,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
3601,
7,
82,
10486,
13,
3866,
926,
1958,
28955,
198
] | 2.303892 | 668 |
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-10-31 14:04
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,
2,
2980,
515,
416,
37770,
352,
13,
1157,
13,
1238,
319,
13130,
12,
940,
12,
3132,
1478,
25,
3023,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.754386 | 57 |
import unittest
from src.api import Settings
from src.api.geom import ProjectionSettings
class ProjectionSettingsTestCase(unittest.TestCase):
"""Tests the ProjectionSettings class."""
def test_as_dict(self):
"""Test the as_dict() method of the ProjectionSettings class."""
d = self.ps.as_dict()
self.assertEqual(type(d), dict)
self.assertNotIn('settings', d.keys())
self.assertIn('fov', d.keys())
def test_width_variable(self):
"""Test that the screen width variable has been correctly initialized."""
self.assertTrue(hasattr(self.ps, 'width'))
self.assertFalse(hasattr(self.ps, 'screen_width'))
self.assertEqual(self.ps.width, 1900)
def test_height_variable(self):
"""Test that the screen height variable has been correctly initialized."""
self.assertTrue(hasattr(self.ps, 'height'))
self.assertFalse(hasattr(self.ps, 'screen_height'))
self.assertEqual(self.ps.height, 1080)
if __name__ == '__main__':
unittest.main()
| [
11748,
555,
715,
395,
198,
198,
6738,
12351,
13,
15042,
1330,
16163,
198,
6738,
12351,
13,
15042,
13,
469,
296,
1330,
4935,
295,
26232,
628,
198,
4871,
4935,
295,
26232,
14402,
20448,
7,
403,
715,
395,
13,
14402,
20448,
2599,
198,
197,
37811,
51,
3558,
262,
4935,
295,
26232,
1398,
526,
15931,
628,
197,
4299,
1332,
62,
292,
62,
11600,
7,
944,
2599,
198,
197,
197,
37811,
14402,
262,
355,
62,
11600,
3419,
2446,
286,
262,
4935,
295,
26232,
1398,
526,
15931,
198,
197,
197,
67,
796,
2116,
13,
862,
13,
292,
62,
11600,
3419,
628,
197,
197,
944,
13,
30493,
36,
13255,
7,
4906,
7,
67,
828,
8633,
8,
198,
197,
197,
944,
13,
30493,
3673,
818,
10786,
33692,
3256,
288,
13,
13083,
28955,
628,
197,
197,
944,
13,
30493,
818,
10786,
69,
709,
3256,
288,
13,
13083,
28955,
628,
197,
4299,
1332,
62,
10394,
62,
45286,
7,
944,
2599,
198,
197,
197,
37811,
14402,
326,
262,
3159,
9647,
7885,
468,
587,
9380,
23224,
526,
15931,
198,
197,
197,
944,
13,
30493,
17821,
7,
10134,
35226,
7,
944,
13,
862,
11,
705,
10394,
6,
4008,
198,
197,
197,
944,
13,
30493,
25101,
7,
10134,
35226,
7,
944,
13,
862,
11,
705,
9612,
62,
10394,
6,
4008,
198,
197,
197,
944,
13,
30493,
36,
13255,
7,
944,
13,
862,
13,
10394,
11,
21489,
8,
628,
197,
4299,
1332,
62,
17015,
62,
45286,
7,
944,
2599,
198,
197,
197,
37811,
14402,
326,
262,
3159,
6001,
7885,
468,
587,
9380,
23224,
526,
15931,
198,
197,
197,
944,
13,
30493,
17821,
7,
10134,
35226,
7,
944,
13,
862,
11,
705,
17015,
6,
4008,
198,
197,
197,
944,
13,
30493,
25101,
7,
10134,
35226,
7,
944,
13,
862,
11,
705,
9612,
62,
17015,
6,
4008,
198,
197,
197,
944,
13,
30493,
36,
13255,
7,
944,
13,
862,
13,
17015,
11,
17729,
8,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
197,
403,
715,
395,
13,
12417,
3419,
198
] | 2.917933 | 329 |
import numpy as np
import numbers
import gc
def sims_clean_up():
"""
This method will clean up data caches created by the sims software stack.
Any time a cache is added to the sims software stack, it can be added to
the list sims_clean_up.targets. When sims_clean_up() is called, it will
loop through the contents of sims_clean_up.targets. It will call pop()
on all of the contents of each sims_clean_up.target, run close() on each
item it pops (if applicable), delete each item it pops, and then reset
each sims_clean_up.target to either a blank dict or list (depending on
what the target was). sims_clean_up() will then run the garbage
collector.
Note: if a target cache is not a dict or a list, it will attempt to call
close() on the cache and delete the cache.
"""
if not hasattr(sims_clean_up, 'targets'):
return None
for target in sims_clean_up.targets:
if isinstance(target, dict):
while len(target) > 0:
obj = target.popitem()
if hasattr(obj[1], 'close'):
try:
obj[1].close()
except:
pass
del obj
elif isinstance(target, list):
while len(target) > 0:
obj = target.pop()
if hasattr(obj, 'close'):
try:
obj.close()
except:
pass
del obj
else:
if hasattr(target, 'close'):
target.close()
del target
gc.collect()
return None
sims_clean_up.targets = []
def _validate_inputs(input_list, input_names, method_name):
"""
This method will validate the inputs of other methods.
input_list is a list of the inputs passed to a method.
input_name is a list of the variable names associated with
input_list
method_name is the name of the method whose input is being validated.
_validate_inputs will verify that all of the inputs in input_list are:
1) of the same type
2) either numpy arrays or instances of numbers.Number (floats or ints)
3) if they are numpy arrays, they all have the same length
If any of these criteria are violated, a RuntimeError will be raised
returns True if the inputs are numpy arrays; False if not
"""
if isinstance(input_list[0], np.ndarray):
desired_type = np.ndarray
elif isinstance(input_list[0], numbers.Number):
desired_type = numbers.Number
else:
raise RuntimeError("The arg %s input to method %s " % (input_names[0], method_name) +
"should be either a number or a numpy array")
valid_type = True
bad_names = []
for ii, nn in zip(input_list, input_names):
if not isinstance(ii, desired_type):
valid_type = False
bad_names.append(nn)
if not valid_type:
msg = "The input arguments:\n"
for nn in bad_names:
msg += "%s,\n" % nn
msg += "passed to %s " % method_name
msg += "need to be either numbers or numpy arrays\n"
msg += "and the same type as the argument %s" % input_names[0]
msg += "\n\nTypes of arguments are:\n"
for name, arg in zip(input_names, input_list):
msg += '%s: %s\n' % (name, type(arg))
raise RuntimeError(msg)
if desired_type is np.ndarray:
same_length = True
for ii in input_list:
if len(ii) != len(input_list[0]):
same_length = False
if not same_length:
raise RuntimeError("The arrays input to %s " % method_name +
"all need to have the same length")
if desired_type is np.ndarray:
return True
return False
| [
11748,
299,
32152,
355,
45941,
198,
11748,
3146,
198,
11748,
308,
66,
628,
198,
4299,
985,
82,
62,
27773,
62,
929,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
2446,
481,
3424,
510,
1366,
50177,
2727,
416,
262,
985,
82,
3788,
8931,
13,
198,
220,
220,
220,
4377,
640,
257,
12940,
318,
2087,
284,
262,
985,
82,
3788,
8931,
11,
340,
460,
307,
2087,
284,
198,
220,
220,
220,
262,
1351,
985,
82,
62,
27773,
62,
929,
13,
83,
853,
1039,
13,
220,
1649,
985,
82,
62,
27773,
62,
929,
3419,
318,
1444,
11,
340,
481,
198,
220,
220,
220,
9052,
832,
262,
10154,
286,
985,
82,
62,
27773,
62,
929,
13,
83,
853,
1039,
13,
220,
632,
481,
869,
1461,
3419,
198,
220,
220,
220,
319,
477,
286,
262,
10154,
286,
1123,
985,
82,
62,
27773,
62,
929,
13,
16793,
11,
1057,
1969,
3419,
319,
1123,
198,
220,
220,
220,
2378,
340,
26384,
357,
361,
9723,
828,
12233,
1123,
2378,
340,
26384,
11,
290,
788,
13259,
198,
220,
220,
220,
1123,
985,
82,
62,
27773,
62,
929,
13,
16793,
284,
2035,
257,
9178,
8633,
393,
1351,
357,
44023,
319,
198,
220,
220,
220,
644,
262,
2496,
373,
737,
220,
985,
82,
62,
27773,
62,
929,
3419,
481,
788,
1057,
262,
15413,
198,
220,
220,
220,
22967,
13,
628,
220,
220,
220,
5740,
25,
611,
257,
2496,
12940,
318,
407,
257,
8633,
393,
257,
1351,
11,
340,
481,
2230,
284,
869,
198,
220,
220,
220,
1969,
3419,
319,
262,
12940,
290,
12233,
262,
12940,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
407,
468,
35226,
7,
82,
12078,
62,
27773,
62,
929,
11,
705,
83,
853,
1039,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
329,
2496,
287,
985,
82,
62,
27773,
62,
929,
13,
83,
853,
1039,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
16793,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
18896,
7,
16793,
8,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
2496,
13,
12924,
9186,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
26801,
58,
16,
4357,
705,
19836,
6,
2599,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
26181,
58,
16,
4083,
19836,
3419,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
26181,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
318,
39098,
7,
16793,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
18896,
7,
16793,
8,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
2496,
13,
12924,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
26801,
11,
705,
19836,
6,
2599,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
26181,
13,
19836,
3419,
198,
220,
220,
220,
220,
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,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
26181,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
16793,
11,
705,
19836,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
2496,
628,
220,
220,
220,
308,
66,
13,
33327,
3419,
198,
220,
220,
220,
1441,
6045,
628,
198,
82,
12078,
62,
27773,
62,
929,
13,
83,
853,
1039,
796,
17635,
628,
198,
4299,
4808,
12102,
378,
62,
15414,
82,
7,
15414,
62,
4868,
11,
5128,
62,
14933,
11,
2446,
62,
3672,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
2446,
481,
26571,
262,
17311,
286,
584,
5050,
13,
628,
220,
220,
220,
5128,
62,
4868,
318,
257,
1351,
286,
262,
17311,
3804,
284,
257,
2446,
13,
628,
220,
220,
220,
5128,
62,
3672,
318,
257,
1351,
286,
262,
7885,
3891,
3917,
351,
198,
220,
220,
220,
5128,
62,
4868,
628,
220,
220,
220,
2446,
62,
3672,
318,
262,
1438,
286,
262,
2446,
3025,
5128,
318,
852,
31031,
13,
628,
220,
220,
220,
4808,
12102,
378,
62,
15414,
82,
481,
11767,
326,
477,
286,
262,
17311,
287,
5128,
62,
4868,
389,
25,
628,
220,
220,
220,
352,
8,
286,
262,
976,
2099,
198,
220,
220,
220,
362,
8,
2035,
299,
32152,
26515,
393,
10245,
286,
3146,
13,
15057,
357,
48679,
1381,
393,
493,
82,
8,
198,
220,
220,
220,
513,
8,
611,
484,
389,
299,
32152,
26515,
11,
484,
477,
423,
262,
976,
4129,
628,
220,
220,
220,
1002,
597,
286,
777,
9987,
389,
13998,
11,
257,
43160,
12331,
481,
307,
4376,
628,
220,
220,
220,
5860,
6407,
611,
262,
17311,
389,
299,
32152,
26515,
26,
10352,
611,
407,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
318,
39098,
7,
15414,
62,
4868,
58,
15,
4357,
45941,
13,
358,
18747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
10348,
62,
4906,
796,
45941,
13,
358,
18747,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
15414,
62,
4868,
58,
15,
4357,
3146,
13,
15057,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
10348,
62,
4906,
796,
3146,
13,
15057,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
464,
1822,
4064,
82,
5128,
284,
2446,
4064,
82,
366,
4064,
357,
15414,
62,
14933,
58,
15,
4357,
2446,
62,
3672,
8,
1343,
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,
366,
21754,
307,
2035,
257,
1271,
393,
257,
299,
32152,
7177,
4943,
628,
220,
220,
220,
4938,
62,
4906,
796,
6407,
198,
220,
220,
220,
2089,
62,
14933,
796,
17635,
198,
220,
220,
220,
329,
21065,
11,
299,
77,
287,
19974,
7,
15414,
62,
4868,
11,
5128,
62,
14933,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
4178,
11,
10348,
62,
4906,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4938,
62,
4906,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2089,
62,
14933,
13,
33295,
7,
20471,
8,
628,
220,
220,
220,
611,
407,
4938,
62,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
464,
5128,
7159,
7479,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
329,
299,
77,
287,
2089,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
36521,
82,
11,
59,
77,
1,
4064,
299,
77,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
366,
6603,
276,
284,
4064,
82,
366,
4064,
2446,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
366,
31227,
284,
307,
2035,
3146,
393,
299,
32152,
26515,
59,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
366,
392,
262,
976,
2099,
355,
262,
4578,
4064,
82,
1,
4064,
5128,
62,
14933,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
37082,
77,
59,
77,
31431,
286,
7159,
389,
7479,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
11,
1822,
287,
19974,
7,
15414,
62,
14933,
11,
5128,
62,
4868,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
15853,
705,
4,
82,
25,
4064,
82,
59,
77,
6,
4064,
357,
3672,
11,
2099,
7,
853,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7,
19662,
8,
628,
220,
220,
220,
611,
10348,
62,
4906,
318,
45941,
13,
358,
18747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
976,
62,
13664,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
329,
21065,
287,
5128,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
4178,
8,
14512,
18896,
7,
15414,
62,
4868,
58,
15,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
976,
62,
13664,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
976,
62,
13664,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
464,
26515,
5128,
284,
4064,
82,
366,
4064,
2446,
62,
3672,
1343,
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,
366,
439,
761,
284,
423,
262,
976,
4129,
4943,
628,
220,
220,
220,
611,
10348,
62,
4906,
318,
45941,
13,
358,
18747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
220,
220,
220,
1441,
10352,
198
] | 2.279835 | 1,701 |
import pandas as pd
from sklearn.model_selection import train_test_split
from keras_text_summarization.library.utility.plot_utils import plot_and_save_history
from keras_text_summarization.library.seq2seq import Seq2SeqSummarizer
from keras_text_summarization.library.applications.fake_news_loader import fit_text
import numpy as np
data=pd.read_csv("/home/chuck/Downloads/fake_or_real_news.csv")
data.head() | [
11748,
19798,
292,
355,
279,
67,
220,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
6738,
41927,
292,
62,
5239,
62,
16345,
3876,
1634,
13,
32016,
13,
315,
879,
13,
29487,
62,
26791,
1330,
7110,
62,
392,
62,
21928,
62,
23569,
198,
6738,
41927,
292,
62,
5239,
62,
16345,
3876,
1634,
13,
32016,
13,
41068,
17,
41068,
1330,
1001,
80,
17,
4653,
80,
13065,
3876,
7509,
198,
6738,
41927,
292,
62,
5239,
62,
16345,
3876,
1634,
13,
32016,
13,
1324,
677,
602,
13,
30706,
62,
10827,
62,
29356,
1330,
4197,
62,
5239,
198,
11748,
299,
32152,
355,
45941,
198,
198,
7890,
28,
30094,
13,
961,
62,
40664,
7203,
14,
11195,
14,
354,
1347,
14,
10002,
82,
14,
30706,
62,
273,
62,
5305,
62,
10827,
13,
40664,
4943,
198,
198,
7890,
13,
2256,
3419
] | 2.935714 | 140 |
#!/usr/bin/env python
# -*-coding: utf8 -*-
"""
Library for multiple alignment and mutation calling in hCov-19 analysis.
Copyright 2021 by Regina Kalcsevszki ([email protected]), Balázs Ligeti ([email protected]). All rights reserved.
"""
import os
from os.path import join
from Bio import SeqIO
import re
import numpy as np
import pandas as pd
# Mutation calling
# meg kell találni a referencia genome első nem gap karakterét
def get_first_nucleotid_in_reference_genome(ref_genome):
'''
Get the first non-gap nucleotide sequence
'''
for i, act_char in enumerate(ref_genome.seq):
if act_char != '-':
return i
return len(ref_genome.seq)
######### BUILDING VCF FILES #############
def mutation_annotation_preprocessing(annotations, genome_annot_proteins):
''' Preprocessing the raw output coming from SNPEFF'''
# Filtering the annotations!
mutation_annotations = mutation_annotation_preprocessing_get_mature_and_non_integenic_annotations(annotations,
genome_annot_proteins)
# Adding amibous flag
mutation_annotations.loc[
mutation_annotations.duplicated(subset=['ID'], keep=False), 'Mutation_annotation_ambiguity'] = 'ambiguous'
mutation_annotations.loc[
~mutation_annotations.duplicated(subset=['ID'], keep=False), 'Mutation_annotation_ambiguity'] = 'non_ambiguous'
# Adding mutation name?
mutation_annotations = mutation_annotation_add_protein_data(mutation_annotations, genome_annot_proteins)
return mutation_annotations
"""
Converts aggragated mutation profiles to a VCF file, that is approproate for SNPEff input
Input: df: path to aggregated mutations dataframe
Output: vcf dataframe
"""
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
66,
7656,
25,
3384,
69,
23,
532,
9,
12,
198,
198,
37811,
198,
23377,
329,
3294,
19114,
290,
15148,
4585,
287,
289,
34,
709,
12,
1129,
3781,
13,
198,
15269,
33448,
416,
38739,
12612,
66,
325,
14259,
89,
4106,
357,
74,
282,
66,
325,
14259,
89,
74,
557,
12397,
31,
14816,
13,
785,
828,
8528,
6557,
89,
82,
406,
328,
316,
72,
357,
2572,
292,
89,
31,
14816,
13,
785,
737,
1439,
2489,
10395,
13,
198,
198,
37811,
198,
198,
11748,
28686,
198,
6738,
28686,
13,
6978,
1330,
4654,
198,
6738,
16024,
1330,
1001,
80,
9399,
198,
11748,
302,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
628,
198,
198,
2,
337,
7094,
4585,
198,
2,
17243,
885,
297,
3305,
6557,
75,
8461,
257,
6773,
10782,
544,
19270,
1288,
82,
129,
239,
36945,
7625,
479,
30447,
353,
25125,
198,
4299,
651,
62,
11085,
62,
77,
14913,
313,
312,
62,
259,
62,
35790,
62,
5235,
462,
7,
5420,
62,
5235,
462,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
3497,
262,
717,
1729,
12,
43554,
17751,
45608,
8379,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
1312,
11,
719,
62,
10641,
287,
27056,
378,
7,
5420,
62,
5235,
462,
13,
41068,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
719,
62,
10641,
14512,
705,
12,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1312,
198,
220,
220,
220,
1441,
18896,
7,
5420,
62,
5235,
462,
13,
41068,
8,
628,
628,
628,
628,
198,
198,
7804,
2,
20571,
26761,
2751,
569,
22495,
34020,
1546,
1303,
7804,
4242,
628,
628,
628,
628,
628,
198,
4299,
15148,
62,
1236,
14221,
62,
3866,
36948,
7,
34574,
602,
11,
19270,
62,
34574,
62,
1676,
660,
1040,
2599,
198,
220,
220,
220,
705,
7061,
3771,
36948,
262,
8246,
5072,
2406,
422,
11346,
11401,
5777,
7061,
6,
628,
220,
220,
220,
1303,
7066,
20212,
262,
37647,
0,
198,
220,
220,
220,
15148,
62,
34574,
602,
796,
15148,
62,
1236,
14221,
62,
3866,
36948,
62,
1136,
62,
76,
1300,
62,
392,
62,
13159,
62,
18908,
35866,
62,
34574,
602,
7,
34574,
602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19270,
62,
34574,
62,
1676,
660,
1040,
8,
628,
220,
220,
220,
1303,
18247,
716,
571,
516,
6056,
198,
220,
220,
220,
15148,
62,
34574,
602,
13,
17946,
58,
198,
220,
220,
220,
220,
220,
220,
220,
15148,
62,
34574,
602,
13,
646,
489,
3474,
7,
7266,
2617,
28,
17816,
2389,
6,
4357,
1394,
28,
25101,
828,
705,
44,
7094,
62,
1236,
14221,
62,
4131,
328,
14834,
20520,
796,
705,
4131,
29709,
6,
198,
220,
220,
220,
15148,
62,
34574,
602,
13,
17946,
58,
198,
220,
220,
220,
220,
220,
220,
220,
5299,
76,
7094,
62,
34574,
602,
13,
646,
489,
3474,
7,
7266,
2617,
28,
17816,
2389,
6,
4357,
1394,
28,
25101,
828,
705,
44,
7094,
62,
1236,
14221,
62,
4131,
328,
14834,
20520,
796,
705,
13159,
62,
4131,
29709,
6,
628,
220,
220,
220,
1303,
18247,
15148,
1438,
30,
198,
220,
220,
220,
15148,
62,
34574,
602,
796,
15148,
62,
1236,
14221,
62,
2860,
62,
48693,
62,
7890,
7,
76,
7094,
62,
34574,
602,
11,
19270,
62,
34574,
62,
1676,
660,
1040,
8,
628,
220,
220,
220,
1441,
15148,
62,
34574,
602,
628,
628,
198,
198,
37811,
198,
3103,
24040,
556,
2164,
363,
515,
15148,
16545,
284,
257,
569,
22495,
2393,
11,
326,
318,
1331,
1676,
378,
329,
11346,
11401,
487,
5128,
198,
198,
20560,
25,
47764,
25,
3108,
284,
13262,
515,
23005,
1366,
14535,
198,
198,
26410,
25,
410,
12993,
1366,
14535,
198,
37811,
628,
628,
628,
198
] | 2.553547 | 719 |
import logging
from mongoengine import connect
from flask import Flask
from flask_socketio import SocketIO, emit
DEBUG = True
app = Flask(__name__)
app.config.from_object(__name__)
socketio = SocketIO(app, host='0.0.0.0', port=5000)
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s] %(message)s",
datefmt='%H:%M:%S'
)
log = logging.getLogger(__name__)
# SocketIO response functions
log.info('Server log started, logging operations.')
# ping sockets
@socketio.on('server_ping')
@socketio.on('db_ping')
if __name__ == "__main__":
socketio.run(app) | [
11748,
18931,
198,
198,
6738,
285,
25162,
18392,
1330,
2018,
198,
6738,
42903,
1330,
46947,
198,
6738,
42903,
62,
44971,
952,
1330,
47068,
9399,
11,
27588,
198,
198,
30531,
796,
6407,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
8,
198,
1324,
13,
11250,
13,
6738,
62,
15252,
7,
834,
3672,
834,
8,
628,
198,
44971,
952,
796,
47068,
9399,
7,
1324,
11,
2583,
11639,
15,
13,
15,
13,
15,
13,
15,
3256,
2493,
28,
27641,
8,
198,
198,
6404,
2667,
13,
35487,
16934,
7,
198,
220,
220,
220,
1241,
28,
6404,
2667,
13,
10778,
11,
198,
220,
220,
220,
5794,
2625,
58,
4,
7,
292,
310,
524,
8,
82,
60,
220,
4064,
7,
20500,
8,
82,
1600,
198,
220,
220,
220,
3128,
69,
16762,
11639,
4,
39,
25,
4,
44,
25,
4,
50,
6,
198,
8,
198,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
2,
47068,
9399,
2882,
5499,
198,
198,
6404,
13,
10951,
10786,
10697,
2604,
2067,
11,
18931,
4560,
2637,
8,
628,
198,
2,
29400,
37037,
198,
198,
31,
44971,
952,
13,
261,
10786,
15388,
62,
13886,
11537,
628,
198,
31,
44971,
952,
13,
261,
10786,
9945,
62,
13886,
11537,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
17802,
952,
13,
5143,
7,
1324,
8
] | 2.626667 | 225 |
#####################################################
# export WANDB_START_METHOD=thread
# python hydra_wandb_test.py -m +some_param=1,2,3,4
#####################################################
# import os, sys
# sys.path.insert(1, os.path.join(sys.path[0], ".."))
# print(os.path.abspath(os.curdir))
import hydra
import wandb
@hydra.main(config_path="../configs/", config_name="config.yaml")
if __name__ == "__main__":
main()
| [
29113,
14468,
4242,
2,
198,
2,
10784,
370,
6981,
33,
62,
2257,
7227,
62,
49273,
28,
16663,
198,
2,
21015,
25039,
62,
86,
392,
65,
62,
9288,
13,
9078,
532,
76,
1343,
11246,
62,
17143,
28,
16,
11,
17,
11,
18,
11,
19,
198,
29113,
14468,
4242,
2,
628,
198,
2,
1330,
28686,
11,
25064,
198,
2,
25064,
13,
6978,
13,
28463,
7,
16,
11,
28686,
13,
6978,
13,
22179,
7,
17597,
13,
6978,
58,
15,
4357,
366,
492,
48774,
198,
2,
3601,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
66,
2799,
343,
4008,
628,
198,
11748,
25039,
198,
11748,
11569,
65,
628,
198,
31,
15511,
430,
13,
12417,
7,
11250,
62,
6978,
2625,
40720,
11250,
82,
14,
1600,
4566,
62,
3672,
2625,
11250,
13,
88,
43695,
4943,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.913907 | 151 |
"""
Generate the manifest.json file by recursively reading through the
docs/ directory.
All sub-directories will be interpreted as modules
All image files will be interpreted have type resource
All other files will have type topic
To modify type, name, or to ignore a file, add it to the .mfconfig file
in the root directory and use the following syntax
# This is a comment
IGNORE path/to/file # Ignores a file or directory
RENAME path/to/file new_name # Set title of file or directory to new_name
TYPE path/to/file new_type # Set type of file
"""
import json
import os
from pathlib import Path
CONFIG_FILE = ".mfconfig"
CONTENT_ROOT = Path("docs")
VALID_TYPES = {"topic", "module", "resource"}
COMMANDS = {"IGNORE": 1, "RENAME": 2, "TYPE": 2} # Cmd: n_args
RESOURCE_EXTS = {".jpg", ".jpeg", ".png", ".gif"}
IGNORE_FOLDERS = {'__pycache__', 'htmlcov', 'node_modules',
'vendor', '_site', '.DS_Store'} # other files to always ignore
if __name__ == "__main__":
main()
| [
37811,
198,
8645,
378,
262,
10561,
13,
17752,
2393,
416,
664,
1834,
2280,
3555,
832,
262,
198,
31628,
14,
8619,
13,
198,
198,
3237,
850,
12,
12942,
1749,
481,
307,
16173,
355,
13103,
198,
3237,
2939,
3696,
481,
307,
16173,
423,
2099,
8271,
198,
3237,
584,
3696,
481,
423,
2099,
7243,
198,
198,
2514,
13096,
2099,
11,
1438,
11,
393,
284,
8856,
257,
2393,
11,
751,
340,
284,
262,
764,
76,
69,
11250,
2393,
198,
259,
262,
6808,
8619,
290,
779,
262,
1708,
15582,
198,
198,
2,
770,
318,
257,
2912,
198,
16284,
6965,
3108,
14,
1462,
14,
7753,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16583,
2850,
257,
2393,
393,
8619,
198,
49,
1677,
10067,
3108,
14,
1462,
14,
7753,
649,
62,
3672,
220,
1303,
5345,
3670,
286,
2393,
393,
8619,
284,
649,
62,
3672,
198,
25216,
3108,
14,
1462,
14,
7753,
649,
62,
4906,
220,
220,
220,
1303,
5345,
2099,
286,
2393,
198,
37811,
198,
11748,
33918,
198,
11748,
28686,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
10943,
16254,
62,
25664,
796,
27071,
76,
69,
11250,
1,
198,
37815,
3525,
62,
13252,
2394,
796,
10644,
7203,
31628,
4943,
198,
23428,
2389,
62,
9936,
47,
1546,
796,
19779,
26652,
1600,
366,
21412,
1600,
366,
31092,
20662,
198,
9858,
10725,
5258,
796,
19779,
16284,
6965,
1298,
352,
11,
366,
49,
1677,
10067,
1298,
362,
11,
366,
25216,
1298,
362,
92,
220,
1303,
327,
9132,
25,
299,
62,
22046,
198,
19535,
31033,
62,
6369,
4694,
796,
1391,
1911,
9479,
1600,
27071,
73,
22071,
1600,
27071,
11134,
1600,
27071,
27908,
20662,
198,
16284,
6965,
62,
37,
15173,
4877,
796,
1391,
6,
834,
9078,
23870,
834,
3256,
705,
6494,
66,
709,
3256,
705,
17440,
62,
18170,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
85,
18738,
3256,
705,
62,
15654,
3256,
45302,
5258,
62,
22658,
6,
92,
220,
1303,
584,
3696,
284,
1464,
8856,
628,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.897143 | 350 |
import csv
import os
from typing import Dict, Tuple
import numpy as np
from ConfigSpace.read_and_write.pcs import read as read_pcs
import ConfigSpace
import ConfigSpace.util
def load_configuration_data(path: str) -> Tuple[np.ndarray, Dict[int,np.ndarray], Dict[int,np.ndarray]]:
"""
reads the files in the given directory and returns the performances, instances and configurations
The directory needs to contain the following files:
configlist.csv : contains configuration_id, configuration_string
instancelist.csv : contain instance_id, instance_name
perflist.csv : contains configuration_id, instance)id, performance
features.txt : contains instance_name, one column per feature
default.txt : contains the string of the default configuration
Return: (data, instance_features, configurations)
"""
#TODO : we shoult probably use the configuration space description file and the ConfigSpace library
#load configuration strings
instance_name2int: Dict[str, int] = {}
configuration2int: Dict[str, int] = {}
with open(os.path.join(path, "configlist.csv")) as fd:
reader = csv.reader(fd)
# Skip first line
next(reader)
for row in reader:
configuration2int[row[1]] = int(row[0])
# load instance names and id
with open(os.path.join(path, "instancelist.csv")) as fd:
reader = csv.reader(fd)
# Skip first line
next(reader)
for row in reader:
instance_name2int[row[1]] = int(row[0])
# load performance data
data = np.zeros((len(instance_name2int), len(configuration2int)), dtype=np.double)
with open(os.path.join(path, "perflist.csv")) as fd:
reader = csv.reader(fd)
# Skip first line
next(reader)
for row in reader:
data[int(row[1]), int(row[0])] = np.double(row[2])
# load instances features
instance_features: Dict[int, np.array]={}
with open(os.path.join(path, "features.txt")) as fd:
reader = csv.reader(fd)
# Skip first line
next(reader)
for row in reader:
if row[0] in instance_name2int.keys():
instance_features[instance_name2int[row[0]]] = np.array([np.double(val) for val in row[1:]],dtype=np.double)
## This should sanitize the instance features and take out NaN values (not tested)
col_mean = [np.mean([instance_features[key][ind]
for key in instance_features.keys()
if instance_features[key][ind] != np.NaN
])
for ind in range(len(instance_features[0]))]
for key in instance_features.keys():
instance_features[key] = np.array([instance_features[key][ind]
if instance_features[key][ind] != np.NaN
else col_mean[ind]
for ind in range(len(instance_features[0]))], dtype=np.double)
# convert configuration strings into lists of double
with open(os.path.join(path, "params.pcs")) as pcs_file:
pcs_list = pcs_file.readlines()
#breakpoint()
parameter_space = read_pcs(pcs_list)
configurations: Dict[int, np.ndarray] = {}
#get list of default values
default_config = parameter_space.get_default_configuration().get_array()
for key in parameter_space._hyperparameters:
hyper_parameter = parameter_space.get_hyperparameter(key)
default_config[parameter_space._hyperparameter_idx[key]] = hyper_parameter._inverse_transform(hyper_parameter.default_value)
for conf in configuration2int.keys():
config_dict: Dict[str,str] = {}
for param in conf.lstrip('-').split(' -'):
param_name, param_value = param.strip("'").split(" '")
config_dict[param_name] = param_value
ConfigSpace.util.fix_types(config_dict, parameter_space)
config_object = ConfigSpace.Configuration(parameter_space, config_dict)
configurations[configuration2int[conf]] = config_object.get_array()
#replace nan values (non active parameters) by their default value
configurations[configuration2int[conf]] = np.array([configurations[configuration2int[conf]][ind]
if configurations[configuration2int[conf]][ind] == configurations[configuration2int[conf]][ind]
else default_config[ind]
for ind in range(len(configurations[configuration2int[conf]]))])
#print(default_config)
return data, instance_features, configurations
if __name__ == "__main__":
d = load_configuration_data("./rundata/cplex_regions200")
#print(d[1][2])
assert d[0].shape == (684, 100), "Data matrix has incorrect size"
assert np.min(d[0]) > 0, " A time should be positive"
assert len(d[1]) == 684, "One feature vector per instance"
print("All good!")
| [
11748,
269,
21370,
198,
11748,
28686,
198,
6738,
19720,
1330,
360,
713,
11,
309,
29291,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
17056,
14106,
13,
961,
62,
392,
62,
13564,
13,
79,
6359,
1330,
1100,
355,
1100,
62,
79,
6359,
198,
11748,
17056,
14106,
198,
11748,
17056,
14106,
13,
22602,
628,
198,
4299,
3440,
62,
11250,
3924,
62,
7890,
7,
6978,
25,
965,
8,
4613,
309,
29291,
58,
37659,
13,
358,
18747,
11,
360,
713,
58,
600,
11,
37659,
13,
358,
18747,
4357,
360,
713,
58,
600,
11,
37659,
13,
358,
18747,
60,
5974,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
9743,
262,
3696,
287,
262,
1813,
8619,
290,
5860,
262,
13289,
11,
10245,
290,
25412,
198,
220,
220,
220,
383,
8619,
2476,
284,
3994,
262,
1708,
3696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
4868,
13,
40664,
1058,
4909,
8398,
62,
312,
11,
8398,
62,
8841,
198,
220,
220,
220,
220,
220,
220,
220,
4554,
4868,
13,
40664,
1058,
3994,
4554,
62,
312,
11,
4554,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
583,
2704,
396,
13,
40664,
1058,
4909,
8398,
62,
312,
11,
4554,
8,
312,
11,
2854,
198,
220,
220,
220,
220,
220,
220,
220,
3033,
13,
14116,
1058,
4909,
4554,
62,
3672,
11,
530,
5721,
583,
3895,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
13,
14116,
1058,
4909,
262,
4731,
286,
262,
4277,
8398,
198,
220,
220,
220,
8229,
25,
357,
7890,
11,
4554,
62,
40890,
11,
25412,
8,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
51,
3727,
46,
1058,
356,
427,
25955,
2192,
779,
262,
8398,
2272,
6764,
2393,
290,
262,
17056,
14106,
5888,
198,
220,
220,
220,
1303,
2220,
8398,
13042,
198,
220,
220,
220,
4554,
62,
3672,
17,
600,
25,
360,
713,
58,
2536,
11,
493,
60,
796,
23884,
198,
220,
220,
220,
8398,
17,
600,
25,
360,
713,
58,
2536,
11,
493,
60,
796,
23884,
198,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
366,
11250,
4868,
13,
40664,
48774,
355,
277,
67,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9173,
796,
269,
21370,
13,
46862,
7,
16344,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
32214,
717,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
7,
46862,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
9173,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8398,
17,
600,
58,
808,
58,
16,
11907,
796,
493,
7,
808,
58,
15,
12962,
628,
220,
220,
220,
1303,
3440,
4554,
3891,
290,
4686,
198,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
366,
39098,
4868,
13,
40664,
48774,
355,
277,
67,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9173,
796,
269,
21370,
13,
46862,
7,
16344,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
32214,
717,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
7,
46862,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
9173,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4554,
62,
3672,
17,
600,
58,
808,
58,
16,
11907,
796,
493,
7,
808,
58,
15,
12962,
628,
220,
220,
220,
1303,
3440,
2854,
1366,
198,
220,
220,
220,
1366,
796,
45941,
13,
9107,
418,
19510,
11925,
7,
39098,
62,
3672,
17,
600,
828,
18896,
7,
11250,
3924,
17,
600,
36911,
288,
4906,
28,
37659,
13,
23352,
8,
198,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
366,
525,
2704,
396,
13,
40664,
48774,
355,
277,
67,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9173,
796,
269,
21370,
13,
46862,
7,
16344,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
32214,
717,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
7,
46862,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
9173,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
600,
7,
808,
58,
16,
46570,
493,
7,
808,
58,
15,
12962,
60,
796,
45941,
13,
23352,
7,
808,
58,
17,
12962,
628,
220,
220,
220,
1303,
3440,
10245,
3033,
198,
220,
220,
220,
4554,
62,
40890,
25,
360,
713,
58,
600,
11,
45941,
13,
18747,
22241,
90,
92,
198,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
366,
40890,
13,
14116,
48774,
355,
277,
67,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9173,
796,
269,
21370,
13,
46862,
7,
16344,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
32214,
717,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
7,
46862,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
9173,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5752,
58,
15,
60,
287,
4554,
62,
3672,
17,
600,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4554,
62,
40890,
58,
39098,
62,
3672,
17,
600,
58,
808,
58,
15,
11907,
60,
796,
45941,
13,
18747,
26933,
37659,
13,
23352,
7,
2100,
8,
329,
1188,
287,
5752,
58,
16,
47715,
4357,
67,
4906,
28,
37659,
13,
23352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
22492,
770,
815,
5336,
270,
1096,
262,
4554,
3033,
290,
1011,
503,
11013,
45,
3815,
357,
1662,
6789,
8,
198,
220,
220,
220,
220,
220,
220,
220,
951,
62,
32604,
796,
685,
37659,
13,
32604,
26933,
39098,
62,
40890,
58,
2539,
7131,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
4554,
62,
40890,
13,
13083,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4554,
62,
40890,
58,
2539,
7131,
521,
60,
14512,
45941,
13,
26705,
45,
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,
33761,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
773,
287,
2837,
7,
11925,
7,
39098,
62,
40890,
58,
15,
60,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
4554,
62,
40890,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4554,
62,
40890,
58,
2539,
60,
796,
45941,
13,
18747,
26933,
39098,
62,
40890,
58,
2539,
7131,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4554,
62,
40890,
58,
2539,
7131,
521,
60,
14512,
45941,
13,
26705,
45,
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,
2073,
951,
62,
32604,
58,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
773,
287,
2837,
7,
11925,
7,
39098,
62,
40890,
58,
15,
60,
4008,
4357,
288,
4906,
28,
37659,
13,
23352,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
10385,
8398,
13042,
656,
8341,
286,
4274,
198,
220,
220,
220,
351,
1280,
7,
418,
13,
6978,
13,
22179,
7,
6978,
11,
366,
37266,
13,
79,
6359,
48774,
355,
279,
6359,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
279,
6359,
62,
4868,
796,
279,
6359,
62,
7753,
13,
961,
6615,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9032,
4122,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
62,
13200,
796,
1100,
62,
79,
6359,
7,
79,
6359,
62,
4868,
8,
198,
220,
220,
220,
25412,
25,
360,
713,
58,
600,
11,
45941,
13,
358,
18747,
60,
796,
23884,
198,
220,
220,
220,
1303,
1136,
1351,
286,
4277,
3815,
198,
220,
220,
220,
4277,
62,
11250,
796,
11507,
62,
13200,
13,
1136,
62,
12286,
62,
11250,
3924,
22446,
1136,
62,
18747,
3419,
198,
220,
220,
220,
329,
1994,
287,
11507,
62,
13200,
13557,
49229,
17143,
7307,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8718,
62,
17143,
2357,
796,
11507,
62,
13200,
13,
1136,
62,
49229,
17143,
2357,
7,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
62,
11250,
58,
17143,
2357,
62,
13200,
13557,
49229,
17143,
2357,
62,
312,
87,
58,
2539,
11907,
796,
8718,
62,
17143,
2357,
13557,
259,
4399,
62,
35636,
7,
49229,
62,
17143,
2357,
13,
12286,
62,
8367,
8,
198,
220,
220,
220,
329,
1013,
287,
8398,
17,
600,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
11600,
25,
360,
713,
58,
2536,
11,
2536,
60,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5772,
287,
1013,
13,
75,
36311,
10786,
19355,
737,
35312,
10786,
532,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5772,
62,
3672,
11,
5772,
62,
8367,
796,
5772,
13,
36311,
7203,
6,
11074,
35312,
7203,
705,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
11600,
58,
17143,
62,
3672,
60,
796,
5772,
62,
8367,
198,
220,
220,
220,
220,
220,
220,
220,
17056,
14106,
13,
22602,
13,
13049,
62,
19199,
7,
11250,
62,
11600,
11,
11507,
62,
13200,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
15252,
796,
17056,
14106,
13,
38149,
7,
17143,
2357,
62,
13200,
11,
4566,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25412,
58,
11250,
3924,
17,
600,
58,
10414,
11907,
796,
4566,
62,
15252,
13,
1136,
62,
18747,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
33491,
15709,
3815,
357,
13159,
4075,
10007,
8,
416,
511,
4277,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
25412,
58,
11250,
3924,
17,
600,
58,
10414,
11907,
796,
45941,
13,
18747,
26933,
11250,
20074,
58,
11250,
3924,
17,
600,
58,
10414,
60,
7131,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
25412,
58,
11250,
3924,
17,
600,
58,
10414,
60,
7131,
521,
60,
6624,
25412,
58,
11250,
3924,
17,
600,
58,
10414,
60,
7131,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
4277,
62,
11250,
58,
521,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
773,
287,
2837,
7,
11925,
7,
11250,
20074,
58,
11250,
3924,
17,
600,
58,
10414,
11907,
4008,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
12286,
62,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
1366,
11,
4554,
62,
40890,
11,
25412,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
288,
796,
3440,
62,
11250,
3924,
62,
7890,
7,
1911,
14,
622,
358,
1045,
14,
66,
11141,
62,
2301,
507,
2167,
4943,
198,
220,
220,
220,
1303,
4798,
7,
67,
58,
16,
7131,
17,
12962,
198,
220,
220,
220,
6818,
288,
58,
15,
4083,
43358,
6624,
357,
41580,
11,
1802,
828,
366,
6601,
17593,
468,
11491,
2546,
1,
198,
220,
220,
220,
6818,
45941,
13,
1084,
7,
67,
58,
15,
12962,
1875,
657,
11,
366,
317,
640,
815,
307,
3967,
1,
198,
220,
220,
220,
6818,
18896,
7,
67,
58,
16,
12962,
6624,
718,
5705,
11,
366,
3198,
3895,
15879,
583,
4554,
1,
198,
220,
220,
220,
3601,
7203,
3237,
922,
2474,
8,
198
] | 2.331069 | 2,208 |
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
import copy
import json
import os
import pickle
import random
import time
from pathlib import Path
import numpy as np
import PIL.Image
import psutil
import torch
import torchvision
from torch.utils.tensorboard import SummaryWriter
import dnnlib
import legacy
from metrics import metric_main
from torch_utils import misc, training_stats
from torch_utils.logging import generate_videos
from torch_utils.ops import conv2d_gradfix, grid_sample_gradfix
from training.dataset.video import sample_frames
#----------------------------------------------------------------------------
#----------------------------------------------------------------------------
#---------------------------------------------------------------------------- | [
171,
119,
123,
2,
15069,
357,
66,
8,
33448,
11,
15127,
23929,
44680,
6234,
13,
220,
1439,
2489,
10395,
13,
198,
2,
198,
2,
15127,
23929,
44680,
6234,
290,
663,
8240,
669,
12377,
477,
9028,
3119,
198,
2,
290,
20622,
2489,
287,
290,
284,
428,
3788,
11,
3519,
10314,
198,
2,
290,
597,
19008,
44597,
13,
220,
4377,
779,
11,
20728,
11,
13019,
393,
198,
2,
6082,
286,
428,
3788,
290,
3519,
10314,
1231,
281,
4911,
198,
2,
5964,
4381,
422,
15127,
23929,
44680,
6234,
318,
14084,
12244,
13,
198,
198,
11748,
4866,
198,
11748,
33918,
198,
11748,
28686,
198,
11748,
2298,
293,
198,
11748,
4738,
198,
11748,
640,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
350,
4146,
13,
5159,
198,
11748,
26692,
22602,
198,
11748,
28034,
198,
11748,
28034,
10178,
198,
6738,
28034,
13,
26791,
13,
83,
22854,
3526,
1330,
21293,
34379,
198,
198,
11748,
288,
20471,
8019,
198,
11748,
10655,
198,
6738,
20731,
1330,
18663,
62,
12417,
198,
6738,
28034,
62,
26791,
1330,
12747,
11,
3047,
62,
34242,
198,
6738,
28034,
62,
26791,
13,
6404,
2667,
1330,
7716,
62,
32861,
198,
6738,
28034,
62,
26791,
13,
2840,
1330,
3063,
17,
67,
62,
9744,
13049,
11,
10706,
62,
39873,
62,
9744,
13049,
198,
6738,
3047,
13,
19608,
292,
316,
13,
15588,
1330,
6291,
62,
37805,
198,
198,
2,
10097,
10541,
198,
198,
2,
10097,
10541,
198,
198,
2,
10097,
10541
] | 4.866109 | 239 |
# Copyright 2017 Google Inc.
#
# 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.
"""Haplotype-based labeling algorithm for DeepVariant.
This module provides a haplotype-aware labeling algorithm. This is a more
sophisticated approach to labeling that allows for slight representational
differences between candidate and truth variant sets. See:
https://github.com/ga4gh/benchmarking-tools
https://www.biorxiv.org/content/early/2018/03/15/270157
for an introduction to the concepts and why this is important.
The module is implemented in two big pieces of functionality:
find_best_matching_haplotypes(candidates, truths) provides an function that
accepts a list of candidate variants and a list of truth variants with known
genotypes and finds an assignment of genotypes for candidates and truth that
results in the same two haplotype sequences in the region. Since the truth
variants have known genotypes, the search there is constrained to those
genotypes and their potential set of false negatives (e.g., if truth is (0, 1)
we may have missed the variant so we consider both (0, 1) and (0, 0)). The
returned value is a HaplotypeMatch object describing the genotype assignments
for candidates and truth.
HaplotypeLabeler implements the variant_labeler.VariantLabeler API by calling
our find_best_matching_haplotypes function to get teh HaplotypeMatch objects and
returning variant_labeler.VariantLabel objects for each candidate variant.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import collections
import copy
import heapq
import itertools
from absl import logging
import enum
from third_party.nucleus.io import fasta
from third_party.nucleus.util import ranges
from third_party.nucleus.util import variant_utils
from third_party.nucleus.util import variantcall_utils
from deepvariant.labeler import variant_labeler
from deepvariant.protos import deepvariant_pb2
VariantAndGenotypes = collections.namedtuple('VariantAndGenotype',
['variant', 'genotypes'])
# The default maximum size of a variant group we'll try to label. See
# the HaplotypeLabeler class for more information.
_MAX_GROUP_SIZE = 8
# The default maximum distance between subsequent variants within a group. See
# the HaplotypeLabeler class for more information.
_MAX_SEPARATION_WITHIN_VARIANT_GROUP = 30
# True we will generate enough information into our logs to help debug bad
# regions.
_DEBUG_PRINTING_IS_ENABLED = False
class HaplotypeLabeler(variant_labeler.VariantLabeler):
"""Haplotype-based variant labeler."""
def __init__(self,
truth_vcf_reader,
ref_reader,
confident_regions,
max_group_size=_MAX_GROUP_SIZE,
max_separation=_MAX_SEPARATION_WITHIN_VARIANT_GROUP):
"""Creates a new HaplotypeVariantLabeler.
Args:
truth_vcf_reader: a VcfReader object that points to our truth variant set.
ref_reader: A FastaReader object we can use to get reference bases.
confident_regions: A RangeSet containing all of the confidently called
regions. A variant that falls outside of one of these regions will be
receive a special not-confident marker.
max_group_size: int >= 1. The maximum number of variants we'll attempt to
label together. Larger values increase the runtime of the algorithm.
max_separation: int >= 0. The maximum distance
between variants within a group. Sequential variants separated by more
than this value will be placed in separate groups for labeling.
Raises:
ValueError: if vcf_reader is None.
"""
super(HaplotypeLabeler, self).__init__(
truth_vcf_reader=truth_vcf_reader, confident_regions=confident_regions)
self._ref_reader = ref_reader
self.max_group_size = max_group_size
self.max_separation = max_separation
self._metrics = deepvariant_pb2.LabelingMetrics()
@property
def metrics(self):
"""Gets the LabelingMetrics proto tracking metrics for this labeler."""
return self._metrics
def _update_metrics(self, labeling):
"""Update self._metrics with the HaplotypeMatch labeling results.
This function updates the LabelingMetrics information in self._metrics using
the labeling results in labeling.
Args:
labeling: HaplotypeMatch. The labeling information to use to update our
LabelingMetrics.
"""
def _n_alts_by_genotype(gt):
"""Returns the number of distinct alt alleles with non-zero genotype."""
return len({g for g in gt if g > 0})
def _is_hom_ref(gt):
"""Are all genotypes in gt the reference alleles (i.e., == 0)?"""
return all(g == 0 for g in gt)
def _has_alt_genotypes(gt):
"""Is any genotype in gt a non-ref (> 0) genotype?"""
return any(g > 0 for g in gt)
# Iterate over the truth variant and its associated original genotypes
# (those provided by the input VCF) and the assigned genotypes (i.e., the
# genotypes assigned to truth to make candidates and truth match haplotypes)
# and compute a few metric values.
for truth, original_gt, assigned_gt in zip(
labeling.truths, labeling.original_truth_genotypes,
labeling.truth_genotypes):
n_alts_original = _n_alts_by_genotype(original_gt)
self._metrics.n_truth_variant_sites += 1
self._metrics.n_truth_variant_alleles += n_alts_original
self._metrics.n_true_positive_sites += _has_alt_genotypes(assigned_gt)
self._metrics.n_false_negative_sites += _is_hom_ref(assigned_gt)
# If we have more than one alt allele in the original genotypes and the
# assigned genotypes imply more or more are missing then we've got a
# multi-allelic truth variant with some missing alleles.
if (n_alts_original > 1 and
_n_alts_by_genotype(assigned_gt) < n_alts_original):
self._metrics.n_truth_multiallelics_sites_with_missed_alleles += 1
# Iterate over the original and assigned genotypes for the truth variants
# and count up the number of true positive alleles (i.e. original and
# assigned genotypes are non-ref) and false negative alleles (i.e.,
# original is non-ref but assigned is ref).
for og, ag in zip(original_gt, assigned_gt):
if og > 0:
if ag > 0:
self._metrics.n_true_positive_alleles += 1
elif ag == 0:
self._metrics.n_false_negative_alleles += 1
# Create a dict from the start of truth to the truth variant itself and its
# assigned genotypes. This is needed to compute site match counts below.
truth_by_pos = {
truth.start: (truth, gt)
for truth, gt in zip(labeling.truths, labeling.truth_genotypes)
}
# Iterate over the candidates and their assigned genotypes to compute
# the remaining metrics.
#
# Note that this counts all candidates, not just the ones in the confident
# regions of the genome. This seems like a reasonable first approach, but it
# may be necessary to restrict ourselves to only those overlapping the
# confident regions.
for candidate, genotype in zip(labeling.candidates,
labeling.candidate_genotypes):
# If candidate isn't confident, add it to the non_confident count and
# continue as the other metrics are only computed over confident
# candidates.
if not self._confident_regions.variant_overlaps(candidate):
self._metrics.n_non_confident_candidate_variant_sites += 1
continue
n_alt_alleles = len(candidate.alternate_bases)
self._metrics.n_candidate_variant_sites += 1
self._metrics.n_candidate_variant_alleles += n_alt_alleles
self._metrics.n_false_positive_sites += _is_hom_ref(genotype)
self._metrics.n_false_positive_alleles += (
n_alt_alleles - _n_alts_by_genotype(genotype))
# Use the truth_by_pos dict to determine which candidates occur at the
# same position as a truth variant. If there is one, grab it and its
# genotypes so we can compute metrics on exact position, allele, genotype
# matches. If not, update the number of inexact matches if our candidate
# is non-reference itself.
truth, assigned_gt = truth_by_pos.get(candidate.start, (None, None))
if truth:
self._metrics.n_exact_position_matches += 1
if sorted(candidate.alternate_bases) == sorted(truth.alternate_bases):
self._metrics.n_exact_position_and_allele_matches += 1
if sorted(genotype) == sorted(assigned_gt):
self._metrics.n_exact_position_and_allele_and_genotype_matches += 1
elif _has_alt_genotypes(genotype):
self._metrics.n_inexact_position_matches += 1
class ReferenceRegion(fasta.InMemoryRefReader):
"""Allows us to get bases from a cached reference interval."""
# We don't want to worry about the chromosome we are working on for code
# clarity, so we create a InMemoryRefReader that has a single chromosome named
# _DUMMY_CHROM_NAME which allows us to provide a bases(start, end) function
# for convenient reading of bases.
_DUMMY_CHROM_NAME = '*'
_CANDIDATE_MARKER = 'candidate'
_TRUTH_MARKER = 'truth'
_VariantToGroup = collections.namedtuple('_VariantToGroup',
['start', 'type', 'variant'])
def _raise_if_not_sorted_or_not_on_same_chromosome(variants):
"""Raises a ValueError if variants isn't sorted on the same chromosome."""
if not variant_utils.variants_are_sorted(variants):
raise ValueError('Variants must be sorted', variants)
for v in variants[1:]:
if variants[0].reference_name != v.reference_name:
raise ValueError(
'Variants (v1={}, v2={}) not on the same chromosome'.format(
v.reference_name, variants[0].reference_name))
def group_variants(candidates,
truths,
max_group_size=_MAX_GROUP_SIZE,
max_separation=_MAX_SEPARATION_WITHIN_VARIANT_GROUP):
"""Splits candidate and truth variants into smaller groups if necessary.
This function takes in a list of candidate and truth variants and splits up
those lists into groups that respect the requirements of the max_group_size
and max_separation arguments. This is necessary because the labeling algorithm
is very expensive as a function of the number of input variants, so to avoid
excessive runtime we break up our potentially large list of candidate and
truth variants into smaller groups (max number controlled by max_group_size)
based on a maximum distance allowed between the closest variants within the
group.
The current algorithm is a simple greedy one; we effectively merge the two
variant lists together, make groups greedily on that list until either the
maximum number of elements of a specific type (i.e., max_group_size of 2
implies we can have up to two candidate variants or truth variants within a
group) or we encounter a variant further away from the closest variant within
the current group than allowed by max_separation.
Args:
candidates: list[nucleus.proto.Variant]. A sorted list of candidate
variants on the same chromosome.
truths: list[nucleus.proto.Variant]. A sorted list of truth
variants on the same chromosome.
max_group_size: int >= 0. The maximum number of variants of a specific type
allowed within a group.
max_separation: int >= 0. The maximum distance, in basepairs, allowed
between the closest variants within a group.
Returns:
A list of grouped variants in 2-tuples, such as:
[(candidates1, truth_variants1), ...]
where each tuple contains the candidate and truth variants for that group.
Raises:
ValueError: if any of the inputs are malformed.
"""
if max_group_size < 0:
raise ValueError('max_group_size={} must be >= 0'.format(max_group_size))
if max_separation < 0:
raise ValueError('max_separation={} must be >= 0'.format(max_separation))
_raise_if_not_sorted_or_not_on_same_chromosome(candidates)
_raise_if_not_sorted_or_not_on_same_chromosome(truths)
def to_grouped_variants(variants, candidate_type):
"""Converts a Variant proto to a _VariantToGroup tuple."""
return [_VariantToGroup(v.start, candidate_type, v) for v in variants]
def _of_type(group, required_type):
"""Selects a list of Variant protos from list[_VariantToGroup] of type."""
return [gv.variant for gv in group if gv.type == required_type]
def _split_grouped_variants(group):
"""Splits a list of _VariantToGroup into candidate and truth variants."""
return _of_type(group, _CANDIDATE_MARKER), _of_type(group, _TRUTH_MARKER)
# Convert our lists of variant protos into _VariantToGroup tuples compatible
# with the heapq API (sorts on tuples), so we get a single iterable of
# variants with marked types and sorted by start position (first element of
# each tuple).
groupable_variants = heapq.merge(
to_grouped_variants(candidates, _CANDIDATE_MARKER),
to_grouped_variants(truths, _TRUTH_MARKER))
# Go through out groupable_variants and split them up into groups according to
# the predicate _include_in_variant_group.
groups = []
current_group = []
for group_variant in groupable_variants:
if _include_in_variant_group(current_group, group_variant):
current_group.append(group_variant)
else:
groups.append(current_group)
current_group = [group_variant]
if current_group:
groups.append(current_group)
# Finally split up each group into candidates and truths.
return [_split_grouped_variants(g) for g in groups]
def with_false_negative_genotypes(gt):
"""Returns a set of genotypes that includes false negatives.
This function takes a concrete genotype for a Variant, such as (0, 1), and
returns a set of genotypes that includes gt as well as all possible genotypes
consistent with some of the alleles in gt being missed. For example, here are
a few outputs for help understand what this means:
input genotype (gt) => returned set of genotypes
------------------------------------------------
# A hom-ref genotype doesn't have any alleles to miss.
(0, 0) => {(0, 0)}
# Might miss the 1 allele, or not.
(0, 1) => {(0, 0), (0, 1)}
# We could miss one, or both of the 1 alleles.
(1, 1) => {(0, 0), (0, 1), (1, 1)}
# Multi-allelics are more complex, in that we could miss either the 1 or the
# 2 allele, or both.
(1, 2) => {(0, 0), (0, 1), (0, 2), (1, 2)}
Args:
gt: iterable[int]: A genotype for a Variant, such as [0, 1] or [1, 1].
Returns:
A set of tuples containing diploid genotypes.
"""
alts = set(gt) - {0}
return {(0, 0), tuple(gt)} | {(0, alt) for alt in alts}
class ImpossibleHaplotype(Exception):
"""Indicates that an impossible haplotype configuration has been observed."""
pass
def enumerate_all_possible_haplotypes(variants, ref, enumeration_type):
"""Yields all possible haplotype/genotype combinations for variants.
Args:
variants: list[nucleus.protos.Variant]. A list of candidate variants, in
coordinate-sorted order, all on the same chromosome.
ref: ReferenceRegion. Used to get reference bases for variants. Must cover
at least the span of the variants.
enumeration_type: EnumerationType enum value. What kind of enumeration do we
want to do? Can be either CANDIDATES or TRUTH.
Yields:
2-tuple of haplotypes and genotypes. Haplotypes is a set of either one or
two strings, where each string is a haplotype (i.e., a series of bases)
generated by the genotypes assigned to each variant. genotypes is a list of
genotype tuples, in the same order as variants, indicating the genotype
assignment for each variant. These genotypes are phased, so [(0, 1), (0, 1)]
is not the same as [(0, 1), (1, 0)].
"""
def create_haplotypes_recursive(variants_and_genotypes, last_pos):
"""Recursive driver to enumerate all haplotypes."""
if not variants_and_genotypes:
yield {ref.bases(last_pos, ref.end)} if last_pos != ref.end else {''}
else:
group, remaining = split_independent_variants(variants_and_genotypes)
group_haplotypes, next_pos = phased_genotypes_to_haplotypes(
group, last_pos, ref)
prefix_haplotypes = list(all_diploid_haplotypes(group, group_haplotypes))
if not prefix_haplotypes:
# prefix_haplotypes can be empty when group contains incompatible
# variants making it impossible to construct any haplotypes for group.
# For example, if group is:
# variant(start=6, alleles=("AAT", "A"), genotype=(0, 1))
# variant(start=7, alleles=("AT", "T"), genotype=(1, 1))
# prefix_haplotypes will be empty because there's no way to construct
# the haplotype where the variant@6 has a 1 genotype since it is
# deleting away bases that overlap the variant@7 which has a genotype of
# (1, 1), meaning it *has* to be present in some haplotype. In this
# situation we raise a ImpossibleHaplotype exception, which is caught
# in the outer loop, allowing us to bail out of the search ASAP.
raise ImpossibleHaplotype
for haplotypes in create_haplotypes_recursive(remaining, next_pos):
for result in extend_haplotypes(prefix_haplotypes, haplotypes):
yield result
genotype_options = genotype_options_for_variants(variants, enumeration_type)
for genotypes in itertools.product(*genotype_options):
paired = [VariantAndGenotypes(v, g) for v, g in zip(variants, genotypes)]
for haplotypes in create_haplotypes(paired, ref.start):
yield haplotypes, genotypes
def all_diploid_haplotypes(variants_and_genotypes, genotypes2haplotype):
"""Returns all diploid haplotypes for variants given their genotypes."""
genotypes = [vg.genotypes for vg in variants_and_genotypes]
generated_already = set()
for haploid_genotype, haplotype in genotypes2haplotype.iteritems():
complement = complement_haploid_genotype(haploid_genotype, genotypes)
complement_haplotype = genotypes2haplotype.get(complement, None)
if complement_haplotype is not None and complement not in generated_already:
generated_already.add(haploid_genotype)
yield {haplotype, complement_haplotype}
class EnumerationType(enum.Enum):
"""Enumeration type indicating how we should explore genotype configurations.
See genotype_options_for_variants for more information.
"""
# This enumeration produces all possible genotype combinations for a variant.
CANDIDATES = 1
# This enumeration type will produce all combinations of the provided genotype
# for the variant with genotypes that allow for one or more of the
# non-reference genotypes to be missed.
TRUTH = 2
# This enumeration type will only produce a single (0, 0) genotype option for
# each variant.
ONLY_HOM_REF = 3
def genotype_options_for_variants(variants, enumeration_type):
"""Returns a list of sets of possible genotypes for each variant in variants.
This function takes a list of variants and enumeration_type and produces a
list of possible genotypes for each variant in order.
If enumeration_type is ONLY_HOM_REF, then we return a singleton set for each
variant containing only the hom-ref genotype (0, 0). If enumeration_type is
TRUTH, then each variant must have an associated genotype field values, say
(A, B), and we return the set genotype as well as all possible false negative
genotypes. In our example, this means we'd return {(A, B), (0, A), (0, B),
(0, 0)} as we could miss either the A, the B, or both alleles. If the
enumeration_type is CANDIDATES, we don't require the Variant protos to have
existing genotype field values and instead enumerate all possible unphased
genotypes for each variant given its alternative alleles of each variant. For
example, if we have a Variant with alleles = 'A' and 'C', we would return the
three possible diploid genotypes {(0, 0), (0, 1), (1, 1)}.
Args:
variants: List[nucleus.protos.Variant]. A list of Variant protos to provide
genotype options for. Some enumeration types may require the protos to
have existing genotypes in their calls[] subfield.
enumeration_type: EnumerationType. The kind of genotypes we want to explore
for each variant.
Returns:
A list of sets with the same length and "order" as variants. Each set
contains one or more diploid genotype tuples [e.g., (0, 1)] that
collectively represent the possible genotypes we need to explore.
Raises:
ValueError: if enumeration_type isn't one of the valid options.
"""
if enumeration_type == EnumerationType.TRUTH:
return [
with_false_negative_genotypes(x) for x in _variant_genotypes(variants)
]
elif enumeration_type == EnumerationType.CANDIDATES:
return [{(i, j)
for i, j, _, _ in variant_utils.genotype_ordering_in_likelihoods(v)
}
for v in variants]
elif enumeration_type == EnumerationType.ONLY_HOM_REF:
return [{(0, 0)}] * len(variants)
else:
raise ValueError('Unexpected EnumerationType', enumeration_type)
def split_independent_variants(variants_and_genotypes):
"""Splits variants_and_genotypes into an overlapping group and remaining."""
if not variants_and_genotypes:
raise ValueError('Expected at least one value in variants_and_genotypes')
overlaps = [variants_and_genotypes[0]]
for i in range(1, len(variants_and_genotypes)):
vgi = variants_and_genotypes[i].variant
if any(variant_utils.variants_overlap(vg.variant, vgi) for vg in overlaps):
overlaps.append(variants_and_genotypes[i])
else:
return overlaps, variants_and_genotypes[i:]
return overlaps, []
def extend_haplotypes(prefix_haplotypes_list, haplotypes):
"""Yields all diploid combinations of prefix_haplotypes_list x haplotypes.
Args:
prefix_haplotypes_list: list[set[string]]: prefix_haplotypes_list contains a
list of set[string], which are just like haplotypes (i.e., contains 1 or 2
strings), that collectively represent all possible prefixes of haplotypes.
haplotypes: set[string]. A set containing 1 or 2 haplotype strings. So it
looks like {h} or {h1, h2}.
Yields:
A series of set[string], each containing 1 or 2 haplotype strings.
Raises:
ValueError: if any of the arguments are invalid.
"""
if not prefix_haplotypes_list:
raise ValueError('prefix_haplotypes_list cannot be empty')
if len(haplotypes) not in {1, 2}:
raise ValueError('haplotypes must have exactly 1 or 2 elements', haplotypes)
for prefix_haplotypes in prefix_haplotypes_list:
if len(prefix_haplotypes) == 1:
f, = prefix_haplotypes
yield {f + h for h in haplotypes}
else:
f1, f2 = prefix_haplotypes
if len(haplotypes) == 1:
h, = haplotypes
yield {f1 + h, f2 + h}
else:
h1, h2 = haplotypes
yield {f1 + h1, f2 + h2}
yield {f1 + h2, f2 + h1}
def phased_genotypes_to_haplotypes(variants_and_genotypes, start, ref):
"""Returns a map from phased genotypes => haplotype sequences.
This function creates a map from all possible haploid genotypes of the
genotypes in variants_and_genotypes to their corresponding haplotype sequences
implied by the variants, ref, start, and their genotypes. This map can be used
to efficiently look up the haplotype sequence for any haploid genotype.
Args:
variants_and_genotypes: list[VariantAndGenotypes]. The variants and
associated genotypes to use to build the dictionary.
start: int >= 0. The position on the genome to start constructing our
haplotypes at.
ref: ReferenceRegion. Object containing the reference genome bases we use to
construct our haplotypes.
Returns:
A 2-tuple. The first element is a dictionary[tuple, string], where each key
is a phased haploid genotype and its value is the haplotype sequence implied
by that genotype given the variants and the reference genome. The second
position is the ending position of the haplotype on the reference genome.
"""
genotypes_to_haplotypes = {}
genotypes = [vg.genotypes for vg in variants_and_genotypes]
variants = [vg.variant for vg in variants_and_genotypes]
all_haploid_genotypes = sorted(set(itertools.product(*genotypes)))
end = max(v.end for v in variants)
for phased in all_haploid_genotypes:
haplotype = build_haplotype(variants, phased, ref, start, end)
if haplotype:
genotypes_to_haplotypes[phased] = haplotype
return genotypes_to_haplotypes, end
def build_haplotype(variants, allele_indices, ref, ref_start, ref_end):
"""Builds the haplotype string from variants and its phased gneotypes.
This function takes a list of variants and associated phased genotypes and
constructs the haplotype sequence implied by variants and its genotypes. For
example, suppose we have two variants:
ref: CAGC where the first base (C) is at position 10.
chr20:10 A=>C
chr20:11 G=>T
allele_indices: [0, 1]
We would receive arguments here of a list of two variants and a list of the
allele_indices [0, 1]. We now look up which base is implied for the variant
(e.g., [0, 1] takes the reference bases from variant 1 at 10 and then the
first alternate allele of variant 2 at 11). If ref_start is 9, we would then
construct the haplotype as:
haplotype is 'CATC' derived as follows:
'C' [ref_prefix, since ref_start=]
+
'A' (variant1 has a genotype of 0)
+
'T' (variant2 has a genotype of 1)
+
'C' [ref_postfix if ref_end == 13]
= 'CATC'
Args:
variants: list[nucleus.protos.Variant]: The variants to use in constructing
the haplotype.
allele_indices: list[int]: The list of allele_indexes (where 0 means
reference_bases and > 0 implies alternative bases, following the
VariantCall genotypes semantics).
ref: ReferenceRegion. Used to get the reference bases.
ref_start: int >= 0. The first position (zero-indexed, inclusive) in the
genome where we want to start constructing our haplotype.
ref_end: int >= 0 and > ref_start. The last position (zero-indexed,
exclusive) in the genome where we want to end constructing our haplotype.
Returns:
A string containing the haplotype bases, or None, if any variant starts
before ref_start and has a non-reference genotype.
Raises:
ValueError: If any of the input arguments are malformed or otherwise violate
the assumptions of this algorithm.
"""
if len(variants) != len(allele_indices):
raise ValueError(
'Expected the same number of variants {} as allele_indices {}'.format(
len(variants), len(allele_indices)))
if ref_start < 0 or ref_start >= ref_end:
raise ValueError('expected ref_start {} < ref_end {}'.format(
ref_start, ref_end))
parts = []
position = ref_start
for variant, allele_index in zip(variants, allele_indices):
if variant.start < position:
if allele_index != 0:
return None
else:
ref_prefix = ref.bases(position, variant.start)
allele = _allele_from_index(variant, allele_index)
if allele_index == 0:
# Update our position variable to be the next reference base we want to
# use when further constructing our haplotype string. If we are using
# the reference base, we start our position at the base after variant
# start, whereas if we are using a non-reference base we use the
# variant.end.
#
# This special-case is needed to handle deletion alleles properly. If we
# have a deletion (e.g., AA => A with start = 10 and end = 12) then we
# only want to skip to position 12 for the next reference bases if we
# have have the deletion, otherwise we'd miss the second 'A' base which
# is really there (the variant isn't present, after all). Another
# consequence of this choice we only want to add the first base of the
# reference allele, not the whole string, since this would append all of
# deletion bases inappropriately to our haplotype.
allele = allele[0]
position = variant.start + 1
else:
position = variant.end
parts.append(ref_prefix + allele)
# We have some bases left to add between the position of our last variant
# and the ref_end, so append those now.
if position < ref_end:
parts.append(ref.bases(position, ref_end))
return ''.join(parts)
class HaplotypeMatch(object):
"""DataClass holding information about a matching of variants.
The haplotype labeling algorithm, at its core, searches for an assignment of
genotypes to the candidate variants and the truth variants that result in the
same diploid haplotype sequences, which we call a match. All of the
information in that previous sentence is captured here as class attributes:
Attributes:
haplotypes: list[str]. The sorted list of haplotypes produced by this match.
candidates: list[nucleus.proto.Variant]: The list of candidate variants.
truths: list[nucleus.proto.Variant]: The list of true variants.
candidate_genotypes: list[tuple]: The genotypes that, when assigned
to the candidate variants, give rise to haplotypes.
truth_genotypes: list[tuple]: The genotypes that, when assigned
to the known variants, give rise to haplotypes.
"""
__repr__ = __str__
@property
@property
def match_metrics(self):
"""Quality of this match. Lower scores are better.
Returns:
tuple[int] where all elements are >= 0: The tuple is suitable for sorting
matches, so that sorted(matches, key=lambda x: x.match_metrics) will rank
matches so that the best option is first.
"""
return (self.n_false_negatives, self.n_false_positives,
self.n_true_positives)
@property
def n_true_positives(self):
"""Gets the number of candidates whose matched genotype is not (0, 0).
Since the candidates don't have expected genotypes, we can only count each
site instead of each genotype. So this is the number of candidates whose
matched genotype is not (0, 0).
Returns:
int >= 0.
"""
return len(self.candidate_genotypes) - self.n_false_positives
@property
def n_false_positives(self):
"""Gets the number of candidates whose matched genotype is (0, 0).
Since the candidates don't have expected genotypes, we can only count each
site instead of each genotype. So this is the number of candidates whose
matched genotype is (0, 0).
Returns:
int >= 0.
"""
if self._n_false_positives is None:
self._n_false_positives = sum(
sum(gt) == 0 for gt in self.candidate_genotypes)
return self._n_false_positives
@property
def n_false_negatives(self):
"""Gets the number of missed true genotypes.
This is the sum of missed non-ref genotypes over all truth variants. So if
we have a matched truth genotype of (0, 1) and the true genotype is (1, 1),
then we have 1 FN. If the matched genotype were (0, 0), we'd have 2 FNs.
Returns:
int >= 0.
"""
if self._n_false_negatives is None:
self._n_false_negatives = sum(
n_zeroes(assigned_gt) - n_zeroes(original_gt)
for original_gt, assigned_gt in zip(self.original_truth_genotypes,
self.truth_genotypes))
return self._n_false_negatives
def candidates_with_assigned_genotypes(self):
"""Gets a copy of our candidates with their matched genotypes.
Returns:
list[Variant protobuf]: Returns a copy of self.candidates in order, with
genotypes corresponding to their matched genotypes. Any previous genotypes
in these Variants will be overwrite. If no VariantCall is present one will
be added.
"""
with_gts = [copy.deepcopy(v) for v in self.candidates]
for variant, gt in zip(with_gts, self.candidate_genotypes):
call = variant.calls[0] if variant.calls else variant.calls.add()
variantcall_utils.set_gt(call, gt)
return with_gts
def deduplicate_haplotypes(haplotypes_and_genotypes):
"""Returns a new list of haplotypes_and_genotypes with duplicates removed.
This function goes through the haplotypes_and_genotypes iterable and keeps
only a single example of (haplotypes, genotypes) if there are multiple
elements of the list that have the same haplotypes. Duplicates are expected
in the list because different genotype configurations can sometimes produce
the same set of haplotypes, and analyzing a list of possible
haplotypes/genotypes combinations with duplicates is much harder and less
efficient than the deduplicated list.
Args:
haplotypes_and_genotypes: iterable[(haplotype, genotype)]. The
haplotype/genotype tuples we want to deduplicate.
Returns:
A subset of haplotype/genotype tuples, as a list, without duplicates.
"""
haplotypes_and_genotypes = list(haplotypes_and_genotypes)
return [
(vh1, vg1)
for i, (vh1, vg1) in enumerate(haplotypes_and_genotypes)
if not any(vh1 == vh2 for (vh2, _) in haplotypes_and_genotypes[i + 1:])
]
# redacted
# variants and truths, and yields information about each variant and
# truth variant sequentially. This should be the primary API. Refactor
# label_examples to use this new API. Then create a new implementation that does
# the fast version.
def find_best_matching_haplotypes(candidates, truths, ref):
"""Assigns genotypes to each variant to best match truths.
See the module-level documentation for general information on how this
algorithm works.
Args:
candidates: list[nucleus.protos.Variant]. A list of candidate variants, in
coordinate-sorted order, all on the same chromosome.
truths: list[nucleus.protos.Variant]. A list of truth variants, in
coordinate-sorted order, for the same interval on the genome as variants.
ref: ReferenceRegion. Used to get reference bases for variants. Must cover
at least the span of the variants.
Returns:
A HaplotypeMatch object describing the best assignment of genotypes between
the candidates and truth_variants, or None, if no consistent assignment can
be found.
Raises:
ValueError: If any inputs are malformed.
"""
candidates = list(candidates)
truths = list(truths)
if _DEBUG_PRINTING_IS_ENABLED:
_log_variants('candidates', candidates)
_log_variants('truth', truths)
if not variant_utils.variants_are_sorted(candidates):
raise ValueError('candidates are not sorted', candidates)
if not variant_utils.variants_are_sorted(truths):
raise ValueError('truths are not sorted', truths)
def _hom_ref_enum_if_empty(list_of_variants, non_empty_enum):
"""If list_of_variants is empty, use a ONLY_HOM_REF enum for speed."""
return non_empty_enum if list_of_variants else EnumerationType.ONLY_HOM_REF
truth_haplotypes = deduplicate_haplotypes(
enumerate_all_possible_haplotypes(
truths, ref, _hom_ref_enum_if_empty(candidates,
EnumerationType.TRUTH)))
# Note, it may be worth deduplicating these haplotypes as well.
variant_haplotypes = enumerate_all_possible_haplotypes(
candidates, ref, _hom_ref_enum_if_empty(truths,
EnumerationType.CANDIDATES))
found = []
for vh, vgt in variant_haplotypes:
for th, tgt in truth_haplotypes:
if th == vh:
found.append(
HaplotypeMatch(
haplotypes=th,
candidates=candidates,
candidate_genotypes=vgt,
truths=truths,
truth_genotypes=tgt))
if not found:
return None
else:
return select_best_haplotype_match(found)
def select_best_haplotype_match(all_matches):
"""Returns the best HaplotypeMatch among all_matches.
The best matching HaplotypeMatch is the one with the lowest match_metrics
score.
Args:
all_matches: iterable[HaplotypeMatch]. An iterable of HaplotypeMatch objects
we want to select the best match from.
Returns:
The best matching HaplotypeMatch object.
"""
sorted_matches = sorted(all_matches, key=lambda x: x.match_metrics)
best = sorted_matches[0]
equivalents = [
f for f in all_matches if f.match_metrics == best.match_metrics
]
# redacted
if len(equivalents) > 1:
for i, f in enumerate(equivalents):
extra_info = 'best' if i == 0 else i
logging.warning('Equivalent match to best: %s [%s]', f, extra_info)
return equivalents[0]
# -----------------------------------------------------------------------------
#
# Private utility functions
#
# -----------------------------------------------------------------------------
def _variant_genotypes(variants, missing_genotypes_default=(-1, -1)):
"""Returns the genotypes of variants as a list of tuples.
Args:
variants: iterable[nucleus.protos.Variant]. The variants whose genotypes we
want to get.
missing_genotypes_default: tuple. If a variant in variants doesn't have
genotypes, this value is returned. The default value is (-1, -1), the
standard representation for "missing" diploid genotypes.
Returns:
list[nucleus.protos.Variant] protos in the same order as variants.
"""
return [
tuple(v.calls[0].genotype) if v.calls else missing_genotypes_default
for v in variants
]
def _log_haplotypes(name, haplotypes):
"""Write basic information about haplotypes to logging.info."""
logging.info('haplotypes: %s', name)
for haplotype, genotypes in haplotypes:
logging.info(' %s with %s', haplotype, genotypes)
def _log_variants(name, variants):
"""Write basic information about variants to logging.info."""
logging.info('variants: %s [%d]', name, len(variants))
for v in variants:
logging.info(' %s gt=%s', variant_utils.variant_key(v),
_variant_genotypes([v])[0])
def n_zeroes(l):
"""Returns the number of elements of l that are 0."""
return sum(1 for x in l if x == 0)
def _allele_from_index(variant, allele_index):
"""Gets the reference_bases or alternative_bases for allele_index."""
if allele_index == 0:
return variant.reference_bases
else:
return variant.alternate_bases[allele_index - 1]
| [
2,
15069,
2177,
3012,
3457,
13,
198,
2,
198,
2,
2297,
396,
3890,
290,
779,
287,
2723,
290,
13934,
5107,
11,
351,
393,
1231,
198,
2,
17613,
11,
389,
10431,
2810,
326,
262,
1708,
3403,
198,
2,
389,
1138,
25,
198,
2,
198,
2,
352,
13,
2297,
396,
2455,
507,
286,
2723,
2438,
1276,
12377,
262,
2029,
6634,
4003,
11,
198,
2,
220,
220,
220,
428,
1351,
286,
3403,
290,
262,
1708,
37592,
13,
198,
2,
198,
2,
362,
13,
2297,
396,
2455,
507,
287,
13934,
1296,
1276,
22919,
262,
2029,
6634,
198,
2,
220,
220,
220,
4003,
11,
428,
1351,
286,
3403,
290,
262,
1708,
37592,
287,
262,
198,
2,
220,
220,
220,
10314,
290,
14,
273,
584,
5696,
2810,
351,
262,
6082,
13,
198,
2,
198,
2,
513,
13,
16126,
262,
1438,
286,
262,
6634,
15762,
4249,
262,
3891,
286,
663,
198,
2,
220,
220,
220,
20420,
743,
307,
973,
284,
11438,
393,
7719,
3186,
10944,
422,
428,
198,
2,
220,
220,
220,
3788,
1231,
2176,
3161,
3194,
7170,
13,
198,
2,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
11050,
3336,
27975,
38162,
9947,
367,
15173,
4877,
5357,
27342,
9865,
3843,
20673,
366,
1921,
3180,
1,
198,
2,
5357,
15529,
7788,
32761,
6375,
8959,
49094,
34764,
11015,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
198,
2,
8959,
49094,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
5357,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
198,
2,
15986,
13954,
48778,
1961,
13,
3268,
8005,
49261,
50163,
3336,
27975,
38162,
9947,
49707,
14418,
6375,
27342,
9865,
3843,
20673,
9348,
198,
2,
43031,
19146,
7473,
15529,
42242,
11,
3268,
17931,
23988,
11,
19387,
25256,
1847,
11,
38846,
11,
7788,
3620,
6489,
13153,
11,
6375,
198,
2,
7102,
5188,
10917,
3525,
12576,
29506,
25552,
357,
1268,
39149,
2751,
11,
21728,
5626,
40880,
5390,
11,
41755,
11335,
10979,
3963,
198,
2,
28932,
2257,
2043,
37780,
21090,
50,
6375,
49254,
26,
406,
18420,
3963,
23210,
11,
42865,
11,
6375,
4810,
19238,
29722,
26,
6375,
43949,
44180,
198,
2,
23255,
49,
8577,
24131,
8,
29630,
36,
5959,
7257,
2937,
1961,
5357,
6177,
15529,
3336,
15513,
3963,
43031,
25382,
11,
7655,
2767,
16879,
3268,
198,
2,
27342,
10659,
11,
19269,
18379,
43031,
25382,
11,
6375,
309,
9863,
357,
1268,
39149,
2751,
399,
7156,
43,
3528,
18310,
6375,
25401,
54,
24352,
8,
198,
2,
5923,
1797,
2751,
3268,
15529,
34882,
16289,
3963,
3336,
23210,
3963,
12680,
47466,
11,
45886,
16876,
5984,
29817,
1961,
3963,
3336,
198,
2,
28069,
11584,
25382,
3963,
13558,
3398,
29506,
11879,
13,
198,
37811,
23303,
489,
8690,
12,
3106,
27393,
11862,
329,
10766,
23907,
415,
13,
198,
198,
1212,
8265,
3769,
257,
42519,
8690,
12,
9685,
27393,
11862,
13,
770,
318,
257,
517,
198,
82,
2522,
2569,
515,
3164,
284,
27393,
326,
3578,
329,
3731,
2380,
864,
198,
26069,
4972,
1022,
4540,
290,
3872,
15304,
5621,
13,
4091,
25,
198,
198,
5450,
1378,
12567,
13,
785,
14,
4908,
19,
456,
14,
26968,
4102,
278,
12,
31391,
198,
5450,
1378,
2503,
13,
65,
1504,
87,
452,
13,
2398,
14,
11299,
14,
11458,
14,
7908,
14,
3070,
14,
1314,
14,
1983,
486,
3553,
198,
198,
1640,
281,
9793,
284,
262,
10838,
290,
1521,
428,
318,
1593,
13,
628,
198,
464,
8265,
318,
9177,
287,
734,
1263,
5207,
286,
11244,
25,
198,
198,
19796,
62,
13466,
62,
15699,
278,
62,
3099,
489,
13567,
7,
46188,
37051,
11,
24279,
8,
3769,
281,
2163,
326,
198,
13635,
82,
257,
1351,
286,
4540,
17670,
290,
257,
1351,
286,
3872,
17670,
351,
1900,
198,
5235,
13567,
290,
7228,
281,
16237,
286,
2429,
13567,
329,
5871,
290,
3872,
326,
198,
43420,
287,
262,
976,
734,
42519,
8690,
16311,
287,
262,
3814,
13,
4619,
262,
3872,
198,
25641,
1187,
423,
1900,
2429,
13567,
11,
262,
2989,
612,
318,
31070,
284,
883,
198,
5235,
13567,
290,
511,
2785,
900,
286,
3991,
42510,
357,
68,
13,
70,
1539,
611,
3872,
318,
357,
15,
11,
352,
8,
198,
732,
743,
423,
6825,
262,
15304,
523,
356,
2074,
1111,
357,
15,
11,
352,
8,
290,
357,
15,
11,
657,
29720,
383,
198,
7783,
276,
1988,
318,
257,
9398,
489,
8690,
23850,
2134,
12059,
262,
2429,
8690,
25815,
198,
1640,
5871,
290,
3872,
13,
198,
198,
23303,
489,
8690,
33986,
263,
23986,
262,
15304,
62,
18242,
263,
13,
23907,
415,
33986,
263,
7824,
416,
4585,
198,
454,
1064,
62,
13466,
62,
15699,
278,
62,
3099,
489,
13567,
2163,
284,
651,
573,
71,
9398,
489,
8690,
23850,
5563,
290,
198,
7783,
278,
15304,
62,
18242,
263,
13,
23907,
415,
33986,
5563,
329,
1123,
4540,
15304,
13,
198,
37811,
198,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
6738,
11593,
37443,
834,
1330,
7297,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
198,
11748,
17268,
198,
11748,
4866,
198,
11748,
24575,
80,
198,
11748,
340,
861,
10141,
198,
198,
6738,
2352,
75,
1330,
18931,
198,
11748,
33829,
198,
198,
6738,
2368,
62,
10608,
13,
77,
14913,
385,
13,
952,
1330,
3049,
64,
198,
6738,
2368,
62,
10608,
13,
77,
14913,
385,
13,
22602,
1330,
16069,
198,
6738,
2368,
62,
10608,
13,
77,
14913,
385,
13,
22602,
1330,
15304,
62,
26791,
198,
6738,
2368,
62,
10608,
13,
77,
14913,
385,
13,
22602,
1330,
15304,
13345,
62,
26791,
198,
6738,
2769,
25641,
415,
13,
18242,
263,
1330,
15304,
62,
18242,
263,
198,
6738,
2769,
25641,
415,
13,
11235,
418,
1330,
2769,
25641,
415,
62,
40842,
17,
628,
198,
23907,
415,
1870,
13746,
13567,
796,
17268,
13,
13190,
83,
29291,
10786,
23907,
415,
1870,
13746,
8690,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
25641,
415,
3256,
705,
5235,
13567,
6,
12962,
198,
198,
2,
383,
4277,
5415,
2546,
286,
257,
15304,
1448,
356,
1183,
1949,
284,
6167,
13,
4091,
198,
2,
262,
9398,
489,
8690,
33986,
263,
1398,
329,
517,
1321,
13,
198,
62,
22921,
62,
46846,
62,
33489,
796,
807,
198,
198,
2,
383,
4277,
5415,
5253,
1022,
8840,
17670,
1626,
257,
1448,
13,
4091,
198,
2,
262,
9398,
489,
8690,
33986,
263,
1398,
329,
517,
1321,
13,
198,
62,
22921,
62,
5188,
27082,
6234,
62,
54,
10554,
1268,
62,
53,
33604,
8643,
62,
46846,
796,
1542,
198,
198,
2,
6407,
356,
481,
7716,
1576,
1321,
656,
674,
17259,
284,
1037,
14257,
2089,
198,
2,
7652,
13,
198,
62,
30531,
62,
4805,
12394,
2751,
62,
1797,
62,
1677,
6242,
30465,
796,
10352,
628,
198,
4871,
9398,
489,
8690,
33986,
263,
7,
25641,
415,
62,
18242,
263,
13,
23907,
415,
33986,
263,
2599,
198,
220,
37227,
23303,
489,
8690,
12,
3106,
15304,
6167,
263,
526,
15931,
628,
220,
825,
11593,
15003,
834,
7,
944,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3872,
62,
85,
12993,
62,
46862,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1006,
62,
46862,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6563,
62,
2301,
507,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
8094,
62,
7857,
28,
62,
22921,
62,
46846,
62,
33489,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
25512,
341,
28,
62,
22921,
62,
5188,
27082,
6234,
62,
54,
10554,
1268,
62,
53,
33604,
8643,
62,
46846,
2599,
198,
220,
220,
220,
37227,
16719,
274,
257,
649,
9398,
489,
8690,
23907,
415,
33986,
263,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
3872,
62,
85,
12993,
62,
46862,
25,
257,
569,
12993,
33634,
2134,
326,
2173,
284,
674,
3872,
15304,
900,
13,
198,
220,
220,
220,
220,
220,
1006,
62,
46862,
25,
317,
12549,
64,
33634,
2134,
356,
460,
779,
284,
651,
4941,
12536,
13,
198,
220,
220,
220,
220,
220,
6563,
62,
2301,
507,
25,
317,
13667,
7248,
7268,
477,
286,
262,
37891,
1444,
198,
220,
220,
220,
220,
220,
220,
220,
7652,
13,
317,
15304,
326,
8953,
2354,
286,
530,
286,
777,
7652,
481,
307,
198,
220,
220,
220,
220,
220,
220,
220,
3328,
257,
2041,
407,
12,
10414,
738,
18364,
13,
198,
220,
220,
220,
220,
220,
3509,
62,
8094,
62,
7857,
25,
493,
18189,
352,
13,
383,
5415,
1271,
286,
17670,
356,
1183,
2230,
284,
198,
220,
220,
220,
220,
220,
220,
220,
6167,
1978,
13,
406,
32270,
3815,
2620,
262,
19124,
286,
262,
11862,
13,
198,
220,
220,
220,
220,
220,
3509,
62,
25512,
341,
25,
493,
18189,
657,
13,
383,
5415,
5253,
198,
220,
220,
220,
220,
220,
220,
220,
1022,
17670,
1626,
257,
1448,
13,
24604,
1843,
17670,
11266,
416,
517,
198,
220,
220,
220,
220,
220,
220,
220,
621,
428,
1988,
481,
307,
4624,
287,
4553,
2628,
329,
27393,
13,
628,
220,
220,
220,
7567,
2696,
25,
198,
220,
220,
220,
220,
220,
11052,
12331,
25,
611,
410,
12993,
62,
46862,
318,
6045,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2208,
7,
23303,
489,
8690,
33986,
263,
11,
2116,
737,
834,
15003,
834,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3872,
62,
85,
12993,
62,
46862,
28,
35310,
62,
85,
12993,
62,
46862,
11,
6563,
62,
2301,
507,
28,
10414,
738,
62,
2301,
507,
8,
198,
220,
220,
220,
2116,
13557,
5420,
62,
46862,
796,
1006,
62,
46862,
198,
220,
220,
220,
2116,
13,
9806,
62,
8094,
62,
7857,
796,
3509,
62,
8094,
62,
7857,
198,
220,
220,
220,
2116,
13,
9806,
62,
25512,
341,
796,
3509,
62,
25512,
341,
198,
220,
220,
220,
2116,
13557,
4164,
10466,
796,
2769,
25641,
415,
62,
40842,
17,
13,
33986,
278,
9171,
10466,
3419,
628,
220,
2488,
26745,
198,
220,
825,
20731,
7,
944,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
3498,
10809,
9171,
10466,
44876,
9646,
20731,
329,
428,
6167,
263,
526,
15931,
198,
220,
220,
220,
1441,
2116,
13557,
4164,
10466,
628,
220,
825,
4808,
19119,
62,
4164,
10466,
7,
944,
11,
27393,
2599,
198,
220,
220,
220,
37227,
10260,
2116,
13557,
4164,
10466,
351,
262,
9398,
489,
8690,
23850,
27393,
2482,
13,
628,
220,
220,
220,
770,
2163,
5992,
262,
3498,
10809,
9171,
10466,
1321,
287,
2116,
13557,
4164,
10466,
1262,
198,
220,
220,
220,
262,
27393,
2482,
287,
27393,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
27393,
25,
9398,
489,
8690,
23850,
13,
383,
27393,
1321,
284,
779,
284,
4296,
674,
198,
220,
220,
220,
220,
220,
220,
220,
3498,
10809,
9171,
10466,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
77,
62,
282,
912,
62,
1525,
62,
5235,
8690,
7,
13655,
2599,
198,
220,
220,
220,
220,
220,
37227,
35561,
262,
1271,
286,
7310,
5988,
28654,
829,
351,
1729,
12,
22570,
2429,
8690,
526,
15931,
198,
220,
220,
220,
220,
220,
1441,
18896,
15090,
70,
329,
308,
287,
308,
83,
611,
308,
1875,
657,
30072,
628,
220,
220,
220,
825,
4808,
271,
62,
26452,
62,
5420,
7,
13655,
2599,
198,
220,
220,
220,
220,
220,
37227,
8491,
477,
2429,
13567,
287,
308,
83,
262,
4941,
28654,
829,
357,
72,
13,
68,
1539,
6624,
657,
8,
1701,
15931,
198,
220,
220,
220,
220,
220,
1441,
477,
7,
70,
6624,
657,
329,
308,
287,
308,
83,
8,
628,
220,
220,
220,
825,
4808,
10134,
62,
2501,
62,
5235,
13567,
7,
13655,
2599,
198,
220,
220,
220,
220,
220,
37227,
3792,
597,
2429,
8690,
287,
308,
83,
257,
1729,
12,
5420,
45160,
657,
8,
2429,
8690,
1701,
15931,
198,
220,
220,
220,
220,
220,
1441,
597,
7,
70,
1875,
657,
329,
308,
287,
308,
83,
8,
628,
220,
220,
220,
1303,
40806,
378,
625,
262,
3872,
15304,
290,
663,
3917,
2656,
2429,
13567,
198,
220,
220,
220,
1303,
357,
25591,
2810,
416,
262,
5128,
569,
22495,
8,
290,
262,
8686,
2429,
13567,
357,
72,
13,
68,
1539,
262,
198,
220,
220,
220,
1303,
2429,
13567,
8686,
284,
3872,
284,
787,
5871,
290,
3872,
2872,
42519,
13567,
8,
198,
220,
220,
220,
1303,
290,
24061,
257,
1178,
18663,
3815,
13,
198,
220,
220,
220,
329,
3872,
11,
2656,
62,
13655,
11,
8686,
62,
13655,
287,
19974,
7,
198,
220,
220,
220,
220,
220,
220,
220,
27393,
13,
35310,
82,
11,
27393,
13,
14986,
62,
35310,
62,
5235,
13567,
11,
198,
220,
220,
220,
220,
220,
220,
220,
27393,
13,
35310,
62,
5235,
13567,
2599,
198,
220,
220,
220,
220,
220,
299,
62,
282,
912,
62,
14986,
796,
4808,
77,
62,
282,
912,
62,
1525,
62,
5235,
8690,
7,
14986,
62,
13655,
8,
628,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
35310,
62,
25641,
415,
62,
49315,
15853,
352,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
35310,
62,
25641,
415,
62,
6765,
829,
15853,
299,
62,
282,
912,
62,
14986,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
7942,
62,
24561,
62,
49315,
15853,
4808,
10134,
62,
2501,
62,
5235,
13567,
7,
562,
3916,
62,
13655,
8,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
9562,
62,
31591,
62,
49315,
15853,
4808,
271,
62,
26452,
62,
5420,
7,
562,
3916,
62,
13655,
8,
628,
220,
220,
220,
220,
220,
1303,
1002,
356,
423,
517,
621,
530,
5988,
45907,
287,
262,
2656,
2429,
13567,
290,
262,
198,
220,
220,
220,
220,
220,
1303,
8686,
2429,
13567,
20135,
517,
393,
517,
389,
4814,
788,
356,
1053,
1392,
257,
198,
220,
220,
220,
220,
220,
1303,
5021,
12,
6765,
677,
3872,
15304,
351,
617,
4814,
28654,
829,
13,
198,
220,
220,
220,
220,
220,
611,
357,
77,
62,
282,
912,
62,
14986,
1875,
352,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
77,
62,
282,
912,
62,
1525,
62,
5235,
8690,
7,
562,
3916,
62,
13655,
8,
1279,
299,
62,
282,
912,
62,
14986,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
35310,
62,
16680,
498,
293,
677,
82,
62,
49315,
62,
4480,
62,
3927,
276,
62,
6765,
829,
15853,
352,
628,
220,
220,
220,
220,
220,
1303,
40806,
378,
625,
262,
2656,
290,
8686,
2429,
13567,
329,
262,
3872,
17670,
198,
220,
220,
220,
220,
220,
1303,
290,
954,
510,
262,
1271,
286,
2081,
3967,
28654,
829,
357,
72,
13,
68,
13,
2656,
290,
198,
220,
220,
220,
220,
220,
1303,
8686,
2429,
13567,
389,
1729,
12,
5420,
8,
290,
3991,
4633,
28654,
829,
357,
72,
13,
68,
1539,
198,
220,
220,
220,
220,
220,
1303,
2656,
318,
1729,
12,
5420,
475,
8686,
318,
1006,
737,
198,
220,
220,
220,
220,
220,
329,
267,
70,
11,
556,
287,
19974,
7,
14986,
62,
13655,
11,
8686,
62,
13655,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
267,
70,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
556,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
7942,
62,
24561,
62,
6765,
829,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
556,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
9562,
62,
31591,
62,
6765,
829,
15853,
352,
628,
220,
220,
220,
1303,
13610,
257,
8633,
422,
262,
923,
286,
3872,
284,
262,
3872,
15304,
2346,
290,
663,
198,
220,
220,
220,
1303,
8686,
2429,
13567,
13,
770,
318,
2622,
284,
24061,
2524,
2872,
9853,
2174,
13,
198,
220,
220,
220,
3872,
62,
1525,
62,
1930,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
3872,
13,
9688,
25,
357,
35310,
11,
308,
83,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3872,
11,
308,
83,
287,
19974,
7,
18242,
278,
13,
35310,
82,
11,
27393,
13,
35310,
62,
5235,
13567,
8,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
1303,
40806,
378,
625,
262,
5871,
290,
511,
8686,
2429,
13567,
284,
24061,
198,
220,
220,
220,
1303,
262,
5637,
20731,
13,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
5740,
326,
428,
9853,
477,
5871,
11,
407,
655,
262,
3392,
287,
262,
6563,
198,
220,
220,
220,
1303,
7652,
286,
262,
19270,
13,
770,
2331,
588,
257,
6397,
717,
3164,
11,
475,
340,
198,
220,
220,
220,
1303,
743,
307,
3306,
284,
4239,
6731,
284,
691,
883,
32997,
262,
198,
220,
220,
220,
1303,
6563,
7652,
13,
198,
220,
220,
220,
329,
4540,
11,
2429,
8690,
287,
19974,
7,
18242,
278,
13,
46188,
37051,
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,
27393,
13,
46188,
20540,
62,
5235,
13567,
2599,
198,
220,
220,
220,
220,
220,
1303,
1002,
4540,
2125,
470,
6563,
11,
751,
340,
284,
262,
1729,
62,
10414,
738,
954,
290,
198,
220,
220,
220,
220,
220,
1303,
2555,
355,
262,
584,
20731,
389,
691,
29231,
625,
6563,
198,
220,
220,
220,
220,
220,
1303,
5871,
13,
198,
220,
220,
220,
220,
220,
611,
407,
2116,
13557,
10414,
738,
62,
2301,
507,
13,
25641,
415,
62,
2502,
75,
1686,
7,
46188,
20540,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
13159,
62,
10414,
738,
62,
46188,
20540,
62,
25641,
415,
62,
49315,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
299,
62,
2501,
62,
6765,
829,
796,
18896,
7,
46188,
20540,
13,
33645,
378,
62,
65,
1386,
8,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
46188,
20540,
62,
25641,
415,
62,
49315,
15853,
352,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
46188,
20540,
62,
25641,
415,
62,
6765,
829,
15853,
299,
62,
2501,
62,
6765,
829,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
9562,
62,
24561,
62,
49315,
15853,
4808,
271,
62,
26452,
62,
5420,
7,
5235,
8690,
8,
198,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
9562,
62,
24561,
62,
6765,
829,
15853,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
2501,
62,
6765,
829,
532,
4808,
77,
62,
282,
912,
62,
1525,
62,
5235,
8690,
7,
5235,
8690,
4008,
628,
220,
220,
220,
220,
220,
1303,
5765,
262,
3872,
62,
1525,
62,
1930,
8633,
284,
5004,
543,
5871,
3051,
379,
262,
198,
220,
220,
220,
220,
220,
1303,
976,
2292,
355,
257,
3872,
15304,
13,
1002,
612,
318,
530,
11,
5552,
340,
290,
663,
198,
220,
220,
220,
220,
220,
1303,
2429,
13567,
523,
356,
460,
24061,
20731,
319,
2748,
2292,
11,
45907,
11,
2429,
8690,
198,
220,
220,
220,
220,
220,
1303,
7466,
13,
1002,
407,
11,
4296,
262,
1271,
286,
16087,
529,
7466,
611,
674,
4540,
198,
220,
220,
220,
220,
220,
1303,
318,
1729,
12,
35790,
2346,
13,
198,
220,
220,
220,
220,
220,
3872,
11,
8686,
62,
13655,
796,
3872,
62,
1525,
62,
1930,
13,
1136,
7,
46188,
20540,
13,
9688,
11,
357,
14202,
11,
6045,
4008,
198,
220,
220,
220,
220,
220,
611,
3872,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
1069,
529,
62,
9150,
62,
6759,
2052,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
23243,
7,
46188,
20540,
13,
33645,
378,
62,
65,
1386,
8,
6624,
23243,
7,
35310,
13,
33645,
378,
62,
65,
1386,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
1069,
529,
62,
9150,
62,
392,
62,
6765,
293,
62,
6759,
2052,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
23243,
7,
5235,
8690,
8,
6624,
23243,
7,
562,
3916,
62,
13655,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
1069,
529,
62,
9150,
62,
392,
62,
6765,
293,
62,
392,
62,
5235,
8690,
62,
6759,
2052,
15853,
352,
198,
220,
220,
220,
220,
220,
1288,
361,
4808,
10134,
62,
2501,
62,
5235,
13567,
7,
5235,
8690,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
4164,
10466,
13,
77,
62,
500,
87,
529,
62,
9150,
62,
6759,
2052,
15853,
352,
628,
198,
4871,
20984,
47371,
7,
7217,
64,
13,
818,
30871,
8134,
33634,
2599,
198,
220,
37227,
34934,
514,
284,
651,
12536,
422,
257,
39986,
4941,
16654,
526,
15931,
628,
220,
1303,
775,
836,
470,
765,
284,
5490,
546,
262,
34348,
356,
389,
1762,
319,
329,
2438,
198,
220,
1303,
16287,
11,
523,
356,
2251,
257,
554,
30871,
8134,
33634,
326,
468,
257,
2060,
34348,
3706,
198,
220,
1303,
4808,
35,
5883,
26708,
62,
3398,
33676,
62,
20608,
543,
3578,
514,
284,
2148,
257,
12536,
7,
9688,
11,
886,
8,
2163,
198,
220,
1303,
329,
11282,
3555,
286,
12536,
13,
198,
220,
4808,
35,
5883,
26708,
62,
3398,
33676,
62,
20608,
796,
705,
9,
6,
628,
198,
62,
34,
6981,
2389,
6158,
62,
44,
14175,
1137,
796,
705,
46188,
20540,
6,
198,
62,
5446,
24318,
62,
44,
14175,
1137,
796,
705,
35310,
6,
198,
62,
23907,
415,
2514,
13247,
796,
17268,
13,
13190,
83,
29291,
10786,
62,
23907,
415,
2514,
13247,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
9688,
3256,
705,
4906,
3256,
705,
25641,
415,
6,
12962,
628,
198,
4299,
4808,
40225,
62,
361,
62,
1662,
62,
82,
9741,
62,
273,
62,
1662,
62,
261,
62,
31642,
62,
28663,
418,
462,
7,
25641,
1187,
2599,
198,
220,
37227,
21762,
2696,
257,
11052,
12331,
611,
17670,
2125,
470,
23243,
319,
262,
976,
34348,
526,
15931,
198,
220,
611,
407,
15304,
62,
26791,
13,
25641,
1187,
62,
533,
62,
82,
9741,
7,
25641,
1187,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
23907,
1187,
1276,
307,
23243,
3256,
17670,
8,
198,
220,
329,
410,
287,
17670,
58,
16,
25,
5974,
198,
220,
220,
220,
611,
17670,
58,
15,
4083,
35790,
62,
3672,
14512,
410,
13,
35790,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23907,
1187,
357,
85,
16,
34758,
5512,
410,
17,
34758,
30072,
407,
319,
262,
976,
34348,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
13,
35790,
62,
3672,
11,
17670,
58,
15,
4083,
35790,
62,
3672,
4008,
628,
198,
4299,
1448,
62,
25641,
1187,
7,
46188,
37051,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24279,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
8094,
62,
7857,
28,
62,
22921,
62,
46846,
62,
33489,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
25512,
341,
28,
62,
22921,
62,
5188,
27082,
6234,
62,
54,
10554,
1268,
62,
53,
33604,
8643,
62,
46846,
2599,
198,
220,
37227,
26568,
896,
4540,
290,
3872,
17670,
656,
4833,
2628,
611,
3306,
13,
628,
220,
770,
2163,
2753,
287,
257,
1351,
286,
4540,
290,
3872,
17670,
290,
30778,
510,
198,
220,
883,
8341,
656,
2628,
326,
2461,
262,
5359,
286,
262,
3509,
62,
8094,
62,
7857,
198,
220,
290,
3509,
62,
25512,
341,
7159,
13,
770,
318,
3306,
780,
262,
27393,
11862,
198,
220,
318,
845,
5789,
355,
257,
2163,
286,
262,
1271,
286,
5128,
17670,
11,
523,
284,
3368,
198,
220,
13181,
19124,
356,
2270,
510,
674,
6196,
1588,
1351,
286,
4540,
290,
198,
220,
3872,
17670,
656,
4833,
2628,
357,
9806,
1271,
6856,
416,
3509,
62,
8094,
62,
7857,
8,
198,
220,
1912,
319,
257,
5415,
5253,
3142,
1022,
262,
11706,
17670,
1626,
262,
198,
220,
1448,
13,
628,
220,
383,
1459,
11862,
318,
257,
2829,
31828,
530,
26,
356,
6840,
20121,
262,
734,
198,
220,
15304,
8341,
1978,
11,
787,
2628,
25474,
813,
319,
326,
1351,
1566,
2035,
262,
198,
220,
5415,
1271,
286,
4847,
286,
257,
2176,
2099,
357,
72,
13,
68,
1539,
3509,
62,
8094,
62,
7857,
286,
362,
198,
220,
15565,
356,
460,
423,
510,
284,
734,
4540,
17670,
393,
3872,
17670,
1626,
257,
198,
220,
1448,
8,
393,
356,
8791,
257,
15304,
2252,
1497,
422,
262,
11706,
15304,
1626,
198,
220,
262,
1459,
1448,
621,
3142,
416,
3509,
62,
25512,
341,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
5871,
25,
1351,
58,
77,
14913,
385,
13,
1676,
1462,
13,
23907,
415,
4083,
317,
23243,
1351,
286,
4540,
198,
220,
220,
220,
220,
220,
17670,
319,
262,
976,
34348,
13,
198,
220,
220,
220,
24279,
25,
1351,
58,
77,
14913,
385,
13,
1676,
1462,
13,
23907,
415,
4083,
317,
23243,
1351,
286,
3872,
198,
220,
220,
220,
220,
220,
17670,
319,
262,
976,
34348,
13,
198,
220,
220,
220,
3509,
62,
8094,
62,
7857,
25,
493,
18189,
657,
13,
383,
5415,
1271,
286,
17670,
286,
257,
2176,
2099,
198,
220,
220,
220,
220,
220,
3142,
1626,
257,
1448,
13,
198,
220,
220,
220,
3509,
62,
25512,
341,
25,
493,
18189,
657,
13,
383,
5415,
5253,
11,
287,
1615,
538,
3468,
11,
3142,
198,
220,
220,
220,
220,
220,
1022,
262,
11706,
17670,
1626,
257,
1448,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
1351,
286,
32824,
17670,
287,
362,
12,
28047,
2374,
11,
884,
355,
25,
628,
220,
220,
220,
220,
220,
47527,
46188,
37051,
16,
11,
3872,
62,
25641,
1187,
16,
828,
2644,
60,
628,
220,
220,
220,
810,
1123,
46545,
4909,
262,
4540,
290,
3872,
17670,
329,
326,
1448,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
611,
597,
286,
262,
17311,
389,
6428,
12214,
13,
198,
220,
37227,
198,
220,
611,
3509,
62,
8094,
62,
7857,
1279,
657,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
9806,
62,
8094,
62,
7857,
34758,
92,
1276,
307,
18189,
657,
4458,
18982,
7,
9806,
62,
8094,
62,
7857,
4008,
198,
220,
611,
3509,
62,
25512,
341,
1279,
657,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
9806,
62,
25512,
341,
34758,
92,
1276,
307,
18189,
657,
4458,
18982,
7,
9806,
62,
25512,
341,
4008,
198,
220,
4808,
40225,
62,
361,
62,
1662,
62,
82,
9741,
62,
273,
62,
1662,
62,
261,
62,
31642,
62,
28663,
418,
462,
7,
46188,
37051,
8,
198,
220,
4808,
40225,
62,
361,
62,
1662,
62,
82,
9741,
62,
273,
62,
1662,
62,
261,
62,
31642,
62,
28663,
418,
462,
7,
35310,
82,
8,
628,
220,
825,
284,
62,
8094,
276,
62,
25641,
1187,
7,
25641,
1187,
11,
4540,
62,
4906,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
257,
38215,
44876,
284,
257,
4808,
23907,
415,
2514,
13247,
46545,
526,
15931,
198,
220,
220,
220,
1441,
685,
62,
23907,
415,
2514,
13247,
7,
85,
13,
9688,
11,
4540,
62,
4906,
11,
410,
8,
329,
410,
287,
17670,
60,
628,
220,
825,
4808,
1659,
62,
4906,
7,
8094,
11,
2672,
62,
4906,
2599,
198,
220,
220,
220,
37227,
17563,
82,
257,
1351,
286,
38215,
1237,
418,
422,
1351,
29795,
23907,
415,
2514,
13247,
60,
286,
2099,
526,
15931,
198,
220,
220,
220,
1441,
685,
70,
85,
13,
25641,
415,
329,
308,
85,
287,
1448,
611,
308,
85,
13,
4906,
6624,
2672,
62,
4906,
60,
628,
220,
825,
4808,
35312,
62,
8094,
276,
62,
25641,
1187,
7,
8094,
2599,
198,
220,
220,
220,
37227,
26568,
896,
257,
1351,
286,
4808,
23907,
415,
2514,
13247,
656,
4540,
290,
3872,
17670,
526,
15931,
198,
220,
220,
220,
1441,
4808,
1659,
62,
4906,
7,
8094,
11,
4808,
34,
6981,
2389,
6158,
62,
44,
14175,
1137,
828,
4808,
1659,
62,
4906,
7,
8094,
11,
4808,
5446,
24318,
62,
44,
14175,
1137,
8,
628,
220,
1303,
38240,
674,
8341,
286,
15304,
1237,
418,
656,
4808,
23907,
415,
2514,
13247,
12777,
2374,
11670,
198,
220,
1303,
351,
262,
24575,
80,
7824,
357,
82,
2096,
319,
12777,
2374,
828,
523,
356,
651,
257,
2060,
11629,
540,
286,
198,
220,
1303,
17670,
351,
7498,
3858,
290,
23243,
416,
923,
2292,
357,
11085,
5002,
286,
198,
220,
1303,
1123,
46545,
737,
198,
220,
1448,
540,
62,
25641,
1187,
796,
24575,
80,
13,
647,
469,
7,
198,
220,
220,
220,
220,
220,
284,
62,
8094,
276,
62,
25641,
1187,
7,
46188,
37051,
11,
4808,
34,
6981,
2389,
6158,
62,
44,
14175,
1137,
828,
198,
220,
220,
220,
220,
220,
284,
62,
8094,
276,
62,
25641,
1187,
7,
35310,
82,
11,
4808,
5446,
24318,
62,
44,
14175,
1137,
4008,
628,
220,
1303,
1514,
832,
503,
1448,
540,
62,
25641,
1187,
290,
6626,
606,
510,
656,
2628,
1864,
284,
198,
220,
1303,
262,
44010,
4808,
17256,
62,
259,
62,
25641,
415,
62,
8094,
13,
198,
220,
2628,
796,
17635,
198,
220,
1459,
62,
8094,
796,
17635,
198,
220,
329,
1448,
62,
25641,
415,
287,
1448,
540,
62,
25641,
1187,
25,
198,
220,
220,
220,
611,
4808,
17256,
62,
259,
62,
25641,
415,
62,
8094,
7,
14421,
62,
8094,
11,
1448,
62,
25641,
415,
2599,
198,
220,
220,
220,
220,
220,
1459,
62,
8094,
13,
33295,
7,
8094,
62,
25641,
415,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
2628,
13,
33295,
7,
14421,
62,
8094,
8,
198,
220,
220,
220,
220,
220,
1459,
62,
8094,
796,
685,
8094,
62,
25641,
415,
60,
198,
220,
611,
1459,
62,
8094,
25,
198,
220,
220,
220,
2628,
13,
33295,
7,
14421,
62,
8094,
8,
628,
220,
1303,
9461,
6626,
510,
1123,
1448,
656,
5871,
290,
24279,
13,
198,
220,
1441,
685,
62,
35312,
62,
8094,
276,
62,
25641,
1187,
7,
70,
8,
329,
308,
287,
2628,
60,
628,
198,
4299,
351,
62,
9562,
62,
31591,
62,
5235,
13567,
7,
13655,
2599,
198,
220,
37227,
35561,
257,
900,
286,
2429,
13567,
326,
3407,
3991,
42510,
13,
628,
220,
770,
2163,
2753,
257,
10017,
2429,
8690,
329,
257,
38215,
11,
884,
355,
357,
15,
11,
352,
828,
290,
198,
220,
5860,
257,
900,
286,
2429,
13567,
326,
3407,
308,
83,
355,
880,
355,
477,
1744,
2429,
13567,
198,
220,
6414,
351,
617,
286,
262,
28654,
829,
287,
308,
83,
852,
6825,
13,
1114,
1672,
11,
994,
389,
198,
220,
257,
1178,
23862,
329,
1037,
1833,
644,
428,
1724,
25,
628,
220,
220,
220,
5128,
2429,
8690,
357,
13655,
8,
5218,
4504,
900,
286,
2429,
13567,
198,
220,
220,
220,
20368,
1783,
628,
220,
220,
220,
1303,
317,
3488,
12,
5420,
2429,
8690,
1595,
470,
423,
597,
28654,
829,
284,
2051,
13,
198,
220,
220,
220,
357,
15,
11,
657,
8,
220,
5218,
1391,
7,
15,
11,
657,
38165,
628,
220,
220,
220,
1303,
24213,
2051,
262,
352,
45907,
11,
393,
407,
13,
198,
220,
220,
220,
357,
15,
11,
352,
8,
220,
5218,
1391,
7,
15,
11,
657,
828,
357,
15,
11,
352,
38165,
628,
220,
220,
220,
1303,
775,
714,
2051,
530,
11,
393,
1111,
286,
262,
352,
28654,
829,
13,
198,
220,
220,
220,
357,
16,
11,
352,
8,
220,
5218,
1391,
7,
15,
11,
657,
828,
357,
15,
11,
352,
828,
357,
16,
11,
352,
38165,
628,
220,
220,
220,
1303,
15237,
12,
6765,
677,
82,
389,
517,
3716,
11,
287,
326,
356,
714,
2051,
2035,
262,
352,
393,
262,
198,
220,
220,
220,
1303,
362,
45907,
11,
393,
1111,
13,
198,
220,
220,
220,
357,
16,
11,
362,
8,
220,
5218,
1391,
7,
15,
11,
657,
828,
357,
15,
11,
352,
828,
357,
15,
11,
362,
828,
357,
16,
11,
362,
38165,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
308,
83,
25,
11629,
540,
58,
600,
5974,
317,
2429,
8690,
329,
257,
38215,
11,
884,
355,
685,
15,
11,
352,
60,
393,
685,
16,
11,
352,
4083,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
900,
286,
12777,
2374,
7268,
2566,
489,
1868,
2429,
13567,
13,
198,
220,
37227,
198,
220,
435,
912,
796,
900,
7,
13655,
8,
532,
1391,
15,
92,
198,
220,
1441,
1391,
7,
15,
11,
657,
828,
46545,
7,
13655,
38165,
930,
1391,
7,
15,
11,
5988,
8,
329,
5988,
287,
435,
912,
92,
628,
198,
4871,
38791,
23303,
489,
8690,
7,
16922,
2599,
198,
220,
37227,
5497,
16856,
326,
281,
5340,
42519,
8690,
8398,
468,
587,
6515,
526,
15931,
198,
220,
1208,
628,
198,
4299,
27056,
378,
62,
439,
62,
79,
4733,
62,
3099,
489,
13567,
7,
25641,
1187,
11,
1006,
11,
27056,
341,
62,
4906,
2599,
198,
220,
37227,
56,
1164,
82,
477,
1744,
42519,
8690,
14,
5235,
8690,
17790,
329,
17670,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17670,
25,
1351,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
4083,
317,
1351,
286,
4540,
17670,
11,
287,
198,
220,
220,
220,
220,
220,
20435,
12,
82,
9741,
1502,
11,
477,
319,
262,
976,
34348,
13,
198,
220,
220,
220,
1006,
25,
20984,
47371,
13,
16718,
284,
651,
4941,
12536,
329,
17670,
13,
12039,
3002,
198,
220,
220,
220,
220,
220,
379,
1551,
262,
11506,
286,
262,
17670,
13,
198,
220,
220,
220,
27056,
341,
62,
4906,
25,
2039,
6975,
341,
6030,
33829,
1988,
13,
1867,
1611,
286,
27056,
341,
466,
356,
198,
220,
220,
220,
220,
220,
765,
284,
466,
30,
1680,
307,
2035,
327,
6981,
2389,
29462,
393,
7579,
24318,
13,
628,
220,
575,
1164,
82,
25,
198,
220,
220,
220,
362,
12,
83,
29291,
286,
42519,
13567,
290,
2429,
13567,
13,
9398,
489,
13567,
318,
257,
900,
286,
2035,
530,
393,
198,
220,
220,
220,
734,
13042,
11,
810,
1123,
4731,
318,
257,
42519,
8690,
357,
72,
13,
68,
1539,
257,
2168,
286,
12536,
8,
198,
220,
220,
220,
7560,
416,
262,
2429,
13567,
8686,
284,
1123,
15304,
13,
2429,
13567,
318,
257,
1351,
286,
198,
220,
220,
220,
2429,
8690,
12777,
2374,
11,
287,
262,
976,
1502,
355,
17670,
11,
12739,
262,
2429,
8690,
198,
220,
220,
220,
16237,
329,
1123,
15304,
13,
2312,
2429,
13567,
389,
41716,
11,
523,
47527,
15,
11,
352,
828,
357,
15,
11,
352,
15437,
198,
220,
220,
220,
318,
407,
262,
976,
355,
47527,
15,
11,
352,
828,
357,
16,
11,
657,
25295,
198,
220,
37227,
628,
220,
825,
2251,
62,
3099,
489,
13567,
62,
8344,
30753,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
11,
938,
62,
1930,
2599,
198,
220,
220,
220,
37227,
6690,
30753,
4639,
284,
27056,
378,
477,
42519,
13567,
526,
15931,
198,
220,
220,
220,
611,
407,
17670,
62,
392,
62,
5235,
13567,
25,
198,
220,
220,
220,
220,
220,
7800,
1391,
5420,
13,
65,
1386,
7,
12957,
62,
1930,
11,
1006,
13,
437,
38165,
611,
938,
62,
1930,
14512,
1006,
13,
437,
2073,
1391,
7061,
92,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
1448,
11,
5637,
796,
6626,
62,
34750,
62,
25641,
1187,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
8,
198,
220,
220,
220,
220,
220,
1448,
62,
3099,
489,
13567,
11,
1306,
62,
1930,
796,
41716,
62,
5235,
13567,
62,
1462,
62,
3099,
489,
13567,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
11,
938,
62,
1930,
11,
1006,
8,
198,
220,
220,
220,
220,
220,
21231,
62,
3099,
489,
13567,
796,
1351,
7,
439,
62,
10989,
489,
1868,
62,
3099,
489,
13567,
7,
8094,
11,
1448,
62,
3099,
489,
13567,
4008,
628,
220,
220,
220,
220,
220,
611,
407,
21231,
62,
3099,
489,
13567,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
21231,
62,
3099,
489,
13567,
460,
307,
6565,
618,
1448,
4909,
27294,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17670,
1642,
340,
5340,
284,
5678,
597,
42519,
13567,
329,
1448,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
1672,
11,
611,
1448,
318,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
15304,
7,
9688,
28,
21,
11,
28654,
829,
28,
7203,
32,
1404,
1600,
366,
32,
12340,
2429,
8690,
16193,
15,
11,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
15304,
7,
9688,
28,
22,
11,
28654,
829,
28,
7203,
1404,
1600,
366,
51,
12340,
2429,
8690,
16193,
16,
11,
352,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
21231,
62,
3099,
489,
13567,
481,
307,
6565,
780,
612,
338,
645,
835,
284,
5678,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
42519,
8690,
810,
262,
15304,
31,
21,
468,
257,
352,
2429,
8690,
1201,
340,
318,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
34817,
1497,
12536,
326,
21721,
262,
15304,
31,
22,
543,
468,
257,
2429,
8690,
286,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
357,
16,
11,
352,
828,
3616,
340,
1635,
10134,
9,
284,
307,
1944,
287,
617,
42519,
8690,
13,
554,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3074,
356,
5298,
257,
38791,
23303,
489,
8690,
6631,
11,
543,
318,
4978,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
262,
12076,
9052,
11,
5086,
514,
284,
12274,
503,
286,
262,
2989,
46199,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
38791,
23303,
489,
8690,
628,
220,
220,
220,
220,
220,
329,
42519,
13567,
287,
2251,
62,
3099,
489,
13567,
62,
8344,
30753,
7,
2787,
1397,
11,
1306,
62,
1930,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1255,
287,
9117,
62,
3099,
489,
13567,
7,
40290,
62,
3099,
489,
13567,
11,
42519,
13567,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
1255,
628,
220,
2429,
8690,
62,
25811,
796,
2429,
8690,
62,
25811,
62,
1640,
62,
25641,
1187,
7,
25641,
1187,
11,
27056,
341,
62,
4906,
8,
198,
220,
329,
2429,
13567,
287,
340,
861,
10141,
13,
11167,
46491,
5235,
8690,
62,
25811,
2599,
198,
220,
220,
220,
20312,
796,
685,
23907,
415,
1870,
13746,
13567,
7,
85,
11,
308,
8,
329,
410,
11,
308,
287,
19974,
7,
25641,
1187,
11,
2429,
13567,
15437,
198,
220,
220,
220,
329,
42519,
13567,
287,
2251,
62,
3099,
489,
13567,
7,
8957,
1202,
11,
1006,
13,
9688,
2599,
198,
220,
220,
220,
220,
220,
7800,
42519,
13567,
11,
2429,
13567,
628,
198,
4299,
477,
62,
10989,
489,
1868,
62,
3099,
489,
13567,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
11,
2429,
13567,
17,
3099,
489,
8690,
2599,
198,
220,
37227,
35561,
477,
2566,
489,
1868,
42519,
13567,
329,
17670,
1813,
511,
2429,
13567,
526,
15931,
628,
220,
2429,
13567,
796,
685,
45119,
13,
5235,
13567,
329,
410,
70,
287,
17670,
62,
392,
62,
5235,
13567,
60,
198,
220,
7560,
62,
282,
1493,
796,
900,
3419,
198,
220,
329,
42519,
1868,
62,
5235,
8690,
11,
42519,
8690,
287,
2429,
13567,
17,
3099,
489,
8690,
13,
2676,
23814,
33529,
198,
220,
220,
220,
16829,
796,
16829,
62,
3099,
489,
1868,
62,
5235,
8690,
7,
3099,
489,
1868,
62,
5235,
8690,
11,
2429,
13567,
8,
198,
220,
220,
220,
16829,
62,
3099,
489,
8690,
796,
2429,
13567,
17,
3099,
489,
8690,
13,
1136,
7,
785,
26908,
11,
6045,
8,
198,
220,
220,
220,
611,
16829,
62,
3099,
489,
8690,
318,
407,
6045,
290,
16829,
407,
287,
7560,
62,
282,
1493,
25,
198,
220,
220,
220,
220,
220,
7560,
62,
282,
1493,
13,
2860,
7,
3099,
489,
1868,
62,
5235,
8690,
8,
198,
220,
220,
220,
220,
220,
7800,
1391,
3099,
489,
8690,
11,
16829,
62,
3099,
489,
8690,
92,
628,
198,
4871,
2039,
6975,
341,
6030,
7,
44709,
13,
4834,
388,
2599,
198,
220,
37227,
4834,
6975,
341,
2099,
12739,
703,
356,
815,
7301,
2429,
8690,
25412,
13,
628,
220,
4091,
2429,
8690,
62,
25811,
62,
1640,
62,
25641,
1187,
329,
517,
1321,
13,
198,
220,
37227,
198,
220,
1303,
770,
27056,
341,
11073,
477,
1744,
2429,
8690,
17790,
329,
257,
15304,
13,
198,
220,
327,
6981,
2389,
29462,
796,
352,
198,
220,
1303,
770,
27056,
341,
2099,
481,
4439,
477,
17790,
286,
262,
2810,
2429,
8690,
198,
220,
1303,
329,
262,
15304,
351,
2429,
13567,
326,
1249,
329,
530,
393,
517,
286,
262,
198,
220,
1303,
1729,
12,
35790,
2429,
13567,
284,
307,
6825,
13,
198,
220,
7579,
24318,
796,
362,
198,
220,
1303,
770,
27056,
341,
2099,
481,
691,
4439,
257,
2060,
357,
15,
11,
657,
8,
2429,
8690,
3038,
329,
198,
220,
1303,
1123,
15304,
13,
198,
220,
22224,
62,
39,
2662,
62,
31688,
796,
513,
628,
198,
4299,
2429,
8690,
62,
25811,
62,
1640,
62,
25641,
1187,
7,
25641,
1187,
11,
27056,
341,
62,
4906,
2599,
198,
220,
37227,
35561,
257,
1351,
286,
5621,
286,
1744,
2429,
13567,
329,
1123,
15304,
287,
17670,
13,
628,
220,
770,
2163,
2753,
257,
1351,
286,
17670,
290,
27056,
341,
62,
4906,
290,
11073,
257,
198,
220,
1351,
286,
1744,
2429,
13567,
329,
1123,
15304,
287,
1502,
13,
628,
220,
1002,
27056,
341,
62,
4906,
318,
22224,
62,
39,
2662,
62,
31688,
11,
788,
356,
1441,
257,
2060,
1122,
900,
329,
1123,
198,
220,
15304,
7268,
691,
262,
3488,
12,
5420,
2429,
8690,
357,
15,
11,
657,
737,
1002,
27056,
341,
62,
4906,
318,
198,
220,
7579,
24318,
11,
788,
1123,
15304,
1276,
423,
281,
3917,
2429,
8690,
2214,
3815,
11,
910,
198,
220,
357,
32,
11,
347,
828,
290,
356,
1441,
262,
900,
2429,
8690,
355,
880,
355,
477,
1744,
3991,
4633,
198,
220,
2429,
13567,
13,
554,
674,
1672,
11,
428,
1724,
356,
1549,
1441,
1391,
7,
32,
11,
347,
828,
357,
15,
11,
317,
828,
357,
15,
11,
347,
828,
198,
220,
357,
15,
11,
657,
38165,
355,
356,
714,
2051,
2035,
262,
317,
11,
262,
347,
11,
393,
1111,
28654,
829,
13,
1002,
262,
198,
220,
27056,
341,
62,
4906,
318,
327,
6981,
2389,
29462,
11,
356,
836,
470,
2421,
262,
38215,
1237,
418,
284,
423,
198,
220,
4683,
2429,
8690,
2214,
3815,
290,
2427,
27056,
378,
477,
1744,
555,
746,
839,
198,
220,
2429,
13567,
329,
1123,
15304,
1813,
663,
5559,
28654,
829,
286,
1123,
15304,
13,
1114,
198,
220,
1672,
11,
611,
356,
423,
257,
38215,
351,
28654,
829,
796,
705,
32,
6,
290,
705,
34,
3256,
356,
561,
1441,
262,
198,
220,
1115,
1744,
2566,
489,
1868,
2429,
13567,
1391,
7,
15,
11,
657,
828,
357,
15,
11,
352,
828,
357,
16,
11,
352,
8,
27422,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17670,
25,
7343,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
4083,
317,
1351,
286,
38215,
1237,
418,
284,
2148,
198,
220,
220,
220,
220,
220,
2429,
8690,
3689,
329,
13,
2773,
27056,
341,
3858,
743,
2421,
262,
1237,
418,
284,
198,
220,
220,
220,
220,
220,
423,
4683,
2429,
13567,
287,
511,
3848,
21737,
850,
3245,
13,
198,
220,
220,
220,
27056,
341,
62,
4906,
25,
2039,
6975,
341,
6030,
13,
383,
1611,
286,
2429,
13567,
356,
765,
284,
7301,
198,
220,
220,
220,
220,
220,
329,
1123,
15304,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
1351,
286,
5621,
351,
262,
976,
4129,
290,
366,
2875,
1,
355,
17670,
13,
5501,
900,
198,
220,
220,
220,
4909,
530,
393,
517,
2566,
489,
1868,
2429,
8690,
12777,
2374,
685,
68,
13,
70,
1539,
357,
15,
11,
352,
15437,
326,
198,
220,
220,
220,
21329,
2380,
262,
1744,
2429,
13567,
356,
761,
284,
7301,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
611,
27056,
341,
62,
4906,
2125,
470,
530,
286,
262,
4938,
3689,
13,
198,
220,
37227,
198,
220,
611,
27056,
341,
62,
4906,
6624,
2039,
6975,
341,
6030,
13,
5446,
24318,
25,
198,
220,
220,
220,
1441,
685,
198,
220,
220,
220,
220,
220,
220,
220,
351,
62,
9562,
62,
31591,
62,
5235,
13567,
7,
87,
8,
329,
2124,
287,
4808,
25641,
415,
62,
5235,
13567,
7,
25641,
1187,
8,
198,
220,
220,
220,
2361,
198,
220,
1288,
361,
27056,
341,
62,
4906,
6624,
2039,
6975,
341,
6030,
13,
34,
6981,
2389,
29462,
25,
198,
220,
220,
220,
1441,
685,
90,
7,
72,
11,
474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
474,
11,
4808,
11,
4808,
287,
15304,
62,
26791,
13,
5235,
8690,
62,
34555,
62,
259,
62,
2339,
11935,
82,
7,
85,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
410,
287,
17670,
60,
198,
220,
1288,
361,
27056,
341,
62,
4906,
6624,
2039,
6975,
341,
6030,
13,
1340,
11319,
62,
39,
2662,
62,
31688,
25,
198,
220,
220,
220,
1441,
685,
90,
7,
15,
11,
657,
38165,
60,
1635,
18896,
7,
25641,
1187,
8,
198,
220,
2073,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
52,
42072,
2039,
6975,
341,
6030,
3256,
27056,
341,
62,
4906,
8,
628,
198,
4299,
6626,
62,
34750,
62,
25641,
1187,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
2599,
198,
220,
37227,
26568,
896,
17670,
62,
392,
62,
5235,
13567,
656,
281,
32997,
1448,
290,
5637,
526,
15931,
198,
220,
611,
407,
17670,
62,
392,
62,
5235,
13567,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
3109,
7254,
379,
1551,
530,
1988,
287,
17670,
62,
392,
62,
5235,
13567,
11537,
628,
220,
12893,
1686,
796,
685,
25641,
1187,
62,
392,
62,
5235,
13567,
58,
15,
11907,
198,
220,
329,
1312,
287,
2837,
7,
16,
11,
18896,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
8,
2599,
198,
220,
220,
220,
410,
12397,
796,
17670,
62,
392,
62,
5235,
13567,
58,
72,
4083,
25641,
415,
198,
220,
220,
220,
611,
597,
7,
25641,
415,
62,
26791,
13,
25641,
1187,
62,
2502,
37796,
7,
45119,
13,
25641,
415,
11,
410,
12397,
8,
329,
410,
70,
287,
12893,
1686,
2599,
198,
220,
220,
220,
220,
220,
12893,
1686,
13,
33295,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
58,
72,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
1441,
12893,
1686,
11,
17670,
62,
392,
62,
5235,
13567,
58,
72,
47715,
198,
220,
1441,
12893,
1686,
11,
17635,
628,
198,
4299,
9117,
62,
3099,
489,
13567,
7,
40290,
62,
3099,
489,
13567,
62,
4868,
11,
42519,
13567,
2599,
198,
220,
37227,
56,
1164,
82,
477,
2566,
489,
1868,
17790,
286,
21231,
62,
3099,
489,
13567,
62,
4868,
2124,
42519,
13567,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
21231,
62,
3099,
489,
13567,
62,
4868,
25,
1351,
58,
2617,
58,
8841,
60,
5974,
21231,
62,
3099,
489,
13567,
62,
4868,
4909,
257,
198,
220,
220,
220,
220,
220,
1351,
286,
900,
58,
8841,
4357,
543,
389,
655,
588,
42519,
13567,
357,
72,
13,
68,
1539,
4909,
352,
393,
362,
198,
220,
220,
220,
220,
220,
13042,
828,
326,
21329,
2380,
477,
1744,
21231,
274,
286,
42519,
13567,
13,
198,
220,
220,
220,
42519,
13567,
25,
900,
58,
8841,
4083,
317,
900,
7268,
352,
393,
362,
42519,
8690,
13042,
13,
1406,
340,
198,
220,
220,
220,
220,
220,
3073,
588,
1391,
71,
92,
393,
1391,
71,
16,
11,
289,
17,
27422,
628,
220,
575,
1164,
82,
25,
198,
220,
220,
220,
317,
2168,
286,
900,
58,
8841,
4357,
1123,
7268,
352,
393,
362,
42519,
8690,
13042,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
611,
597,
286,
262,
7159,
389,
12515,
13,
198,
220,
37227,
198,
220,
611,
407,
21231,
62,
3099,
489,
13567,
62,
4868,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
40290,
62,
3099,
489,
13567,
62,
4868,
2314,
307,
6565,
11537,
198,
220,
611,
18896,
7,
3099,
489,
13567,
8,
407,
287,
1391,
16,
11,
362,
38362,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
3099,
489,
13567,
1276,
423,
3446,
352,
393,
362,
4847,
3256,
42519,
13567,
8,
628,
220,
329,
21231,
62,
3099,
489,
13567,
287,
21231,
62,
3099,
489,
13567,
62,
4868,
25,
198,
220,
220,
220,
611,
18896,
7,
40290,
62,
3099,
489,
13567,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
277,
11,
796,
21231,
62,
3099,
489,
13567,
198,
220,
220,
220,
220,
220,
7800,
1391,
69,
1343,
289,
329,
289,
287,
42519,
13567,
92,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
277,
16,
11,
277,
17,
796,
21231,
62,
3099,
489,
13567,
198,
220,
220,
220,
220,
220,
611,
18896,
7,
3099,
489,
13567,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
289,
11,
796,
42519,
13567,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
1391,
69,
16,
1343,
289,
11,
277,
17,
1343,
289,
92,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
289,
16,
11,
289,
17,
796,
42519,
13567,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
1391,
69,
16,
1343,
289,
16,
11,
277,
17,
1343,
289,
17,
92,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
1391,
69,
16,
1343,
289,
17,
11,
277,
17,
1343,
289,
16,
92,
628,
198,
4299,
41716,
62,
5235,
13567,
62,
1462,
62,
3099,
489,
13567,
7,
25641,
1187,
62,
392,
62,
5235,
13567,
11,
923,
11,
1006,
2599,
198,
220,
37227,
35561,
257,
3975,
422,
41716,
2429,
13567,
5218,
42519,
8690,
16311,
13,
628,
220,
770,
2163,
8075,
257,
3975,
422,
477,
1744,
42519,
1868,
2429,
13567,
286,
262,
198,
220,
2429,
13567,
287,
17670,
62,
392,
62,
5235,
13567,
284,
511,
11188,
42519,
8690,
16311,
198,
220,
17142,
416,
262,
17670,
11,
1006,
11,
923,
11,
290,
511,
2429,
13567,
13,
770,
3975,
460,
307,
973,
198,
220,
284,
18306,
804,
510,
262,
42519,
8690,
8379,
329,
597,
42519,
1868,
2429,
8690,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17670,
62,
392,
62,
5235,
13567,
25,
1351,
58,
23907,
415,
1870,
13746,
13567,
4083,
383,
17670,
290,
198,
220,
220,
220,
220,
220,
3917,
2429,
13567,
284,
779,
284,
1382,
262,
22155,
13,
198,
220,
220,
220,
923,
25,
493,
18189,
657,
13,
383,
2292,
319,
262,
19270,
284,
923,
30580,
674,
198,
220,
220,
220,
220,
220,
42519,
13567,
379,
13,
198,
220,
220,
220,
1006,
25,
20984,
47371,
13,
9515,
7268,
262,
4941,
19270,
12536,
356,
779,
284,
198,
220,
220,
220,
220,
220,
5678,
674,
42519,
13567,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
362,
12,
83,
29291,
13,
383,
717,
5002,
318,
257,
22155,
58,
83,
29291,
11,
4731,
4357,
810,
1123,
1994,
198,
220,
220,
220,
318,
257,
41716,
42519,
1868,
2429,
8690,
290,
663,
1988,
318,
262,
42519,
8690,
8379,
17142,
198,
220,
220,
220,
416,
326,
2429,
8690,
1813,
262,
17670,
290,
262,
4941,
19270,
13,
383,
1218,
198,
220,
220,
220,
2292,
318,
262,
7464,
2292,
286,
262,
42519,
8690,
319,
262,
4941,
19270,
13,
198,
220,
37227,
198,
220,
2429,
13567,
62,
1462,
62,
3099,
489,
13567,
796,
23884,
198,
220,
2429,
13567,
796,
685,
45119,
13,
5235,
13567,
329,
410,
70,
287,
17670,
62,
392,
62,
5235,
13567,
60,
198,
220,
17670,
796,
685,
45119,
13,
25641,
415,
329,
410,
70,
287,
17670,
62,
392,
62,
5235,
13567,
60,
198,
220,
477,
62,
3099,
489,
1868,
62,
5235,
13567,
796,
23243,
7,
2617,
7,
270,
861,
10141,
13,
11167,
46491,
5235,
13567,
22305,
198,
220,
886,
796,
3509,
7,
85,
13,
437,
329,
410,
287,
17670,
8,
198,
220,
329,
41716,
287,
477,
62,
3099,
489,
1868,
62,
5235,
13567,
25,
198,
220,
220,
220,
42519,
8690,
796,
1382,
62,
3099,
489,
8690,
7,
25641,
1187,
11,
41716,
11,
1006,
11,
923,
11,
886,
8,
198,
220,
220,
220,
611,
42519,
8690,
25,
198,
220,
220,
220,
220,
220,
2429,
13567,
62,
1462,
62,
3099,
489,
13567,
58,
746,
839,
60,
796,
42519,
8690,
198,
220,
1441,
2429,
13567,
62,
1462,
62,
3099,
489,
13567,
11,
886,
628,
198,
4299,
1382,
62,
3099,
489,
8690,
7,
25641,
1187,
11,
45907,
62,
521,
1063,
11,
1006,
11,
1006,
62,
9688,
11,
1006,
62,
437,
2599,
198,
220,
37227,
15580,
82,
262,
42519,
8690,
4731,
422,
17670,
290,
663,
41716,
308,
710,
13567,
13,
628,
220,
770,
2163,
2753,
257,
1351,
286,
17670,
290,
3917,
41716,
2429,
13567,
290,
198,
220,
34175,
262,
42519,
8690,
8379,
17142,
416,
17670,
290,
663,
2429,
13567,
13,
1114,
198,
220,
1672,
11,
11691,
356,
423,
734,
17670,
25,
628,
220,
220,
220,
1006,
25,
327,
4760,
34,
810,
262,
717,
2779,
357,
34,
8,
318,
379,
2292,
838,
13,
198,
220,
220,
220,
442,
81,
1238,
25,
940,
317,
14804,
34,
198,
220,
220,
220,
442,
81,
1238,
25,
1157,
402,
14804,
51,
198,
220,
220,
220,
45907,
62,
521,
1063,
25,
685,
15,
11,
352,
60,
628,
220,
775,
561,
3328,
7159,
994,
286,
257,
1351,
286,
734,
17670,
290,
257,
1351,
286,
262,
198,
220,
45907,
62,
521,
1063,
685,
15,
11,
352,
4083,
775,
783,
804,
510,
543,
2779,
318,
17142,
329,
262,
15304,
198,
220,
357,
68,
13,
70,
1539,
685,
15,
11,
352,
60,
2753,
262,
4941,
12536,
422,
15304,
352,
379,
838,
290,
788,
262,
198,
220,
717,
13527,
45907,
286,
15304,
362,
379,
1367,
737,
1002,
1006,
62,
9688,
318,
860,
11,
356,
561,
788,
198,
220,
5678,
262,
42519,
8690,
355,
25,
628,
220,
42519,
8690,
318,
705,
34,
1404,
34,
6,
10944,
355,
5679,
25,
198,
220,
220,
220,
705,
34,
6,
685,
5420,
62,
40290,
11,
1201,
1006,
62,
9688,
48874,
198,
220,
220,
220,
1343,
198,
220,
220,
220,
705,
32,
6,
357,
25641,
415,
16,
468,
257,
2429,
8690,
286,
657,
8,
198,
220,
220,
220,
1343,
198,
220,
220,
220,
705,
51,
6,
357,
25641,
415,
17,
468,
257,
2429,
8690,
286,
352,
8,
198,
220,
220,
220,
1343,
198,
220,
220,
220,
705,
34,
6,
685,
5420,
62,
7353,
13049,
611,
1006,
62,
437,
6624,
1511,
60,
198,
220,
220,
220,
796,
705,
34,
1404,
34,
6,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17670,
25,
1351,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
5974,
383,
17670,
284,
779,
287,
30580,
198,
220,
220,
220,
220,
220,
262,
42519,
8690,
13,
198,
220,
220,
220,
45907,
62,
521,
1063,
25,
1351,
58,
600,
5974,
383,
1351,
286,
45907,
62,
9630,
274,
357,
3003,
657,
1724,
198,
220,
220,
220,
220,
220,
4941,
62,
65,
1386,
290,
1875,
657,
15565,
5559,
12536,
11,
1708,
262,
198,
220,
220,
220,
220,
220,
38215,
14134,
2429,
13567,
33815,
737,
198,
220,
220,
220,
1006,
25,
20984,
47371,
13,
16718,
284,
651,
262,
4941,
12536,
13,
198,
220,
220,
220,
1006,
62,
9688,
25,
493,
18189,
657,
13,
383,
717,
2292,
357,
22570,
12,
9630,
276,
11,
19889,
8,
287,
262,
198,
220,
220,
220,
220,
220,
19270,
810,
356,
765,
284,
923,
30580,
674,
42519,
8690,
13,
198,
220,
220,
220,
1006,
62,
437,
25,
493,
18189,
657,
290,
1875,
1006,
62,
9688,
13,
383,
938,
2292,
357,
22570,
12,
9630,
276,
11,
198,
220,
220,
220,
220,
220,
8568,
8,
287,
262,
19270,
810,
356,
765,
284,
886,
30580,
674,
42519,
8690,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
4731,
7268,
262,
42519,
8690,
12536,
11,
393,
6045,
11,
611,
597,
15304,
4940,
198,
220,
220,
220,
878,
1006,
62,
9688,
290,
468,
257,
1729,
12,
35790,
2429,
8690,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
1002,
597,
286,
262,
5128,
7159,
389,
6428,
12214,
393,
4306,
16967,
198,
220,
220,
220,
262,
14895,
286,
428,
11862,
13,
198,
220,
37227,
198,
220,
611,
18896,
7,
25641,
1187,
8,
14512,
18896,
7,
6765,
293,
62,
521,
1063,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3109,
7254,
262,
976,
1271,
286,
17670,
23884,
355,
45907,
62,
521,
1063,
23884,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18896,
7,
25641,
1187,
828,
18896,
7,
6765,
293,
62,
521,
1063,
22305,
198,
220,
611,
1006,
62,
9688,
1279,
657,
393,
1006,
62,
9688,
18189,
1006,
62,
437,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
40319,
1006,
62,
9688,
23884,
1279,
1006,
62,
437,
23884,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1006,
62,
9688,
11,
1006,
62,
437,
4008,
628,
220,
3354,
796,
17635,
198,
220,
2292,
796,
1006,
62,
9688,
198,
220,
329,
15304,
11,
45907,
62,
9630,
287,
19974,
7,
25641,
1187,
11,
45907,
62,
521,
1063,
2599,
198,
220,
220,
220,
611,
15304,
13,
9688,
1279,
2292,
25,
198,
220,
220,
220,
220,
220,
611,
45907,
62,
9630,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
1006,
62,
40290,
796,
1006,
13,
65,
1386,
7,
9150,
11,
15304,
13,
9688,
8,
198,
220,
220,
220,
220,
220,
45907,
796,
4808,
6765,
293,
62,
6738,
62,
9630,
7,
25641,
415,
11,
45907,
62,
9630,
8,
198,
220,
220,
220,
220,
220,
611,
45907,
62,
9630,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
674,
2292,
7885,
284,
307,
262,
1306,
4941,
2779,
356,
765,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
779,
618,
2252,
30580,
674,
42519,
8690,
4731,
13,
1002,
356,
389,
1262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
4941,
2779,
11,
356,
923,
674,
2292,
379,
262,
2779,
706,
15304,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
923,
11,
9472,
611,
356,
389,
1262,
257,
1729,
12,
35790,
2779,
356,
779,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
15304,
13,
437,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
2041,
12,
7442,
318,
2622,
284,
5412,
39948,
28654,
829,
6105,
13,
1002,
356,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
423,
257,
39948,
357,
68,
13,
70,
1539,
15923,
5218,
317,
351,
923,
796,
838,
290,
886,
796,
1105,
8,
788,
356,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
691,
765,
284,
14267,
284,
2292,
1105,
329,
262,
1306,
4941,
12536,
611,
356,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
423,
423,
262,
39948,
11,
4306,
356,
1549,
2051,
262,
1218,
705,
32,
6,
2779,
543,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
318,
1107,
612,
357,
1169,
15304,
2125,
470,
1944,
11,
706,
477,
737,
6023,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
12921,
286,
428,
3572,
356,
691,
765,
284,
751,
262,
717,
2779,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4941,
45907,
11,
407,
262,
2187,
4731,
11,
1201,
428,
561,
24443,
477,
286,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
39948,
12536,
49190,
284,
674,
42519,
8690,
13,
198,
220,
220,
220,
220,
220,
220,
220,
45907,
796,
45907,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2292,
796,
15304,
13,
9688,
1343,
352,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2292,
796,
15304,
13,
437,
198,
220,
220,
220,
220,
220,
3354,
13,
33295,
7,
5420,
62,
40290,
1343,
45907,
8,
628,
220,
1303,
775,
423,
617,
12536,
1364,
284,
751,
1022,
262,
2292,
286,
674,
938,
15304,
198,
220,
1303,
290,
262,
1006,
62,
437,
11,
523,
24443,
883,
783,
13,
198,
220,
611,
2292,
1279,
1006,
62,
437,
25,
198,
220,
220,
220,
3354,
13,
33295,
7,
5420,
13,
65,
1386,
7,
9150,
11,
1006,
62,
437,
4008,
628,
220,
1441,
705,
4458,
22179,
7,
42632,
8,
628,
198,
4871,
9398,
489,
8690,
23850,
7,
15252,
2599,
198,
220,
37227,
6601,
9487,
4769,
1321,
546,
257,
12336,
286,
17670,
13,
628,
220,
383,
42519,
8690,
27393,
11862,
11,
379,
663,
4755,
11,
15455,
329,
281,
16237,
286,
198,
220,
2429,
13567,
284,
262,
4540,
17670,
290,
262,
3872,
17670,
326,
1255,
287,
262,
198,
220,
976,
2566,
489,
1868,
42519,
8690,
16311,
11,
543,
356,
869,
257,
2872,
13,
1439,
286,
262,
198,
220,
1321,
287,
326,
2180,
6827,
318,
7907,
994,
355,
1398,
12608,
25,
628,
220,
49213,
25,
198,
220,
220,
220,
42519,
13567,
25,
1351,
58,
2536,
4083,
383,
23243,
1351,
286,
42519,
13567,
4635,
416,
428,
2872,
13,
198,
220,
220,
220,
5871,
25,
1351,
58,
77,
14913,
385,
13,
1676,
1462,
13,
23907,
415,
5974,
383,
1351,
286,
4540,
17670,
13,
198,
220,
220,
220,
24279,
25,
1351,
58,
77,
14913,
385,
13,
1676,
1462,
13,
23907,
415,
5974,
383,
1351,
286,
2081,
17670,
13,
198,
220,
220,
220,
4540,
62,
5235,
13567,
25,
1351,
58,
83,
29291,
5974,
383,
2429,
13567,
326,
11,
618,
8686,
198,
220,
220,
220,
220,
220,
284,
262,
4540,
17670,
11,
1577,
4485,
284,
42519,
13567,
13,
198,
220,
220,
220,
3872,
62,
5235,
13567,
25,
1351,
58,
83,
29291,
5974,
383,
2429,
13567,
326,
11,
618,
8686,
198,
220,
220,
220,
220,
220,
284,
262,
1900,
17670,
11,
1577,
4485,
284,
42519,
13567,
13,
198,
220,
37227,
628,
220,
11593,
260,
1050,
834,
796,
11593,
2536,
834,
628,
220,
2488,
26745,
628,
220,
2488,
26745,
198,
220,
825,
2872,
62,
4164,
10466,
7,
944,
2599,
198,
220,
220,
220,
37227,
35013,
286,
428,
2872,
13,
16048,
8198,
389,
1365,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
46545,
58,
600,
60,
810,
477,
4847,
389,
18189,
657,
25,
383,
46545,
318,
11080,
329,
29407,
198,
220,
220,
220,
220,
220,
7466,
11,
523,
326,
23243,
7,
6759,
2052,
11,
1994,
28,
50033,
2124,
25,
2124,
13,
15699,
62,
4164,
10466,
8,
481,
4279,
198,
220,
220,
220,
220,
220,
7466,
523,
326,
262,
1266,
3038,
318,
717,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
357,
944,
13,
77,
62,
9562,
62,
12480,
2929,
11,
2116,
13,
77,
62,
9562,
62,
1930,
20288,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
77,
62,
7942,
62,
1930,
20288,
8,
628,
220,
2488,
26745,
198,
220,
825,
299,
62,
7942,
62,
1930,
20288,
7,
944,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
1271,
286,
5871,
3025,
14451,
2429,
8690,
318,
407,
357,
15,
11,
657,
737,
628,
220,
220,
220,
4619,
262,
5871,
836,
470,
423,
2938,
2429,
13567,
11,
356,
460,
691,
954,
1123,
198,
220,
220,
220,
2524,
2427,
286,
1123,
2429,
8690,
13,
1406,
428,
318,
262,
1271,
286,
5871,
3025,
198,
220,
220,
220,
14451,
2429,
8690,
318,
407,
357,
15,
11,
657,
737,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
493,
18189,
657,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
18896,
7,
944,
13,
46188,
20540,
62,
5235,
13567,
8,
532,
2116,
13,
77,
62,
9562,
62,
1930,
20288,
628,
220,
2488,
26745,
198,
220,
825,
299,
62,
9562,
62,
1930,
20288,
7,
944,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
1271,
286,
5871,
3025,
14451,
2429,
8690,
318,
357,
15,
11,
657,
737,
628,
220,
220,
220,
4619,
262,
5871,
836,
470,
423,
2938,
2429,
13567,
11,
356,
460,
691,
954,
1123,
198,
220,
220,
220,
2524,
2427,
286,
1123,
2429,
8690,
13,
1406,
428,
318,
262,
1271,
286,
5871,
3025,
198,
220,
220,
220,
14451,
2429,
8690,
318,
357,
15,
11,
657,
737,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
493,
18189,
657,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2116,
13557,
77,
62,
9562,
62,
1930,
20288,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
2116,
13557,
77,
62,
9562,
62,
1930,
20288,
796,
2160,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2160,
7,
13655,
8,
6624,
657,
329,
308,
83,
287,
2116,
13,
46188,
20540,
62,
5235,
13567,
8,
198,
220,
220,
220,
1441,
2116,
13557,
77,
62,
9562,
62,
1930,
20288,
628,
220,
2488,
26745,
198,
220,
825,
299,
62,
9562,
62,
12480,
2929,
7,
944,
2599,
198,
220,
220,
220,
37227,
38,
1039,
262,
1271,
286,
6825,
2081,
2429,
13567,
13,
628,
220,
220,
220,
770,
318,
262,
2160,
286,
6825,
1729,
12,
5420,
2429,
13567,
625,
477,
3872,
17670,
13,
1406,
611,
198,
220,
220,
220,
356,
423,
257,
14451,
3872,
2429,
8690,
286,
357,
15,
11,
352,
8,
290,
262,
2081,
2429,
8690,
318,
357,
16,
11,
352,
828,
198,
220,
220,
220,
788,
356,
423,
352,
44260,
13,
1002,
262,
14451,
2429,
8690,
547,
357,
15,
11,
657,
828,
356,
1549,
423,
362,
44260,
82,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
493,
18189,
657,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2116,
13557,
77,
62,
9562,
62,
12480,
2929,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
2116,
13557,
77,
62,
9562,
62,
12480,
2929,
796,
2160,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
9107,
3028,
7,
562,
3916,
62,
13655,
8,
532,
299,
62,
9107,
3028,
7,
14986,
62,
13655,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2656,
62,
13655,
11,
8686,
62,
13655,
287,
19974,
7,
944,
13,
14986,
62,
35310,
62,
5235,
13567,
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,
2116,
13,
35310,
62,
5235,
13567,
4008,
198,
220,
220,
220,
1441,
2116,
13557,
77,
62,
9562,
62,
12480,
2929,
628,
220,
825,
5871,
62,
4480,
62,
562,
3916,
62,
5235,
13567,
7,
944,
2599,
198,
220,
220,
220,
37227,
38,
1039,
257,
4866,
286,
674,
5871,
351,
511,
14451,
2429,
13567,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
1351,
58,
23907,
415,
1237,
672,
3046,
5974,
16409,
257,
4866,
286,
2116,
13,
46188,
37051,
287,
1502,
11,
351,
198,
220,
220,
220,
220,
220,
2429,
13567,
11188,
284,
511,
14451,
2429,
13567,
13,
4377,
2180,
2429,
13567,
198,
220,
220,
220,
220,
220,
287,
777,
15965,
1187,
481,
307,
49312,
13,
1002,
645,
38215,
14134,
318,
1944,
530,
481,
198,
220,
220,
220,
220,
220,
307,
2087,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
62,
70,
912,
796,
685,
30073,
13,
22089,
30073,
7,
85,
8,
329,
410,
287,
2116,
13,
46188,
37051,
60,
198,
220,
220,
220,
329,
15304,
11,
308,
83,
287,
19974,
7,
4480,
62,
70,
912,
11,
2116,
13,
46188,
20540,
62,
5235,
13567,
2599,
198,
220,
220,
220,
220,
220,
869,
796,
15304,
13,
66,
5691,
58,
15,
60,
611,
15304,
13,
66,
5691,
2073,
15304,
13,
66,
5691,
13,
2860,
3419,
198,
220,
220,
220,
220,
220,
15304,
13345,
62,
26791,
13,
2617,
62,
13655,
7,
13345,
11,
308,
83,
8,
198,
220,
220,
220,
1441,
351,
62,
70,
912,
628,
198,
4299,
4648,
84,
489,
5344,
62,
3099,
489,
13567,
7,
3099,
489,
13567,
62,
392,
62,
5235,
13567,
2599,
198,
220,
37227,
35561,
257,
649,
1351,
286,
42519,
13567,
62,
392,
62,
5235,
13567,
351,
14184,
16856,
4615,
13,
628,
220,
770,
2163,
2925,
832,
262,
42519,
13567,
62,
392,
62,
5235,
13567,
11629,
540,
290,
7622,
198,
220,
691,
257,
2060,
1672,
286,
357,
3099,
489,
13567,
11,
2429,
13567,
8,
611,
612,
389,
3294,
198,
220,
4847,
286,
262,
1351,
326,
423,
262,
976,
42519,
13567,
13,
49821,
16856,
389,
2938,
198,
220,
287,
262,
1351,
780,
1180,
2429,
8690,
25412,
460,
3360,
4439,
198,
220,
262,
976,
900,
286,
42519,
13567,
11,
290,
22712,
257,
1351,
286,
1744,
198,
220,
42519,
13567,
14,
5235,
13567,
17790,
351,
14184,
16856,
318,
881,
7069,
290,
1342,
198,
220,
6942,
621,
262,
4648,
84,
489,
3474,
1351,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
42519,
13567,
62,
392,
62,
5235,
13567,
25,
11629,
540,
58,
7,
3099,
489,
8690,
11,
2429,
8690,
25295,
383,
198,
220,
220,
220,
220,
220,
42519,
8690,
14,
5235,
8690,
12777,
2374,
356,
765,
284,
4648,
84,
489,
5344,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
24637,
286,
42519,
8690,
14,
5235,
8690,
12777,
2374,
11,
355,
257,
1351,
11,
1231,
14184,
16856,
13,
198,
220,
37227,
198,
220,
42519,
13567,
62,
392,
62,
5235,
13567,
796,
1351,
7,
3099,
489,
13567,
62,
392,
62,
5235,
13567,
8,
198,
220,
1441,
685,
198,
220,
220,
220,
220,
220,
357,
85,
71,
16,
11,
410,
70,
16,
8,
198,
220,
220,
220,
220,
220,
329,
1312,
11,
357,
85,
71,
16,
11,
410,
70,
16,
8,
287,
27056,
378,
7,
3099,
489,
13567,
62,
392,
62,
5235,
13567,
8,
198,
220,
220,
220,
220,
220,
611,
407,
597,
7,
85,
71,
16,
6624,
410,
71,
17,
329,
357,
85,
71,
17,
11,
4808,
8,
287,
42519,
13567,
62,
392,
62,
5235,
13567,
58,
72,
1343,
352,
25,
12962,
198,
220,
2361,
628,
198,
2,
44740,
198,
2,
17670,
290,
24279,
11,
290,
19299,
1321,
546,
1123,
15304,
290,
198,
2,
3872,
15304,
4726,
3746,
13,
770,
815,
307,
262,
4165,
7824,
13,
6524,
11218,
198,
2,
6167,
62,
1069,
12629,
284,
779,
428,
649,
7824,
13,
3244,
2251,
257,
649,
7822,
326,
857,
198,
2,
262,
3049,
2196,
13,
198,
4299,
1064,
62,
13466,
62,
15699,
278,
62,
3099,
489,
13567,
7,
46188,
37051,
11,
24279,
11,
1006,
2599,
198,
220,
37227,
8021,
570,
82,
2429,
13567,
284,
1123,
15304,
284,
1266,
2872,
24279,
13,
628,
220,
4091,
262,
8265,
12,
5715,
10314,
329,
2276,
1321,
319,
703,
428,
198,
220,
11862,
2499,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
5871,
25,
1351,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
4083,
317,
1351,
286,
4540,
17670,
11,
287,
198,
220,
220,
220,
220,
220,
20435,
12,
82,
9741,
1502,
11,
477,
319,
262,
976,
34348,
13,
198,
220,
220,
220,
24279,
25,
1351,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
4083,
317,
1351,
286,
3872,
17670,
11,
287,
198,
220,
220,
220,
220,
220,
20435,
12,
82,
9741,
1502,
11,
329,
262,
976,
16654,
319,
262,
19270,
355,
17670,
13,
198,
220,
220,
220,
1006,
25,
20984,
47371,
13,
16718,
284,
651,
4941,
12536,
329,
17670,
13,
12039,
3002,
198,
220,
220,
220,
220,
220,
379,
1551,
262,
11506,
286,
262,
17670,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
317,
9398,
489,
8690,
23850,
2134,
12059,
262,
1266,
16237,
286,
2429,
13567,
1022,
198,
220,
220,
220,
262,
5871,
290,
3872,
62,
25641,
1187,
11,
393,
6045,
11,
611,
645,
6414,
16237,
460,
198,
220,
220,
220,
307,
1043,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
1002,
597,
17311,
389,
6428,
12214,
13,
198,
220,
37227,
198,
220,
5871,
796,
1351,
7,
46188,
37051,
8,
198,
220,
24279,
796,
1351,
7,
35310,
82,
8,
628,
220,
611,
4808,
30531,
62,
4805,
12394,
2751,
62,
1797,
62,
1677,
6242,
30465,
25,
198,
220,
220,
220,
4808,
6404,
62,
25641,
1187,
10786,
46188,
37051,
3256,
5871,
8,
198,
220,
220,
220,
4808,
6404,
62,
25641,
1187,
10786,
35310,
3256,
24279,
8,
628,
220,
611,
407,
15304,
62,
26791,
13,
25641,
1187,
62,
533,
62,
82,
9741,
7,
46188,
37051,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
46188,
37051,
389,
407,
23243,
3256,
5871,
8,
198,
220,
611,
407,
15304,
62,
26791,
13,
25641,
1187,
62,
533,
62,
82,
9741,
7,
35310,
82,
2599,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
35310,
82,
389,
407,
23243,
3256,
24279,
8,
628,
220,
825,
4808,
26452,
62,
5420,
62,
44709,
62,
361,
62,
28920,
7,
4868,
62,
1659,
62,
25641,
1187,
11,
1729,
62,
28920,
62,
44709,
2599,
198,
220,
220,
220,
37227,
1532,
1351,
62,
1659,
62,
25641,
1187,
318,
6565,
11,
779,
257,
22224,
62,
39,
2662,
62,
31688,
33829,
329,
2866,
526,
15931,
198,
220,
220,
220,
1441,
1729,
62,
28920,
62,
44709,
611,
1351,
62,
1659,
62,
25641,
1187,
2073,
2039,
6975,
341,
6030,
13,
1340,
11319,
62,
39,
2662,
62,
31688,
628,
220,
3872,
62,
3099,
489,
13567,
796,
4648,
84,
489,
5344,
62,
3099,
489,
13567,
7,
198,
220,
220,
220,
220,
220,
27056,
378,
62,
439,
62,
79,
4733,
62,
3099,
489,
13567,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24279,
11,
1006,
11,
4808,
26452,
62,
5420,
62,
44709,
62,
361,
62,
28920,
7,
46188,
37051,
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,
2039,
6975,
341,
6030,
13,
5446,
24318,
22305,
628,
220,
1303,
5740,
11,
340,
743,
307,
2861,
4648,
84,
489,
12364,
777,
42519,
13567,
355,
880,
13,
198,
220,
15304,
62,
3099,
489,
13567,
796,
27056,
378,
62,
439,
62,
79,
4733,
62,
3099,
489,
13567,
7,
198,
220,
220,
220,
220,
220,
5871,
11,
1006,
11,
4808,
26452,
62,
5420,
62,
44709,
62,
361,
62,
28920,
7,
35310,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2039,
6975,
341,
6030,
13,
34,
6981,
2389,
29462,
4008,
628,
220,
1043,
796,
17635,
198,
220,
329,
410,
71,
11,
410,
13655,
287,
15304,
62,
3099,
489,
13567,
25,
198,
220,
220,
220,
329,
294,
11,
256,
13655,
287,
3872,
62,
3099,
489,
13567,
25,
198,
220,
220,
220,
220,
220,
611,
294,
6624,
410,
71,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1043,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9398,
489,
8690,
23850,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42519,
13567,
28,
400,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5871,
28,
46188,
37051,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4540,
62,
5235,
13567,
28,
85,
13655,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24279,
28,
35310,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3872,
62,
5235,
13567,
28,
83,
13655,
4008,
628,
220,
611,
407,
1043,
25,
198,
220,
220,
220,
1441,
6045,
198,
220,
2073,
25,
198,
220,
220,
220,
1441,
2922,
62,
13466,
62,
3099,
489,
8690,
62,
15699,
7,
9275,
8,
628,
198,
4299,
2922,
62,
13466,
62,
3099,
489,
8690,
62,
15699,
7,
439,
62,
6759,
2052,
2599,
198,
220,
37227,
35561,
262,
1266,
9398,
489,
8690,
23850,
1871,
477,
62,
6759,
2052,
13,
628,
220,
383,
1266,
12336,
9398,
489,
8690,
23850,
318,
262,
530,
351,
262,
9016,
2872,
62,
4164,
10466,
198,
220,
4776,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
477,
62,
6759,
2052,
25,
11629,
540,
58,
23303,
489,
8690,
23850,
4083,
1052,
11629,
540,
286,
9398,
489,
8690,
23850,
5563,
198,
220,
220,
220,
220,
220,
356,
765,
284,
2922,
262,
1266,
2872,
422,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
383,
1266,
12336,
9398,
489,
8690,
23850,
2134,
13,
198,
220,
37227,
198,
220,
23243,
62,
6759,
2052,
796,
23243,
7,
439,
62,
6759,
2052,
11,
1994,
28,
50033,
2124,
25,
2124,
13,
15699,
62,
4164,
10466,
8,
198,
220,
1266,
796,
23243,
62,
6759,
2052,
58,
15,
60,
198,
220,
40255,
796,
685,
198,
220,
220,
220,
220,
220,
277,
329,
277,
287,
477,
62,
6759,
2052,
611,
277,
13,
15699,
62,
4164,
10466,
6624,
1266,
13,
15699,
62,
4164,
10466,
198,
220,
2361,
628,
220,
1303,
44740,
198,
220,
611,
18896,
7,
4853,
2473,
658,
8,
1875,
352,
25,
198,
220,
220,
220,
329,
1312,
11,
277,
287,
27056,
378,
7,
4853,
2473,
658,
2599,
198,
220,
220,
220,
220,
220,
3131,
62,
10951,
796,
705,
13466,
6,
611,
1312,
6624,
657,
2073,
1312,
198,
220,
220,
220,
220,
220,
18931,
13,
43917,
10786,
23588,
29540,
2872,
284,
1266,
25,
4064,
82,
685,
4,
82,
60,
3256,
277,
11,
3131,
62,
10951,
8,
628,
220,
1441,
40255,
58,
15,
60,
628,
198,
2,
16529,
32501,
198,
2,
198,
2,
15348,
10361,
5499,
198,
2,
198,
2,
16529,
32501,
628,
198,
4299,
4808,
25641,
415,
62,
5235,
13567,
7,
25641,
1187,
11,
4814,
62,
5235,
13567,
62,
12286,
16193,
12,
16,
11,
532,
16,
8,
2599,
198,
220,
37227,
35561,
262,
2429,
13567,
286,
17670,
355,
257,
1351,
286,
12777,
2374,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17670,
25,
11629,
540,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
4083,
383,
17670,
3025,
2429,
13567,
356,
198,
220,
220,
220,
220,
220,
765,
284,
651,
13,
198,
220,
220,
220,
4814,
62,
5235,
13567,
62,
12286,
25,
46545,
13,
1002,
257,
15304,
287,
17670,
1595,
470,
423,
198,
220,
220,
220,
220,
220,
2429,
13567,
11,
428,
1988,
318,
4504,
13,
383,
4277,
1988,
318,
13841,
16,
11,
532,
16,
828,
262,
198,
220,
220,
220,
220,
220,
3210,
10552,
329,
366,
45688,
1,
2566,
489,
1868,
2429,
13567,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
1351,
58,
77,
14913,
385,
13,
11235,
418,
13,
23907,
415,
60,
1237,
418,
287,
262,
976,
1502,
355,
17670,
13,
198,
220,
37227,
198,
220,
1441,
685,
198,
220,
220,
220,
220,
220,
46545,
7,
85,
13,
66,
5691,
58,
15,
4083,
5235,
8690,
8,
611,
410,
13,
66,
5691,
2073,
4814,
62,
5235,
13567,
62,
12286,
198,
220,
220,
220,
220,
220,
329,
410,
287,
17670,
198,
220,
2361,
628,
198,
4299,
4808,
6404,
62,
3099,
489,
13567,
7,
3672,
11,
42519,
13567,
2599,
198,
220,
37227,
16594,
4096,
1321,
546,
42519,
13567,
284,
18931,
13,
10951,
526,
15931,
198,
220,
18931,
13,
10951,
10786,
3099,
489,
13567,
25,
4064,
82,
3256,
1438,
8,
198,
220,
329,
42519,
8690,
11,
2429,
13567,
287,
42519,
13567,
25,
198,
220,
220,
220,
18931,
13,
10951,
10786,
220,
4064,
82,
351,
4064,
82,
3256,
42519,
8690,
11,
2429,
13567,
8,
628,
198,
4299,
4808,
6404,
62,
25641,
1187,
7,
3672,
11,
17670,
2599,
198,
220,
37227,
16594,
4096,
1321,
546,
17670,
284,
18931,
13,
10951,
526,
15931,
198,
220,
18931,
13,
10951,
10786,
25641,
1187,
25,
4064,
82,
685,
4,
67,
60,
3256,
1438,
11,
18896,
7,
25641,
1187,
4008,
198,
220,
329,
410,
287,
17670,
25,
198,
220,
220,
220,
18931,
13,
10951,
10786,
220,
4064,
82,
308,
83,
28,
4,
82,
3256,
15304,
62,
26791,
13,
25641,
415,
62,
2539,
7,
85,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
25641,
415,
62,
5235,
13567,
26933,
85,
12962,
58,
15,
12962,
628,
198,
4299,
299,
62,
9107,
3028,
7,
75,
2599,
198,
220,
37227,
35561,
262,
1271,
286,
4847,
286,
300,
326,
389,
657,
526,
15931,
198,
220,
1441,
2160,
7,
16,
329,
2124,
287,
300,
611,
2124,
6624,
657,
8,
628,
198,
4299,
4808,
6765,
293,
62,
6738,
62,
9630,
7,
25641,
415,
11,
45907,
62,
9630,
2599,
198,
220,
37227,
38,
1039,
262,
4941,
62,
65,
1386,
393,
5559,
62,
65,
1386,
329,
45907,
62,
9630,
526,
15931,
198,
220,
611,
45907,
62,
9630,
6624,
657,
25,
198,
220,
220,
220,
1441,
15304,
13,
35790,
62,
65,
1386,
198,
220,
2073,
25,
198,
220,
220,
220,
1441,
15304,
13,
33645,
378,
62,
65,
1386,
58,
6765,
293,
62,
9630,
532,
352,
60,
198
] | 2.971946 | 13,474 |
'''
(c) 2011, 2012 Georgia Tech Research Corporation
This source code is released under the New BSD license. Please see
http://wiki.quantsoftware.org/index.php?title=QSTK_License
for license details.
Created on Jan 1, 2011
@author:Drew Bratcher
@contact: [email protected]
@summary: Contains tutorial for backtester and report.
'''
# bollinger.py
#
# A module which contains a bollinger strategy.
#
#
#python imports
import cPickle
from pylab import *
from pandas import *
import matplotlib.pyplot as plt
import datetime as dt
import os
#qstk imports
from qstkutil import DataAccess as da
import qstkutil.qsdateutil as du
import qstkutil.bollinger as boil
#simple versions
#stateful
#stateless
#creates an allocation DataMatrix based on bollinger strategy and paramaters
if __name__ == "__main__":
#Usage: python bollinger.py '1-1-2004' '1-1-2009' 'alloc.pkl'
print "Running Bollinger strategy starting "+sys.argv[1]+" and ending "+sys.argv[2]+"."
#Run S&P500 for thresholds 1 and -1 in simple version for lookback of 10 days
symbols = list(np.loadtxt(os.environ['QS']+'/quicksim/strategies/S&P500.csv',dtype='str',delimiter=',',comments='#',skiprows=0))
t=map(int,sys.argv[1].split('-'))
startday = dt.datetime(t[2],t[0],t[1])
t=map(int,sys.argv[2].split('-'))
endday = dt.datetime(t[2],t[0],t[1])
timeofday=dt.timedelta(hours=16)
timestamps=du.getNYSEdays(startday,endday,timeofday)
dataobj=da.DataAccess(da.DataSource.NORGATE)
intersectsyms=list(set(dataobj.get_all_symbols())&set(symbols))
badsyms=[]
if size(intersectsyms)<size(symbols):
badsyms=list(set(symbols)-set(intersectsyms))
print "bad symms:"
print badsyms
for i in badsyms:
index=symbols.index(i)
symbols.pop(index)
historic = dataobj.get_data(timestamps,symbols,"close")
alloc=createStatelessStrat(historic,timestamps,10,1,-1)
output=open(sys.argv[3],"wb")
cPickle.dump(alloc,output)
output.close()
| [
7061,
6,
198,
7,
66,
8,
2813,
11,
2321,
7859,
9634,
4992,
10501,
198,
1212,
2723,
2438,
318,
2716,
739,
262,
968,
347,
10305,
5964,
13,
220,
4222,
766,
198,
4023,
1378,
15466,
13,
40972,
43776,
13,
2398,
14,
9630,
13,
10121,
30,
7839,
28,
48,
2257,
42,
62,
34156,
198,
1640,
5964,
3307,
13,
198,
198,
41972,
319,
2365,
352,
11,
2813,
198,
198,
31,
9800,
25,
35,
1809,
1709,
34734,
198,
31,
32057,
25,
288,
1671,
34734,
31,
10494,
354,
13,
15532,
198,
31,
49736,
25,
49850,
11808,
329,
736,
4879,
353,
290,
989,
13,
198,
198,
7061,
6,
628,
198,
198,
2,
275,
692,
3889,
13,
9078,
198,
2,
198,
2,
317,
8265,
543,
4909,
257,
275,
692,
3889,
4811,
13,
198,
2,
198,
2,
198,
198,
2,
29412,
17944,
198,
11748,
269,
31686,
293,
198,
6738,
279,
2645,
397,
1330,
1635,
198,
6738,
19798,
292,
1330,
1635,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
4818,
8079,
355,
288,
83,
198,
11748,
28686,
198,
198,
2,
80,
301,
74,
17944,
198,
6738,
10662,
301,
74,
22602,
1330,
6060,
15457,
355,
12379,
198,
11748,
10662,
301,
74,
22602,
13,
48382,
4475,
22602,
355,
7043,
198,
11748,
10662,
301,
74,
22602,
13,
65,
692,
3889,
355,
20667,
198,
198,
2,
36439,
6300,
198,
2,
5219,
913,
198,
197,
198,
2,
5219,
1203,
198,
198,
2,
20123,
274,
281,
20157,
6060,
46912,
1912,
319,
275,
692,
3889,
4811,
290,
5772,
8605,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
197,
2,
28350,
25,
21015,
275,
692,
3889,
13,
9078,
705,
16,
12,
16,
12,
15724,
6,
705,
16,
12,
16,
12,
10531,
6,
705,
32332,
13,
79,
41582,
6,
198,
197,
4798,
366,
28768,
43479,
3889,
4811,
3599,
43825,
17597,
13,
853,
85,
58,
16,
48688,
1,
290,
7464,
43825,
17597,
13,
853,
85,
58,
17,
48688,
1,
526,
198,
197,
198,
197,
2,
10987,
311,
5,
47,
4059,
329,
40885,
352,
290,
532,
16,
287,
2829,
2196,
329,
804,
1891,
286,
838,
1528,
198,
197,
1837,
2022,
10220,
796,
1351,
7,
37659,
13,
2220,
14116,
7,
418,
13,
268,
2268,
17816,
48,
50,
20520,
10,
26488,
421,
3378,
320,
14,
2536,
2397,
444,
14,
50,
5,
47,
4059,
13,
40664,
3256,
67,
4906,
11639,
2536,
3256,
12381,
320,
2676,
28,
3256,
3256,
15944,
11639,
2,
3256,
48267,
8516,
28,
15,
4008,
198,
197,
198,
197,
83,
28,
8899,
7,
600,
11,
17597,
13,
853,
85,
58,
16,
4083,
35312,
10786,
19355,
4008,
198,
197,
9688,
820,
796,
288,
83,
13,
19608,
8079,
7,
83,
58,
17,
4357,
83,
58,
15,
4357,
83,
58,
16,
12962,
198,
197,
83,
28,
8899,
7,
600,
11,
17597,
13,
853,
85,
58,
17,
4083,
35312,
10786,
19355,
4008,
198,
197,
437,
820,
796,
288,
83,
13,
19608,
8079,
7,
83,
58,
17,
4357,
83,
58,
15,
4357,
83,
58,
16,
12962,
198,
197,
198,
197,
2435,
1659,
820,
28,
28664,
13,
16514,
276,
12514,
7,
24425,
28,
1433,
8,
198,
197,
16514,
395,
9430,
28,
646,
13,
1136,
49430,
12545,
7,
9688,
820,
11,
437,
820,
11,
2435,
1659,
820,
8,
198,
197,
198,
197,
198,
197,
7890,
26801,
28,
6814,
13,
6601,
15457,
7,
6814,
13,
6601,
7416,
13,
35510,
38,
6158,
8,
198,
197,
3849,
8831,
1837,
907,
28,
4868,
7,
2617,
7,
7890,
26801,
13,
1136,
62,
439,
62,
1837,
2022,
10220,
28955,
5,
2617,
7,
1837,
2022,
10220,
4008,
198,
197,
14774,
1837,
907,
28,
21737,
198,
197,
361,
2546,
7,
3849,
8831,
1837,
907,
8,
27,
7857,
7,
1837,
2022,
10220,
2599,
198,
197,
197,
14774,
1837,
907,
28,
4868,
7,
2617,
7,
1837,
2022,
10220,
13219,
2617,
7,
3849,
8831,
1837,
907,
4008,
198,
197,
197,
4798,
366,
14774,
5659,
907,
11097,
198,
197,
197,
4798,
2089,
1837,
907,
198,
197,
1640,
1312,
287,
2089,
1837,
907,
25,
198,
197,
197,
9630,
28,
1837,
2022,
10220,
13,
9630,
7,
72,
8,
198,
197,
197,
1837,
2022,
10220,
13,
12924,
7,
9630,
8,
198,
197,
31304,
796,
1366,
26801,
13,
1136,
62,
7890,
7,
16514,
395,
9430,
11,
1837,
2022,
10220,
553,
19836,
4943,
198,
197,
198,
197,
32332,
28,
17953,
9012,
1203,
1273,
10366,
7,
31304,
11,
16514,
395,
9430,
11,
940,
11,
16,
12095,
16,
8,
198,
197,
198,
197,
22915,
28,
9654,
7,
17597,
13,
853,
85,
58,
18,
17241,
39346,
4943,
198,
197,
66,
31686,
293,
13,
39455,
7,
32332,
11,
22915,
8,
198,
197,
22915,
13,
19836,
3419,
198
] | 2.545575 | 757 |
# Generated by Django 2.0.5 on 2018-06-03 17:13
import django.core.validators
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
362,
13,
15,
13,
20,
319,
2864,
12,
3312,
12,
3070,
1596,
25,
1485,
198,
198,
11748,
42625,
14208,
13,
7295,
13,
12102,
2024,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.95122 | 41 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Software License Agreement (BSD License)
#
# Copyright (c) 2009-2011, Eucalyptus Systems, Inc.
# All rights reserved.
#
# Redistribution and use of this software in source and binary forms, with or
# without modification, are permitted provided that the following conditions
# are met:
#
# Redistributions of source code must retain the above
# copyright notice, this list of conditions and the
# following disclaimer.
#
# 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.
#
# 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 OWNER 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.
#
from eutester.testcase_utils.eutestcase import EutesterTestCase
from imageutils import ImageUtils
machine=None
testcase = EutesterTestCase()
testcase.setup_parser(testname='load_hvm_image.py',
description='Loads an hvm image from either a remote url or local file path',
emi=False,
testlist=False)
testcase.parser.add_argument('--url',help='URL containing remote windows image '
'to create EMI from', default=None)
testcase.parser.add_argument('--filepath',dest='filepath', help='File path to create EMI from', default=None)
testcase.parser.add_argument('--workerip',dest='worker_machine', help='The ip/hostname of the machine that the operation will be performed on', default=None)
testcase.parser.add_argument('--worker_username',dest='worker_username', help='The username of the machine that the operation will be performed on, default:"root"', default='root')
testcase.parser.add_argument('--worker_password',dest='worker_password', help='The password of the machine that the operation will be performed on', default=None)
testcase.parser.add_argument('--worker_keypath',dest='worker_keypath', help='The ssh keypath of the machine that the operation will be performed on', default=None)
testcase.parser.add_argument('--destpath',help='The path on the workip, that this operation will be performed on', default='/disk1/storage')
testcase.parser.add_argument('--urlpass', dest='wget_password',help='Password needed to retrieve remote url', default=None)
testcase.parser.add_argument('--urluser',dest='wget_user', help='Username needed to retrieve remote url', default=None)
testcase.parser.add_argument('--gigtime',dest='time_per_gig', help='Time allowed per gig size of image to be used', default=300)
testcase.parser.add_argument('--interbundletime',dest='inter_bundle_timeout', help='Inter-bundle timeout', default=120)
testcase.parser.add_argument('--virtualization_type', help='virtualization type, hvm or pv', default='hvm')
testcase.parser.add_argument('--bucket',dest='bucketname', help='bucketname', default=None)
testcase.parser.add_argument('--platform', dest='platform', help='"Linux" or "Windows", default: "linux"' , default=None)
testcase.parser.add_argument('--uploaded_manifest', dest='upload_manifest', help='bucket/prefix location of manifest to register' , default=None)
testcase.parser.add_argument('--bundle_manifest', dest='bundle_manifest', help='file path on worker to bundle manifest to upload' , default=None)
testcase.parser.add_argument('--overwrite', help='Will overwrite files in matching work dir on worker machine if found', action='store_true', default=False)
testcase.parser.add_argument('--time_per_gig', help='Time allowed per image size in GB before timing out. Default:300 seconds', default=300)
testcase.get_args()
testcase.args.worker_password = testcase.args.worker_password or testcase.args.password
testcase.args.worker_keypath = testcase.args.worker_keypath or testcase.args.keypair
if not testcase.args.upload_manifest and not testcase.args.bundle_manifest:
if (not testcase.args.url and not testcase.args.filepath) or (testcase.args.url and testcase.args.filepath):
raise Exception('If manifest not provieded, either a URL or FILE path is required to create image ')
#Create an ImageUtils helper from the arguments provided in this testcase...
image_utils = testcase.do_with_args(ImageUtils)
#Create a single testcase to wrap and run the EMI creation task. Note by default all the overlapping args from
# this testcase are fed to the testunit method when ran.
test1 = testcase.create_testunit_from_method(image_utils.create_emi)
test2 = testcase.create_testunit_from_method(make_image_public)
result = testcase.run_test_case_list([test1, test2], eof=True, clean_on_exit=False, printresults=True)
#By default created resources are stored in the eucaops/tester object's test_resources dict. See if our image is
#prsent. If so print it out...
if image_utils.tester.test_resources['images']:
emi = image_utils.tester.test_resources['images'][0]
testcase.debug('\n---------------------------\nCreated EMI:' + str(emi) +'\n---------------------------')
exit(result)
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
10442,
13789,
12729,
357,
21800,
13789,
8,
198,
2,
198,
2,
15069,
357,
66,
8,
3717,
12,
9804,
11,
412,
1229,
3400,
457,
385,
11998,
11,
3457,
13,
198,
2,
1439,
2489,
10395,
13,
198,
2,
198,
2,
2297,
396,
3890,
290,
779,
286,
428,
3788,
287,
2723,
290,
13934,
5107,
11,
351,
393,
198,
2,
1231,
17613,
11,
389,
10431,
2810,
326,
262,
1708,
3403,
198,
2,
389,
1138,
25,
198,
2,
198,
2,
220,
220,
2297,
396,
2455,
507,
286,
2723,
2438,
1276,
12377,
262,
2029,
198,
2,
220,
220,
6634,
4003,
11,
428,
1351,
286,
3403,
290,
262,
198,
2,
220,
220,
1708,
37592,
13,
198,
2,
198,
2,
220,
220,
2297,
396,
2455,
507,
287,
13934,
1296,
1276,
22919,
262,
2029,
198,
2,
220,
220,
6634,
4003,
11,
428,
1351,
286,
3403,
290,
262,
198,
2,
220,
220,
1708,
37592,
287,
262,
10314,
290,
14,
273,
584,
198,
2,
220,
220,
5696,
2810,
351,
262,
6082,
13,
198,
2,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
11050,
3336,
27975,
38162,
9947,
367,
15173,
4877,
5357,
27342,
9865,
3843,
20673,
366,
1921,
3180,
1,
198,
2,
5357,
15529,
7788,
32761,
6375,
8959,
49094,
34764,
11015,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
198,
2,
8959,
49094,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
5357,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
198,
2,
15986,
13954,
48778,
1961,
13,
3268,
8005,
49261,
50163,
3336,
27975,
38162,
9947,
47210,
21479,
6375,
27342,
9865,
3843,
20673,
9348,
198,
2,
43031,
19146,
7473,
15529,
42242,
11,
3268,
17931,
23988,
11,
19387,
25256,
1847,
11,
38846,
11,
7788,
3620,
6489,
13153,
11,
6375,
198,
2,
7102,
5188,
10917,
3525,
12576,
29506,
25552,
357,
1268,
39149,
2751,
11,
21728,
5626,
40880,
5390,
11,
41755,
11335,
10979,
3963,
198,
2,
28932,
2257,
2043,
37780,
21090,
50,
6375,
49254,
26,
406,
18420,
3963,
23210,
11,
42865,
11,
6375,
4810,
19238,
29722,
26,
6375,
43949,
44180,
198,
2,
23255,
49,
8577,
24131,
8,
29630,
36,
5959,
7257,
2937,
1961,
5357,
6177,
15529,
3336,
15513,
3963,
43031,
25382,
11,
7655,
2767,
16879,
3268,
198,
2,
27342,
10659,
11,
19269,
18379,
43031,
25382,
11,
6375,
309,
9863,
357,
1268,
39149,
2751,
399,
7156,
43,
3528,
18310,
6375,
25401,
54,
24352,
8,
198,
2,
5923,
1797,
2751,
3268,
15529,
34882,
16289,
3963,
3336,
23210,
3963,
12680,
47466,
11,
45886,
16876,
5984,
29817,
1961,
3963,
3336,
198,
2,
28069,
11584,
25382,
3963,
13558,
3398,
29506,
11879,
13,
198,
2,
198,
6738,
304,
1769,
353,
13,
9288,
7442,
62,
26791,
13,
68,
315,
395,
7442,
1330,
412,
1769,
353,
14402,
20448,
198,
6738,
2939,
26791,
1330,
7412,
18274,
4487,
198,
198,
30243,
28,
14202,
198,
9288,
7442,
796,
412,
1769,
353,
14402,
20448,
3419,
198,
198,
9288,
7442,
13,
40406,
62,
48610,
7,
9288,
3672,
11639,
2220,
62,
71,
14761,
62,
9060,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
11639,
8912,
82,
281,
289,
14761,
2939,
422,
2035,
257,
6569,
19016,
393,
1957,
2393,
3108,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
795,
72,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
4868,
28,
25101,
8,
198,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
6371,
3256,
16794,
11639,
21886,
7268,
6569,
9168,
2939,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1462,
2251,
412,
8895,
422,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
7753,
6978,
3256,
16520,
11639,
7753,
6978,
3256,
1037,
11639,
8979,
3108,
284,
2251,
412,
8895,
422,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
28816,
541,
3256,
16520,
11639,
28816,
62,
30243,
3256,
1037,
11639,
464,
20966,
14,
4774,
3672,
286,
262,
4572,
326,
262,
4905,
481,
307,
6157,
319,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
28816,
62,
29460,
3256,
16520,
11639,
28816,
62,
29460,
3256,
1037,
11639,
464,
20579,
286,
262,
4572,
326,
262,
4905,
481,
307,
6157,
319,
11,
4277,
11097,
15763,
1,
3256,
4277,
11639,
15763,
11537,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
28816,
62,
28712,
3256,
16520,
11639,
28816,
62,
28712,
3256,
1037,
11639,
464,
9206,
286,
262,
4572,
326,
262,
4905,
481,
307,
6157,
319,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
28816,
62,
2539,
6978,
3256,
16520,
11639,
28816,
62,
2539,
6978,
3256,
1037,
11639,
464,
26678,
1994,
6978,
286,
262,
4572,
326,
262,
4905,
481,
307,
6157,
319,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
16520,
6978,
3256,
16794,
11639,
464,
3108,
319,
262,
670,
541,
11,
326,
428,
4905,
481,
307,
6157,
319,
3256,
4277,
11639,
14,
39531,
16,
14,
35350,
11537,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
6371,
6603,
3256,
2244,
11639,
86,
1136,
62,
28712,
3256,
16794,
11639,
35215,
2622,
284,
19818,
6569,
19016,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
6371,
7220,
3256,
16520,
11639,
86,
1136,
62,
7220,
3256,
1037,
11639,
5842,
13292,
2622,
284,
19818,
6569,
19016,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
70,
328,
2435,
3256,
16520,
11639,
2435,
62,
525,
62,
70,
328,
3256,
1037,
11639,
7575,
3142,
583,
12526,
2546,
286,
2939,
284,
307,
973,
3256,
4277,
28,
6200,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
3849,
65,
917,
1616,
524,
3256,
16520,
11639,
3849,
62,
65,
31249,
62,
48678,
3256,
1037,
11639,
9492,
12,
65,
31249,
26827,
3256,
4277,
28,
10232,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
32844,
1634,
62,
4906,
3256,
1037,
11639,
32844,
1634,
2099,
11,
289,
14761,
393,
279,
85,
3256,
4277,
11639,
71,
14761,
11537,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
27041,
316,
3256,
16520,
11639,
27041,
316,
3672,
3256,
1037,
11639,
27041,
316,
3672,
3256,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
24254,
3256,
2244,
11639,
24254,
3256,
1037,
11639,
1,
19314,
1,
393,
366,
11209,
1600,
4277,
25,
366,
23289,
30543,
837,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
25850,
276,
62,
805,
8409,
3256,
2244,
11639,
25850,
62,
805,
8409,
3256,
1037,
11639,
27041,
316,
14,
40290,
4067,
286,
10561,
284,
7881,
6,
837,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
65,
31249,
62,
805,
8409,
3256,
2244,
11639,
65,
31249,
62,
805,
8409,
3256,
1037,
11639,
7753,
3108,
319,
8383,
284,
18537,
10561,
284,
9516,
6,
837,
4277,
28,
14202,
8,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
2502,
13564,
3256,
1037,
11639,
8743,
49312,
3696,
287,
12336,
670,
26672,
319,
8383,
4572,
611,
1043,
3256,
2223,
11639,
8095,
62,
7942,
3256,
4277,
28,
25101,
8,
198,
198,
9288,
7442,
13,
48610,
13,
2860,
62,
49140,
10786,
438,
2435,
62,
525,
62,
70,
328,
3256,
1037,
11639,
7575,
3142,
583,
2939,
2546,
287,
13124,
878,
10576,
503,
13,
15161,
25,
6200,
4201,
3256,
4277,
28,
6200,
8,
198,
198,
9288,
7442,
13,
1136,
62,
22046,
3419,
198,
198,
9288,
7442,
13,
22046,
13,
28816,
62,
28712,
796,
1332,
7442,
13,
22046,
13,
28816,
62,
28712,
393,
1332,
7442,
13,
22046,
13,
28712,
198,
9288,
7442,
13,
22046,
13,
28816,
62,
2539,
6978,
796,
1332,
7442,
13,
22046,
13,
28816,
62,
2539,
6978,
393,
1332,
7442,
13,
22046,
13,
2539,
24874,
198,
198,
361,
407,
1332,
7442,
13,
22046,
13,
25850,
62,
805,
8409,
290,
407,
1332,
7442,
13,
22046,
13,
65,
31249,
62,
805,
8409,
25,
198,
220,
220,
220,
611,
357,
1662,
1332,
7442,
13,
22046,
13,
6371,
290,
407,
1332,
7442,
13,
22046,
13,
7753,
6978,
8,
393,
357,
9288,
7442,
13,
22046,
13,
6371,
290,
1332,
7442,
13,
22046,
13,
7753,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
10786,
1532,
10561,
407,
899,
798,
276,
11,
2035,
257,
10289,
393,
45811,
3108,
318,
2672,
284,
2251,
2939,
705,
8,
628,
198,
2,
16447,
281,
7412,
18274,
4487,
31904,
422,
262,
7159,
2810,
287,
428,
1332,
7442,
986,
198,
9060,
62,
26791,
796,
1332,
7442,
13,
4598,
62,
4480,
62,
22046,
7,
5159,
18274,
4487,
8,
198,
198,
2,
16447,
257,
2060,
1332,
7442,
284,
14441,
290,
1057,
262,
412,
8895,
6282,
4876,
13,
5740,
416,
4277,
477,
262,
32997,
26498,
422,
198,
2,
428,
1332,
7442,
389,
11672,
284,
262,
1332,
20850,
2446,
618,
4966,
13,
198,
9288,
16,
796,
1332,
7442,
13,
17953,
62,
9288,
20850,
62,
6738,
62,
24396,
7,
9060,
62,
26791,
13,
17953,
62,
43967,
8,
198,
9288,
17,
796,
1332,
7442,
13,
17953,
62,
9288,
20850,
62,
6738,
62,
24396,
7,
15883,
62,
9060,
62,
11377,
8,
198,
198,
20274,
796,
1332,
7442,
13,
5143,
62,
9288,
62,
7442,
62,
4868,
26933,
9288,
16,
11,
1332,
17,
4357,
304,
1659,
28,
17821,
11,
3424,
62,
261,
62,
37023,
28,
25101,
11,
3601,
43420,
28,
17821,
8,
198,
198,
2,
3886,
4277,
2727,
4133,
389,
8574,
287,
262,
304,
43120,
2840,
14,
4879,
353,
2134,
338,
1332,
62,
37540,
8633,
13,
4091,
611,
674,
2939,
318,
198,
2,
1050,
34086,
13,
1002,
523,
3601,
340,
503,
986,
198,
361,
2939,
62,
26791,
13,
4879,
353,
13,
9288,
62,
37540,
17816,
17566,
6,
5974,
198,
220,
220,
220,
795,
72,
796,
2939,
62,
26791,
13,
4879,
353,
13,
9288,
62,
37540,
17816,
17566,
6,
7131,
15,
60,
198,
220,
220,
220,
1332,
7442,
13,
24442,
10786,
59,
77,
22369,
6329,
59,
77,
41972,
412,
8895,
32105,
1343,
965,
7,
43967,
8,
1343,
6,
59,
77,
22369,
6329,
11537,
198,
198,
37023,
7,
20274,
8,
198
] | 3.24136 | 1,765 |
from pydantic import BaseModel
from pydantic.types import PositiveInt
from tortoise.contrib.pydantic.creator import pydantic_model_creator
from app.core.models.tortoise.author import Author
AuthorOut = pydantic_model_creator(Author)
| [
6738,
279,
5173,
5109,
1330,
7308,
17633,
198,
6738,
279,
5173,
5109,
13,
19199,
1330,
33733,
5317,
198,
6738,
7619,
25678,
13,
3642,
822,
13,
79,
5173,
5109,
13,
45382,
1330,
279,
5173,
5109,
62,
19849,
62,
45382,
198,
6738,
598,
13,
7295,
13,
27530,
13,
83,
419,
25678,
13,
9800,
1330,
6434,
198,
198,
13838,
7975,
796,
279,
5173,
5109,
62,
19849,
62,
45382,
7,
13838,
8,
198
] | 3.391304 | 69 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.