content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
from typing import Any, List, Dict
from anytree import Node, RenderTree, ContRoundStyle
class RenderState:
" Render state class. View shablbot module active in tree style. "
def render(self, style = ContRoundStyle) -> None:
""" Render tree with state bot modules.
Args:
style ([type], optional): Style how need rendered items. Defaults to ContRoundStyle.
"""
print(RenderTree(self.node, style=style()).by_attr())
def render_state(name_module: str, module: Any) -> None:
""" Render state module bot. Use tree.
Args:
name_module (str): Modules name
module (Any): Object for check node
"""
render_state = RenderState({ name_module: module })
render_state.render()
def render_state_all_components(list_components: List[Any]) -> None:
""" Render state all modules bot in tree style.
Args:
list_components (List[Any]): components bot for need rebder state. All componnets have 'get_main_data_object()' function"
"""
render_state = RenderState(
modules={
comp.__class__.__name__ : comp.get_main_data_object()
for comp in list_components
},
main_root=Node("Shablbot")
)
render_state.render()
| [
6738,
19720,
1330,
4377,
11,
7343,
11,
360,
713,
198,
198,
6738,
597,
21048,
1330,
19081,
11,
46722,
27660,
11,
2345,
22685,
21466,
628,
198,
4871,
46722,
9012,
25,
198,
220,
220,
220,
366,
46722,
1181,
1398,
13,
3582,
427,
23117,
13645,
8265,
4075,
287,
5509,
3918,
13,
366,
628,
220,
220,
220,
825,
8543,
7,
944,
11,
3918,
796,
2345,
22685,
21466,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
46722,
5509,
351,
1181,
10214,
13103,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3918,
29565,
4906,
4357,
11902,
2599,
17738,
703,
761,
15111,
3709,
13,
2896,
13185,
284,
2345,
22685,
21466,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
45819,
27660,
7,
944,
13,
17440,
11,
3918,
28,
7635,
3419,
737,
1525,
62,
35226,
28955,
628,
198,
4299,
8543,
62,
5219,
7,
3672,
62,
21412,
25,
965,
11,
8265,
25,
4377,
8,
4613,
6045,
25,
198,
220,
220,
220,
37227,
46722,
1181,
8265,
10214,
13,
5765,
5509,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
62,
21412,
357,
2536,
2599,
3401,
5028,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
8265,
357,
7149,
2599,
9515,
329,
2198,
10139,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8543,
62,
5219,
796,
46722,
9012,
15090,
1438,
62,
21412,
25,
8265,
32092,
198,
220,
220,
220,
8543,
62,
5219,
13,
13287,
3419,
628,
198,
4299,
8543,
62,
5219,
62,
439,
62,
5589,
3906,
7,
4868,
62,
5589,
3906,
25,
7343,
58,
7149,
12962,
4613,
6045,
25,
198,
220,
220,
220,
37227,
46722,
1181,
477,
13103,
10214,
287,
5509,
3918,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
5589,
3906,
357,
8053,
58,
7149,
60,
2599,
6805,
10214,
329,
761,
3405,
1082,
1181,
13,
1439,
552,
261,
45938,
423,
705,
1136,
62,
12417,
62,
7890,
62,
15252,
3419,
6,
2163,
1,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8543,
62,
5219,
796,
46722,
9012,
7,
198,
220,
220,
220,
220,
220,
220,
220,
13103,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
13,
834,
4871,
834,
13,
834,
3672,
834,
1058,
552,
13,
1136,
62,
12417,
62,
7890,
62,
15252,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
552,
287,
1351,
62,
5589,
3906,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1388,
62,
15763,
28,
19667,
7203,
2484,
23117,
13645,
4943,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
8543,
62,
5219,
13,
13287,
3419,
198
] | 2.67019 | 473 |
# %%
import matplotlib.pyplot as plt
from torch_geometric.data import download_url, extract_tar
from foam_graph.utils.graph_from_foam import read_foam
from foam_graph.visualization.graph_plotting import plot_graph
# %% Extract tar and read case as a graph
download_url("https://github.com/gfngoncalves/openfoam_cases/blob/main/damBreak.tar.xz?raw=true", ".")
extract_tar("damBreak.tar.xz", ".", mode="r:xz")
graph = read_foam(
"damBreak",
("alpha.water",),
read_boundaries=True,
)
#%% Plot alpha field for 2D case
field_name_plot = "alpha.water"
field_component_plot = 0
time = -1
fig, ax = plt.subplots(figsize=(10, 10))
plot_graph(graph[time], field_name_plot, field_component_plot, ax=ax)
plt.tight_layout()
plt.show()
| [
2,
43313,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
28034,
62,
469,
16996,
13,
7890,
1330,
4321,
62,
6371,
11,
7925,
62,
18870,
198,
6738,
19828,
62,
34960,
13,
26791,
13,
34960,
62,
6738,
62,
6513,
321,
1330,
1100,
62,
6513,
321,
198,
6738,
19828,
62,
34960,
13,
41464,
1634,
13,
34960,
62,
29487,
889,
1330,
7110,
62,
34960,
198,
198,
2,
43313,
29677,
13422,
290,
1100,
1339,
355,
257,
4823,
198,
15002,
62,
6371,
7203,
5450,
1378,
12567,
13,
785,
14,
70,
69,
782,
261,
9948,
1158,
14,
9654,
6513,
321,
62,
33964,
14,
2436,
672,
14,
12417,
14,
11043,
31737,
13,
18870,
13,
87,
89,
30,
1831,
28,
7942,
1600,
366,
19570,
198,
2302,
974,
62,
18870,
7203,
11043,
31737,
13,
18870,
13,
87,
89,
1600,
366,
33283,
4235,
2625,
81,
25,
87,
89,
4943,
198,
198,
34960,
796,
1100,
62,
6513,
321,
7,
198,
220,
220,
220,
366,
11043,
31737,
1600,
198,
220,
220,
220,
5855,
26591,
13,
7050,
1600,
828,
198,
220,
220,
220,
1100,
62,
7784,
3166,
28,
17821,
11,
198,
8,
198,
198,
2,
16626,
28114,
17130,
2214,
329,
362,
35,
1339,
198,
198,
3245,
62,
3672,
62,
29487,
796,
366,
26591,
13,
7050,
1,
198,
3245,
62,
42895,
62,
29487,
796,
657,
198,
2435,
796,
532,
16,
198,
198,
5647,
11,
7877,
796,
458,
83,
13,
7266,
489,
1747,
7,
5647,
7857,
16193,
940,
11,
838,
4008,
198,
29487,
62,
34960,
7,
34960,
58,
2435,
4357,
2214,
62,
3672,
62,
29487,
11,
2214,
62,
42895,
62,
29487,
11,
7877,
28,
897,
8,
198,
198,
489,
83,
13,
33464,
62,
39786,
3419,
198,
489,
83,
13,
12860,
3419,
198
] | 2.633452 | 281 |
from __future__ import annotations
from typing import Type, Optional, List
from Exceptions.BranchHaveDiverged import BranchHaveDiverged
from Exceptions.BranchNotExist import BranchNotExist
from Exceptions.GitMergeConflictError import GitMergeConflictError
from Exceptions.NotCleanWorkingTree import NotCleanWorkingTree
from FlexioFlow.StateHandler import StateHandler
from Branches.Branches import Branches
from Log.Log import Log
from VersionControl.Git.Branches.GitFlowCmd import GitFlowCmd
from VersionControl.Git.GitCmd import GitCmd
from VersionControlProvider.Github.Message import Message
from VersionControlProvider.Issue import Issue
from VersionControlProvider.Topic import Topic
from ConsoleColors.Fg import Fg
from Core.ConfigHandler import ConfigHandler
| [
6738,
11593,
37443,
834,
1330,
37647,
198,
198,
6738,
19720,
1330,
5994,
11,
32233,
11,
7343,
198,
198,
6738,
1475,
11755,
13,
33,
25642,
11980,
35,
1428,
2004,
1330,
20551,
11980,
35,
1428,
2004,
198,
6738,
1475,
11755,
13,
33,
25642,
3673,
3109,
396,
1330,
20551,
3673,
3109,
396,
198,
6738,
1475,
11755,
13,
38,
270,
13102,
469,
18546,
13758,
12331,
1330,
15151,
13102,
469,
18546,
13758,
12331,
198,
6738,
1475,
11755,
13,
3673,
32657,
28516,
27660,
1330,
1892,
32657,
28516,
27660,
198,
6738,
26719,
952,
37535,
13,
9012,
25060,
1330,
1812,
25060,
198,
6738,
1709,
12140,
13,
9414,
12140,
1330,
1709,
12140,
198,
6738,
5972,
13,
11187,
1330,
5972,
198,
6738,
10628,
15988,
13,
38,
270,
13,
9414,
12140,
13,
38,
270,
37535,
40109,
1330,
15151,
37535,
40109,
198,
6738,
10628,
15988,
13,
38,
270,
13,
38,
270,
40109,
1330,
15151,
40109,
198,
6738,
10628,
15988,
29495,
13,
38,
10060,
13,
12837,
1330,
16000,
198,
6738,
10628,
15988,
29495,
13,
45147,
1330,
18232,
198,
6738,
10628,
15988,
29495,
13,
33221,
1330,
47373,
198,
6738,
24371,
5216,
669,
13,
37,
70,
1330,
376,
70,
198,
6738,
7231,
13,
16934,
25060,
1330,
17056,
25060,
628
] | 3.969072 | 194 |
from dataclasses import fields
from pydantic import conint
from pydantic.fields import Field
import numpy as np
from .bounding_box import BoundingBox
from .trajectory import Trajectory
from ..settings import DefaultValues
from ..enums import ReferenceTypes
from ..geometry import BBXCornersClass
from ..reference_resolving import *
import xarray as xr
def in_timespan(obj, birth, death):
"""
birth = first timestamp idx
death = last timestamp idx
"""
return birth <= obj.end and death >= obj.birth
| [
6738,
4818,
330,
28958,
1330,
7032,
198,
6738,
279,
5173,
5109,
1330,
369,
600,
198,
6738,
279,
5173,
5109,
13,
25747,
1330,
7663,
198,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
764,
7784,
278,
62,
3524,
1330,
347,
9969,
14253,
198,
6738,
764,
9535,
752,
652,
1330,
4759,
752,
652,
198,
6738,
11485,
33692,
1330,
15161,
40161,
198,
6738,
11485,
268,
5700,
1330,
20984,
31431,
198,
6738,
11485,
469,
15748,
1330,
12597,
55,
41389,
364,
9487,
198,
6738,
11485,
35790,
62,
411,
10890,
1330,
1635,
198,
11748,
2124,
18747,
355,
2124,
81,
628,
198,
4299,
287,
62,
22355,
6839,
7,
26801,
11,
4082,
11,
1918,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4082,
796,
717,
41033,
4686,
87,
198,
220,
220,
220,
1918,
796,
938,
41033,
4686,
87,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
4082,
19841,
26181,
13,
437,
290,
1918,
18189,
26181,
13,
24280,
628,
628
] | 3.365385 | 156 |
import calendar
import datetime
import logging
import operator
import os
import pytz
from pdb import set_trace
from django.db import models
from django.conf import settings
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _
from django.utils.encoding import DjangoUnicodeDecodeError
from django_fields.fields import EncryptedCharField
from django_vcs_watch.settings import \
REVISION_LIMIT, \
CHECK_INTERVAL_MIN, \
CHECK_INTERVAL_MAX, \
POSTPROCESS_COMMIT
from django_vcs_watch.utils import \
timedelta_to_string, \
strip_timezone, \
mongo, \
get_user_feed_slug
from pymongo import DESCENDING
from mongobongo import Document
if 'django_globals' not in settings.INSTALLED_APPS:
raise Exception('Please, install django_globals application.')
if 'django_globals.middleware.User' not in settings.MIDDLEWARE_CLASSES:
raise Exception('Please, add django_globals.middleware.User to the MIDDLEWARE_CLASSES.')
from django.db.models.signals import class_prepared
class_prepared.connect(_init_mongo_connection)
from django.db.models import signals
signals.post_save.connect(create_user_feed, sender = User)
| [
11748,
11845,
198,
11748,
4818,
8079,
198,
11748,
18931,
198,
11748,
10088,
198,
11748,
28686,
198,
11748,
12972,
22877,
198,
198,
6738,
279,
9945,
1330,
900,
62,
40546,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
198,
6738,
42625,
14208,
13,
26791,
13,
12685,
7656,
1330,
37770,
3118,
291,
1098,
10707,
1098,
12331,
198,
198,
6738,
42625,
14208,
62,
25747,
13,
25747,
1330,
14711,
15109,
12441,
15878,
198,
198,
6738,
42625,
14208,
62,
85,
6359,
62,
8340,
13,
33692,
1330,
3467,
198,
220,
220,
220,
4526,
29817,
2849,
62,
43,
3955,
2043,
11,
3467,
198,
220,
220,
220,
5870,
25171,
62,
41358,
23428,
62,
23678,
11,
3467,
198,
220,
220,
220,
5870,
25171,
62,
41358,
23428,
62,
22921,
11,
3467,
198,
220,
220,
220,
24582,
4805,
4503,
7597,
62,
9858,
36393,
198,
198,
6738,
42625,
14208,
62,
85,
6359,
62,
8340,
13,
26791,
1330,
3467,
198,
220,
220,
220,
28805,
12514,
62,
1462,
62,
8841,
11,
3467,
198,
220,
220,
220,
10283,
62,
2435,
11340,
11,
3467,
198,
220,
220,
220,
285,
25162,
11,
3467,
198,
220,
220,
220,
651,
62,
7220,
62,
12363,
62,
6649,
1018,
198,
198,
6738,
279,
4948,
25162,
1330,
22196,
34,
10619,
2751,
198,
6738,
285,
506,
672,
25162,
1330,
16854,
628,
198,
361,
705,
28241,
14208,
62,
4743,
672,
874,
6,
407,
287,
6460,
13,
38604,
7036,
1961,
62,
2969,
3705,
25,
198,
220,
220,
220,
5298,
35528,
10786,
5492,
11,
2721,
42625,
14208,
62,
4743,
672,
874,
3586,
2637,
8,
198,
198,
361,
705,
28241,
14208,
62,
4743,
672,
874,
13,
27171,
1574,
13,
12982,
6,
407,
287,
6460,
13,
44,
2389,
35,
2538,
33746,
62,
31631,
1546,
25,
198,
220,
220,
220,
5298,
35528,
10786,
5492,
11,
751,
42625,
14208,
62,
4743,
672,
874,
13,
27171,
1574,
13,
12982,
284,
262,
25269,
35,
2538,
33746,
62,
31631,
1546,
2637,
8,
628,
628,
628,
628,
628,
198,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
13,
12683,
874,
1330,
1398,
62,
3866,
29190,
198,
4871,
62,
3866,
29190,
13,
8443,
28264,
15003,
62,
76,
25162,
62,
38659,
8,
628,
198,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
1330,
10425,
198,
198,
12683,
874,
13,
7353,
62,
21928,
13,
8443,
7,
17953,
62,
7220,
62,
12363,
11,
29788,
796,
11787,
8,
198
] | 2.892344 | 418 |
#!/usr/bin/env python3
#
# Adobe Photoshop "*.act" palette file conversion to GIMP "*.gpl" palette
# format (which is also recognized by many other tools).
#
# How to use:
# ./act_to_gpl.py some_palette.act > some_palette.gpl
#
# Code based on swatchbook/codecs/adobe_act.py from:
# http://www.selapa.net/swatchbooker/
import os.path
import struct
import sys
if __name__ == '__main__':
sys.stdout.write(
return_gimp_palette(parse_adobe_act(sys.argv[1]), sys.argv[1])
)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
198,
2,
21771,
29153,
366,
24620,
529,
1,
27043,
2393,
11315,
284,
402,
3955,
47,
366,
24620,
70,
489,
1,
27043,
198,
2,
5794,
357,
4758,
318,
635,
8018,
416,
867,
584,
4899,
737,
198,
2,
198,
2,
1374,
284,
779,
25,
198,
2,
220,
220,
24457,
529,
62,
1462,
62,
70,
489,
13,
9078,
617,
62,
18596,
5857,
13,
529,
1875,
617,
62,
18596,
5857,
13,
70,
489,
198,
2,
198,
2,
6127,
1912,
319,
1509,
963,
2070,
14,
19815,
721,
82,
14,
36752,
62,
529,
13,
9078,
422,
25,
198,
2,
2638,
1378,
2503,
13,
741,
32678,
13,
3262,
14,
2032,
963,
2070,
263,
14,
628,
198,
11748,
28686,
13,
6978,
198,
11748,
2878,
198,
11748,
25064,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
62,
70,
11011,
62,
18596,
5857,
7,
29572,
62,
36752,
62,
529,
7,
17597,
13,
853,
85,
58,
16,
46570,
25064,
13,
853,
85,
58,
16,
12962,
198,
220,
220,
220,
1267,
198
] | 2.510204 | 196 |
from flask import Flask, request, redirect, render_template
from werkzeug.utils import secure_filename
import os
import tensorflow as tf
import numpy as np
import cv2
food_classes = ['Broken street sign', 'Damaged bollard', 'Damaged street light', 'Pothole']
app = Flask(__name__, static_url_path='/static')
app.config["IMAGE_UPLOADS"] = './static'
app.config["ALLOWED_IMAGE_EXTENSIONS"] = ["JPEG", "JPG", "PNG"]
food_prediction_model = tf.keras.models.load_model('./deeplearning_model')
@app.route("/", methods=["GET", "POST"])
@app.route("/showing-image/<image_name>", methods=["GET", "POST"])
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=int(os.environ.get('PORT', 8080)))
| [
6738,
42903,
1330,
46947,
11,
2581,
11,
18941,
11,
8543,
62,
28243,
198,
6738,
266,
9587,
2736,
1018,
13,
26791,
1330,
220,
5713,
62,
34345,
198,
11748,
28686,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
269,
85,
17,
198,
198,
19425,
62,
37724,
796,
37250,
15783,
3464,
4675,
1051,
3256,
705,
14550,
1886,
275,
692,
446,
3256,
705,
14550,
1886,
4675,
1657,
3256,
705,
47,
849,
2305,
20520,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
11,
9037,
62,
6371,
62,
6978,
11639,
14,
12708,
11537,
198,
198,
1324,
13,
11250,
14692,
3955,
11879,
62,
52,
6489,
41048,
50,
8973,
796,
705,
19571,
12708,
6,
198,
1324,
13,
11250,
14692,
7036,
3913,
1961,
62,
3955,
11879,
62,
13918,
16938,
11053,
8973,
796,
14631,
12889,
7156,
1600,
366,
41,
6968,
1600,
366,
47,
10503,
8973,
628,
198,
19425,
62,
28764,
2867,
62,
19849,
796,
48700,
13,
6122,
292,
13,
27530,
13,
2220,
62,
19849,
7,
4458,
14,
22089,
40684,
62,
19849,
11537,
628,
198,
198,
31,
1324,
13,
38629,
7203,
14,
1600,
5050,
28,
14692,
18851,
1600,
366,
32782,
8973,
8,
628,
198,
198,
31,
1324,
13,
38629,
7203,
14,
1477,
7855,
12,
9060,
14,
27,
9060,
62,
3672,
29,
1600,
5050,
28,
14692,
18851,
1600,
366,
32782,
8973,
8,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
598,
13,
5143,
7,
24442,
28,
17821,
11,
2583,
11639,
15,
13,
15,
13,
15,
13,
15,
3256,
2493,
28,
600,
7,
418,
13,
268,
2268,
13,
1136,
10786,
15490,
3256,
4019,
1795,
22305,
628
] | 2.665428 | 269 |
import numpy as np
from numba import jit
import matplotlib.pyplot as plt
import quantecon as qe
from quantecon.distributions import BetaBinomial
n, a, b = 50, 200, 100
w_min, w_max = 10, 60
w_vals = np.linspace(w_min, w_max, n+1)
dist = BetaBinomial(n, a, b)
psi_vals = dist.pdf()
reservation_wage = compute_reservation_wage(w_vals, psi_vals)
print(reservation_wage)
| [
11748,
299,
32152,
355,
45941,
198,
6738,
997,
7012,
1330,
474,
270,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
5554,
721,
261,
355,
10662,
68,
198,
6738,
5554,
721,
261,
13,
17080,
2455,
507,
1330,
17993,
33,
259,
49070,
198,
198,
77,
11,
257,
11,
275,
796,
2026,
11,
939,
11,
1802,
198,
86,
62,
1084,
11,
266,
62,
9806,
796,
838,
11,
3126,
198,
86,
62,
12786,
796,
45941,
13,
21602,
10223,
7,
86,
62,
1084,
11,
266,
62,
9806,
11,
299,
10,
16,
8,
198,
17080,
796,
17993,
33,
259,
49070,
7,
77,
11,
257,
11,
275,
8,
198,
862,
72,
62,
12786,
796,
1233,
13,
12315,
3419,
628,
628,
198,
198,
411,
13208,
62,
21482,
796,
24061,
62,
411,
13208,
62,
21482,
7,
86,
62,
12786,
11,
46231,
62,
12786,
8,
628,
198,
4798,
7,
411,
13208,
62,
21482,
8,
198
] | 2.5 | 150 |
import xmlrpc.client as xmlrpclib
import json
config_path = "./blog_config.json"
def have_config():
'''
return bool value : whether config file exists
'''
try:
with open(config_path, "r", encoding = "utf-8") as f:
try:
cfg = json.load(f)
return cfg != {}
except json.decoder.JSONDecodeError:
return False
except:
with open(config_path, "w", encoding = "utf-8") as f:
json.dump({}, f)
return False
def create_config():
'''
create config file if it doesnt exist
only save ensured data usr provided, if not print ERROR
'''
# Provide EXAMPLE Here
for test_times in range(0, 2):
cfg = {}
for item in [("url", "metaWeblog url"),
("appkey", "blogaddress"),
("usr", "usrname"),
("passwd", "password")]:
cfg[item[0]] = input(item[1] + " : ")
try:
server = xmlrpclib.ServerProxy(cfg["url"])
userInfo = server.blogger.getUsersBlogs(
cfg["appkey"], cfg["usr"], cfg["passwd"])
print (userInfo[0])
cfg["bolgid"] = userInfo[0]["blogid"]
break
except:
print ("ERROR!!!")
print ("Please Check It Again")
with open(config_path, "w", encoding = "utf-8") as f:
json.dump(cfg, f, indent = 4, ensure_ascii = False)
if __name__ == "__main__":
if have_config() == False:
create_config()
print ("End")
| [
11748,
35555,
81,
14751,
13,
16366,
355,
35555,
81,
79,
565,
571,
198,
11748,
33918,
198,
198,
11250,
62,
6978,
796,
366,
19571,
14036,
62,
11250,
13,
17752,
1,
198,
198,
4299,
423,
62,
11250,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1441,
20512,
1988,
1058,
1771,
4566,
2393,
7160,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
11250,
62,
6978,
11,
366,
81,
1600,
21004,
796,
366,
40477,
12,
23,
4943,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30218,
70,
796,
33918,
13,
2220,
7,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
30218,
70,
14512,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
33918,
13,
12501,
12342,
13,
40386,
10707,
1098,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
11250,
62,
6978,
11,
366,
86,
1600,
21004,
796,
366,
40477,
12,
23,
4943,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
15090,
5512,
277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
198,
4299,
2251,
62,
11250,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
2251,
4566,
2393,
611,
340,
46701,
2152,
198,
220,
220,
220,
691,
3613,
30169,
1366,
514,
81,
2810,
11,
611,
407,
3601,
33854,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
44290,
7788,
2390,
16437,
3423,
628,
220,
220,
220,
329,
1332,
62,
22355,
287,
2837,
7,
15,
11,
362,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
30218,
70,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2378,
287,
685,
7203,
6371,
1600,
366,
28961,
1135,
14036,
19016,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5855,
1324,
2539,
1600,
366,
14036,
21975,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5855,
14629,
1600,
366,
14629,
3672,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5855,
6603,
16993,
1600,
366,
28712,
4943,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30218,
70,
58,
9186,
58,
15,
11907,
796,
5128,
7,
9186,
58,
16,
60,
1343,
366,
1058,
366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4382,
796,
35555,
81,
79,
565,
571,
13,
10697,
44148,
7,
37581,
14692,
6371,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
12360,
796,
4382,
13,
14036,
1362,
13,
1136,
14490,
3629,
18463,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30218,
70,
14692,
1324,
2539,
33116,
30218,
70,
14692,
14629,
33116,
30218,
70,
14692,
6603,
16993,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
357,
7220,
12360,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30218,
70,
14692,
28984,
70,
312,
8973,
796,
2836,
12360,
58,
15,
7131,
1,
14036,
312,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
24908,
3228,
2474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
5492,
6822,
632,
6521,
4943,
198,
220,
220,
220,
351,
1280,
7,
11250,
62,
6978,
11,
366,
86,
1600,
21004,
796,
366,
40477,
12,
23,
4943,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
7,
37581,
11,
277,
11,
33793,
796,
604,
11,
4155,
62,
292,
979,
72,
796,
10352,
8,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
611,
423,
62,
11250,
3419,
6624,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
11250,
3419,
198,
220,
220,
220,
3601,
5855,
12915,
4943,
198
] | 1.988722 | 798 |
# Generated by Django 3.1.6 on 2021-02-11 12:42
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
16,
13,
21,
319,
33448,
12,
2999,
12,
1157,
1105,
25,
3682,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
import traceback
from flask import current_app
from numbers import Real
from decimal import Decimal
from itertools import tee, filterfalse
class DeferredSourceMatcher(object):
"""
# Defer loading of the actual source matcher to runtime to save on
# startup time when we don't need it.
"""
def __getattr__(self, att_name):
"""
:param att_name:
:return:
"""
if att_name=='__bases__':
return (object,)
elif att_name=='__name__':
return 'Unready source matcher'
return getattr(current_app.extensions['source_matcher'], att_name)
SOURCE_MATCHER = DeferredSourceMatcher()
class Evidences(object):
"""
a measure of confidence of a match.
All scoring functions working on one aspect are supposed to give a float
between -1 and 1, where -1 is "I'm pretty sure it's wrong" and 1 is
"I'm almost certain it's right". They put this score into the the
add_evidence function.
The individual evidences are kept by this class, but there's a get_score
method that munges them together to yield a number between -1 and 1 that
we hope to be a useful measure for the relative credibility of solutions.
The individual evidences typically come from tailored matching functions
(e.g., authors.compute_author_evidence). Those are free to abstain
from voting; if no evidences are collected, get_score will return
None (which should allow for easy filtering of those).
These evidences stand in as scores in that, when compared, they
are ordered according to what get_score returns.
"""
def __init__(self):
"""
"""
self.evidences = []
self.labels = []
# _score is cached; None means "not computed yet or invalid"
self.score = None
self.min_score = current_app.config['EVIDENCE_SCORE_RANGE'][0]
self.max_score = current_app.config['EVIDENCE_SCORE_RANGE'][1]
def __lt__(self, other):
"""
:param other:
:return:
"""
try:
return self.get_score() < other.get_score()
except (AttributeError, TypeError):
if other:
return self.get_score() < float(other)
return False
def __le__(self, other):
"""
:param other:
:return:
"""
try:
return self.get_score() <= other.get_score()
except (AttributeError, TypeError):
if other:
return self.get_score() <= float(other)
return False
def __gt__(self, other):
"""
:param other:
:return:
"""
try:
return self.get_score() > other.get_score()
except (AttributeError, TypeError):
if other:
return self.get_score() > float(other)
return False
def __ge__(self, other):
"""
:param other:
:return:
"""
try:
return self.get_score() >= other.get_score()
except (AttributeError, TypeError):
if other:
return self.get_score() >= float(other)
return False
def __eq__(self, other):
"""
:param other:
:return:
"""
try:
return self.get_score() == other.get_score()
except (AttributeError, TypeError):
if other:
return self.get_score() == float(other)
return False
def __len__(self):
"""
:return:
"""
return len(self.evidences)
def __str__(self):
"""
:return:
"""
return 'Evidences(%s)'%', '.join('%s=%s'%item for item in zip (self.labels, self.evidences))
def __add__(self, other):
"""
:param other:
:return:
"""
for ev in other.evidences:
assert self.min_score <= ev <= self.max_score
self.score = None
self.evidences += other.evidences
self.labels +=other.labels
return self
def sum(self):
"""
:return:
"""
return sum(self.evidences)
def avg(self):
"""
:return:
"""
if len(self.evidences) != 0:
return round(self.sum()/len(self.evidences), 1)
return 0
def add_evidence(self, evidence, label):
"""
adds evidence (a float between -1 and 1) to our evidence collection
under label.
:param evidence:
:param label:
:return:
"""
assert self.min_score <= evidence <= self.max_score
self.score = None
self.evidences.append(evidence)
self.labels.append(label)
def get_score(self):
"""
returns some float between -1 and 1 representative of the collective
evidence collected.
:return:
"""
if not self.evidences:
current_app.logger.error('No evidence, rejecting')
return 0
if self.score is None:
self.score = sum(self.evidences)
return self.score
def has_veto(self):
"""
returns false if all evidence is strictly positive.
:return:
"""
for e in self.evidences:
if e<=0:
return True
return False
def single_veto_from(self, field_label):
"""
returns true if there is exactly one veto and it originates from
what has field_label.
:param field_label:
:return:
"""
neg_inds = [ind for ind, ev in enumerate(self.evidences) if ev<=0]
if len(neg_inds)==1:
return (self.labels[neg_inds[0]]==field_label)
return False
def count_votes(self):
"""
return true if the combination of terms all have high scores
:return:
"""
d = dict(zip(self.labels, self.evidences))
combinations = [
['authors', 'pubstring', 'volume', 'year'],
['authors', 'year', 'page']
]
for fields in combinations:
vote = 0
for term in fields:
if term in d and d[term] == current_app.config['EVIDENCE_SCORE_RANGE'][1]:
vote += 1
if vote == len(fields):
return True
return False
def __getitem__(self, label):
"""
returns the score for the field label if exist
:param label:
:return:
"""
if label in self.labels:
d = dict(zip(self.labels, self.evidences))
return d[label]
return None
class Solution(object):
"""
a container for a solution and some ancillary metadata.
Ancillary metadata includes:
* citing_bibcode
* score
* source_hypothesis (the hypothesis that eventually got it right)
"""
def __init__(self, cited_bibcode, score, source_hypothesis='not given', citing_bibcode=None):
"""
:param cited_bibcode:
:param score:
:param source_hypothesis:
:param citing_bibcode:
"""
self.cited_bibcode = cited_bibcode
self.score = score
self.citing_bibcode = str(citing_bibcode)
self.source_hypothesis = source_hypothesis
def __str__(self):
"""
:return:
"""
if isinstance(self.score, Evidences):
return '%.1f %s'%(self.score.avg(),self.cited_bibcode)
raise NoSolution("NotResolved")
class Hypothesis(object):
"""A container for expectations to a reference.
Constraints have a dict of fields to show to the search
engine (the hints, get them from the attribute), and a
get_score(response_record, hypothesis)->Evidences method.
See common.Evidences for details.
The get_score function receives a result record, i.e.,
a dictionary containing at most the fields given in the
apiQueryFields configuration. How it compares this against
what's in the record is basically up to the class.
Additionally, it gets the hypotheses that generated the response.
This is a simple way to pass information from the hints generator
to the matching function -- usually, you should just construct
the Hypothesis with additional keyword arguments ("details");
you should query for them in get_score using the get_detail(str)
-> anything method (that returns None for keys not passed).
For debugging, you should give hypotheses short, but somewhat
expressive names. See below for examples.
"""
def __init__(self, name, hints, get_score_function, **details):
"""
:param name:
:param hints:
:param get_score_function:
:param details:
"""
self.name = name
self.hints, self.get_score_function = hints, get_score_function
self.details = details
def get_score(self, response_record, hints):
"""
:param response_record:
:param hints:
:return:
"""
return self.get_score_function(response_record, hints)
def get_detail(self, detail_name):
"""
:param detail_name:
:return:
"""
if detail_name in self.details:
return self.details.get(detail_name)
return None
def get_hint(self, hint_name):
"""
:param hint_name:
:return:
"""
if hint_name in self.hints:
return self.hints.get(hint_name)
return None
class NotResolved(object):
"""
a sentinel class holding unresolved references.
"""
def __init__(self, raw_ref, citing_bibcode):
"""
:param raw_ref:
:param citing_bibcode:
"""
self.raw_ref = raw_ref
self.citing_bibcode = str(citing_bibcode)
def __str__(self):
"""
:return:
"""
return 'NOT RESOLVED: %s...'%(self.raw_ref[:40])
class Error(Exception):
"""
the base class for all exceptions.
"""
pass
class NoSolution(Error):
"""
is raised when a solution could not be found.
NoSolution is constructed with an explanation string and the
Reference instance that failed.
"""
class Undecidable(NoSolution):
"""
is raised when the resolver needs to make a decision but cannot.
In addition to the reference string, this also contains
solutions_considered, pairs of evidence and solutions that were
considered tied.
"""
class Overflow(Error):
"""is raised when too many matches come back from solr.
It should be taken as "please try another, more specific hypothesis".
"""
class OverflowOrNone(Error):
"""
is rasided either if too many matches or no records come back from solr
"""
class Solr(Error):
"""
is raised when solr returns an error.
"""
class Incomplete(Error):
"""
is raised when parsed reference is incomplete and hence not able to resolve the reference.
"""
def round_two_significant_digits(num):
"""
:param num:
:return:
"""
return float('%s' % float('%.1g' % num))
def sorted2(iterable):
"""
source: https://stackoverflow.com/a/43456510
:param iterable: An iterable (array or alike) entity which elements should be sorted.
:return: List with sorted elements.
"""
t1, t2 = tee(iterable)
numbers = filter(predicate, t1)
non_numbers = filterfalse(predicate, t2)
sorted_numbers = sorted(numbers)
sorted_non_numbers = sorted(non_numbers, key=str)
return sorted_numbers + sorted_non_numbers | [
11748,
12854,
1891,
198,
198,
6738,
42903,
1330,
1459,
62,
1324,
198,
198,
6738,
3146,
1330,
6416,
198,
6738,
32465,
1330,
4280,
4402,
198,
6738,
340,
861,
10141,
1330,
30479,
11,
8106,
9562,
628,
198,
4871,
2896,
17436,
7416,
19044,
2044,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
2896,
263,
11046,
286,
262,
4036,
2723,
2603,
2044,
284,
19124,
284,
3613,
319,
198,
220,
220,
220,
1303,
13693,
640,
618,
356,
836,
470,
761,
340,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
1136,
35226,
834,
7,
944,
11,
708,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
708,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
708,
62,
3672,
855,
6,
834,
65,
1386,
834,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
15252,
35751,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
708,
62,
3672,
855,
6,
834,
3672,
834,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
3118,
1493,
2723,
2603,
2044,
6,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
35226,
7,
14421,
62,
1324,
13,
2302,
5736,
17816,
10459,
62,
6759,
2044,
6,
4357,
708,
62,
3672,
8,
198,
198,
47690,
62,
44,
11417,
1137,
796,
2896,
17436,
7416,
19044,
2044,
3419,
628,
198,
4871,
4319,
44845,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
257,
3953,
286,
6628,
286,
257,
2872,
13,
628,
220,
220,
220,
1439,
9689,
5499,
1762,
319,
530,
4843,
389,
4385,
284,
1577,
257,
12178,
198,
220,
220,
220,
1022,
532,
16,
290,
352,
11,
810,
532,
16,
318,
366,
40,
1101,
2495,
1654,
340,
338,
2642,
1,
290,
352,
318,
198,
220,
220,
220,
366,
40,
1101,
2048,
1728,
340,
338,
826,
1911,
220,
1119,
1234,
428,
4776,
656,
262,
262,
198,
220,
220,
220,
751,
62,
46817,
2163,
13,
628,
220,
220,
220,
383,
1981,
25568,
3007,
389,
4030,
416,
428,
1398,
11,
475,
612,
338,
257,
651,
62,
26675,
198,
220,
220,
220,
2446,
326,
285,
2150,
274,
606,
1978,
284,
7800,
257,
1271,
1022,
532,
16,
290,
352,
326,
198,
220,
220,
220,
356,
2911,
284,
307,
257,
4465,
3953,
329,
262,
3585,
16532,
286,
8136,
13,
628,
220,
220,
220,
383,
1981,
25568,
3007,
6032,
1282,
422,
27571,
12336,
5499,
198,
220,
220,
220,
357,
68,
13,
70,
1539,
7035,
13,
5589,
1133,
62,
9800,
62,
46817,
737,
220,
5845,
389,
1479,
284,
16552,
391,
198,
220,
220,
220,
422,
6709,
26,
611,
645,
25568,
3007,
389,
7723,
11,
651,
62,
26675,
481,
1441,
198,
220,
220,
220,
6045,
357,
4758,
815,
1249,
329,
2562,
25431,
286,
883,
737,
628,
220,
220,
220,
2312,
25568,
3007,
1302,
287,
355,
8198,
287,
326,
11,
618,
3688,
11,
484,
198,
220,
220,
220,
389,
6149,
1864,
284,
644,
651,
62,
26675,
5860,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1990,
44845,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
23912,
1424,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4808,
26675,
318,
39986,
26,
6045,
1724,
366,
1662,
29231,
1865,
393,
12515,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26675,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1084,
62,
26675,
796,
1459,
62,
1324,
13,
11250,
17816,
36,
11008,
18310,
62,
6173,
6965,
62,
49,
27746,
6,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9806,
62,
26675,
796,
1459,
62,
1324,
13,
11250,
17816,
36,
11008,
18310,
62,
6173,
6965,
62,
49,
27746,
6,
7131,
16,
60,
628,
220,
220,
220,
825,
11593,
2528,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
1279,
584,
13,
1136,
62,
26675,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
33682,
12331,
11,
5994,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
1279,
12178,
7,
847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
11593,
293,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
19841,
584,
13,
1136,
62,
26675,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
33682,
12331,
11,
5994,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
19841,
12178,
7,
847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
11593,
13655,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
1875,
584,
13,
1136,
62,
26675,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
33682,
12331,
11,
5994,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
1875,
12178,
7,
847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
11593,
469,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
18189,
584,
13,
1136,
62,
26675,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
33682,
12331,
11,
5994,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
18189,
12178,
7,
847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
11593,
27363,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
6624,
584,
13,
1136,
62,
26675,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
33682,
12331,
11,
5994,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
3419,
6624,
12178,
7,
847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
11593,
11925,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18896,
7,
944,
13,
1990,
44845,
8,
628,
220,
220,
220,
825,
11593,
2536,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
15200,
44845,
7,
4,
82,
33047,
4,
3256,
45302,
22179,
10786,
4,
82,
28,
4,
82,
6,
4,
9186,
329,
2378,
287,
19974,
357,
944,
13,
23912,
1424,
11,
2116,
13,
1990,
44845,
4008,
628,
220,
220,
220,
825,
11593,
2860,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
584,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
819,
287,
584,
13,
1990,
44845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
2116,
13,
1084,
62,
26675,
19841,
819,
19841,
2116,
13,
9806,
62,
26675,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26675,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1990,
44845,
15853,
584,
13,
1990,
44845,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
23912,
1424,
15853,
847,
13,
23912,
1424,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
825,
2160,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2160,
7,
944,
13,
1990,
44845,
8,
628,
220,
220,
220,
825,
42781,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
944,
13,
1990,
44845,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2835,
7,
944,
13,
16345,
3419,
14,
11925,
7,
944,
13,
1990,
44845,
828,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
657,
628,
220,
220,
220,
825,
751,
62,
46817,
7,
944,
11,
2370,
11,
6167,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6673,
2370,
357,
64,
12178,
1022,
532,
16,
290,
352,
8,
284,
674,
2370,
4947,
198,
220,
220,
220,
220,
220,
220,
220,
739,
6167,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2370,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6167,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2116,
13,
1084,
62,
26675,
19841,
2370,
19841,
2116,
13,
9806,
62,
26675,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26675,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1990,
44845,
13,
33295,
7,
46817,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
23912,
1424,
13,
33295,
7,
18242,
8,
628,
220,
220,
220,
825,
651,
62,
26675,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
617,
12178,
1022,
532,
16,
290,
352,
8852,
286,
262,
10098,
198,
220,
220,
220,
220,
220,
220,
220,
2370,
7723,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
1990,
44845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1459,
62,
1324,
13,
6404,
1362,
13,
18224,
10786,
2949,
2370,
11,
26734,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
657,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
26675,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26675,
796,
2160,
7,
944,
13,
1990,
44845,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26675,
628,
220,
220,
220,
825,
468,
62,
303,
1462,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
3991,
611,
477,
2370,
318,
14084,
3967,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
304,
287,
2116,
13,
1990,
44845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
304,
27,
28,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
2060,
62,
303,
1462,
62,
6738,
7,
944,
11,
2214,
62,
18242,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
2081,
611,
612,
318,
3446,
530,
18860,
290,
340,
8159,
689,
422,
198,
220,
220,
220,
220,
220,
220,
220,
644,
468,
2214,
62,
18242,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2214,
62,
18242,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2469,
62,
521,
82,
796,
685,
521,
329,
773,
11,
819,
287,
27056,
378,
7,
944,
13,
1990,
44845,
8,
611,
819,
27,
28,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
12480,
62,
521,
82,
8,
855,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
944,
13,
23912,
1424,
58,
12480,
62,
521,
82,
58,
15,
11907,
855,
3245,
62,
18242,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
825,
954,
62,
29307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2081,
611,
262,
6087,
286,
2846,
477,
423,
1029,
8198,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
288,
796,
8633,
7,
13344,
7,
944,
13,
23912,
1424,
11,
2116,
13,
1990,
44845,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
17790,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
41617,
3256,
705,
12984,
8841,
3256,
705,
29048,
3256,
705,
1941,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
41617,
3256,
705,
1941,
3256,
705,
7700,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
329,
7032,
287,
17790,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3015,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3381,
287,
7032,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3381,
287,
288,
290,
288,
58,
4354,
60,
6624,
1459,
62,
1324,
13,
11250,
17816,
36,
11008,
18310,
62,
6173,
6965,
62,
49,
27746,
6,
7131,
16,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3015,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3015,
6624,
18896,
7,
25747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
198,
220,
220,
220,
825,
11593,
1136,
9186,
834,
7,
944,
11,
6167,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
262,
4776,
329,
262,
2214,
6167,
611,
2152,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6167,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6167,
287,
2116,
13,
23912,
1424,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
796,
8633,
7,
13344,
7,
944,
13,
23912,
1424,
11,
2116,
13,
1990,
44845,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
288,
58,
18242,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
198,
4871,
28186,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
257,
9290,
329,
257,
4610,
290,
617,
281,
66,
15856,
20150,
13,
628,
220,
220,
220,
1052,
66,
15856,
20150,
3407,
25,
628,
220,
220,
220,
1635,
12988,
62,
65,
571,
8189,
198,
220,
220,
220,
1635,
4776,
198,
220,
220,
220,
1635,
2723,
62,
36362,
313,
8497,
357,
1169,
14078,
326,
4191,
1392,
340,
826,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
9181,
62,
65,
571,
8189,
11,
4776,
11,
2723,
62,
36362,
313,
8497,
11639,
1662,
1813,
3256,
12988,
62,
65,
571,
8189,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9181,
62,
65,
571,
8189,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4776,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2723,
62,
36362,
313,
8497,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12988,
62,
65,
571,
8189,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
66,
863,
62,
65,
571,
8189,
796,
9181,
62,
65,
571,
8189,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26675,
796,
4776,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
66,
1780,
62,
65,
571,
8189,
796,
965,
7,
66,
1780,
62,
65,
571,
8189,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
10459,
62,
36362,
313,
8497,
796,
2723,
62,
36362,
313,
8497,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
11593,
2536,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
944,
13,
26675,
11,
4319,
44845,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
7225,
16,
69,
4064,
82,
6,
4,
7,
944,
13,
26675,
13,
615,
70,
22784,
944,
13,
66,
863,
62,
65,
571,
8189,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1400,
46344,
7203,
3673,
4965,
5634,
4943,
628,
198,
4871,
21209,
313,
8497,
7,
15252,
2599,
198,
220,
220,
220,
37227,
32,
9290,
329,
9027,
284,
257,
4941,
13,
628,
220,
220,
220,
1482,
2536,
6003,
423,
257,
8633,
286,
7032,
284,
905,
284,
262,
2989,
198,
220,
220,
220,
3113,
357,
1169,
20269,
11,
651,
606,
422,
262,
11688,
828,
290,
257,
198,
220,
220,
220,
651,
62,
26675,
7,
26209,
62,
22105,
11,
14078,
8,
3784,
15200,
44845,
2446,
13,
198,
220,
220,
220,
4091,
2219,
13,
15200,
44845,
329,
3307,
13,
628,
220,
220,
220,
383,
651,
62,
26675,
2163,
11583,
257,
1255,
1700,
11,
1312,
13,
68,
1539,
198,
220,
220,
220,
257,
22155,
7268,
379,
749,
262,
7032,
1813,
287,
262,
198,
220,
220,
220,
40391,
20746,
15878,
82,
8398,
13,
220,
220,
220,
1374,
340,
23008,
428,
1028,
198,
220,
220,
220,
644,
338,
287,
262,
1700,
318,
6209,
510,
284,
262,
1398,
13,
628,
220,
220,
220,
12032,
11,
340,
3011,
262,
35125,
326,
7560,
262,
2882,
13,
198,
220,
220,
220,
770,
318,
257,
2829,
835,
284,
1208,
1321,
422,
262,
20269,
17301,
198,
220,
220,
220,
284,
262,
12336,
2163,
1377,
3221,
11,
345,
815,
655,
5678,
198,
220,
220,
220,
262,
21209,
313,
8497,
351,
3224,
21179,
7159,
5855,
36604,
15341,
198,
220,
220,
220,
345,
815,
12405,
329,
606,
287,
651,
62,
26675,
1262,
262,
651,
62,
49170,
7,
2536,
8,
198,
220,
220,
220,
4613,
1997,
2446,
357,
5562,
5860,
6045,
329,
8251,
407,
3804,
737,
628,
220,
220,
220,
1114,
28769,
11,
345,
815,
1577,
35125,
1790,
11,
475,
6454,
198,
220,
220,
220,
38084,
3891,
13,
220,
4091,
2174,
329,
6096,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1438,
11,
20269,
11,
651,
62,
26675,
62,
8818,
11,
12429,
36604,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20269,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
651,
62,
26675,
62,
8818,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3307,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3672,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
71,
29503,
11,
2116,
13,
1136,
62,
26675,
62,
8818,
796,
20269,
11,
651,
62,
26675,
62,
8818,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36604,
796,
3307,
628,
220,
220,
220,
825,
651,
62,
26675,
7,
944,
11,
2882,
62,
22105,
11,
20269,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2882,
62,
22105,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20269,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1136,
62,
26675,
62,
8818,
7,
26209,
62,
22105,
11,
20269,
8,
628,
220,
220,
220,
825,
651,
62,
49170,
7,
944,
11,
3703,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3703,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3703,
62,
3672,
287,
2116,
13,
36604,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
36604,
13,
1136,
7,
49170,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
825,
651,
62,
71,
600,
7,
944,
11,
9254,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9254,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9254,
62,
3672,
287,
2116,
13,
71,
29503,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
71,
29503,
13,
1136,
7,
71,
600,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
198,
4871,
1892,
4965,
5634,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
257,
1908,
20538,
1398,
4769,
43264,
10288,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
8246,
62,
5420,
11,
12988,
62,
65,
571,
8189,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8246,
62,
5420,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12988,
62,
65,
571,
8189,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1831,
62,
5420,
796,
8246,
62,
5420,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
66,
1780,
62,
65,
571,
8189,
796,
965,
7,
66,
1780,
62,
65,
571,
8189,
8,
628,
220,
220,
220,
825,
11593,
2536,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
11929,
15731,
3535,
53,
1961,
25,
4064,
82,
986,
6,
4,
7,
944,
13,
1831,
62,
5420,
58,
25,
1821,
12962,
198,
198,
4871,
13047,
7,
16922,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
262,
2779,
1398,
329,
477,
13269,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1208,
628,
198,
4871,
1400,
46344,
7,
12331,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
318,
4376,
618,
257,
4610,
714,
407,
307,
1043,
13,
628,
220,
220,
220,
1400,
46344,
318,
12006,
351,
281,
7468,
4731,
290,
262,
198,
220,
220,
220,
20984,
4554,
326,
4054,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
13794,
721,
23321,
7,
2949,
46344,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
318,
4376,
618,
262,
581,
14375,
2476,
284,
787,
257,
2551,
475,
2314,
13,
628,
220,
220,
220,
554,
3090,
284,
262,
4941,
4731,
11,
428,
635,
4909,
198,
220,
220,
220,
8136,
62,
5936,
3089,
11,
14729,
286,
2370,
290,
8136,
326,
547,
198,
220,
220,
220,
3177,
8165,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
3827,
11125,
7,
12331,
2599,
198,
220,
220,
220,
37227,
271,
4376,
618,
1165,
867,
7466,
1282,
736,
422,
1540,
81,
13,
628,
220,
220,
220,
632,
815,
307,
2077,
355,
366,
29688,
1949,
1194,
11,
517,
2176,
14078,
1911,
198,
220,
220,
220,
37227,
198,
198,
4871,
3827,
11125,
5574,
14202,
7,
12331,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
318,
374,
292,
1384,
2035,
611,
1165,
867,
7466,
393,
645,
4406,
1282,
736,
422,
1540,
81,
198,
220,
220,
220,
37227,
198,
198,
4871,
4294,
81,
7,
12331,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
318,
4376,
618,
1540,
81,
5860,
281,
4049,
13,
198,
220,
220,
220,
37227,
198,
198,
4871,
554,
20751,
7,
12331,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
318,
4376,
618,
44267,
4941,
318,
17503,
290,
12891,
407,
1498,
284,
10568,
262,
4941,
13,
198,
220,
220,
220,
37227,
198,
198,
4299,
2835,
62,
11545,
62,
36591,
62,
12894,
896,
7,
22510,
2599,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1058,
17143,
997,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
12178,
10786,
4,
82,
6,
4064,
12178,
10786,
7225,
16,
70,
6,
4064,
997,
4008,
198,
198,
4299,
23243,
17,
7,
2676,
540,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2723,
25,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
64,
14,
3559,
2231,
2996,
940,
628,
220,
220,
220,
1058,
17143,
11629,
540,
25,
1052,
11629,
540,
357,
18747,
393,
12936,
8,
9312,
543,
4847,
815,
307,
23243,
13,
198,
220,
220,
220,
1058,
7783,
25,
7343,
351,
23243,
4847,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
256,
16,
11,
256,
17,
796,
30479,
7,
2676,
540,
8,
198,
220,
220,
220,
3146,
796,
8106,
7,
28764,
5344,
11,
256,
16,
8,
198,
220,
220,
220,
1729,
62,
77,
17024,
796,
8106,
9562,
7,
28764,
5344,
11,
256,
17,
8,
198,
220,
220,
220,
23243,
62,
77,
17024,
796,
23243,
7,
77,
17024,
8,
198,
220,
220,
220,
23243,
62,
13159,
62,
77,
17024,
796,
23243,
7,
13159,
62,
77,
17024,
11,
1994,
28,
2536,
8,
198,
220,
220,
220,
1441,
23243,
62,
77,
17024,
1343,
23243,
62,
13159,
62,
77,
17024
] | 2.353403 | 4,966 |
""" filename: TraceGenerator.py
contents: this script calls the GenerateSyntheticTrace method that
creates and stream of memory references that models the memory
performance of the input application or applications
author: Trevor Gale
date: 3.4.16"""
import h5py as h5
import numpy as np
import ConfigParser
import json
import sys
import traceback
import lib.TraceFormats as TraceFormats
import lib.PreProcessing as PreProc
# dictionary for all available trace formats
traceFormats = {"STL":TraceFormats.STL, \
"OVP":TraceFormats.OVP, \
"Din":TraceFormats.Din}
# usage string
usage_info = "USAGE: python TraceGenerator.py <config_file> \n\
config_file: file specifying the configuration for the trace generator\n\n\
all options for generator must be under header \"[generator]\" \n\
generator options: \n\
\t- traceFile: string indicating the name of the file that contains\n\
\tthe trace to be analyzed (plain-text)\n\n\
\t- traceLength: desired length of the synthetic address\n\
\ttrace (in memory references)\n\n\
\tappProfiles: lists (in brackets, separated by commas, no spaces)\n\
\tof the names of application profiles to model. At least one must \n\
\tbe specified. If len(appProfiles) > 1, the applications profiles\n\
\t are mixed by creating a linear combination with the weights\n\
\tspecified by the \"weights\" parameters. If weights is left as\n\
\tdefault, a uniform distribution is used\n\n\
\t- weights: list (in brackets, separated by commas, no spaces)\n\
\tof the weights of each application. Defaults to evenly weighted\n\
\tapplications\n\n\
\t- formatAccess: name of callback function that is called to print the\n\
\tmemory access. Function must be defined in the lib/TraceFormats and be\n\
\tpresent in the \"traceFormats\" dictionary at the top of this file\n"
# TODO:
# 1. Tool to generate profiles based on a PMF
# 2. Print runtime generation details & progress
def GenerateSyntheticTrace(traceFile, traceLength, appProfiles, weights=[], formatAccess=TraceFormats.STL):
""" GenerateSyntheticTrace: this function takes in application profiles
generated by the \"ApplicationProfiler\" script and generates a synthetic
address trace that models the properties of the input applications
args:
- traceFile: string specifying the name of the file to write the
synthetic address trace to (plain-text)
- traceLength: desired length of the synthetic trace (in memory references)
- appProfiles: python list of the names of the application profiles
to model. At least one must be specified. If len(appProfiles) > 1, the
applications profiles are mixed by creating a linear combination with
the weights specified by the "weights" parameters. If weights is left
as default, a uniform distribution is used
- weights: python list specifying the weights of each application.
Defaults to evenly weighted applications
- formatAccess: callback function that is called to print the memory
references. Function arguments must be (cycle, accessType, memAddress)"""
# validate inputs
if not len(appProfiles):
raise ValueError("(in GenerateSyntheticTrace) must input >= 1 app profile")
if traceLength <= 0:
raise ValueError("(in GenerateSyntheticTrace) traceLength must be > 0)")
numProfiles = len(appProfiles)
if numProfiles > 1 and not(len(weights) == 0 or len(weights) == numProfiles):
raise ValueError("(in GenerateSyntheticTrace) if len(appProfiles) > 1, len(weights) must be 0 or len(appProfiles)")
# create even weights if weights is left as default
if len(weights) == 0:
weights = np.ones(numProfiles)
for i in xrange(numProfiles):
if weights[i] < 0:
raise ValueError("(in GenerateSyntheticTrace) weights must be > 0")
# markov model for cycle activity
blockSize = np.zeros(numProfiles, dtype = np.int)
# open application profiles & find size of largest reusePMF
numReuseDistances = 0
for i in xrange(numProfiles):
appProfiles[i] = h5.File(appProfiles[i])
# get blocksizes
blockSize[i] = appProfiles[i]['blockSize'][()]
# if current size larger than previous largest rPMF
if len(appProfiles[i]['reusePMF']) > numReuseDistances:
numReuseDistances = len(appProfiles[i]['reusePMF'])
# make sure all blocksizes are the same
for i in xrange(1, numProfiles):
if blockSize[i] != blockSize[i-1]:
raise ValueError("(in GenerateSyntheticTrace) all profiles must have the same blockSize")
blockSize = blockSize[0] # set blocksize
# build markov model
activityMarkov = np.zeros((2,2), dtype = np.float)
PreProc.BuildMarkovModel(appProfiles, weights, activityMarkov)
# create weighted PMF for each reuse distance
reusePMF = np.zeros(numReuseDistances, dtype = np.float)
PreProc.BuildReusePMF(appProfiles, weights, reusePMF)
# create load proportions for each reuse distance
loadProp = np.zeros(numReuseDistances, dtype = np.float)
PreProc.BuildLoadProp(appProfiles, weights, loadProp)
# initialize application's working set
workingSet = PreProc.BuildWorkingSet(appProfiles).tolist()
wsSize = len(workingSet)
lruStack = workingSet
# create alphaForest
alphaForest = []
PreProc.BuildAlphaForest(appProfiles, weights, alphaForest, wsSize, blockSize)
# close application profiles
for i in xrange(numProfiles):
appProfiles[i].close()
# open traceFile
traceFile = open(traceFile, 'w')
# get reference to random generator
choice = np.random.choice
# indicates previous cycle's activity
previousCycle = 0
# counts unique accesses
uniqueAddrs = 0
# generation loop
cycle = -1
accesses = 0
while (accesses < traceLength):
if not choice(2, p=activityMarkov[previousCycle,:]): # if inactive cycle
# process inactive cycle
cycle += 1
previousCycle = 0
continue
# else, active cycle
cycle += 1
previousCycle = 1
accesses += 1
# select reuse distance
reuseDist = choice(numReuseDistances, p = reusePMF)
# compulsory cache miss
if not reuseDist:
# if we run out of addresses, print message and exit
if uniqueAddrs >= wsSize:
print "Exiting on cycle %d: cannot exceed size of working set"
exit()
# select new cache block to reference
memAddress = lruStack[uniqueAddrs]
# update lru stack
lruStack.remove(memAddress)
lruStack.insert(0, memAddress)
else:
# keep track of unique accesses
if reuseDist > uniqueAddrs:
uniqueAddrs += 1
# get block at this reuse distance
memAddress = lruStack[reuseDist - 1]
# update lruStack
lruStack.remove(memAddress)
lruStack.insert(0, memAddress)
# select type of access
rand = np.random.rand()
if rand < loadProp[reuseDist]:
accessType = 0 # load
else:
accessType = 1 # store
# select 4-byte word address based on alpha values
blockIndex = workingSet.index(memAddress)
memAddress = memAddress | alphaForest[blockIndex].GenerateAccess(reuseDist - 1)
# print access
formatAccess(traceFile, cycle, accessType, memAddress)
#
## main function
#
if __name__ == "__main__":
try:
if len(sys.argv) != 2:
raise IndexError("Invalid number of arguments. Only config file should be specified")
# setup config parser with default args
config = ConfigParser.RawConfigParser({'weights': [], 'formatAccess': traceFormats['STL']})
config.read(sys.argv[1])
# pull arguments
traceFile = config.get('generator', 'traceFile')
traceLength = int(config.get('generator', 'traceLength'))
appProfiles = json.loads(config.get('generator', 'appProfiles'))
weights = json.loads(config.get('generator', 'weights'))
formatAccess = config.get('generator', 'formatAccess')
GenerateSyntheticTrace(traceFile, traceLength, appProfiles, weights, traceFormats[formatAccess])
except IOError as error:
print "IOError: " + str(error)
except ValueError as error:
tb = sys.exc_info()[2]
traceback.print_tb(tb)
print "ValueError: ", error
except ConfigParser.NoOptionError as error:
print "Invalid Args: ", error, "\n"
print usage_info
except ConfigParser.NoSectionError as error:
print "Invalid Config: ", error, "\n"
print usage_info
except KeyError as error:
print "KeyError: ", error
except IndexError as error:
print "IndexError: ", error, "\n"
print usage_info | [
37811,
29472,
25,
34912,
8645,
1352,
13,
9078,
198,
220,
220,
220,
10154,
25,
428,
4226,
3848,
262,
2980,
378,
13940,
429,
6587,
2898,
558,
2446,
326,
198,
220,
220,
220,
8075,
290,
4269,
286,
4088,
10288,
326,
4981,
262,
4088,
198,
220,
220,
220,
2854,
286,
262,
5128,
3586,
393,
5479,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1772,
25,
25389,
36483,
198,
220,
220,
220,
3128,
25,
513,
13,
19,
13,
1433,
37811,
198,
198,
11748,
289,
20,
9078,
355,
289,
20,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
17056,
46677,
198,
11748,
33918,
198,
198,
11748,
25064,
198,
11748,
12854,
1891,
198,
198,
11748,
9195,
13,
2898,
558,
8479,
1381,
355,
34912,
8479,
1381,
198,
11748,
9195,
13,
6719,
18709,
278,
355,
3771,
2964,
66,
198,
198,
2,
22155,
329,
477,
1695,
12854,
17519,
198,
40546,
8479,
1381,
796,
19779,
2257,
43,
1298,
2898,
558,
8479,
1381,
13,
2257,
43,
11,
3467,
198,
220,
220,
220,
366,
46,
8859,
1298,
2898,
558,
8479,
1381,
13,
46,
8859,
11,
3467,
198,
220,
220,
220,
366,
35,
259,
1298,
2898,
558,
8479,
1381,
13,
35,
259,
92,
198,
198,
2,
8748,
4731,
198,
26060,
62,
10951,
796,
366,
2937,
11879,
25,
21015,
34912,
8645,
1352,
13,
9078,
1279,
11250,
62,
7753,
29,
3467,
77,
59,
198,
11250,
62,
7753,
25,
2393,
31577,
262,
8398,
329,
262,
12854,
17301,
59,
77,
59,
77,
59,
198,
439,
3689,
329,
17301,
1276,
307,
739,
13639,
3467,
17912,
8612,
1352,
60,
7879,
3467,
77,
59,
198,
8612,
1352,
3689,
25,
3467,
77,
59,
198,
59,
83,
12,
12854,
8979,
25,
4731,
12739,
262,
1438,
286,
262,
2393,
326,
4909,
59,
77,
59,
198,
59,
926,
258,
12854,
284,
307,
15475,
357,
25638,
12,
5239,
19415,
77,
59,
77,
59,
198,
59,
83,
12,
12854,
24539,
25,
10348,
4129,
286,
262,
18512,
2209,
59,
77,
59,
198,
59,
926,
16740,
357,
259,
4088,
10288,
19415,
77,
59,
77,
59,
198,
59,
83,
1324,
15404,
2915,
25,
8341,
357,
259,
28103,
11,
11266,
416,
725,
292,
11,
645,
9029,
19415,
77,
59,
198,
59,
1462,
69,
262,
3891,
286,
3586,
16545,
284,
2746,
13,
1629,
1551,
530,
1276,
3467,
77,
59,
198,
59,
83,
1350,
7368,
13,
1002,
18896,
7,
1324,
15404,
2915,
8,
1875,
352,
11,
262,
5479,
16545,
59,
77,
59,
198,
59,
83,
389,
7668,
416,
4441,
257,
14174,
6087,
351,
262,
19590,
59,
77,
59,
198,
59,
912,
43106,
1431,
416,
262,
19990,
43775,
7879,
10007,
13,
1002,
19590,
318,
1364,
355,
59,
77,
59,
198,
59,
83,
12286,
11,
257,
8187,
6082,
318,
973,
59,
77,
59,
77,
59,
198,
59,
83,
12,
19590,
25,
1351,
357,
259,
28103,
11,
11266,
416,
725,
292,
11,
645,
9029,
19415,
77,
59,
198,
59,
1462,
69,
262,
19590,
286,
1123,
3586,
13,
2896,
13185,
284,
21894,
26356,
59,
77,
59,
198,
59,
83,
1324,
677,
602,
59,
77,
59,
77,
59,
198,
59,
83,
12,
5794,
15457,
25,
1438,
286,
23838,
2163,
326,
318,
1444,
284,
3601,
262,
59,
77,
59,
198,
59,
83,
31673,
1895,
13,
15553,
1276,
307,
5447,
287,
262,
9195,
14,
2898,
558,
8479,
1381,
290,
307,
59,
77,
59,
198,
59,
83,
25579,
287,
262,
19990,
40546,
8479,
1381,
7879,
22155,
379,
262,
1353,
286,
428,
2393,
59,
77,
1,
198,
198,
2,
16926,
46,
25,
198,
2,
352,
13,
16984,
284,
7716,
16545,
1912,
319,
257,
3122,
37,
220,
198,
2,
362,
13,
12578,
19124,
5270,
3307,
1222,
4371,
198,
4299,
2980,
378,
13940,
429,
6587,
2898,
558,
7,
40546,
8979,
11,
12854,
24539,
11,
598,
15404,
2915,
11,
19590,
41888,
4357,
5794,
15457,
28,
2898,
558,
8479,
1381,
13,
2257,
43,
2599,
198,
220,
220,
220,
37227,
2980,
378,
13940,
429,
6587,
2898,
558,
25,
428,
2163,
2753,
287,
3586,
16545,
198,
220,
220,
220,
7560,
416,
262,
19990,
23416,
15404,
5329,
7879,
4226,
290,
18616,
257,
18512,
198,
220,
220,
220,
2209,
12854,
326,
4981,
262,
6608,
286,
262,
5128,
5479,
198,
220,
220,
220,
220,
198,
220,
220,
220,
26498,
25,
198,
220,
220,
220,
220,
220,
220,
220,
532,
12854,
8979,
25,
4731,
31577,
262,
1438,
286,
262,
2393,
284,
3551,
262,
220,
198,
220,
220,
220,
220,
220,
220,
220,
18512,
2209,
12854,
284,
357,
25638,
12,
5239,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
532,
12854,
24539,
25,
10348,
4129,
286,
262,
18512,
12854,
357,
259,
4088,
10288,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
532,
598,
15404,
2915,
25,
21015,
1351,
286,
262,
3891,
286,
262,
3586,
16545,
198,
220,
220,
220,
220,
220,
220,
220,
284,
2746,
13,
1629,
1551,
530,
1276,
307,
7368,
13,
1002,
18896,
7,
1324,
15404,
2915,
8,
1875,
352,
11,
262,
198,
220,
220,
220,
220,
220,
220,
220,
5479,
16545,
389,
7668,
416,
4441,
257,
14174,
6087,
351,
220,
198,
220,
220,
220,
220,
220,
220,
220,
262,
19590,
7368,
416,
262,
366,
43775,
1,
10007,
13,
1002,
19590,
318,
1364,
198,
220,
220,
220,
220,
220,
220,
220,
355,
4277,
11,
257,
8187,
6082,
318,
973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
532,
19590,
25,
21015,
1351,
31577,
262,
19590,
286,
1123,
3586,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2896,
13185,
284,
21894,
26356,
5479,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
532,
5794,
15457,
25,
23838,
2163,
326,
318,
1444,
284,
3601,
262,
4088,
198,
220,
220,
220,
220,
220,
220,
220,
10288,
13,
15553,
7159,
1276,
307,
357,
13696,
11,
1895,
6030,
11,
1066,
20231,
8,
37811,
198,
220,
220,
220,
1303,
26571,
17311,
198,
220,
220,
220,
611,
407,
18896,
7,
1324,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7,
259,
2980,
378,
13940,
429,
6587,
2898,
558,
8,
1276,
5128,
18189,
352,
598,
7034,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
611,
12854,
24539,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7,
259,
2980,
378,
13940,
429,
6587,
2898,
558,
8,
12854,
24539,
1276,
307,
1875,
657,
8,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
997,
15404,
2915,
796,
18896,
7,
1324,
15404,
2915,
8,
198,
220,
220,
220,
611,
997,
15404,
2915,
1875,
352,
290,
407,
7,
11925,
7,
43775,
8,
6624,
657,
393,
18896,
7,
43775,
8,
6624,
997,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7,
259,
2980,
378,
13940,
429,
6587,
2898,
558,
8,
611,
18896,
7,
1324,
15404,
2915,
8,
1875,
352,
11,
18896,
7,
43775,
8,
1276,
307,
657,
393,
18896,
7,
1324,
15404,
2915,
8,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2251,
772,
19590,
611,
19590,
318,
1364,
355,
4277,
198,
220,
220,
220,
611,
18896,
7,
43775,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19590,
796,
45941,
13,
1952,
7,
22510,
15404,
2915,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
329,
1312,
287,
2124,
9521,
7,
22510,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
19590,
58,
72,
60,
1279,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7,
259,
2980,
378,
13940,
429,
6587,
2898,
558,
8,
19590,
1276,
307,
1875,
657,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1317,
709,
2746,
329,
6772,
3842,
198,
220,
220,
220,
2512,
10699,
796,
45941,
13,
9107,
418,
7,
22510,
15404,
2915,
11,
288,
4906,
796,
45941,
13,
600,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1280,
3586,
16545,
1222,
1064,
2546,
286,
4387,
32349,
5868,
37,
198,
220,
220,
220,
997,
3041,
1904,
20344,
1817,
796,
657,
198,
220,
220,
220,
329,
1312,
287,
2124,
9521,
7,
22510,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
598,
15404,
2915,
58,
72,
60,
796,
289,
20,
13,
8979,
7,
1324,
15404,
2915,
58,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
7021,
4340,
198,
220,
220,
220,
220,
220,
220,
220,
2512,
10699,
58,
72,
60,
796,
598,
15404,
2915,
58,
72,
7131,
6,
9967,
10699,
6,
7131,
3419,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
1459,
2546,
4025,
621,
2180,
4387,
374,
5868,
37,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
1324,
15404,
2915,
58,
72,
7131,
6,
260,
1904,
5868,
37,
6,
12962,
1875,
997,
3041,
1904,
20344,
1817,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
3041,
1904,
20344,
1817,
796,
18896,
7,
1324,
15404,
2915,
58,
72,
7131,
6,
260,
1904,
5868,
37,
6,
12962,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
787,
1654,
477,
7021,
4340,
389,
262,
976,
198,
220,
220,
220,
329,
1312,
287,
2124,
9521,
7,
16,
11,
997,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2512,
10699,
58,
72,
60,
14512,
2512,
10699,
58,
72,
12,
16,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7,
259,
2980,
378,
13940,
429,
6587,
2898,
558,
8,
477,
16545,
1276,
423,
262,
976,
2512,
10699,
4943,
198,
220,
220,
220,
2512,
10699,
796,
2512,
10699,
58,
15,
60,
1303,
900,
7021,
1096,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1382,
1317,
709,
2746,
198,
220,
220,
220,
3842,
9704,
709,
796,
45941,
13,
9107,
418,
19510,
17,
11,
17,
828,
288,
4906,
796,
45941,
13,
22468,
8,
198,
220,
220,
220,
3771,
2964,
66,
13,
15580,
9704,
709,
17633,
7,
1324,
15404,
2915,
11,
19590,
11,
3842,
9704,
709,
8,
198,
220,
220,
220,
198,
220,
220,
220,
1303,
2251,
26356,
3122,
37,
329,
1123,
32349,
5253,
198,
220,
220,
220,
32349,
5868,
37,
796,
45941,
13,
9107,
418,
7,
22510,
3041,
1904,
20344,
1817,
11,
288,
4906,
796,
45941,
13,
22468,
8,
198,
220,
220,
220,
3771,
2964,
66,
13,
15580,
3041,
1904,
5868,
37,
7,
1324,
15404,
2915,
11,
19590,
11,
32349,
5868,
37,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2251,
3440,
23250,
329,
1123,
32349,
5253,
198,
220,
220,
220,
3440,
24331,
796,
45941,
13,
9107,
418,
7,
22510,
3041,
1904,
20344,
1817,
11,
288,
4906,
796,
45941,
13,
22468,
8,
198,
220,
220,
220,
3771,
2964,
66,
13,
15580,
8912,
24331,
7,
1324,
15404,
2915,
11,
19590,
11,
3440,
24331,
8,
628,
220,
220,
220,
1303,
41216,
3586,
338,
1762,
900,
198,
220,
220,
220,
1762,
7248,
796,
3771,
2964,
66,
13,
15580,
28516,
7248,
7,
1324,
15404,
2915,
737,
83,
349,
396,
3419,
198,
220,
220,
220,
266,
82,
10699,
796,
18896,
7,
16090,
7248,
8,
198,
220,
220,
220,
300,
622,
25896,
796,
1762,
7248,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
2251,
17130,
34605,
198,
220,
220,
220,
17130,
34605,
796,
17635,
198,
220,
220,
220,
3771,
2964,
66,
13,
15580,
38077,
34605,
7,
1324,
15404,
2915,
11,
19590,
11,
17130,
34605,
11,
266,
82,
10699,
11,
2512,
10699,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1969,
3586,
16545,
198,
220,
220,
220,
329,
1312,
287,
2124,
9521,
7,
22510,
15404,
2915,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
598,
15404,
2915,
58,
72,
4083,
19836,
3419,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1280,
12854,
8979,
198,
220,
220,
220,
12854,
8979,
796,
1280,
7,
40546,
8979,
11,
705,
86,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
651,
4941,
284,
4738,
17301,
198,
220,
220,
220,
3572,
796,
45941,
13,
25120,
13,
25541,
628,
220,
220,
220,
1303,
9217,
2180,
6772,
338,
3842,
198,
220,
220,
220,
2180,
20418,
2375,
796,
657,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
9853,
3748,
1895,
274,
198,
220,
220,
220,
3748,
4550,
3808,
796,
657,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5270,
9052,
198,
220,
220,
220,
6772,
796,
532,
16,
198,
220,
220,
220,
1895,
274,
796,
657,
198,
220,
220,
220,
981,
357,
15526,
274,
1279,
12854,
24539,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
3572,
7,
17,
11,
279,
28,
21797,
9704,
709,
58,
3866,
1442,
20418,
2375,
11,
47715,
2599,
1303,
611,
28621,
6772,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1429,
28621,
6772,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6772,
15853,
352,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
20418,
2375,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2073,
11,
4075,
6772,
198,
220,
220,
220,
220,
220,
220,
220,
6772,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
2180,
20418,
2375,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1895,
274,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2922,
32349,
5253,
198,
220,
220,
220,
220,
220,
220,
220,
32349,
20344,
796,
3572,
7,
22510,
3041,
1904,
20344,
1817,
11,
279,
796,
32349,
5868,
37,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
31967,
12940,
2051,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
32349,
20344,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
356,
1057,
503,
286,
9405,
11,
3601,
3275,
290,
8420,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3748,
4550,
3808,
18189,
266,
82,
10699,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
3109,
1780,
319,
6772,
4064,
67,
25,
2314,
7074,
2546,
286,
1762,
900,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2922,
649,
12940,
2512,
284,
4941,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
20231,
796,
300,
622,
25896,
58,
34642,
4550,
3808,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4296,
300,
622,
8931,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
622,
25896,
13,
28956,
7,
11883,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
622,
25896,
13,
28463,
7,
15,
11,
1066,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1394,
2610,
286,
3748,
1895,
274,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
32349,
20344,
1875,
3748,
4550,
3808,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3748,
4550,
3808,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
2512,
379,
428,
32349,
5253,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
20231,
796,
300,
622,
25896,
58,
260,
1904,
20344,
532,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4296,
300,
622,
25896,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
622,
25896,
13,
28956,
7,
11883,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
622,
25896,
13,
28463,
7,
15,
11,
1066,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2922,
2099,
286,
1895,
198,
220,
220,
220,
220,
220,
220,
220,
43720,
796,
45941,
13,
25120,
13,
25192,
3419,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
43720,
1279,
3440,
24331,
58,
260,
1904,
20344,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1895,
6030,
796,
657,
1303,
3440,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1895,
6030,
796,
352,
1303,
3650,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2922,
604,
12,
26327,
1573,
2209,
1912,
319,
17130,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
2512,
15732,
796,
1762,
7248,
13,
9630,
7,
11883,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
20231,
796,
1066,
20231,
930,
17130,
34605,
58,
9967,
15732,
4083,
8645,
378,
15457,
7,
260,
1904,
20344,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
1895,
198,
220,
220,
220,
220,
220,
220,
220,
5794,
15457,
7,
40546,
8979,
11,
6772,
11,
1895,
6030,
11,
1066,
20231,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2,
198,
2235,
1388,
2163,
198,
2,
198,
220,
220,
220,
220,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
17597,
13,
853,
85,
8,
14512,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
12901,
12331,
7203,
44651,
1271,
286,
7159,
13,
5514,
4566,
2393,
815,
307,
7368,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9058,
4566,
30751,
351,
4277,
26498,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
17056,
46677,
13,
27369,
16934,
46677,
15090,
6,
43775,
10354,
685,
4357,
705,
18982,
15457,
10354,
12854,
8479,
1381,
17816,
2257,
43,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
961,
7,
17597,
13,
853,
85,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2834,
7159,
198,
220,
220,
220,
220,
220,
220,
220,
12854,
8979,
796,
4566,
13,
1136,
10786,
8612,
1352,
3256,
705,
40546,
8979,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
12854,
24539,
796,
493,
7,
11250,
13,
1136,
10786,
8612,
1352,
3256,
705,
40546,
24539,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
598,
15404,
2915,
796,
33918,
13,
46030,
7,
11250,
13,
1136,
10786,
8612,
1352,
3256,
705,
1324,
15404,
2915,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
19590,
796,
33918,
13,
46030,
7,
11250,
13,
1136,
10786,
8612,
1352,
3256,
705,
43775,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
5794,
15457,
796,
4566,
13,
1136,
10786,
8612,
1352,
3256,
705,
18982,
15457,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2980,
378,
13940,
429,
6587,
2898,
558,
7,
40546,
8979,
11,
12854,
24539,
11,
598,
15404,
2915,
11,
19590,
11,
12854,
8479,
1381,
58,
18982,
15457,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
24418,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
9399,
12331,
25,
366,
1343,
965,
7,
18224,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
11052,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
256,
65,
796,
25064,
13,
41194,
62,
10951,
3419,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
12854,
1891,
13,
4798,
62,
83,
65,
7,
83,
65,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
11395,
12331,
25,
33172,
4049,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
17056,
46677,
13,
2949,
19722,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
44651,
943,
14542,
25,
33172,
4049,
11,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
8748,
62,
10951,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
17056,
46677,
13,
2949,
16375,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
44651,
17056,
25,
33172,
4049,
11,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
8748,
62,
10951,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
7383,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
9218,
12331,
25,
33172,
4049,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2845,
12901,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
15732,
12331,
25,
33172,
4049,
11,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
8748,
62,
10951
] | 2.537544 | 3,689 |
import pandas as pd
def read_filter_lbmp(path):
"""
Read one csv file with pandas. Convert the Time Stamp field to pandas
datetime format. Filter out non-NYC nodes and only keep required columns.
Change column names to snake case for easier access.
Parameters
----------
path : str or other object for read_csv filepath parameter
Path to csv file with LBMP data
Returns
-------
DataFrame
df with 3 columns (time stamp, name of node, LBMP)
"""
df = pd.read_csv(path, parse_dates=['Time Stamp'])
df = df.loc[df.Name == 'N.Y.C.', ['Time Stamp', 'Name', 'LBMP ($/MWHr)']]
df.columns = ['time_stamp', 'name', 'lbmp']
return df
def read_all_nyc(data_path):
"""
Reads and combines individual LBMP data files.
Parameters
----------
data_path : Path object
This is a pathlib Path object pointing to the LBMP data folder with
.csv files.
Returns
-------
DataFrame
df with 4 columns (time stamp, name of node, LBMP, hour of year)
"""
fnames = data_path.glob('**/*.csv')
dfs = [read_filter_lbmp(name) for name in fnames]
df = pd.concat(dfs)
df.sort_values('time_stamp', inplace=True)
df.reset_index(inplace=True, drop=True)
df['hour'] = df.index
return df
| [
11748,
19798,
292,
355,
279,
67,
628,
198,
4299,
1100,
62,
24455,
62,
23160,
3149,
7,
6978,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
530,
269,
21370,
2393,
351,
19798,
292,
13,
38240,
262,
3862,
40694,
2214,
284,
19798,
292,
198,
220,
220,
220,
4818,
8079,
5794,
13,
25853,
503,
1729,
12,
12805,
34,
13760,
290,
691,
1394,
2672,
15180,
13,
198,
220,
220,
220,
9794,
5721,
3891,
284,
17522,
1339,
329,
4577,
1895,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
3108,
1058,
965,
393,
584,
2134,
329,
1100,
62,
40664,
2393,
6978,
11507,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
269,
21370,
2393,
351,
22199,
7378,
1366,
198,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
47764,
351,
513,
15180,
357,
2435,
17977,
11,
1438,
286,
10139,
11,
22199,
7378,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
198,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
6978,
11,
21136,
62,
19581,
28,
17816,
7575,
40694,
6,
12962,
198,
220,
220,
220,
47764,
796,
47764,
13,
17946,
58,
7568,
13,
5376,
6624,
705,
45,
13,
56,
13,
34,
2637,
11,
37250,
7575,
40694,
3256,
705,
5376,
3256,
705,
30501,
7378,
7198,
14,
44,
12418,
81,
33047,
11907,
198,
220,
220,
220,
47764,
13,
28665,
82,
796,
37250,
2435,
62,
301,
696,
3256,
705,
3672,
3256,
705,
23160,
3149,
20520,
198,
220,
220,
220,
1441,
47764,
198,
198,
4299,
1100,
62,
439,
62,
3281,
66,
7,
7890,
62,
6978,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
82,
290,
21001,
1981,
22199,
7378,
1366,
3696,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1366,
62,
6978,
1058,
10644,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
770,
318,
257,
3108,
8019,
10644,
2134,
10609,
284,
262,
22199,
7378,
1366,
9483,
351,
198,
220,
220,
220,
220,
220,
220,
220,
764,
40664,
3696,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
6060,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
47764,
351,
604,
15180,
357,
2435,
17977,
11,
1438,
286,
10139,
11,
22199,
7378,
11,
1711,
286,
614,
8,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
277,
14933,
796,
1366,
62,
6978,
13,
4743,
672,
10786,
1174,
15211,
13,
40664,
11537,
198,
220,
220,
220,
288,
9501,
796,
685,
961,
62,
24455,
62,
23160,
3149,
7,
3672,
8,
329,
1438,
287,
277,
14933,
60,
198,
220,
220,
220,
47764,
796,
279,
67,
13,
1102,
9246,
7,
7568,
82,
8,
198,
220,
220,
220,
47764,
13,
30619,
62,
27160,
10786,
2435,
62,
301,
696,
3256,
287,
5372,
28,
17821,
8,
198,
220,
220,
220,
47764,
13,
42503,
62,
9630,
7,
259,
5372,
28,
17821,
11,
4268,
28,
17821,
8,
198,
220,
220,
220,
47764,
17816,
9769,
20520,
796,
47764,
13,
9630,
628,
220,
220,
220,
1441,
47764,
198
] | 2.499065 | 535 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import logging
import os.path
from concurrent.futures import as_completed
import requests
from ..download import FuturesSessionFlex
from ..processor import IndexFileProcessor
logger = logging.getLogger('update.IndexUpdate')
| [
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,
11748,
18931,
198,
11748,
28686,
13,
6978,
198,
6738,
24580,
13,
69,
315,
942,
1330,
355,
62,
785,
16838,
198,
11748,
7007,
198,
6738,
11485,
15002,
1330,
24002,
942,
36044,
37,
2588,
198,
6738,
11485,
41341,
1330,
12901,
8979,
18709,
273,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
19119,
13,
15732,
10260,
11537,
198
] | 3.301205 | 83 |
## TODO: define the convolutional neural network architecture
import torch
from torch.autograd import Variable
import torch.nn as nn
import torch.nn.functional as F
# can use the below import should you choose to initialize the weights of your Net
import torch.nn.init as I
| [
2235,
16926,
46,
25,
8160,
262,
3063,
2122,
282,
17019,
3127,
10959,
198,
198,
11748,
28034,
198,
6738,
28034,
13,
2306,
519,
6335,
1330,
35748,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
2,
460,
779,
262,
2174,
1330,
815,
345,
3853,
284,
41216,
262,
19590,
286,
534,
3433,
198,
11748,
28034,
13,
20471,
13,
15003,
355,
314,
628,
220,
220,
220,
220,
220,
220,
220,
220,
198
] | 3.653846 | 78 |
#! /usr/bin/env python
import pygame
import sys
import random
def main ():
"""Main function"""
rt = Robot()
p = rt.init_probability_map()
while True:
#rt.display_robot()
rt.display_probability_map(p)
m = rt.robot_random_move()
rt.perception()
rt.localisation(m,p)
#print("x : " +str(rt.x))
#print("y : " +str(rt.y))
#rt.display_prob(p)
#print(m)
#print("Perception: I receive: "+str(rt.z))
if __name__ == "__main__":
main()
| [
2,
0,
1220,
14629,
14,
8800,
14,
24330,
21015,
201,
198,
11748,
12972,
6057,
201,
198,
11748,
25064,
201,
198,
11748,
4738,
201,
198,
197,
197,
201,
198,
4299,
1388,
357,
2599,
201,
198,
220,
220,
220,
37227,
13383,
2163,
37811,
201,
198,
220,
220,
220,
374,
83,
796,
16071,
3419,
201,
198,
220,
220,
220,
279,
796,
374,
83,
13,
15003,
62,
1676,
65,
1799,
62,
8899,
3419,
201,
198,
201,
198,
220,
220,
220,
981,
6407,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17034,
13,
13812,
62,
305,
13645,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
374,
83,
13,
13812,
62,
1676,
65,
1799,
62,
8899,
7,
79,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
285,
796,
374,
83,
13,
305,
13645,
62,
25120,
62,
21084,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
374,
83,
13,
525,
4516,
3419,
201,
198,
220,
220,
220,
220,
220,
220,
220,
374,
83,
13,
12001,
5612,
7,
76,
11,
79,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
87,
1058,
366,
1343,
2536,
7,
17034,
13,
87,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
88,
1058,
366,
1343,
2536,
7,
17034,
13,
88,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17034,
13,
13812,
62,
1676,
65,
7,
79,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
76,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
5990,
4516,
25,
314,
3328,
25,
43825,
2536,
7,
17034,
13,
89,
4008,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
201,
198,
220,
220,
220,
1388,
3419,
201,
198
] | 1.855705 | 298 |
import json
from io import StringIO
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="""
Generate Java Utility class from GeoJson Input for AnyLogic GISShape
""")
parser.add_argument('geojsonfile',
help='path to geojson file of regions',
metavar='regions.geojson',
type=str)
parser.add_argument("-o",
help="path of output Java file",
metavar='output.java',
type=str,
default='InitGISRegions.java')
args = parser.parse_args()
genFile(args.geojsonfile, args.o)
| [
11748,
33918,
198,
6738,
33245,
1330,
10903,
9399,
198,
11748,
1822,
29572,
628,
628,
628,
628,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
2625,
15931,
198,
8645,
378,
7349,
34030,
1398,
422,
32960,
41,
1559,
23412,
329,
4377,
11187,
291,
402,
1797,
33383,
198,
15931,
4943,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
469,
13210,
1559,
7753,
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,
4903,
13210,
1559,
2393,
286,
7652,
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,
1138,
615,
283,
11639,
2301,
507,
13,
469,
13210,
1559,
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,
2099,
28,
2536,
8,
628,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
12,
78,
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,
1037,
2625,
6978,
286,
5072,
7349,
2393,
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,
1138,
615,
283,
11639,
22915,
13,
12355,
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,
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,
11639,
31768,
38,
1797,
8081,
507,
13,
12355,
11537,
628,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
2429,
8979,
7,
22046,
13,
469,
13210,
1559,
7753,
11,
26498,
13,
78,
8,
628
] | 2.008523 | 352 |
import pytest
from tests.constants import public_key, private_key, auth_result_url
@pytest.fixture(scope="session")
| [
11748,
12972,
9288,
198,
6738,
5254,
13,
9979,
1187,
1330,
1171,
62,
2539,
11,
2839,
62,
2539,
11,
6284,
62,
20274,
62,
6371,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
29891,
4943,
198
] | 3.189189 | 37 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import logging
import time
import azure.functions
logger = logging.getLogger('my function')
| [
2,
15069,
357,
66,
8,
5413,
10501,
13,
1439,
2489,
10395,
13,
198,
2,
49962,
739,
262,
17168,
13789,
13,
198,
11748,
18931,
198,
11748,
640,
198,
198,
11748,
35560,
495,
13,
12543,
2733,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
1820,
2163,
11537,
628
] | 3.877551 | 49 |
"""Url configuration for the auth module."""
from django.conf.urls import include, url
from .views import (
IdPRedirectView,
inactive_user_view,
lti_login_and_complete_view,
post_to_custom_auth_form,
saml_metadata_view
)
urlpatterns = [
url(r'^auth/inactive', inactive_user_view, name="third_party_inactive_redirect"),
url(r'^auth/custom_auth_entry', post_to_custom_auth_form, name='tpa_post_to_custom_auth_form'),
url(r'^auth/saml/metadata.xml', saml_metadata_view),
url(r'^auth/login/(?P<backend>lti)/$', lti_login_and_complete_view),
url(r'^auth/idp_redirect/(?P<provider_slug>[\w-]+)', IdPRedirectView.as_view(), name="idp_redirect"),
url(r'^auth/', include('social_django.urls', namespace='social')),
url(r'^auth/saml/v0/', include('common.djangoapps.third_party_auth.samlproviderconfig.urls')),
url(r'^auth/saml/v0/', include('common.djangoapps.third_party_auth.samlproviderdata.urls')),
url(r'^auth/saml/v0/', include('common.djangoapps.third_party_auth.saml_configuration.urls')),
]
| [
37811,
28165,
8398,
329,
262,
6284,
8265,
526,
15931,
198,
198,
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
2291,
11,
19016,
198,
198,
6738,
764,
33571,
1330,
357,
198,
220,
220,
220,
5121,
4805,
276,
1060,
7680,
11,
198,
220,
220,
220,
28621,
62,
7220,
62,
1177,
11,
198,
220,
220,
220,
300,
20259,
62,
38235,
62,
392,
62,
20751,
62,
1177,
11,
198,
220,
220,
220,
1281,
62,
1462,
62,
23144,
62,
18439,
62,
687,
11,
198,
220,
220,
220,
6072,
75,
62,
38993,
62,
1177,
198,
8,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
259,
5275,
3256,
28621,
62,
7220,
62,
1177,
11,
1438,
2625,
17089,
62,
10608,
62,
259,
5275,
62,
445,
1060,
12340,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
23144,
62,
18439,
62,
13000,
3256,
1281,
62,
1462,
62,
23144,
62,
18439,
62,
687,
11,
1438,
11639,
83,
8957,
62,
7353,
62,
1462,
62,
23144,
62,
18439,
62,
687,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
37687,
75,
14,
38993,
13,
19875,
3256,
6072,
75,
62,
38993,
62,
1177,
828,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
38235,
29006,
30,
47,
27,
1891,
437,
29,
2528,
72,
20679,
3,
3256,
300,
20259,
62,
38235,
62,
392,
62,
20751,
62,
1177,
828,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
312,
79,
62,
445,
1060,
29006,
30,
47,
27,
15234,
1304,
62,
6649,
1018,
36937,
59,
86,
12,
60,
28988,
3256,
5121,
4805,
276,
1060,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
312,
79,
62,
445,
1060,
12340,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
3256,
2291,
10786,
14557,
62,
28241,
14208,
13,
6371,
82,
3256,
25745,
11639,
14557,
11537,
828,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
37687,
75,
14,
85,
15,
14,
3256,
2291,
10786,
11321,
13,
28241,
14208,
18211,
13,
17089,
62,
10608,
62,
18439,
13,
37687,
75,
15234,
1304,
11250,
13,
6371,
82,
11537,
828,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
37687,
75,
14,
85,
15,
14,
3256,
2291,
10786,
11321,
13,
28241,
14208,
18211,
13,
17089,
62,
10608,
62,
18439,
13,
37687,
75,
15234,
1304,
7890,
13,
6371,
82,
11537,
828,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
18439,
14,
37687,
75,
14,
85,
15,
14,
3256,
2291,
10786,
11321,
13,
28241,
14208,
18211,
13,
17089,
62,
10608,
62,
18439,
13,
37687,
75,
62,
11250,
3924,
13,
6371,
82,
11537,
828,
198,
60,
198
] | 2.39726 | 438 |
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""Functions to rebin light curves and frequency spectra."""
from __future__ import (absolute_import, unicode_literals, division,
print_function)
import numpy as np
from .io import get_file_type
from .io import save_data
from .io import MP_FILE_EXTENSION, get_file_extension
from .base import _empty, _assign_value_if_none
import logging
def const_rebin(x, y, factor, yerr=None, normalize=True):
"""Rebin any pair of variables.
Might be time and counts, or freq and pds.
Also possible to rebin the error on y.
Parameters
----------
x : array-like
y : array-like
factor : int
Rebin factor
yerr : array-like, optional
Uncertainties of y values (it is assumed that the y are normally
distributed)
Returns
-------
new_x : array-like
The rebinned x array
new_y : array-like
The rebinned y array
new_err : array-like
The rebinned yerr array
Other Parameters
----------------
normalize : bool
"""
arr_dtype = y.dtype
if factor <= 1:
res = [x, y]
if yerr is not None:
res.append(yerr)
else:
res.append(np.zeros(len(y), dtype=arr_dtype))
return res
factor = np.long(factor)
nbin = len(y)
new_nbins = np.int(nbin / factor)
y_resh = np.reshape(y[:new_nbins * factor], (new_nbins, factor))
x_resh = np.reshape(x[:new_nbins * factor], (new_nbins, factor))
new_y = np.sum(y_resh, axis=1)
new_x = np.sum(x_resh, axis=1) / factor
if yerr is not None:
yerr_resh = np.reshape(yerr[:new_nbins * factor], (new_nbins, factor))
new_yerr = np.sum(yerr_resh ** 2, axis=1)
else:
new_yerr = np.zeros(len(new_x), dtype=arr_dtype)
if normalize:
return new_x, new_y / factor, np.sqrt(new_yerr) / factor
else:
return new_x, new_y, np.sqrt(new_yerr)
def geom_bin(freq, pds, bin_factor=None, pds_err=None, npds=None):
"""Given a PDS, bin it geometrically.
Parameters
----------
freq : array-like
pds : array-like
bin_factor : float > 1
pds_err : array-like
Returns
-------
retval : object
An object containing all the following attributes
flo : array-like
Lower boundaries of the new frequency bins
fhi : array-like
Upper boundaries of the new frequency bins
pds : array-like
The rebinned PDS
epds : array-like
The uncertainties on the rebinned PDS points (be careful. Check with
simulations if it works in your case)
nbins : array-like, optional
The new number of bins averaged in each PDS point.
Other Parameters
----------------
npds : int
The number of PDSs averaged to obtain the input PDS
Notes
-----
Some parts of the code are copied from an algorithm in isisscripts.sl
"""
from numpy import log10
df = np.diff(freq)
assert np.max(df) - np.min(df) < 1e-5 * np.max(df), \
'This only works for not previously rebinned spectra'
df = freq[1] - freq[0]
npds = _assign_value_if_none(npds, 1.)
pds_err = _assign_value_if_none(pds_err, np.zeros(len(pds)))
if freq[0] < 1e-10:
freq = freq[1:]
pds = pds[1:]
pds_err = pds_err[1:]
if bin_factor <= 1:
logging.warning("Bin factor must be > 1!!")
f0 = freq - df / 2.
f1 = freq + df / 2.
retval = _empty()
retval.flo = f0
retval.fhi = f1
retval.pds = pds
retval.epds = pds_err
retval.nbins = np.ones(len(pds)) * npds
return retval
# Input frequencies are referred to the center of the bin. But from now on
# I'll be interested in the start and stop of each frequency bin.
freq = freq - df / 2
fmin = min(freq)
fmax = max(freq) + df
logstep = log10(bin_factor)
# maximum number of bins
nmax = np.int((log10(fmax) - log10(fmin)) / logstep + 0.5)
# Low frequency grid
flo = fmin * 10. ** (np.arange(nmax) * logstep)
flo = np.append(flo, [fmax])
# Now the clever part: building a histogram of frequencies
pds_dtype = pds.dtype
pdse_dtype = pds_err.dtype
bins = np.digitize(freq.astype(np.double), flo.astype(np.double))
newpds = np.zeros(nmax, dtype=pds_dtype) - 1
newpds_err = np.zeros(nmax, dtype=pdse_dtype)
newfreqlo = np.zeros(nmax)
new_nbins = np.zeros(nmax, dtype=np.long)
for i in range(nmax):
good = bins == i
ngood = np.count_nonzero(good)
new_nbins[i] = ngood
if ngood == 0:
continue
newpds[i] = np.sum(pds[good]) / ngood
newfreqlo[i] = np.min(freq[good])
newpds_err[i] = np.sqrt(np.sum(pds_err[good] ** 2)) / ngood
good = new_nbins > 0
new_nbins = new_nbins[good] * npds
newfreqlo = newfreqlo[good]
newpds = newpds[good]
newpds_err = newpds_err[good]
newfreqhi = newfreqlo[1:]
newfreqhi = np.append(newfreqhi, [fmax])
retval = [newfreqlo, newfreqhi, newpds, newpds_err, new_nbins]
retval = _empty()
retval.flo = newfreqlo
retval.fhi = newfreqhi
retval.pds = newpds
retval.epds = newpds_err
retval.nbins = new_nbins
return retval
def rebin_file(filename, rebin):
"""Rebin the contents of a file, be it a light curve or a spectrum."""
ftype, contents = get_file_type(filename)
do_dyn = False
if 'dyn{0}'.format(ftype) in contents.keys():
do_dyn = True
if ftype == 'lc':
x = contents['time']
y = contents['lc']
ye = np.sqrt(y)
logging.info('Applying a constant rebinning')
x, y, ye = \
const_rebin(x, y, rebin, ye, normalize=False)
contents['time'] = x
contents['lc'] = y
if 'rebin' in list(contents.keys()):
contents['rebin'] *= rebin
else:
contents['rebin'] = rebin
elif ftype in ['pds', 'cpds']:
x = contents['freq']
y = contents[ftype]
ye = contents['e' + ftype]
# if rebin is integer, use constant rebinning. Otherwise, geometrical
if rebin == float(int(rebin)):
logging.info('Applying a constant rebinning')
if do_dyn:
old_dynspec = contents['dyn{0}'.format(ftype)]
old_edynspec = contents['edyn{0}'.format(ftype)]
dynspec = []
edynspec = []
for i_s, spec in enumerate(old_dynspec):
_, sp, spe = \
const_rebin(x, spec, rebin,
old_edynspec[i_s],
normalize=True)
dynspec.append(sp)
edynspec.append(spe)
contents['dyn{0}'.format(ftype)] = np.array(dynspec)
contents['edyn{0}'.format(ftype)] = np.array(edynspec)
x, y, ye = \
const_rebin(x, y, rebin, ye, normalize=True)
contents['freq'] = x
contents[ftype] = y
contents['e' + ftype] = ye
contents['rebin'] *= rebin
else:
logging.info('Applying a geometrical rebinning')
if do_dyn:
old_dynspec = contents['dyn{0}'.format(ftype)]
old_edynspec = contents['edyn{0}'.format(ftype)]
dynspec = []
edynspec = []
for i_s, spec in enumerate(old_dynspec):
retval = geom_bin(x, spec, rebin, old_edynspec[i_s])
dynspec.append(retval.pds)
edynspec.append(retval.epds)
contents['dyn{0}'.format(ftype)] = np.array(dynspec)
contents['edyn{0}'.format(ftype)] = np.array(edynspec)
retval = geom_bin(x, y, rebin, ye)
del contents['freq']
contents['flo'] = retval.flo
contents['fhi'] = retval.fhi
contents[ftype] = retval.pds
contents['e' + ftype] = retval.epds
contents['nbins'] = retval.nbins
contents['rebin'] *= retval.nbins
else:
raise Exception('Format was not recognized:', ftype)
outfile = filename.replace(get_file_extension(filename),
'_rebin%g' % rebin + MP_FILE_EXTENSION)
logging.info('Saving %s to %s' % (ftype, outfile))
save_data(contents, outfile, ftype)
def main(args=None):
"""Main function called by the `MPrebin` command line script."""
import argparse
description = 'Rebin light curves and frequency spectra. '
parser = argparse.ArgumentParser(description=description)
parser.add_argument("files", help="List of light curve files", nargs='+')
parser.add_argument("-r", "--rebin", type=float, default=1,
help="Rebinning to apply. Only if the quantity to" +
" rebin is a (C)PDS, it is possible to specify a" +
" non-integer rebin factor, in which case it is" +
" interpreted as a geometrical binning factor")
parser.add_argument("--loglevel",
help=("use given logging level (one between INFO, "
"WARNING, ERROR, CRITICAL, DEBUG; "
"default:WARNING)"),
default='WARNING',
type=str)
parser.add_argument("--debug", help="use DEBUG logging level",
default=False, action='store_true')
args = parser.parse_args(args)
files = args.files
if args.debug:
args.loglevel = 'DEBUG'
numeric_level = getattr(logging, args.loglevel.upper(), None)
logging.basicConfig(filename='MPrebin.log', level=numeric_level,
filemode='w')
rebin = args.rebin
for f in files:
rebin_file(f, rebin)
| [
2,
49962,
739,
257,
513,
12,
565,
682,
347,
10305,
3918,
5964,
532,
766,
38559,
24290,
13,
81,
301,
198,
37811,
24629,
2733,
284,
3405,
259,
1657,
23759,
290,
8373,
5444,
430,
526,
15931,
198,
6738,
11593,
37443,
834,
1330,
357,
48546,
62,
11748,
11,
28000,
1098,
62,
17201,
874,
11,
7297,
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,
3601,
62,
8818,
8,
198,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
764,
952,
1330,
651,
62,
7753,
62,
4906,
198,
6738,
764,
952,
1330,
3613,
62,
7890,
198,
6738,
764,
952,
1330,
4904,
62,
25664,
62,
13918,
16938,
2849,
11,
651,
62,
7753,
62,
2302,
3004,
198,
6738,
764,
8692,
1330,
4808,
28920,
11,
4808,
562,
570,
62,
8367,
62,
361,
62,
23108,
198,
11748,
18931,
628,
198,
4299,
1500,
62,
260,
8800,
7,
87,
11,
331,
11,
5766,
11,
331,
8056,
28,
14202,
11,
3487,
1096,
28,
17821,
2599,
198,
220,
220,
220,
37227,
49,
23497,
597,
5166,
286,
9633,
13,
628,
220,
220,
220,
24213,
307,
640,
290,
9853,
11,
393,
2030,
80,
290,
279,
9310,
13,
198,
220,
220,
220,
4418,
1744,
284,
3405,
259,
262,
4049,
319,
331,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
2124,
1058,
7177,
12,
2339,
198,
220,
220,
220,
331,
1058,
7177,
12,
2339,
198,
220,
220,
220,
5766,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
797,
8800,
5766,
198,
220,
220,
220,
331,
8056,
1058,
7177,
12,
2339,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
28304,
1425,
4278,
286,
331,
3815,
357,
270,
318,
9672,
326,
262,
331,
389,
7685,
198,
220,
220,
220,
220,
220,
220,
220,
9387,
8,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
649,
62,
87,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
383,
3405,
259,
2817,
2124,
7177,
198,
220,
220,
220,
649,
62,
88,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
383,
3405,
259,
2817,
331,
7177,
198,
220,
220,
220,
649,
62,
8056,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
383,
3405,
259,
2817,
331,
8056,
7177,
628,
220,
220,
220,
3819,
40117,
198,
220,
220,
220,
34400,
198,
220,
220,
220,
3487,
1096,
1058,
20512,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5240,
62,
67,
4906,
796,
331,
13,
67,
4906,
198,
220,
220,
220,
611,
5766,
19841,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
581,
796,
685,
87,
11,
331,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
331,
8056,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
13,
33295,
7,
88,
8056,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
13,
33295,
7,
37659,
13,
9107,
418,
7,
11925,
7,
88,
828,
288,
4906,
28,
3258,
62,
67,
4906,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
581,
198,
220,
220,
220,
5766,
796,
45941,
13,
6511,
7,
31412,
8,
198,
220,
220,
220,
299,
8800,
796,
18896,
7,
88,
8,
628,
220,
220,
220,
649,
62,
46803,
1040,
796,
45941,
13,
600,
7,
77,
8800,
1220,
5766,
8,
628,
220,
220,
220,
331,
62,
3447,
796,
45941,
13,
3447,
1758,
7,
88,
58,
25,
3605,
62,
46803,
1040,
1635,
5766,
4357,
357,
3605,
62,
46803,
1040,
11,
5766,
4008,
198,
220,
220,
220,
2124,
62,
3447,
796,
45941,
13,
3447,
1758,
7,
87,
58,
25,
3605,
62,
46803,
1040,
1635,
5766,
4357,
357,
3605,
62,
46803,
1040,
11,
5766,
4008,
628,
220,
220,
220,
649,
62,
88,
796,
45941,
13,
16345,
7,
88,
62,
3447,
11,
16488,
28,
16,
8,
198,
220,
220,
220,
649,
62,
87,
796,
45941,
13,
16345,
7,
87,
62,
3447,
11,
16488,
28,
16,
8,
1220,
5766,
628,
220,
220,
220,
611,
331,
8056,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
331,
8056,
62,
3447,
796,
45941,
13,
3447,
1758,
7,
88,
8056,
58,
25,
3605,
62,
46803,
1040,
1635,
5766,
4357,
357,
3605,
62,
46803,
1040,
11,
5766,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
88,
8056,
796,
45941,
13,
16345,
7,
88,
8056,
62,
3447,
12429,
362,
11,
16488,
28,
16,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
88,
8056,
796,
45941,
13,
9107,
418,
7,
11925,
7,
3605,
62,
87,
828,
288,
4906,
28,
3258,
62,
67,
4906,
8,
628,
220,
220,
220,
611,
3487,
1096,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
649,
62,
87,
11,
649,
62,
88,
1220,
5766,
11,
45941,
13,
31166,
17034,
7,
3605,
62,
88,
8056,
8,
1220,
5766,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
649,
62,
87,
11,
649,
62,
88,
11,
45941,
13,
31166,
17034,
7,
3605,
62,
88,
8056,
8,
628,
198,
4299,
4903,
296,
62,
8800,
7,
19503,
80,
11,
279,
9310,
11,
9874,
62,
31412,
28,
14202,
11,
279,
9310,
62,
8056,
28,
14202,
11,
45941,
9310,
28,
14202,
2599,
198,
220,
220,
220,
37227,
15056,
257,
350,
5258,
11,
9874,
340,
4903,
908,
81,
1146,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
2030,
80,
1058,
7177,
12,
2339,
198,
220,
220,
220,
279,
9310,
1058,
7177,
12,
2339,
198,
220,
220,
220,
9874,
62,
31412,
1058,
12178,
1875,
352,
198,
220,
220,
220,
279,
9310,
62,
8056,
1058,
7177,
12,
2339,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
1005,
2100,
1058,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
1052,
2134,
7268,
477,
262,
1708,
12608,
198,
220,
220,
220,
5530,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
16048,
13215,
286,
262,
649,
8373,
41701,
198,
220,
220,
220,
277,
5303,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
20390,
13215,
286,
262,
649,
8373,
41701,
198,
220,
220,
220,
279,
9310,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
383,
3405,
259,
2817,
350,
5258,
198,
220,
220,
220,
2462,
9310,
1058,
7177,
12,
2339,
198,
220,
220,
220,
220,
220,
220,
220,
383,
36553,
319,
262,
3405,
259,
2817,
350,
5258,
2173,
357,
1350,
8161,
13,
6822,
351,
198,
220,
220,
220,
220,
220,
220,
220,
27785,
611,
340,
2499,
287,
534,
1339,
8,
198,
220,
220,
220,
299,
65,
1040,
1058,
7177,
12,
2339,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
383,
649,
1271,
286,
41701,
16449,
287,
1123,
350,
5258,
966,
13,
628,
220,
220,
220,
3819,
40117,
198,
220,
220,
220,
34400,
198,
220,
220,
220,
45941,
9310,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1271,
286,
350,
5258,
82,
16449,
284,
7330,
262,
5128,
350,
5258,
628,
220,
220,
220,
11822,
198,
220,
220,
220,
37404,
198,
220,
220,
220,
2773,
3354,
286,
262,
2438,
389,
18984,
422,
281,
11862,
287,
318,
747,
6519,
82,
13,
6649,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
422,
299,
32152,
1330,
2604,
940,
628,
220,
220,
220,
47764,
796,
45941,
13,
26069,
7,
19503,
80,
8,
198,
220,
220,
220,
6818,
45941,
13,
9806,
7,
7568,
8,
532,
45941,
13,
1084,
7,
7568,
8,
1279,
352,
68,
12,
20,
1635,
45941,
13,
9806,
7,
7568,
828,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1212,
691,
2499,
329,
407,
4271,
3405,
259,
2817,
5444,
430,
6,
628,
220,
220,
220,
47764,
796,
2030,
80,
58,
16,
60,
532,
2030,
80,
58,
15,
60,
628,
220,
220,
220,
45941,
9310,
796,
4808,
562,
570,
62,
8367,
62,
361,
62,
23108,
7,
37659,
9310,
11,
352,
2014,
198,
220,
220,
220,
279,
9310,
62,
8056,
796,
4808,
562,
570,
62,
8367,
62,
361,
62,
23108,
7,
79,
9310,
62,
8056,
11,
45941,
13,
9107,
418,
7,
11925,
7,
79,
9310,
22305,
628,
220,
220,
220,
611,
2030,
80,
58,
15,
60,
1279,
352,
68,
12,
940,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2030,
80,
796,
2030,
80,
58,
16,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
279,
9310,
796,
279,
9310,
58,
16,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
279,
9310,
62,
8056,
796,
279,
9310,
62,
8056,
58,
16,
47715,
628,
220,
220,
220,
611,
9874,
62,
31412,
19841,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
43917,
7203,
33,
259,
5766,
1276,
307,
1875,
352,
37160,
8,
198,
220,
220,
220,
220,
220,
220,
220,
277,
15,
796,
2030,
80,
532,
47764,
1220,
362,
13,
198,
220,
220,
220,
220,
220,
220,
220,
277,
16,
796,
2030,
80,
1343,
47764,
1220,
362,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
796,
4808,
28920,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
13,
48679,
796,
277,
15,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
13,
69,
5303,
796,
277,
16,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
13,
79,
9310,
796,
279,
9310,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
13,
538,
9310,
796,
279,
9310,
62,
8056,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
13,
46803,
1040,
796,
45941,
13,
1952,
7,
11925,
7,
79,
9310,
4008,
1635,
45941,
9310,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
2100,
628,
220,
220,
220,
1303,
23412,
19998,
389,
6412,
284,
262,
3641,
286,
262,
9874,
13,
887,
422,
783,
319,
198,
220,
220,
220,
1303,
314,
1183,
307,
4609,
287,
262,
923,
290,
2245,
286,
1123,
8373,
9874,
13,
198,
220,
220,
220,
2030,
80,
796,
2030,
80,
532,
47764,
1220,
362,
198,
220,
220,
220,
277,
1084,
796,
949,
7,
19503,
80,
8,
198,
220,
220,
220,
277,
9806,
796,
3509,
7,
19503,
80,
8,
1343,
47764,
628,
220,
220,
220,
2604,
9662,
796,
2604,
940,
7,
8800,
62,
31412,
8,
198,
2,
220,
220,
220,
5415,
1271,
286,
41701,
198,
220,
220,
220,
299,
9806,
796,
45941,
13,
600,
19510,
6404,
940,
7,
69,
9806,
8,
532,
2604,
940,
7,
69,
1084,
4008,
1220,
2604,
9662,
1343,
657,
13,
20,
8,
198,
198,
2,
7754,
8373,
10706,
198,
220,
220,
220,
5530,
796,
277,
1084,
1635,
838,
13,
12429,
357,
37659,
13,
283,
858,
7,
77,
9806,
8,
1635,
2604,
9662,
8,
198,
220,
220,
220,
5530,
796,
45941,
13,
33295,
7,
48679,
11,
685,
69,
9806,
12962,
198,
198,
2,
2735,
262,
14169,
636,
25,
2615,
257,
1554,
21857,
286,
19998,
198,
220,
220,
220,
279,
9310,
62,
67,
4906,
796,
279,
9310,
13,
67,
4906,
198,
220,
220,
220,
279,
67,
325,
62,
67,
4906,
796,
279,
9310,
62,
8056,
13,
67,
4906,
628,
220,
220,
220,
41701,
796,
45941,
13,
27003,
1096,
7,
19503,
80,
13,
459,
2981,
7,
37659,
13,
23352,
828,
5530,
13,
459,
2981,
7,
37659,
13,
23352,
4008,
198,
220,
220,
220,
649,
79,
9310,
796,
45941,
13,
9107,
418,
7,
77,
9806,
11,
288,
4906,
28,
79,
9310,
62,
67,
4906,
8,
532,
352,
198,
220,
220,
220,
649,
79,
9310,
62,
8056,
796,
45941,
13,
9107,
418,
7,
77,
9806,
11,
288,
4906,
28,
30094,
325,
62,
67,
4906,
8,
198,
220,
220,
220,
649,
19503,
80,
5439,
796,
45941,
13,
9107,
418,
7,
77,
9806,
8,
198,
220,
220,
220,
649,
62,
46803,
1040,
796,
45941,
13,
9107,
418,
7,
77,
9806,
11,
288,
4906,
28,
37659,
13,
6511,
8,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
77,
9806,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
922,
796,
41701,
6624,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
299,
11274,
796,
45941,
13,
9127,
62,
13159,
22570,
7,
11274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
46803,
1040,
58,
72,
60,
796,
299,
11274,
198,
220,
220,
220,
220,
220,
220,
220,
611,
299,
11274,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
649,
79,
9310,
58,
72,
60,
796,
45941,
13,
16345,
7,
79,
9310,
58,
11274,
12962,
1220,
299,
11274,
198,
220,
220,
220,
220,
220,
220,
220,
649,
19503,
80,
5439,
58,
72,
60,
796,
45941,
13,
1084,
7,
19503,
80,
58,
11274,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
649,
79,
9310,
62,
8056,
58,
72,
60,
796,
45941,
13,
31166,
17034,
7,
37659,
13,
16345,
7,
79,
9310,
62,
8056,
58,
11274,
60,
12429,
362,
4008,
1220,
299,
11274,
198,
220,
220,
220,
922,
796,
649,
62,
46803,
1040,
1875,
657,
198,
220,
220,
220,
649,
62,
46803,
1040,
796,
649,
62,
46803,
1040,
58,
11274,
60,
1635,
45941,
9310,
198,
220,
220,
220,
649,
19503,
80,
5439,
796,
649,
19503,
80,
5439,
58,
11274,
60,
198,
220,
220,
220,
649,
79,
9310,
796,
649,
79,
9310,
58,
11274,
60,
198,
220,
220,
220,
649,
79,
9310,
62,
8056,
796,
649,
79,
9310,
62,
8056,
58,
11274,
60,
198,
220,
220,
220,
649,
19503,
80,
5303,
796,
649,
19503,
80,
5439,
58,
16,
47715,
198,
220,
220,
220,
649,
19503,
80,
5303,
796,
45941,
13,
33295,
7,
3605,
19503,
80,
5303,
11,
685,
69,
9806,
12962,
628,
220,
220,
220,
1005,
2100,
796,
685,
3605,
19503,
80,
5439,
11,
649,
19503,
80,
5303,
11,
649,
79,
9310,
11,
649,
79,
9310,
62,
8056,
11,
649,
62,
46803,
1040,
60,
198,
220,
220,
220,
1005,
2100,
796,
4808,
28920,
3419,
198,
220,
220,
220,
1005,
2100,
13,
48679,
796,
649,
19503,
80,
5439,
198,
220,
220,
220,
1005,
2100,
13,
69,
5303,
796,
649,
19503,
80,
5303,
198,
220,
220,
220,
1005,
2100,
13,
79,
9310,
796,
649,
79,
9310,
198,
220,
220,
220,
1005,
2100,
13,
538,
9310,
796,
649,
79,
9310,
62,
8056,
198,
220,
220,
220,
1005,
2100,
13,
46803,
1040,
796,
649,
62,
46803,
1040,
628,
220,
220,
220,
1441,
1005,
2100,
628,
198,
4299,
3405,
259,
62,
7753,
7,
34345,
11,
3405,
259,
2599,
198,
220,
220,
220,
37227,
49,
23497,
262,
10154,
286,
257,
2393,
11,
307,
340,
257,
1657,
12133,
393,
257,
10958,
526,
15931,
198,
220,
220,
220,
277,
4906,
11,
10154,
796,
651,
62,
7753,
62,
4906,
7,
34345,
8,
198,
220,
220,
220,
466,
62,
67,
2047,
796,
10352,
198,
220,
220,
220,
611,
705,
67,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
8,
287,
10154,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
466,
62,
67,
2047,
796,
6407,
628,
220,
220,
220,
611,
277,
4906,
6624,
705,
44601,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
10154,
17816,
2435,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
10154,
17816,
44601,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
9838,
796,
45941,
13,
31166,
17034,
7,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
4677,
3157,
257,
6937,
3405,
23062,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
11,
331,
11,
9838,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1500,
62,
260,
8800,
7,
87,
11,
331,
11,
3405,
259,
11,
9838,
11,
3487,
1096,
28,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
2435,
20520,
796,
2124,
198,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
44601,
20520,
796,
331,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
260,
8800,
6,
287,
1351,
7,
3642,
658,
13,
13083,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
260,
8800,
20520,
1635,
28,
3405,
259,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
260,
8800,
20520,
796,
3405,
259,
628,
220,
220,
220,
1288,
361,
277,
4906,
287,
37250,
79,
9310,
3256,
705,
13155,
9310,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
10154,
17816,
19503,
80,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
10154,
58,
701,
2981,
60,
198,
220,
220,
220,
220,
220,
220,
220,
9838,
796,
10154,
17816,
68,
6,
1343,
277,
4906,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
3405,
259,
318,
18253,
11,
779,
6937,
3405,
23062,
13,
15323,
11,
4903,
908,
8143,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3405,
259,
6624,
12178,
7,
600,
7,
260,
8800,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
4677,
3157,
257,
6937,
3405,
23062,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
466,
62,
67,
2047,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
67,
2047,
16684,
796,
10154,
17816,
67,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
276,
2047,
16684,
796,
10154,
17816,
276,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37860,
16684,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1225,
2047,
16684,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
62,
82,
11,
1020,
287,
27056,
378,
7,
727,
62,
67,
2047,
16684,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
599,
11,
693,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1500,
62,
260,
8800,
7,
87,
11,
1020,
11,
3405,
259,
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,
1468,
62,
276,
2047,
16684,
58,
72,
62,
82,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3487,
1096,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37860,
16684,
13,
33295,
7,
2777,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1225,
2047,
16684,
13,
33295,
7,
4125,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
67,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
796,
45941,
13,
18747,
7,
67,
2047,
16684,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
276,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
796,
45941,
13,
18747,
7,
276,
2047,
16684,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
11,
331,
11,
9838,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1500,
62,
260,
8800,
7,
87,
11,
331,
11,
3405,
259,
11,
9838,
11,
3487,
1096,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
19503,
80,
20520,
796,
2124,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
58,
701,
2981,
60,
796,
331,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
68,
6,
1343,
277,
4906,
60,
796,
9838,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
260,
8800,
20520,
1635,
28,
3405,
259,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
4677,
3157,
257,
4903,
908,
8143,
3405,
23062,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
466,
62,
67,
2047,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
67,
2047,
16684,
796,
10154,
17816,
67,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
62,
276,
2047,
16684,
796,
10154,
17816,
276,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37860,
16684,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1225,
2047,
16684,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
62,
82,
11,
1020,
287,
27056,
378,
7,
727,
62,
67,
2047,
16684,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
796,
4903,
296,
62,
8800,
7,
87,
11,
1020,
11,
3405,
259,
11,
1468,
62,
276,
2047,
16684,
58,
72,
62,
82,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37860,
16684,
13,
33295,
7,
1186,
2100,
13,
79,
9310,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1225,
2047,
16684,
13,
33295,
7,
1186,
2100,
13,
538,
9310,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
67,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
796,
45941,
13,
18747,
7,
67,
2047,
16684,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
276,
2047,
90,
15,
92,
4458,
18982,
7,
701,
2981,
15437,
796,
45941,
13,
18747,
7,
276,
2047,
16684,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
2100,
796,
4903,
296,
62,
8800,
7,
87,
11,
331,
11,
3405,
259,
11,
9838,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
10154,
17816,
19503,
80,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
48679,
20520,
796,
1005,
2100,
13,
48679,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
69,
5303,
20520,
796,
1005,
2100,
13,
69,
5303,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
58,
701,
2981,
60,
796,
1005,
2100,
13,
79,
9310,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
68,
6,
1343,
277,
4906,
60,
796,
1005,
2100,
13,
538,
9310,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
46803,
1040,
20520,
796,
1005,
2100,
13,
46803,
1040,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10154,
17816,
260,
8800,
20520,
1635,
28,
1005,
2100,
13,
46803,
1040,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
10786,
26227,
373,
407,
8018,
25,
3256,
277,
4906,
8,
628,
220,
220,
220,
503,
7753,
796,
29472,
13,
33491,
7,
1136,
62,
7753,
62,
2302,
3004,
7,
34345,
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,
705,
62,
260,
8800,
4,
70,
6,
4064,
3405,
259,
1343,
4904,
62,
25664,
62,
13918,
16938,
2849,
8,
198,
220,
220,
220,
18931,
13,
10951,
10786,
50,
2703,
4064,
82,
284,
4064,
82,
6,
4064,
357,
701,
2981,
11,
503,
7753,
4008,
198,
220,
220,
220,
3613,
62,
7890,
7,
3642,
658,
11,
503,
7753,
11,
277,
4906,
8,
628,
198,
4299,
1388,
7,
22046,
28,
14202,
2599,
198,
220,
220,
220,
37227,
13383,
2163,
1444,
416,
262,
4600,
44,
6719,
8800,
63,
3141,
1627,
4226,
526,
15931,
198,
220,
220,
220,
1330,
1822,
29572,
198,
220,
220,
220,
6764,
796,
705,
49,
23497,
1657,
23759,
290,
8373,
5444,
430,
13,
705,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
28,
11213,
8,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
16624,
1600,
1037,
2625,
8053,
286,
1657,
12133,
3696,
1600,
299,
22046,
11639,
10,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
12,
81,
1600,
366,
438,
260,
8800,
1600,
2099,
28,
22468,
11,
4277,
28,
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,
1037,
2625,
28951,
23062,
284,
4174,
13,
5514,
611,
262,
12040,
284,
1,
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,
366,
3405,
259,
318,
257,
357,
34,
8,
47,
5258,
11,
340,
318,
1744,
284,
11986,
257,
1,
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,
366,
1729,
12,
41433,
3405,
259,
5766,
11,
287,
543,
1339,
340,
318,
1,
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,
366,
16173,
355,
257,
4903,
908,
8143,
9874,
768,
5766,
4943,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
75,
2467,
626,
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,
1037,
28,
7203,
1904,
1813,
18931,
1241,
357,
505,
1022,
24890,
11,
366,
198,
220,
220,
220,
220,
220,
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,
31502,
11,
33854,
11,
8740,
2043,
20151,
11,
16959,
26,
366,
198,
220,
220,
220,
220,
220,
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,
12286,
25,
31502,
8,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
31502,
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,
2099,
28,
2536,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
24442,
1600,
1037,
2625,
1904,
16959,
18931,
1241,
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,
4277,
28,
25101,
11,
2223,
11639,
8095,
62,
7942,
11537,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
7,
22046,
8,
198,
220,
220,
220,
3696,
796,
26498,
13,
16624,
628,
220,
220,
220,
611,
26498,
13,
24442,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
75,
2467,
626,
796,
705,
30531,
6,
628,
220,
220,
220,
35575,
62,
5715,
796,
651,
35226,
7,
6404,
2667,
11,
26498,
13,
75,
2467,
626,
13,
45828,
22784,
6045,
8,
198,
220,
220,
220,
18931,
13,
35487,
16934,
7,
34345,
11639,
44,
6719,
8800,
13,
6404,
3256,
1241,
28,
77,
39223,
62,
5715,
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,
2393,
14171,
11639,
86,
11537,
198,
220,
220,
220,
3405,
259,
796,
26498,
13,
260,
8800,
198,
220,
220,
220,
329,
277,
287,
3696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3405,
259,
62,
7753,
7,
69,
11,
3405,
259,
8,
198
] | 2.071532 | 4,823 |
import faulthandler
import atexit
import signal
import traceback
import os
import multiprocessing
# To test with doctest...
if not __package__: # pragma: no cover
LIB_PATH = "."
else:
from .. import LIB_PATH
# Global configuration
DUMP_DIRECTORY = LIB_PATH + "/dump/"
DUMP_CURRENT_PROCESS = DUMP_DIRECTORY + "%(ppid)s/"
DUMP_FILENAME = DUMP_CURRENT_PROCESS + "%(pid)s.dump"
def get_stack(): # pragma: no cover # nothing to test here
"""Returns the current stack trace as a string."""
return traceback.format_exc()
class StackDumper:
"""
Dumps the stack of the current process and all of its threads when it receives a SIGUSR1 signal.
The stack will go in dump/<main process id>/<real process id>.dump file.
You do not need to create this object yourself, instead, use `init_stack_dumper()`
"""
def init_stack_dumper():
"""
Initalize the stack dumper for current process.
This method should be called for all subprocesses (but not for threads)
>>> import os
>>> from signal import SIGUSR1
>>> init_stack_dumper()
>>> # From your terminal send the SIGUSR1 signal
>>> # kill -SIGUSR1 <pid>
>>> os.kill(os.getpid(), SIGUSR1) # send the SIGUSR1 signal
>>> print(open(DUMP_FILENAME % dict(ppid=os.getpid(), pid=os.getpid()), "r").read()) # doctest: +ELLIPSIS
Current thread ... (most recent call first):...
"""
StackDumper()
| [
11748,
277,
2518,
400,
392,
1754,
198,
11748,
379,
37023,
198,
11748,
6737,
198,
11748,
12854,
1891,
198,
11748,
28686,
198,
11748,
18540,
305,
919,
278,
198,
198,
2,
1675,
1332,
351,
10412,
395,
986,
198,
361,
407,
11593,
26495,
834,
25,
220,
1303,
23864,
2611,
25,
645,
3002,
198,
220,
220,
220,
45651,
62,
34219,
796,
366,
526,
198,
17772,
25,
198,
220,
220,
220,
422,
11485,
1330,
45651,
62,
34219,
628,
198,
2,
8060,
8398,
198,
35,
20476,
62,
17931,
23988,
15513,
796,
45651,
62,
34219,
1343,
12813,
39455,
30487,
198,
35,
20476,
62,
34,
39237,
62,
4805,
4503,
7597,
796,
360,
20476,
62,
17931,
23988,
15513,
1343,
36521,
7,
381,
312,
8,
82,
30487,
198,
35,
20476,
62,
46700,
1677,
10067,
796,
360,
20476,
62,
34,
39237,
62,
4805,
4503,
7597,
1343,
36521,
7,
35317,
8,
82,
13,
39455,
1,
628,
198,
4299,
651,
62,
25558,
33529,
220,
1303,
23864,
2611,
25,
645,
3002,
1303,
2147,
284,
1332,
994,
198,
220,
220,
220,
37227,
35561,
262,
1459,
8931,
12854,
355,
257,
4731,
526,
15931,
198,
220,
220,
220,
1441,
12854,
1891,
13,
18982,
62,
41194,
3419,
628,
198,
4871,
23881,
35,
15829,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
360,
8142,
262,
8931,
286,
262,
1459,
1429,
290,
477,
286,
663,
14390,
618,
340,
11583,
257,
33993,
2937,
49,
16,
6737,
13,
198,
220,
220,
220,
383,
8931,
481,
467,
287,
10285,
14,
27,
12417,
1429,
4686,
29,
14,
27,
5305,
1429,
4686,
28401,
39455,
2393,
13,
628,
220,
220,
220,
921,
466,
407,
761,
284,
2251,
428,
2134,
3511,
11,
2427,
11,
779,
4600,
15003,
62,
25558,
62,
67,
15829,
3419,
63,
198,
220,
220,
220,
37227,
628,
198,
4299,
2315,
62,
25558,
62,
67,
15829,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
554,
1287,
1096,
262,
8931,
288,
15829,
329,
1459,
1429,
13,
198,
220,
220,
220,
770,
2446,
815,
307,
1444,
329,
477,
850,
14681,
274,
357,
4360,
407,
329,
14390,
8,
628,
220,
220,
220,
13163,
1330,
28686,
198,
220,
220,
220,
13163,
422,
6737,
1330,
33993,
2937,
49,
16,
198,
220,
220,
220,
13163,
2315,
62,
25558,
62,
67,
15829,
3419,
198,
220,
220,
220,
13163,
1303,
3574,
534,
12094,
3758,
262,
33993,
2937,
49,
16,
6737,
198,
220,
220,
220,
13163,
1303,
1494,
532,
50,
3528,
2937,
49,
16,
1279,
35317,
29,
198,
220,
220,
220,
13163,
28686,
13,
12728,
7,
418,
13,
1136,
35317,
22784,
33993,
2937,
49,
16,
8,
220,
1303,
3758,
262,
33993,
2937,
49,
16,
6737,
198,
220,
220,
220,
13163,
3601,
7,
9654,
7,
35,
20476,
62,
46700,
1677,
10067,
4064,
8633,
7,
381,
312,
28,
418,
13,
1136,
35317,
22784,
46514,
28,
418,
13,
1136,
35317,
3419,
828,
366,
81,
11074,
961,
28955,
220,
1303,
10412,
395,
25,
1343,
23304,
47643,
1797,
198,
220,
220,
220,
9236,
4704,
2644,
357,
1712,
2274,
869,
717,
2599,
986,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
23881,
35,
15829,
3419,
198
] | 2.838323 | 501 |
# -*- coding: utf-8 -*-
"""
Created on Fri May 7 11:32:58 2021
@author: helena
"""
class IcebergCalc():
"""
Class declaration for the IcebergCalc class.
Provides methods for calculating an iceberg's area, volume and mass.
"""
def __init__(self, lidardata, radardata, seaice_m):
"""
Constructor function initialises the attributes of the IcebergCalc class.
Parameters
----------
lidardata : list of intergers
List of the lidar data
radardata : list of integers
List of the radar data
seaice_m : list
Empty list for the ice variables to be appended
Returns
-------
None.
"""
self.lidardata = lidardata
self.radardata = radardata
self.seaice_m = []
def find_ice(self, radardata, seaice_m):
"""
This function finds if there is ice within this section of the sea.
Ice has radar data values of over 100, so this function finds those values over 100 and prints these values.
Parameters
----------
radardata : list of integers
List of the radar data
seaice_m : list
Empty list for the ice variables to be appended. The default is None.
Returns
-------
None.
"""
for i in range(len(radardata)):
if i >= 100.0:
seaice_m.append(i)
print("Areas of ice are " + str(seaice_m))
#print(seaice_m)
def find_mass(self, lidardata):
"""
This function calculates the area, volume and mass of the ice.
The lidar data is in cm.
The area of the icberg is calculated then multiplied by the by the height to calculate the volume.
The volume is multiplied by the density of ice to calculate the mass of the iceberg.
The density of ice is a set value.
The total volume of the mass of the iceberg is calculated by multiplying by 10 (as only 10% of the iceberg is currently above the water line) to calculate 100% of the iceberg mass.
These variables are printed.
Parameters
----------
lidardata : list of integers
List of the lidar data
Returns
-------
Integer.
The total mass of the iceberg.
"""
global total_volume
global total_mass
total_pixels = 0
total_volume = 0
for row in lidardata:
for i in row:
if i >= 100.0:
total_pixels += 1 # Area of the iceberg
total_volume += i*0.1 # Convert cm to m as 0.1 = 10cm
# Density of ice = 917km/m^3
iceberg_mass = total_volume * 917
total_mass = iceberg_mass * 10
print("The area of iceberg is" + " " + str(total_pixels) + " m^2")
print("The volume of iceberg is" + " " + str(total_volume) + " m^3")
print("The mass of the iceberg is" + " " + str(iceberg_mass) + " kg/m^3")
print("The total mass of the iceberg is" + " " + str(total_mass) + " kg/m^3")
return(total_mass)
def total_volume(self):
"""
This function defines the variable total volume of the iceberg.
Returns
-------
Integer
The total volume of the iceberg.
"""
return int(total_volume)
def total_mass(self):
"""
This function defines the variable total mass of the iceberg.
Returns
-------
Integer
The total mass of the iceberg.
"""
return int(total_mass)
def determine_drag(self):
"""
This function determines whether the iceberg is within size range to be towed by the company tug boat.
If the iceberg is larger than 36 million kg in mass, it cannot be towed by the tug boat.
Returns
-------
String .
If the iceberg is within size range to be towed by the company.
"""
global within_range
global outside_range
within_range = "Can tow iceberg"
outside_range = "Cannot tow iceberg"
if total_mass > 36000000:
return(outside_range)
return(within_range)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
19480,
1737,
220,
767,
1367,
25,
2624,
25,
3365,
33448,
198,
198,
31,
9800,
25,
932,
8107,
198,
37811,
198,
198,
4871,
6663,
3900,
9771,
66,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
14305,
329,
262,
6663,
3900,
9771,
66,
1398,
13,
198,
220,
220,
220,
47081,
5050,
329,
26019,
281,
34849,
338,
1989,
11,
6115,
290,
2347,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
19789,
446,
1045,
11,
2511,
446,
1045,
11,
5417,
501,
62,
76,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28407,
273,
2163,
4238,
2696,
262,
12608,
286,
262,
6663,
3900,
9771,
66,
1398,
13,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
19789,
446,
1045,
1058,
1351,
286,
987,
5355,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
262,
19789,
283,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
2511,
446,
1045,
1058,
1351,
286,
37014,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
262,
13428,
1366,
220,
198,
220,
220,
220,
220,
220,
220,
220,
5417,
501,
62,
76,
1058,
1351,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33523,
1351,
329,
262,
4771,
9633,
284,
307,
598,
1631,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
6045,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
75,
312,
446,
1045,
796,
19789,
446,
1045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6335,
446,
1045,
796,
2511,
446,
1045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8583,
501,
62,
76,
796,
17635,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
1064,
62,
501,
7,
944,
11,
2511,
446,
1045,
11,
5417,
501,
62,
76,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
7228,
611,
612,
318,
4771,
1626,
428,
2665,
286,
262,
5417,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6663,
468,
13428,
1366,
3815,
286,
625,
1802,
11,
523,
428,
2163,
7228,
883,
3815,
625,
1802,
290,
20842,
777,
3815,
13,
220,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
2511,
446,
1045,
1058,
1351,
286,
37014,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
262,
13428,
1366,
220,
198,
220,
220,
220,
220,
220,
220,
220,
5417,
501,
62,
76,
1058,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33523,
1351,
329,
262,
4771,
9633,
284,
307,
598,
1631,
13,
383,
4277,
318,
6045,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
6045,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11925,
7,
6335,
446,
1045,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
18189,
1802,
13,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5417,
501,
62,
76,
13,
33295,
7,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
8491,
292,
286,
4771,
389,
366,
1343,
965,
7,
8583,
501,
62,
76,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
8583,
501,
62,
76,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
1064,
62,
22208,
7,
944,
11,
19789,
446,
1045,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
43707,
262,
1989,
11,
6115,
290,
2347,
286,
262,
4771,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
383,
19789,
283,
1366,
318,
287,
12067,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1989,
286,
262,
14158,
3900,
318,
10488,
788,
33096,
416,
262,
416,
262,
6001,
284,
15284,
262,
6115,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
383,
6115,
318,
33096,
416,
262,
12109,
286,
4771,
284,
15284,
262,
2347,
286,
262,
34849,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
383,
12109,
286,
4771,
318,
257,
900,
1988,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
383,
2472,
6115,
286,
262,
2347,
286,
262,
34849,
318,
10488,
416,
48816,
416,
838,
357,
292,
691,
838,
4,
286,
262,
34849,
318,
3058,
2029,
262,
1660,
1627,
8,
284,
15284,
1802,
4,
286,
262,
34849,
2347,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2312,
9633,
389,
10398,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
19789,
446,
1045,
1058,
1351,
286,
37014,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7343,
286,
262,
19789,
283,
1366,
220,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
34142,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2472,
2347,
286,
262,
34849,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
2472,
62,
29048,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
2472,
62,
22208,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
79,
14810,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
29048,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
19789,
446,
1045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
5752,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
18189,
1802,
13,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
79,
14810,
15853,
352,
1303,
9498,
286,
262,
34849,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
29048,
15853,
1312,
9,
15,
13,
16,
1303,
38240,
12067,
284,
285,
355,
657,
13,
16,
796,
838,
11215,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
360,
6377,
286,
4771,
796,
860,
1558,
13276,
14,
76,
61,
18,
198,
220,
220,
220,
220,
220,
220,
220,
34849,
62,
22208,
796,
2472,
62,
29048,
1635,
860,
1558,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
22208,
796,
34849,
62,
22208,
1635,
838,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
464,
1989,
286,
34849,
318,
1,
1343,
366,
366,
1343,
965,
7,
23350,
62,
79,
14810,
8,
1343,
366,
285,
61,
17,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
464,
6115,
286,
34849,
318,
1,
1343,
366,
366,
1343,
965,
7,
23350,
62,
29048,
8,
1343,
366,
285,
61,
18,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
464,
2347,
286,
262,
34849,
318,
1,
1343,
366,
366,
1343,
965,
7,
501,
3900,
62,
22208,
8,
1343,
366,
14211,
14,
76,
61,
18,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
464,
2472,
2347,
286,
262,
34849,
318,
1,
1343,
366,
366,
1343,
965,
7,
23350,
62,
22208,
8,
1343,
366,
14211,
14,
76,
61,
18,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7,
23350,
62,
22208,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
2472,
62,
29048,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
15738,
262,
7885,
2472,
6115,
286,
262,
34849,
13,
220,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
34142,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2472,
6115,
286,
262,
34849,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
493,
7,
23350,
62,
29048,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
2472,
62,
22208,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
15738,
262,
7885,
2472,
2347,
286,
262,
34849,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
34142,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2472,
2347,
286,
262,
34849,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
493,
7,
23350,
62,
22208,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
5004,
62,
7109,
363,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
770,
2163,
15947,
1771,
262,
34849,
318,
1626,
2546,
2837,
284,
307,
49445,
416,
262,
1664,
27762,
8848,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
262,
34849,
318,
4025,
621,
4570,
1510,
14211,
287,
2347,
11,
340,
2314,
307,
49445,
416,
262,
27762,
8848,
13,
220,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
764,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
262,
34849,
318,
1626,
2546,
2837,
284,
307,
49445,
416,
262,
1664,
13,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
1626,
62,
9521,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
2354,
62,
9521,
198,
220,
220,
220,
220,
220,
220,
220,
1626,
62,
9521,
796,
366,
6090,
6094,
34849,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2354,
62,
9521,
796,
366,
34,
34574,
6094,
34849,
1,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2472,
62,
22208,
1875,
4570,
10535,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
7,
43435,
62,
9521,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7,
33479,
62,
9521,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220
] | 2.287958 | 1,910 |
from keras.layers import Conv2D, BatchNormalization, Input, DepthwiseConv2D, Lambda, Concatenate
from keras.layers import GlobalAveragePooling2D, Reshape, ReLU, Add, Dropout
import keras.backend as K
from ..functions.mutations import channel_split, channel_shuffle
# Emulate class behaviour for parameterization
def SeperableConvBlock(output_filters=None, ReLU_Max=None, strides=(1, 1)):
r"""
x->DWConv(3x3)->BN->ReLU(max)->Conv2D(1x1)->BN
```
output_filters: int, size of last axis output
ReLU_Max: float, max value as output of a ReLU in this block, if < 0, it will be Linear (no ReLU)
strides: int/tuple-int, same as in keras.layers.Conv2D
```
From MnasNet https://arxiv.org/pdf/1807.11626.pdf
Also used in MobileConvBlock as subblock
"""
return stub
def MobileConvBlock(output_filters, latent_filters, ReLU_Max=None, skipFunction=None, strides=(1, 1)):
r"""
```
/-------------------------------------------\
x->Conv(1x1,lat)->ReLU->{SeperableConvBlock}-=?>skip
```
```
output_filters: int, size of last axis output
latent_filters: int, size of filters at first Conv 1x1 (see MnasNet), If None shape[-1] is used
- *_filters is generally 'k * shape[-1]' as expansion factor
ReLU_Max: float, max value as output of a ReLU in this block
skipFunction: def, a function combining 2 equi-shaped tensors (e.g. keras.layers.add)
strides: int/tuple-int, same as in keras.layers.Conv2D
```
skipFunction (if not None) is an keras function with the same interface as keras.layers.{add|multiply}
if None there will be no attention added
Stride block from MobileNetV2 (fixed )
```
Strides=1: ReLU_Max=6, skipFunction=keras.layers.add
Strides=2: ReLU_Max=6, strides=(2,2)
```
MBConv6 from MnasNet
```
latent_filters=6*output_filters, skipFunction=keras.layers.add
```
From MobileNetV2 https://arxiv.org/pdf/1801.04381.pdf (When RELU6)
From MnasNet https://arxiv.org/pdf/1807.11626.pdf (When RELU)
"""
return stub
def ShuffleBasic(out_channels, bottleneck_factor):
r"""
```
/->Conv(1x1,BN,RelU)->{SeperableConvBlock}-\
x->ChSplit------------------------------------Concat(axis=-1)->ChShuffle
```
"""
return stub
def ShuffleStride(out_channels, bottleneck_factor, strides=(2, 2)):
r"""
```
/-Conv(1x1,bn,relu)->{SeperableConvBlock}->ReLU-\
x-{SeperableConvBlock}->ReLU---------------->Concat(axis=-1)->ChShuffle
```
"""
return stub
def ResnetBlock():
r"""
```
/->BN->ReLU->Conv(k=3)->BN->ReLU->Conv(k=1)-\
x--------------------------------------------->Add
```
"""
return stub
def ApesBlock(k, r):
r"""
```
/->BN->ReLU->Conv(k=1)->BN->ReLU->Conv(k=k)->BN-\
x->BN---------------------------------------------->Add->ReLU->Dropout(r)
```
"""
return stub
| [
6738,
41927,
292,
13,
75,
6962,
1330,
34872,
17,
35,
11,
347,
963,
26447,
1634,
11,
23412,
11,
36350,
3083,
3103,
85,
17,
35,
11,
21114,
6814,
11,
1482,
9246,
268,
378,
198,
6738,
41927,
292,
13,
75,
6962,
1330,
8060,
26287,
27201,
278,
17,
35,
11,
1874,
71,
1758,
11,
797,
41596,
11,
3060,
11,
14258,
448,
198,
11748,
41927,
292,
13,
1891,
437,
355,
509,
198,
6738,
11485,
12543,
2733,
13,
21973,
602,
1330,
6518,
62,
35312,
11,
6518,
62,
1477,
18137,
198,
198,
2,
2295,
5039,
1398,
9172,
329,
11507,
1634,
628,
198,
4299,
1001,
525,
540,
3103,
85,
12235,
7,
22915,
62,
10379,
1010,
28,
14202,
11,
797,
41596,
62,
11518,
28,
14202,
11,
35002,
16193,
16,
11,
352,
8,
2599,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
2124,
3784,
42955,
3103,
85,
7,
18,
87,
18,
8,
3784,
15766,
3784,
3041,
41596,
7,
9806,
8,
3784,
3103,
85,
17,
35,
7,
16,
87,
16,
8,
3784,
15766,
628,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
5072,
62,
10379,
1010,
25,
493,
11,
2546,
286,
938,
16488,
5072,
198,
220,
220,
220,
797,
41596,
62,
11518,
25,
12178,
11,
3509,
1988,
355,
5072,
286,
257,
797,
41596,
287,
428,
2512,
11,
611,
1279,
657,
11,
340,
481,
307,
44800,
357,
3919,
797,
41596,
8,
198,
220,
220,
220,
35002,
25,
493,
14,
83,
29291,
12,
600,
11,
976,
355,
287,
41927,
292,
13,
75,
6962,
13,
3103,
85,
17,
35,
198,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
3574,
337,
24716,
7934,
3740,
1378,
283,
87,
452,
13,
2398,
14,
12315,
14,
1507,
2998,
13,
18298,
2075,
13,
12315,
198,
220,
220,
220,
4418,
973,
287,
12173,
3103,
85,
12235,
355,
850,
9967,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
628,
198,
4299,
12173,
3103,
85,
12235,
7,
22915,
62,
10379,
1010,
11,
41270,
62,
10379,
1010,
11,
797,
41596,
62,
11518,
28,
14202,
11,
14267,
22203,
28,
14202,
11,
35002,
16193,
16,
11,
352,
8,
2599,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
220,
220,
1220,
3880,
32284,
59,
198,
220,
220,
220,
220,
2124,
3784,
3103,
85,
7,
16,
87,
16,
11,
15460,
8,
3784,
3041,
41596,
3784,
90,
4653,
525,
540,
3103,
85,
12235,
92,
12,
28,
30,
29,
48267,
198,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
5072,
62,
10379,
1010,
25,
493,
11,
2546,
286,
938,
16488,
5072,
198,
220,
220,
220,
41270,
62,
10379,
1010,
25,
493,
11,
2546,
286,
16628,
379,
717,
34872,
352,
87,
16,
357,
3826,
337,
24716,
7934,
828,
1002,
6045,
5485,
58,
12,
16,
60,
318,
973,
198,
220,
220,
220,
532,
1635,
62,
10379,
1010,
318,
4143,
705,
74,
1635,
5485,
58,
12,
16,
49946,
355,
7118,
5766,
198,
220,
220,
220,
797,
41596,
62,
11518,
25,
12178,
11,
3509,
1988,
355,
5072,
286,
257,
797,
41596,
287,
428,
2512,
198,
220,
220,
220,
14267,
22203,
25,
825,
11,
257,
2163,
19771,
362,
1602,
72,
12,
16760,
11192,
669,
357,
68,
13,
70,
13,
41927,
292,
13,
75,
6962,
13,
2860,
8,
198,
220,
220,
220,
35002,
25,
493,
14,
83,
29291,
12,
600,
11,
976,
355,
287,
41927,
292,
13,
75,
6962,
13,
3103,
85,
17,
35,
198,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
14267,
22203,
357,
361,
407,
6045,
8,
318,
281,
41927,
292,
2163,
351,
262,
976,
7071,
355,
41927,
292,
13,
75,
6962,
13,
90,
2860,
91,
16680,
541,
306,
92,
198,
220,
220,
220,
611,
6045,
612,
481,
307,
645,
3241,
2087,
628,
220,
220,
220,
4285,
485,
2512,
422,
12173,
7934,
53,
17,
357,
34021,
1267,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
4285,
1460,
28,
16,
25,
797,
41596,
62,
11518,
28,
21,
11,
14267,
22203,
28,
6122,
292,
13,
75,
6962,
13,
2860,
198,
220,
220,
220,
4285,
1460,
28,
17,
25,
797,
41596,
62,
11518,
28,
21,
11,
35002,
16193,
17,
11,
17,
8,
198,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
337,
2749,
261,
85,
21,
422,
337,
24716,
7934,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
41270,
62,
10379,
1010,
28,
21,
9,
22915,
62,
10379,
1010,
11,
14267,
22203,
28,
6122,
292,
13,
75,
6962,
13,
2860,
198,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
3574,
12173,
7934,
53,
17,
3740,
1378,
283,
87,
452,
13,
2398,
14,
12315,
14,
1507,
486,
13,
3023,
36626,
13,
12315,
357,
2215,
29749,
52,
21,
8,
198,
220,
220,
220,
3574,
337,
24716,
7934,
3740,
1378,
283,
87,
452,
13,
2398,
14,
12315,
14,
1507,
2998,
13,
18298,
2075,
13,
12315,
357,
2215,
29749,
52,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
628,
198,
198,
4299,
911,
18137,
26416,
7,
448,
62,
354,
8961,
11,
49936,
62,
31412,
2599,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1220,
3784,
3103,
85,
7,
16,
87,
16,
11,
15766,
11,
6892,
52,
8,
3784,
90,
4653,
525,
540,
3103,
85,
12235,
92,
12,
59,
198,
220,
220,
220,
2124,
3784,
1925,
41205,
3880,
650,
3103,
9246,
7,
22704,
10779,
16,
8,
3784,
1925,
2484,
18137,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
628,
198,
4299,
911,
18137,
1273,
13154,
7,
448,
62,
354,
8961,
11,
49936,
62,
31412,
11,
35002,
16193,
17,
11,
362,
8,
2599,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
220,
1220,
12,
3103,
85,
7,
16,
87,
16,
11,
9374,
11,
260,
2290,
8,
3784,
90,
4653,
525,
540,
3103,
85,
12235,
92,
3784,
3041,
41596,
12,
59,
198,
220,
220,
220,
2124,
12,
90,
4653,
525,
540,
3103,
85,
12235,
92,
3784,
3041,
41596,
1783,
29,
3103,
9246,
7,
22704,
10779,
16,
8,
3784,
1925,
2484,
18137,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
628,
198,
4299,
1874,
3262,
12235,
33529,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
220,
1220,
3784,
15766,
3784,
3041,
41596,
3784,
3103,
85,
7,
74,
28,
18,
8,
3784,
15766,
3784,
3041,
41596,
3784,
3103,
85,
7,
74,
28,
16,
13219,
59,
198,
220,
220,
220,
2124,
3880,
10541,
3784,
4550,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
628,
198,
4299,
5949,
274,
12235,
7,
74,
11,
374,
2599,
198,
220,
220,
220,
374,
37811,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
220,
1220,
3784,
15766,
3784,
3041,
41596,
3784,
3103,
85,
7,
74,
28,
16,
8,
3784,
15766,
3784,
3041,
41596,
3784,
3103,
85,
7,
74,
28,
74,
8,
3784,
15766,
12,
59,
198,
220,
220,
220,
2124,
3784,
15766,
3880,
26171,
29,
4550,
3784,
3041,
41596,
3784,
26932,
448,
7,
81,
8,
198,
220,
220,
220,
7559,
63,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
17071,
198
] | 2.434134 | 1,207 |
outer = {"inner": {"hooray": "python"}}
| [
39605,
796,
19779,
5083,
1298,
19779,
71,
2675,
323,
1298,
366,
29412,
1,
11709,
201,
198
] | 2.5625 | 16 |
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://web.whatsapp.com/')
all_names = ['Sachin Yadav']
msg = input('Enter the message')
count = int(input('no.of times to send message'))
input('click any random key after qr scanning')
for name in all_names:
user = driver.find_element_by_xpath("//span[@title = '{}']".format(name))
user.click()
msgbox = driver.find_element_by_class_name('_3u328')
for i in range (count):
msgbox.send_keys(msg)
button = driver.find_element_by_class_name('_3M-N-')
button.click() | [
6738,
384,
11925,
1505,
1330,
3992,
26230,
201,
198,
26230,
796,
3992,
26230,
13,
1925,
5998,
3419,
201,
198,
201,
198,
26230,
13,
1136,
10786,
5450,
1378,
12384,
13,
1929,
1381,
1324,
13,
785,
14,
11537,
201,
198,
201,
198,
439,
62,
14933,
796,
37250,
50,
620,
259,
41449,
615,
20520,
201,
198,
19662,
796,
5128,
10786,
17469,
262,
3275,
11537,
201,
198,
9127,
796,
493,
7,
15414,
10786,
3919,
13,
1659,
1661,
284,
3758,
3275,
6,
4008,
201,
198,
201,
198,
15414,
10786,
12976,
597,
4738,
1994,
706,
10662,
81,
21976,
11537,
201,
198,
201,
198,
1640,
1438,
287,
477,
62,
14933,
25,
201,
198,
220,
220,
220,
2836,
796,
4639,
13,
19796,
62,
30854,
62,
1525,
62,
87,
6978,
7203,
1003,
12626,
58,
31,
7839,
796,
705,
90,
92,
20520,
1911,
18982,
7,
3672,
4008,
201,
198,
220,
220,
220,
2836,
13,
12976,
3419,
201,
198,
201,
198,
220,
220,
220,
31456,
3524,
796,
4639,
13,
19796,
62,
30854,
62,
1525,
62,
4871,
62,
3672,
10786,
62,
18,
84,
34256,
11537,
201,
198,
201,
198,
220,
220,
220,
329,
1312,
287,
2837,
357,
9127,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
3524,
13,
21280,
62,
13083,
7,
19662,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4936,
796,
4639,
13,
19796,
62,
30854,
62,
1525,
62,
4871,
62,
3672,
10786,
62,
18,
44,
12,
45,
12,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4936,
13,
12976,
3419
] | 2.423387 | 248 |
from django.conf import settings
from django.contrib.auth import get_user_model
from django.utils import timezone
from wagtail.contrib.modeladmin.options import ModelAdmin, modeladmin_register
from home.models import SiteSettings
from iogt_users.filters import GroupsFilter
modeladmin_register(UsersExportAdmin)
| [
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
651,
62,
7220,
62,
19849,
198,
6738,
42625,
14208,
13,
26791,
1330,
640,
11340,
198,
6738,
266,
363,
13199,
13,
3642,
822,
13,
19849,
28482,
13,
25811,
1330,
9104,
46787,
11,
2746,
28482,
62,
30238,
198,
198,
6738,
1363,
13,
27530,
1330,
14413,
26232,
198,
6738,
1312,
519,
83,
62,
18417,
13,
10379,
1010,
1330,
27441,
22417,
628,
198,
198,
19849,
28482,
62,
30238,
7,
14490,
43834,
46787,
8,
198
] | 3.632184 | 87 |
from .constants import BLOCK_TAGS
def add_0x(string):
"""Add 0x to string at start.
"""
if isinstance(string, bytes):
string = string.decode('utf-8')
return '0x' + str(string)
def hex_to_dec(x):
"""Convert hex to decimal
"""
return int(x, 16)
def wei_to_ether(wei):
"""Convert wei to ether
"""
return 1.0 * wei / 10**18
def gwei_to_ether(wei):
"""Convert gwei to ether
"""
return 1.0 * wei / 10**9
def ether_to_wei(ether):
"""Convert ether to wei
"""
return int(ether * 10**18)
def ether_to_gwei(ether):
"""Convert ether to Gwei
"""
return int(ether * 10**9)
def validate_block(block):
"""Validate block on tag or hex int
"""
if isinstance(block, str):
if block not in BLOCK_TAGS:
raise ValueError('Invalid block tag.')
elif isinstance(block, int):
block = hex(block)
else:
raise ValueError('Invalid block type.')
return block
| [
6738,
764,
9979,
1187,
1330,
9878,
11290,
62,
42197,
50,
628,
198,
4299,
751,
62,
15,
87,
7,
8841,
2599,
198,
220,
220,
220,
37227,
4550,
657,
87,
284,
4731,
379,
923,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
8841,
11,
9881,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4731,
796,
4731,
13,
12501,
1098,
10786,
40477,
12,
23,
11537,
198,
220,
220,
220,
1441,
705,
15,
87,
6,
1343,
965,
7,
8841,
8,
628,
198,
4299,
17910,
62,
1462,
62,
12501,
7,
87,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
17910,
284,
32465,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
493,
7,
87,
11,
1467,
8,
628,
198,
4299,
356,
72,
62,
1462,
62,
6750,
7,
42990,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
356,
72,
284,
28475,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
352,
13,
15,
1635,
356,
72,
1220,
838,
1174,
1507,
628,
198,
4299,
308,
42990,
62,
1462,
62,
6750,
7,
42990,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
308,
42990,
284,
28475,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
352,
13,
15,
1635,
356,
72,
1220,
838,
1174,
24,
628,
198,
4299,
28475,
62,
1462,
62,
42990,
7,
6750,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
28475,
284,
356,
72,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
493,
7,
6750,
1635,
838,
1174,
1507,
8,
628,
198,
4299,
28475,
62,
1462,
62,
70,
42990,
7,
6750,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
28475,
284,
402,
42990,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
493,
7,
6750,
1635,
838,
1174,
24,
8,
628,
198,
4299,
26571,
62,
9967,
7,
9967,
2599,
198,
220,
220,
220,
37227,
7762,
20540,
2512,
319,
7621,
393,
17910,
493,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
9967,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2512,
407,
287,
9878,
11290,
62,
42197,
50,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
44651,
2512,
7621,
2637,
8,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
9967,
11,
493,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2512,
796,
17910,
7,
9967,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
44651,
2512,
2099,
2637,
8,
198,
220,
220,
220,
1441,
2512,
198
] | 2.334123 | 422 |
from .models import RedirectVariable
| [
6738,
764,
27530,
1330,
2297,
1060,
43015,
198
] | 4.625 | 8 |
from enum import Enum, auto
from autorepr import AutoRepr
from birdway import Unary, Type, Binary
for name in [
"KeywordMeta",
"KeywordArgs",
"KeywordParam",
"KeywordRun",
"KeywordIf",
"KeywordThen",
"KeywordElse",
"KeywordPrintln",
"KeywordOption",
"BlockBegin",
"BlockEnd",
"TableBegin",
"TableEnd",
"OpeningParens",
"ClosingParens",
"FormattedStringDelimiter",
"StringDelimiter",
"LineEnd",
"Association",
"Separator",
"Assignment",
"Return",
"FormattingExpressionBegin",
"KeywordStruct",
"KeywordEnum",
"KeywordFunc",
"KeywordFor",
"KeywordFrom",
"KeywordTo",
"KeywordDo",
"KeywordTry",
"KeywordOn",
"Range",
"KeywordUse",
"KeywordIn",
]:
exec(f"class {name} (Token, AutoRepr): pass")
del name
| [
6738,
33829,
1330,
2039,
388,
11,
8295,
198,
6738,
1960,
382,
1050,
1330,
11160,
6207,
81,
198,
6738,
6512,
1014,
1330,
791,
560,
11,
5994,
11,
45755,
628,
198,
198,
1640,
1438,
287,
685,
198,
220,
220,
220,
366,
9218,
4775,
48526,
1600,
198,
220,
220,
220,
366,
9218,
4775,
42035,
1600,
198,
220,
220,
220,
366,
9218,
4775,
22973,
1600,
198,
220,
220,
220,
366,
9218,
4775,
10987,
1600,
198,
220,
220,
220,
366,
9218,
4775,
1532,
1600,
198,
220,
220,
220,
366,
9218,
4775,
6423,
1600,
198,
220,
220,
220,
366,
9218,
4775,
40674,
1600,
198,
220,
220,
220,
366,
9218,
4775,
18557,
18755,
1600,
198,
220,
220,
220,
366,
9218,
4775,
19722,
1600,
198,
220,
220,
220,
366,
12235,
44140,
1600,
198,
220,
220,
220,
366,
12235,
12915,
1600,
198,
220,
220,
220,
366,
10962,
44140,
1600,
198,
220,
220,
220,
366,
10962,
12915,
1600,
198,
220,
220,
220,
366,
43093,
47,
5757,
82,
1600,
198,
220,
220,
220,
366,
2601,
2752,
47,
5757,
82,
1600,
198,
220,
220,
220,
366,
8479,
16898,
10100,
13856,
320,
2676,
1600,
198,
220,
220,
220,
366,
10100,
13856,
320,
2676,
1600,
198,
220,
220,
220,
366,
13949,
12915,
1600,
198,
220,
220,
220,
366,
8021,
41003,
1600,
198,
220,
220,
220,
366,
19117,
283,
1352,
1600,
198,
220,
220,
220,
366,
8021,
16747,
1600,
198,
220,
220,
220,
366,
13615,
1600,
198,
220,
220,
220,
366,
26227,
889,
16870,
2234,
44140,
1600,
198,
220,
220,
220,
366,
9218,
4775,
44909,
1600,
198,
220,
220,
220,
366,
9218,
4775,
4834,
388,
1600,
198,
220,
220,
220,
366,
9218,
4775,
37,
19524,
1600,
198,
220,
220,
220,
366,
9218,
4775,
1890,
1600,
198,
220,
220,
220,
366,
9218,
4775,
4863,
1600,
198,
220,
220,
220,
366,
9218,
4775,
2514,
1600,
198,
220,
220,
220,
366,
9218,
4775,
5211,
1600,
198,
220,
220,
220,
366,
9218,
4775,
23433,
1600,
198,
220,
220,
220,
366,
9218,
4775,
2202,
1600,
198,
220,
220,
220,
366,
17257,
1600,
198,
220,
220,
220,
366,
9218,
4775,
11041,
1600,
198,
220,
220,
220,
366,
9218,
4775,
818,
1600,
198,
5974,
198,
220,
220,
220,
2452,
7,
69,
1,
4871,
1391,
3672,
92,
357,
30642,
11,
11160,
6207,
81,
2599,
1208,
4943,
198,
12381,
1438,
628,
628,
628,
628
] | 2.242105 | 380 |
file1 = open('input_7.txt', 'r')
Lines = file1.readlines()
bingo_numbers = Lines[0].split(",")
bingo_tables = []
bingo_win = 0
bingo_row_number = 0
for line in Lines[2:]:
new_row = []
if line == '\n':
continue
row = line.split(" ")
for element in row:
if element == '\n' or element == '':
continue
new_row.append(element.strip())
bingo_tables.append(new_row)
bingo_row_result = [0] * len(bingo_tables)
bingo = False
for number in bingo_numbers:
counter = 0
for row in bingo_tables:
try:
index = row.index(number)
bingo_row_result[counter] += 1
row[row.index(number)] = 0
if bingo_row_result[counter] == 5:
bingo = True
bingo_row_number = counter
bingo_win = int(number)
print('Bingo %s' % number)
break
except:
pass
for c in range(0, 5):
bingo_test = 0
for r in range(0, len(bingo_tables)):
if r % 5 == 0:
bingo_test = 0
bingo_test += int(bingo_tables[r][c])
if bingo_test == 0:
bingo = True
bingo_row_number = counter
bingo_win = int(number)
print('Bingo %s' % number)
break
counter += 1
if bingo:
break
bingo_row_number = bingo_row_number - (bingo_row_number % 5)
total = 0
for row in bingo_tables[bingo_row_number:bingo_row_number+5]:
for x in row:
total += int(x)
print(bingo_tables)
print(total*bingo_win)
| [
7753,
16,
796,
1280,
10786,
15414,
62,
22,
13,
14116,
3256,
705,
81,
11537,
198,
43,
1127,
796,
2393,
16,
13,
961,
6615,
3419,
198,
198,
4623,
78,
62,
77,
17024,
796,
26299,
58,
15,
4083,
35312,
7,
2430,
8,
198,
4623,
78,
62,
83,
2977,
796,
17635,
198,
4623,
78,
62,
5404,
796,
657,
198,
4623,
78,
62,
808,
62,
17618,
796,
657,
198,
1640,
1627,
287,
26299,
58,
17,
25,
5974,
198,
220,
220,
220,
649,
62,
808,
796,
17635,
198,
220,
220,
220,
611,
1627,
6624,
705,
59,
77,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
5752,
796,
1627,
13,
35312,
7203,
366,
8,
198,
220,
220,
220,
329,
5002,
287,
5752,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5002,
6624,
705,
59,
77,
6,
393,
5002,
6624,
10148,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
808,
13,
33295,
7,
30854,
13,
36311,
28955,
198,
220,
220,
220,
275,
32735,
62,
83,
2977,
13,
33295,
7,
3605,
62,
808,
8,
198,
198,
4623,
78,
62,
808,
62,
20274,
796,
685,
15,
60,
1635,
18896,
7,
4623,
78,
62,
83,
2977,
8,
198,
4623,
78,
796,
10352,
198,
1640,
1271,
287,
275,
32735,
62,
77,
17024,
25,
198,
220,
220,
220,
3753,
796,
657,
198,
220,
220,
220,
329,
5752,
287,
275,
32735,
62,
83,
2977,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
5752,
13,
9630,
7,
17618,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
808,
62,
20274,
58,
24588,
60,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5752,
58,
808,
13,
9630,
7,
17618,
15437,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
275,
32735,
62,
808,
62,
20274,
58,
24588,
60,
6624,
642,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
808,
62,
17618,
796,
3753,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
5404,
796,
493,
7,
17618,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
33,
32735,
4064,
82,
6,
4064,
1271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
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,
329,
269,
287,
2837,
7,
15,
11,
642,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
9288,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
374,
287,
2837,
7,
15,
11,
18896,
7,
4623,
78,
62,
83,
2977,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
374,
4064,
642,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
9288,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
9288,
15853,
493,
7,
4623,
78,
62,
83,
2977,
58,
81,
7131,
66,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
275,
32735,
62,
9288,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
808,
62,
17618,
796,
3753,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
32735,
62,
5404,
796,
493,
7,
17618,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
33,
32735,
4064,
82,
6,
4064,
1271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
3753,
15853,
352,
198,
220,
220,
220,
611,
275,
32735,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
198,
4623,
78,
62,
808,
62,
17618,
796,
275,
32735,
62,
808,
62,
17618,
532,
357,
4623,
78,
62,
808,
62,
17618,
4064,
642,
8,
198,
23350,
796,
657,
198,
1640,
5752,
287,
275,
32735,
62,
83,
2977,
58,
4623,
78,
62,
808,
62,
17618,
25,
4623,
78,
62,
808,
62,
17618,
10,
20,
5974,
198,
220,
220,
220,
329,
2124,
287,
5752,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
15853,
493,
7,
87,
8,
198,
198,
4798,
7,
4623,
78,
62,
83,
2977,
8,
198,
4798,
7,
23350,
9,
4623,
78,
62,
5404,
8,
198
] | 1.854402 | 886 |
username = input("Please enter your name : ")
print(type(username))
print(f'Your name is : {username}') | [
29460,
796,
5128,
7203,
5492,
3802,
534,
1438,
1058,
366,
8,
198,
4798,
7,
4906,
7,
29460,
4008,
198,
4798,
7,
69,
6,
7120,
1438,
318,
1058,
1391,
29460,
92,
11537
] | 3.322581 | 31 |
import requests, json
def userApiKey(apikey):
"""
Returns information about an apikey
apikey: Your ApiKey from FileCrypt
Attention: this API is limited to 10 requests for an timeframe of 1 hour.
"""
data={"api_key":apikey,"sub":"apikey","fn":"user"}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def userEarnings(apikey,year=None,month=None,day=None):
"""
Returns statistics from user income and the total available balance on the account
apikey: Your ApiKey from FileCrypt
year(optional): year (YYYY) (2019)
month(optional): month (MM) (06)
day(optional): month (DD) (13)
"""
data={"api_key":apikey,"sub":"earnings","fn":"user"}
if year != None:
data["year"] = str(year)
if month != None:
data["month"] = str(month)
if day != None:
data["day"] = str(day)
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerCreate(apikey,name,mirrors,password=None,captcha=None,allow_cnl=None,allow_dlc=None,allow_links=None,groupid=None):
"""
This function allows you to create an filecrypt.cc protected folder.
apikey: Your ApiKey from FileCrypt
name: name of your folder
mirrors: mirrors in a tripple listed list
example: [[[mirror_0_link1,mirror_0_link2],[mirror_0_backup_link1,mirror_0_backup_link2]],[[mirror_1_link1,mirror_1_link2],[mirror_1_backup_link1,mirror_1_backup_link2]]]
prettyprinted example:
[
[
[
"mirror_0_link1",
"mirror_0_link2"
],
[
"mirror_0_backup_link1",
"mirror_0_backup_link2"
]
],
[
[
"mirror_1_link1",
"mirror_1_link2"
],
[
"mirror_1_backup_link1",
"mirror_1_backup_link2"
]
]
]
all strings in the first and second list (where the other lists should be) will be skipped
password(optional): password of your folder
captcha(optional): enable captcha? Allowed Values: 0,1
allow_cnl(optional): enable cnl? Allowed Values: 0,1
allow_dlc(optional): enable dlc? Allowed Values: 0,1
allow_links(optional): enable links? Allowed Values: 0,1
groupid: group ID of your target group
"""
data={"api_key":apikey,"sub":"createV2","fn":"containerV2","name":name}
for i in range(len(mirrors)):
if isinstance(mirrors[i],str):
continue
for j in range(len(mirrors[i])):
if isinstance(mirrors[i][j],str):
continue
for k in range(len(mirrors[i][j])):
data["mirror_"+str(i+1)+"["+str(j)+"]["+str(k)+"]"] = mirrors[i][j][k]
if password != None:
data["folderpass"] = password
if captcha != None:
data["captcha"] = str(captcha)
if allow_cnl != None:
data["allow_cnl"] = str(allow_cnl)
if allow_dlc != None:
data["allow_dlc"] = str(allow_dlc)
if allow_links != None:
data["allow_links"] = str(allow_links)
if groupid != None:
data["group"] = str(groupid)
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerEdit(apikey,mirrors,container_id,name=None,password=None,captcha=None,allow_cnl=None,allow_dlc=None,allow_links=None,groupid=None):
"""
This function allows you to edit an filecrypt.cc protected folder.
Once you submit mirror_1 all links are permanently removed from this folder and will be replaced with the once submitted.
if you would like to replace just a mirror please use our info api to get informations about links inside this folder to build your request.
For informations on statusimages please visit https://filecrypt.cc/docs/index.htm#api-General-Statusimages
apikey: Your ApiKey from FileCrypt
name(optional): name of your folder
container_id: the container_id as string
mirrors: same as containerCreate()
password(optional): password of your folder
captcha(optional): enable captcha? Allowed Values: 0,1
allow_cnl(optional): enable cnl? Allowed Values: 0,1
allow_dlc(optional): enable dlc? Allowed Values: 0,1
allow_links(optional): enable links? Allowed Values: 0,1
groupid: group ID of your target group
"""
data={"api_key":apikey,"sub":"editV2","fn":"containerV2","name":name,"container_id":container_id}
for i in range(len(mirrors)):
if isinstance(mirrors[i],str):
continue
for j in range(len(mirrors[i])):
if isinstance(mirrors[i][j],str):
continue
for k in range(len(mirrors[i][j])):
data["mirror_"+str(i+1)+"["+str(j)+"]["+str(k)+"]"] = mirrors[i][j][k]
if name != None:
data["name"] = name
if password != None:
data["folderpass"] = password
if captcha != None:
data["captcha"] = str(captcha)
if allow_cnl != None:
data["allow_cnl"] = str(allow_cnl)
if allow_dlc != None:
data["allow_dlc"] = str(allow_dlc)
if allow_links != None:
data["allow_links"] = str(allow_links)
if groupid != None:
data["group"] = str(groupid)
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerInfo(apikey,container_id):
"""
Returns an sorted object containing every link in your folder.
apikey: Your ApiKey from FileCrypt
container_id: the container_id as string
"""
data={"api_key":apikey,"sub":"info","fn":"containerV2","container_id":container_id}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerList(apikey,state=None,fav=None):
"""
Returns all Containers from your FileCrypt Account
apikey: Your ApiKey from FileCrypt
state(optional): filter by state of your folders. Allowed values: "unchecked", "ok", "uncheckable", "error", "offline", "partial"
fav(optional): filter on favorite folders 1 = favorite, 0 = regular folder
"""
data={"api_key":apikey,"sub":"listV2","fn":"containerV2"}
if state != None:
data["state"] = state
if fav != None:
data["fav"] = str(fav)
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerMyFolder(apikey,state=None,groupid=None):
"""
returns a short list of your own folders filtered by state (if passed as parameter).
Please note every Object child of the container-Node starts with a trailing _.
apikey: Your ApiKey from FileCrypt
state(optional): filter by state of your folders. Allowed values: "unchecked", "ok", "uncheckable", "error", "offline", "partial"
groupid(optional): filter for specified group
"""
data={"api_key":apikey,"fn":"containerV2","sub":"myfolder"}
if state != None:
data["state"] = state
if groupid != None:
data["group"] = str(groupid)
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerRemove(apikey,container_id):
"""
*Move* folder from public to trashbin the folder will not be public available.
apikey: Your ApiKey from FileCrypt
container_id: the container_id as string
"""
data={"api_key":apikey,"fn":"containerV2","sub":"remove","container_id":container_id}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def containerStatus(apikey,container_id):
"""
Get status of an filecrypt.cc folder: https://filecrypt.cc/docs/index.htm#api-General-Statusimages
apikey: Your ApiKey from FileCrypt
container_id: the container_id as string
"""
data={"api_key":apikey,"fn":"containerV2","sub":"statusV2","container_id":container_id}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def groupAdd(apikey,name):
"""
Creates a new Group with the chosen Name
apikey: Your ApiKey from FileCrypt
name: The name of your new group
"""
data={"api_key":apikey,"fn":"group","sub":"add","name":name,"parent":"0"}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def groupList(apikey):
"""
Returns all Groups existing in your FileCrypt Account
apikey: Your ApiKey from FileCrypt
"""
data={"api_key":apikey,"fn":"group","sub":"list"}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def groupMove(apikey,groupid,container_id):
"""
Move your filecrypt.cc containers to a specified group
apikey: Your ApiKey from FileCrypt
groupid: the group ID(!) you want the containers to be in
container_id: you can input a single Container via String or input a whole list with all containers.
"""
data={"api_key":apikey,"fn":"group","sub":"move","group":str(groupid)}
if isinstance(container_id,str):
data["container_id[0]"] = container_id
elif isinstance(container_id,list):
for i in range(len(container_id)):
data["container_id["+str(i)+"]"]=container_id[i]
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text)
def groupRemove(apikey,groupid):
"""
Removes the group and moves all containers to group 0 (ungrouped)
apikey: Your ApiKey from FileCrypt
groupid: the group ID(!) you want to delete
"""
data={"api_key":apikey,"fn":"group","sub":"remove","id":str(groupid)}
return json.loads(requests.post("https://filecrypt.cc/api.php",data=data).text) | [
11748,
7007,
11,
33918,
201,
198,
201,
198,
4299,
2836,
32,
14415,
9218,
7,
499,
522,
88,
2599,
201,
198,
197,
37811,
201,
198,
197,
35561,
1321,
546,
281,
2471,
522,
88,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
201,
198,
197,
8086,
1463,
25,
428,
7824,
318,
3614,
284,
838,
7007,
329,
281,
41352,
286,
352,
1711,
13,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
499,
522,
88,
2430,
22184,
2404,
7220,
20662,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
2836,
49725,
654,
7,
499,
522,
88,
11,
1941,
28,
14202,
11,
8424,
28,
14202,
11,
820,
28,
14202,
2599,
201,
198,
197,
37811,
201,
198,
197,
35561,
7869,
422,
2836,
3739,
290,
262,
2472,
1695,
5236,
319,
262,
1848,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
1941,
7,
25968,
2599,
614,
357,
26314,
26314,
8,
357,
23344,
8,
201,
198,
197,
8424,
7,
25968,
2599,
1227,
357,
12038,
8,
357,
3312,
8,
201,
198,
197,
820,
7,
25968,
2599,
1227,
357,
16458,
8,
357,
1485,
8,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
451,
23400,
2430,
22184,
2404,
7220,
20662,
201,
198,
197,
361,
614,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
1941,
8973,
796,
965,
7,
1941,
8,
201,
198,
197,
361,
1227,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
8424,
8973,
796,
965,
7,
8424,
8,
201,
198,
197,
361,
1110,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
820,
8973,
796,
965,
7,
820,
8,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
201,
198,
201,
198,
4299,
9290,
16447,
7,
499,
522,
88,
11,
3672,
11,
10793,
5965,
11,
28712,
28,
14202,
11,
27144,
11693,
28,
14202,
11,
12154,
62,
66,
21283,
28,
14202,
11,
12154,
62,
25404,
66,
28,
14202,
11,
12154,
62,
28751,
28,
14202,
11,
8094,
312,
28,
14202,
2599,
201,
198,
197,
37811,
201,
198,
197,
1212,
2163,
3578,
345,
284,
2251,
281,
2393,
29609,
13,
535,
6861,
9483,
13,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
3672,
25,
1438,
286,
534,
9483,
201,
198,
197,
10793,
5965,
25,
22353,
287,
257,
1333,
381,
293,
5610,
1351,
220,
220,
201,
198,
197,
197,
20688,
25,
16410,
58,
10793,
1472,
62,
15,
62,
8726,
16,
11,
10793,
1472,
62,
15,
62,
8726,
17,
38430,
10793,
1472,
62,
15,
62,
1891,
929,
62,
8726,
16,
11,
10793,
1472,
62,
15,
62,
1891,
929,
62,
8726,
17,
60,
4357,
30109,
10793,
1472,
62,
16,
62,
8726,
16,
11,
10793,
1472,
62,
16,
62,
8726,
17,
38430,
10793,
1472,
62,
16,
62,
1891,
929,
62,
8726,
16,
11,
10793,
1472,
62,
16,
62,
1891,
929,
62,
8726,
17,
11907,
60,
201,
198,
197,
197,
37784,
49695,
1672,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
15,
62,
8726,
16,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
15,
62,
8726,
17,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
15,
62,
1891,
929,
62,
8726,
16,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
15,
62,
1891,
929,
62,
8726,
17,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
16,
62,
8726,
16,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
16,
62,
8726,
17,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
16,
62,
1891,
929,
62,
8726,
16,
1600,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
10793,
1472,
62,
16,
62,
1891,
929,
62,
8726,
17,
1,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
201,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
201,
198,
197,
197,
439,
13042,
287,
262,
717,
290,
1218,
1351,
357,
3003,
262,
584,
8341,
815,
307,
8,
481,
307,
26684,
201,
198,
197,
28712,
7,
25968,
2599,
9206,
286,
534,
9483,
201,
198,
197,
27144,
11693,
7,
25968,
2599,
7139,
48972,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
66,
21283,
7,
25968,
2599,
7139,
269,
21283,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
25404,
66,
7,
25968,
2599,
7139,
288,
44601,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
28751,
7,
25968,
2599,
7139,
6117,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
8094,
312,
25,
1448,
4522,
286,
534,
2496,
1448,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
17953,
53,
17,
2430,
22184,
2404,
34924,
53,
17,
2430,
3672,
1298,
3672,
92,
201,
198,
197,
201,
198,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
10793,
5965,
8,
2599,
201,
198,
197,
197,
361,
318,
39098,
7,
10793,
5965,
58,
72,
4357,
2536,
2599,
201,
198,
197,
197,
197,
43043,
201,
198,
197,
197,
1640,
474,
287,
2837,
7,
11925,
7,
10793,
5965,
58,
72,
12962,
2599,
201,
198,
197,
197,
197,
361,
318,
39098,
7,
10793,
5965,
58,
72,
7131,
73,
4357,
2536,
2599,
201,
198,
197,
197,
197,
197,
43043,
201,
198,
197,
197,
197,
1640,
479,
287,
2837,
7,
11925,
7,
10793,
5965,
58,
72,
7131,
73,
12962,
2599,
201,
198,
197,
197,
197,
197,
7890,
14692,
10793,
1472,
62,
1,
10,
2536,
7,
72,
10,
16,
47762,
1,
14692,
10,
2536,
7,
73,
47762,
1,
7131,
1,
10,
2536,
7,
74,
47762,
8973,
8973,
796,
22353,
58,
72,
7131,
73,
7131,
74,
60,
201,
198,
197,
197,
197,
201,
198,
197,
361,
9206,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
43551,
6603,
8973,
796,
9206,
201,
198,
197,
361,
48972,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
27144,
11693,
8973,
796,
965,
7,
27144,
11693,
8,
201,
198,
197,
361,
1249,
62,
66,
21283,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
66,
21283,
8973,
796,
965,
7,
12154,
62,
66,
21283,
8,
201,
198,
197,
361,
1249,
62,
25404,
66,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
25404,
66,
8973,
796,
965,
7,
12154,
62,
25404,
66,
8,
201,
198,
197,
361,
1249,
62,
28751,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
28751,
8973,
796,
965,
7,
12154,
62,
28751,
8,
201,
198,
197,
361,
1448,
312,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
8094,
8973,
796,
965,
7,
8094,
312,
8,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
9290,
18378,
7,
499,
522,
88,
11,
10793,
5965,
11,
34924,
62,
312,
11,
3672,
28,
14202,
11,
28712,
28,
14202,
11,
27144,
11693,
28,
14202,
11,
12154,
62,
66,
21283,
28,
14202,
11,
12154,
62,
25404,
66,
28,
14202,
11,
12154,
62,
28751,
28,
14202,
11,
8094,
312,
28,
14202,
2599,
201,
198,
197,
37811,
201,
198,
197,
1212,
2163,
3578,
345,
284,
4370,
281,
2393,
29609,
13,
535,
6861,
9483,
13,
201,
198,
197,
7454,
345,
9199,
10162,
62,
16,
477,
6117,
389,
15043,
4615,
422,
428,
9483,
290,
481,
307,
6928,
351,
262,
1752,
8948,
13,
201,
198,
197,
361,
345,
561,
588,
284,
6330,
655,
257,
10162,
3387,
779,
674,
7508,
40391,
284,
651,
4175,
602,
546,
6117,
2641,
428,
9483,
284,
1382,
534,
2581,
13,
201,
198,
197,
1890,
4175,
602,
319,
3722,
17566,
3387,
3187,
3740,
1378,
7753,
29609,
13,
535,
14,
31628,
14,
9630,
13,
19211,
2,
15042,
12,
12218,
12,
19580,
17566,
201,
198,
197,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
3672,
7,
25968,
2599,
1438,
286,
534,
9483,
201,
198,
197,
34924,
62,
312,
25,
262,
9290,
62,
312,
355,
4731,
201,
198,
197,
10793,
5965,
25,
976,
355,
9290,
16447,
3419,
201,
198,
197,
197,
201,
198,
197,
28712,
7,
25968,
2599,
9206,
286,
534,
9483,
201,
198,
197,
27144,
11693,
7,
25968,
2599,
7139,
48972,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
66,
21283,
7,
25968,
2599,
7139,
269,
21283,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
25404,
66,
7,
25968,
2599,
7139,
288,
44601,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
12154,
62,
28751,
7,
25968,
2599,
7139,
6117,
30,
1439,
6972,
27068,
25,
657,
11,
16,
201,
198,
197,
8094,
312,
25,
1448,
4522,
286,
534,
2496,
1448,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
19312,
53,
17,
2430,
22184,
2404,
34924,
53,
17,
2430,
3672,
1298,
3672,
553,
34924,
62,
312,
1298,
34924,
62,
312,
92,
201,
198,
197,
201,
198,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
10793,
5965,
8,
2599,
201,
198,
197,
197,
361,
318,
39098,
7,
10793,
5965,
58,
72,
4357,
2536,
2599,
201,
198,
197,
197,
197,
43043,
201,
198,
197,
197,
1640,
474,
287,
2837,
7,
11925,
7,
10793,
5965,
58,
72,
12962,
2599,
201,
198,
197,
197,
197,
361,
318,
39098,
7,
10793,
5965,
58,
72,
7131,
73,
4357,
2536,
2599,
201,
198,
197,
197,
197,
197,
43043,
201,
198,
197,
197,
197,
1640,
479,
287,
2837,
7,
11925,
7,
10793,
5965,
58,
72,
7131,
73,
12962,
2599,
201,
198,
197,
197,
197,
197,
7890,
14692,
10793,
1472,
62,
1,
10,
2536,
7,
72,
10,
16,
47762,
1,
14692,
10,
2536,
7,
73,
47762,
1,
7131,
1,
10,
2536,
7,
74,
47762,
8973,
8973,
796,
22353,
58,
72,
7131,
73,
7131,
74,
60,
201,
198,
197,
197,
197,
201,
198,
197,
361,
1438,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
3672,
8973,
796,
1438,
201,
198,
197,
361,
9206,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
43551,
6603,
8973,
796,
9206,
201,
198,
197,
361,
48972,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
27144,
11693,
8973,
796,
965,
7,
27144,
11693,
8,
201,
198,
197,
361,
1249,
62,
66,
21283,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
66,
21283,
8973,
796,
965,
7,
12154,
62,
66,
21283,
8,
201,
198,
197,
361,
1249,
62,
25404,
66,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
25404,
66,
8973,
796,
965,
7,
12154,
62,
25404,
66,
8,
201,
198,
197,
361,
1249,
62,
28751,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
12154,
62,
28751,
8973,
796,
965,
7,
12154,
62,
28751,
8,
201,
198,
197,
361,
1448,
312,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
8094,
8973,
796,
965,
7,
8094,
312,
8,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
9290,
12360,
7,
499,
522,
88,
11,
34924,
62,
312,
2599,
201,
198,
197,
37811,
201,
198,
197,
35561,
281,
23243,
2134,
7268,
790,
2792,
287,
534,
9483,
13,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
34924,
62,
312,
25,
262,
9290,
62,
312,
355,
4731,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
10951,
2430,
22184,
2404,
34924,
53,
17,
2430,
34924,
62,
312,
1298,
34924,
62,
312,
92,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
9290,
8053,
7,
499,
522,
88,
11,
5219,
28,
14202,
11,
69,
615,
28,
14202,
2599,
201,
198,
197,
37811,
201,
198,
197,
35561,
477,
2345,
50221,
422,
534,
9220,
23919,
10781,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
5219,
7,
25968,
2599,
8106,
416,
1181,
286,
534,
24512,
13,
1439,
6972,
3815,
25,
366,
403,
26752,
1600,
366,
482,
1600,
366,
403,
9122,
540,
1600,
366,
18224,
1600,
366,
2364,
1370,
1600,
366,
47172,
1,
201,
198,
197,
69,
615,
7,
25968,
2599,
8106,
319,
4004,
24512,
352,
796,
4004,
11,
657,
796,
3218,
9483,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
7266,
2404,
4868,
53,
17,
2430,
22184,
2404,
34924,
53,
17,
20662,
201,
198,
197,
361,
1181,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
5219,
8973,
796,
1181,
201,
198,
197,
361,
2090,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
69,
615,
8973,
796,
965,
7,
69,
615,
8,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
9290,
3666,
41092,
7,
499,
522,
88,
11,
5219,
28,
14202,
11,
8094,
312,
28,
14202,
2599,
201,
198,
197,
37811,
201,
198,
197,
7783,
82,
257,
1790,
1351,
286,
534,
898,
24512,
29083,
416,
1181,
357,
361,
3804,
355,
11507,
737,
201,
198,
197,
5492,
3465,
790,
9515,
1200,
286,
262,
9290,
12,
19667,
4940,
351,
257,
25462,
4808,
13,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
5219,
7,
25968,
2599,
8106,
416,
1181,
286,
534,
24512,
13,
1439,
6972,
3815,
25,
366,
403,
26752,
1600,
366,
482,
1600,
366,
403,
9122,
540,
1600,
366,
18224,
1600,
366,
2364,
1370,
1600,
366,
47172,
1,
201,
198,
197,
8094,
312,
7,
25968,
2599,
8106,
329,
7368,
1448,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
34924,
53,
17,
2430,
7266,
2404,
1820,
43551,
20662,
201,
198,
197,
361,
1181,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
5219,
8973,
796,
1181,
201,
198,
197,
361,
1448,
312,
14512,
6045,
25,
201,
198,
197,
197,
7890,
14692,
8094,
8973,
796,
965,
7,
8094,
312,
8,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
201,
198,
4299,
9290,
27914,
7,
499,
522,
88,
11,
34924,
62,
312,
2599,
201,
198,
197,
37811,
201,
198,
197,
9,
21774,
9,
9483,
422,
1171,
284,
13913,
8800,
262,
9483,
481,
407,
307,
1171,
1695,
13,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
34924,
62,
312,
25,
262,
9290,
62,
312,
355,
4731,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
34924,
53,
17,
2430,
7266,
2404,
28956,
2430,
34924,
62,
312,
1298,
34924,
62,
312,
92,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
9290,
19580,
7,
499,
522,
88,
11,
34924,
62,
312,
2599,
201,
198,
197,
37811,
201,
198,
197,
3855,
3722,
286,
281,
2393,
29609,
13,
535,
9483,
25,
3740,
1378,
7753,
29609,
13,
535,
14,
31628,
14,
9630,
13,
19211,
2,
15042,
12,
12218,
12,
19580,
17566,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
34924,
62,
312,
25,
262,
9290,
62,
312,
355,
4731,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
34924,
53,
17,
2430,
7266,
2404,
13376,
53,
17,
2430,
34924,
62,
312,
1298,
34924,
62,
312,
92,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
201,
198,
4299,
1448,
4550,
7,
499,
522,
88,
11,
3672,
2599,
201,
198,
197,
37811,
201,
198,
197,
16719,
274,
257,
649,
4912,
351,
262,
7147,
6530,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
3672,
25,
383,
1438,
286,
534,
649,
1448,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
8094,
2430,
7266,
2404,
2860,
2430,
3672,
1298,
3672,
553,
8000,
2404,
15,
20662,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
1448,
8053,
7,
499,
522,
88,
2599,
201,
198,
197,
37811,
201,
198,
197,
35561,
477,
27441,
4683,
287,
534,
9220,
23919,
10781,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
8094,
2430,
7266,
2404,
4868,
20662,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
1448,
21774,
7,
499,
522,
88,
11,
8094,
312,
11,
34924,
62,
312,
2599,
201,
198,
197,
37811,
201,
198,
197,
21774,
534,
2393,
29609,
13,
535,
16472,
284,
257,
7368,
1448,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
8094,
312,
25,
262,
1448,
4522,
7,
8133,
345,
765,
262,
16472,
284,
307,
287,
201,
198,
197,
34924,
62,
312,
25,
345,
460,
5128,
257,
2060,
43101,
2884,
10903,
393,
5128,
257,
2187,
1351,
351,
477,
16472,
13,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
8094,
2430,
7266,
2404,
21084,
2430,
8094,
1298,
2536,
7,
8094,
312,
38165,
201,
198,
197,
361,
318,
39098,
7,
34924,
62,
312,
11,
2536,
2599,
201,
198,
197,
197,
7890,
14692,
34924,
62,
312,
58,
15,
60,
8973,
796,
9290,
62,
312,
201,
198,
197,
417,
361,
318,
39098,
7,
34924,
62,
312,
11,
4868,
2599,
201,
198,
197,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
34924,
62,
312,
8,
2599,
201,
198,
197,
197,
197,
7890,
14692,
34924,
62,
312,
14692,
10,
2536,
7,
72,
47762,
8973,
8973,
28,
34924,
62,
312,
58,
72,
60,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8,
201,
198,
201,
198,
4299,
1448,
27914,
7,
499,
522,
88,
11,
8094,
312,
2599,
201,
198,
197,
37811,
201,
198,
197,
8413,
5241,
262,
1448,
290,
6100,
477,
16472,
284,
1448,
657,
357,
2150,
3233,
276,
8,
201,
198,
197,
499,
522,
88,
25,
3406,
5949,
72,
9218,
422,
9220,
23919,
201,
198,
197,
8094,
312,
25,
262,
1448,
4522,
7,
8133,
345,
765,
284,
12233,
201,
198,
197,
37811,
201,
198,
197,
7890,
28,
4895,
15042,
62,
2539,
1298,
499,
522,
88,
553,
22184,
2404,
8094,
2430,
7266,
2404,
28956,
2430,
312,
1298,
2536,
7,
8094,
312,
38165,
201,
198,
197,
7783,
33918,
13,
46030,
7,
8897,
3558,
13,
7353,
7203,
5450,
1378,
7753,
29609,
13,
535,
14,
15042,
13,
10121,
1600,
7890,
28,
7890,
737,
5239,
8
] | 2.554287 | 3,592 |
#!/usr/bin/env python3
import RPi.GPIO as GPIO
import sys
import time
if __name__ == '__main__':
main(int(sys.argv[1]))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
11748,
25812,
72,
13,
16960,
9399,
355,
50143,
198,
11748,
25064,
198,
11748,
640,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
7,
600,
7,
17597,
13,
853,
85,
58,
16,
60,
4008,
198
] | 2.333333 | 54 |
# Copyright (c) 2010 Tim Medina
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# The original code link is https://github.com/iamteem/redisco/tree/master/redisco/__init__.py
import redis
client = Client()
connection = client.redis()
__all__ = ['connection_setup', 'get_client']
| [
2,
220,
15069,
357,
66,
8,
3050,
5045,
41946,
198,
2,
198,
2,
220,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
198,
2,
220,
16727,
257,
4866,
286,
428,
3788,
290,
3917,
10314,
198,
2,
220,
3696,
357,
1169,
366,
25423,
12340,
284,
1730,
287,
262,
10442,
1231,
198,
2,
220,
17504,
11,
1390,
1231,
17385,
262,
2489,
284,
779,
11,
198,
2,
220,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
198,
2,
220,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
198,
2,
220,
10442,
318,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
198,
2,
220,
3403,
25,
198,
2,
198,
2,
220,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
198,
2,
220,
3017,
287,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
2,
198,
2,
220,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
198,
2,
220,
7788,
32761,
6375,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
198,
2,
220,
3963,
34482,
3398,
1565,
5603,
25382,
11,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
198,
2,
220,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
3336,
37195,
20673,
6375,
27975,
38162,
9947,
198,
2,
220,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
43031,
25382,
11,
198,
2,
220,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
198,
2,
220,
16034,
11,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
198,
2,
220,
25401,
5550,
1847,
20754,
3268,
3336,
47466,
13,
198,
2,
198,
2,
220,
383,
2656,
2438,
2792,
318,
3740,
1378,
12567,
13,
785,
14,
1789,
660,
368,
14,
445,
4861,
14,
21048,
14,
9866,
14,
445,
4861,
14,
834,
15003,
834,
13,
9078,
628,
198,
11748,
2266,
271,
628,
628,
198,
198,
16366,
796,
20985,
3419,
198,
38659,
796,
5456,
13,
445,
271,
3419,
198,
198,
834,
439,
834,
796,
37250,
38659,
62,
40406,
3256,
705,
1136,
62,
16366,
20520,
198
] | 3.502646 | 378 |
from app import db
import datetime
| [
6738,
598,
1330,
20613,
198,
11748,
4818,
8079,
198
] | 3.888889 | 9 |
import numpy as np
import random
import xlwt
#
# 市界的地理坐标为:北纬39”26’至41”03’,东经115”25’至 117”30’
workbook = xlwt.Workbook(encoding='utf-8')
worksheet = workbook.add_sheet("My Workbook")
print(worksheet)
a=[]
for i in range(0,5107):
x=random.uniform(115,117)
y=random.uniform(39,41)
a.append(str(
( str(y))))
print(a[0])
j=0
for i in a:
worksheet.write(j,0,i)
j=j+1
workbook.save("test.xls") | [
198,
11748,
299,
32152,
355,
45941,
198,
11748,
4738,
198,
11748,
2124,
75,
46569,
198,
198,
2,
198,
2,
10263,
116,
224,
45911,
234,
21410,
28839,
108,
49426,
228,
161,
251,
238,
43718,
229,
10310,
118,
171,
120,
248,
44293,
245,
163,
118,
105,
2670,
447,
251,
2075,
447,
247,
164,
229,
111,
3901,
447,
251,
3070,
447,
247,
11,
10310,
250,
163,
119,
237,
15363,
447,
251,
1495,
447,
247,
164,
229,
111,
19048,
447,
251,
1270,
447,
247,
198,
198,
1818,
2070,
796,
2124,
75,
46569,
13,
12468,
2070,
7,
12685,
7656,
11639,
40477,
12,
23,
11537,
198,
5225,
25473,
796,
670,
2070,
13,
2860,
62,
21760,
7203,
3666,
5521,
2070,
4943,
198,
4798,
7,
5225,
25473,
8,
198,
198,
64,
28,
21737,
198,
1640,
1312,
287,
2837,
7,
15,
11,
20,
15982,
2599,
198,
220,
220,
220,
2124,
28,
25120,
13,
403,
6933,
7,
15363,
11,
17657,
8,
198,
220,
220,
220,
331,
28,
25120,
13,
403,
6933,
7,
2670,
11,
3901,
8,
198,
220,
220,
220,
257,
13,
33295,
7,
2536,
7,
198,
220,
220,
220,
220,
220,
220,
220,
357,
965,
7,
88,
35514,
198,
198,
4798,
7,
64,
58,
15,
12962,
198,
73,
28,
15,
198,
1640,
1312,
287,
257,
25,
198,
220,
220,
220,
2499,
25473,
13,
13564,
7,
73,
11,
15,
11,
72,
8,
198,
220,
220,
220,
474,
28,
73,
10,
16,
198,
198,
1818,
2070,
13,
21928,
7203,
9288,
13,
87,
7278,
4943
] | 1.728395 | 243 |
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 29 10:12:38 2012
Author: Josef Perktold
License: BSD-3
"""
import itertools
try:
#python 2.6, 2.7
zip_longest = itertools.izip_longest
pass
except AttributeError:
#python 3.2
try:
zip_longest = itertools.zip_longest
pass
except AttributeError:
#python 2.5
def zip_longest(*args, **kwds):
'''python 2.5 version for transposing a list of lists
adds None for lists of shorter length, may not have the same
behavior as python 2.6 izip_longest or python 3.2 zip_longest for
other cases
Parameters
----------
args : sequence of iterables
iterables that will be combined in transposed way
Returns
-------
it : iterator
iterator that generates tuples
Examples
--------
>>> lili = [['a0', 'b0', 'c0', 'd0'], ['a1', 'b1', 'c1'],
['a2', 'b2', 'c2', 'd2'], ['a3', 'b3', 'c3', 'd3'],
['a4', 'b4']]
>>> list(izip_longest(*lili))
[('a0', 'a1', 'a2', 'a3', 'a4'), ('b0', 'b1', 'b2', 'b3', 'b4'),
('c0', 'c1', 'c2', 'c3', None), ('d0', None, 'd2', 'd3', None)]
'''
# izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-
fillvalue = kwds.get('fillvalue')
fillers = itertools.repeat(fillvalue)
iters = [itertools.chain(it, sentinel(), fillers) for it in args]
try:
for tup in itertools.izip(*iters):
yield tup
except IndexError:
pass
try:
from itertools import combinations
except ImportError:
#from python 2.6 documentation
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
198,
41972,
319,
3300,
3158,
2808,
838,
25,
1065,
25,
2548,
2321,
198,
198,
13838,
25,
5264,
69,
2448,
21841,
727,
198,
34156,
25,
347,
10305,
12,
18,
198,
198,
37811,
198,
198,
11748,
340,
861,
10141,
198,
198,
28311,
25,
198,
220,
220,
220,
1303,
29412,
362,
13,
21,
11,
362,
13,
22,
198,
220,
220,
220,
19974,
62,
6511,
395,
796,
340,
861,
10141,
13,
528,
541,
62,
6511,
395,
198,
220,
220,
220,
1208,
198,
16341,
3460,
4163,
12331,
25,
198,
220,
220,
220,
1303,
29412,
513,
13,
17,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19974,
62,
6511,
395,
796,
340,
861,
10141,
13,
13344,
62,
6511,
395,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29412,
362,
13,
20,
198,
220,
220,
220,
220,
220,
220,
220,
825,
19974,
62,
6511,
395,
46491,
22046,
11,
12429,
46265,
9310,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
29412,
362,
13,
20,
2196,
329,
1007,
32927,
257,
1351,
286,
8341,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6673,
6045,
329,
8341,
286,
12238,
4129,
11,
743,
407,
423,
262,
976,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4069,
355,
21015,
362,
13,
21,
220,
528,
541,
62,
6511,
395,
393,
21015,
513,
13,
17,
19974,
62,
6511,
395,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
584,
2663,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
1058,
8379,
286,
11629,
2977,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11629,
2977,
326,
481,
307,
5929,
287,
1007,
29813,
835,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
340,
1058,
41313,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
41313,
326,
18616,
12777,
2374,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21066,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24200,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13163,
300,
2403,
796,
16410,
6,
64,
15,
3256,
705,
65,
15,
3256,
705,
66,
15,
3256,
705,
67,
15,
6,
4357,
37250,
64,
16,
3256,
705,
65,
16,
3256,
705,
66,
16,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
64,
17,
3256,
705,
65,
17,
3256,
705,
66,
17,
3256,
705,
67,
17,
6,
4357,
37250,
64,
18,
3256,
705,
65,
18,
3256,
705,
66,
18,
3256,
705,
67,
18,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
64,
19,
3256,
705,
65,
19,
6,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13163,
1351,
7,
528,
541,
62,
6511,
395,
46491,
75,
2403,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
10786,
64,
15,
3256,
705,
64,
16,
3256,
705,
64,
17,
3256,
705,
64,
18,
3256,
705,
64,
19,
33809,
19203,
65,
15,
3256,
705,
65,
16,
3256,
705,
65,
17,
3256,
705,
65,
18,
3256,
705,
65,
19,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
66,
15,
3256,
705,
66,
16,
3256,
705,
66,
17,
3256,
705,
66,
18,
3256,
6045,
828,
19203,
67,
15,
3256,
6045,
11,
705,
67,
17,
3256,
705,
67,
18,
3256,
6045,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
528,
541,
62,
6511,
395,
10786,
24694,
35,
3256,
705,
5431,
3256,
6070,
8367,
11639,
12,
11537,
14610,
12176,
2750,
327,
12,
360,
12,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6070,
8367,
796,
479,
86,
9310,
13,
1136,
10786,
20797,
8367,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6070,
364,
796,
340,
861,
10141,
13,
44754,
7,
20797,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
340,
364,
796,
685,
270,
861,
10141,
13,
7983,
7,
270,
11,
1908,
20538,
22784,
6070,
364,
8,
329,
340,
287,
26498,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
256,
929,
287,
340,
861,
10141,
13,
528,
541,
46491,
270,
364,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
256,
929,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
198,
28311,
25,
198,
220,
220,
220,
422,
340,
861,
10141,
1330,
17790,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
1303,
6738,
21015,
362,
13,
21,
10314,
198
] | 1.897119 | 972 |
import paddle
import numpy as np
import torch
import torch.optim.lr_scheduler as lr_scheduler
from reprod_log import ReprodLogger
from reprod_log import ReprodDiffHelper
from mobilenetv3_paddle.paddlevision.models import mobilenet_v3_small as mv3_small_paddle
from mobilenetv3_ref.torchvision.models import mobilenet_v3_small as mv3_small_torch
if __name__ == "__main__":
test_backward()
# load data
diff_helper = ReprodDiffHelper()
torch_info = diff_helper.load_info("./result/losses_ref.npy")
paddle_info = diff_helper.load_info("./result/losses_paddle.npy")
# compare result and produce log
diff_helper.compare_info(torch_info, paddle_info)
diff_helper.report(path="./result/log/backward_diff.log")
| [
11748,
39517,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
11748,
28034,
13,
40085,
13,
14050,
62,
1416,
704,
18173,
355,
300,
81,
62,
1416,
704,
18173,
198,
6738,
1128,
14892,
62,
6404,
1330,
1432,
14892,
11187,
1362,
198,
6738,
1128,
14892,
62,
6404,
1330,
1432,
14892,
28813,
47429,
198,
198,
6738,
17754,
268,
316,
85,
18,
62,
79,
37382,
13,
79,
2860,
5024,
13,
27530,
1330,
17754,
268,
316,
62,
85,
18,
62,
17470,
355,
285,
85,
18,
62,
17470,
62,
79,
37382,
198,
6738,
17754,
268,
316,
85,
18,
62,
5420,
13,
13165,
354,
10178,
13,
27530,
1330,
17754,
268,
316,
62,
85,
18,
62,
17470,
355,
285,
85,
18,
62,
17470,
62,
13165,
354,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1332,
62,
1891,
904,
3419,
628,
220,
220,
220,
1303,
3440,
1366,
198,
220,
220,
220,
814,
62,
2978,
525,
796,
1432,
14892,
28813,
47429,
3419,
198,
220,
220,
220,
28034,
62,
10951,
796,
814,
62,
2978,
525,
13,
2220,
62,
10951,
7,
1911,
14,
20274,
14,
22462,
274,
62,
5420,
13,
77,
9078,
4943,
198,
220,
220,
220,
39517,
62,
10951,
796,
814,
62,
2978,
525,
13,
2220,
62,
10951,
7,
1911,
14,
20274,
14,
22462,
274,
62,
79,
37382,
13,
77,
9078,
4943,
628,
220,
220,
220,
1303,
8996,
1255,
290,
4439,
2604,
198,
220,
220,
220,
814,
62,
2978,
525,
13,
5589,
533,
62,
10951,
7,
13165,
354,
62,
10951,
11,
39517,
62,
10951,
8,
198,
220,
220,
220,
814,
62,
2978,
525,
13,
13116,
7,
6978,
28,
1911,
14,
20274,
14,
6404,
14,
1891,
904,
62,
26069,
13,
6404,
4943,
198
] | 2.631206 | 282 |
# ----------------------------------------------------------
#Erick Alberto Bustos Cruz A01378966
#
#
# ----------------------------------------------------------
from functools import total_ordering
import math as m
@total_ordering
class Racional:
"""Instancias de esta clase representan números
racionales con un numerador y un denominador.
"""
@property
@property
@numerador.setter
@denominador.setter | [
2,
20368,
22369,
438,
198,
2,
36,
5557,
40649,
36988,
418,
8742,
317,
486,
2718,
4531,
2791,
198,
2,
220,
198,
2,
198,
2,
20368,
22369,
438,
198,
198,
6738,
1257,
310,
10141,
1330,
2472,
62,
34555,
198,
11748,
10688,
355,
285,
198,
198,
31,
23350,
62,
34555,
198,
4871,
24746,
1538,
25,
198,
220,
220,
220,
37227,
6310,
272,
979,
292,
390,
1556,
64,
537,
589,
2380,
272,
299,
21356,
647,
418,
220,
198,
220,
220,
220,
3444,
1538,
274,
369,
555,
5470,
7079,
331,
555,
31457,
7079,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
77,
6975,
7079,
13,
2617,
353,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
6559,
6351,
7079,
13,
2617,
353
] | 2.955414 | 157 |
import numpy as np
import pandas as pd
import json
from mplsoccer.pitch import Pitch, VerticalPitch
path = "C:/Users/brand/desktop/events/events_England.json"
with open(path) as f:
data = json.load(f)
train = pd.DataFrame(data)
path2 = "C:/Users/brand/desktop/players.json"
with open(path2) as f:
play = json.load(f)
players = pd.DataFrame(play)
lst = ['events_France.json','events_Germany.json','events_Italy.json','events_Spain.json']
pathway = "C:/Users/brand/desktop/events/"
for country in lst:
with open(pathway + country) as f:
datal = json.load(f)
tl = pd.DataFrame(datal)
train = pd.concat([train,tl],ignore_index=True)
#pd.unique(train['subEventName'])
shots = train[train['subEventName'] == 'Shot']
print(len(shots))
shots_model = pd.DataFrame(columns=["Goal","X","Y"], dtype=object)
for i,shot in shots.iterrows():
shots_model.at[i,'Header'] = 0
for tag in shot['tags']:
if tag['id'] == 403:
shots_model.at[i,'Header'] = 1
#take distance from center of goal at y = 50, x position of goal is always 100
shots_model.at[i,'X'] = 100-shot['positions'][0]['x']
shots_model.at[i,'Y'] = shot['positions'][0]['y']
shots_model.at[i,'C'] = abs(shot['positions'][0]['y'] - 50)
#distance in meters
x = shots_model.at[i,'X']* 105/100
y = shots_model.at[i,'C']* 65/100
shots_model.at[i,'Distance'] = np.sqrt(x**2 + y**2)
angle = np.arctan(7.32 * x / (x**2 + y**2 - (7.32/2)**2))
if angle < 0:
angle = np.pi + angle
shots_model.at[i,'Angle'] = angle
#goal check
shots_model.at[i,'Goal'] = 0
shots_model.at[i,'Counter Attack'] = 0
shots_model.at[i, 'Blocked'] = 0
shots_model.at[i, 'Right Foot'] = 0
shots_model.at[i,'wyId'] = shot['playerId']
if shot['matchPeriod'] == '1H':
shots_model.at[i, 'First Half'] = 1
else:
shots_model.at[i,'First Half'] = 0
for tags in shot['tags']:
if tags['id'] == 101:
shots_model.at[i,'Goal'] = 1
if tags['id'] == 1901:
shots_model.at[i, 'Counter Attack'] = 1
if tags['id'] == 2101:
shots_model.at[i, 'Blocked'] = 1
if tags['id'] == 402:
shots_model.at[i, 'Right Foot'] = 1
shots_model['angle_degrees'] = shots_model['Angle'] * 180 / np.pi
shots_model = shots_model.merge(players, left_on = 'wyId' , right_on = 'wyId')
for i,shot in shots_model.iterrows():
shots_model.at[i, 'strong foot'] = 0
if shot['Right Foot'] == 1:
if shot['foot'] == 'right':
shots_model.at[i, 'strong foot'] = 1
elif shot['Right Foot'] == 0:
if shot['foot'] == 'left':
shots_model.at[i, 'strong foot'] = 1
pitch = Pitch(pitch_color ='black', line_color = 'white', stripe=False,pitch_type='wyscout')
fig,ax = pitch.draw(figsize=(10,8))
df = shots_model.loc[shots_model['Goal'] == 1]
xpos = df["X"]
ypos = df["Y"]
df_nongoals = shots_model.loc[shots_model['Goal'] == 0]
xpos2 = df_nongoals["X"]
ypos2 = df_nongoals["Y"]
head = shots_model[shots_model['Header'] == 1]
counter = shots_model[shots_model['Counter Attack'] == 1]
strong = shots_model[shots_model['strong foot'] == 1]
first = shots_model[shots_model['First Half'] == 1]
head_df = head.loc[head['Goal'] == 1]
strong_goal = strong.loc[strong['Goal'] == 1]
headed_goals = len(head_df)
from sklearn.model_selection import train_test_split
X_full = shots_model[["Header","Distance", "Angle","Counter Attack","strong foot", "First Half"]]
y_full = shots_model[["Goal"]]
y_full['Goal'] = y_full['Goal'].astype(int)
print(X_full.head())
X_train,X_test,y_train,y_test = train_test_split(X_full,y_full,test_size = 0.15,random_state=2)
X_train,X_val,y_train,y_val = train_test_split(X_train,y_train,test_size = 0.176, random_state=2)
y_val = np.array(y_val.pop('Goal'))
y_test = np.array(y_test.pop('Goal'))
y_train = np.array(y_train.pop('Goal'))
X_train = X_train.to_numpy()
X_test = X_test.to_numpy()
X_val = X_val.to_numpy()
print(X_train.shape)
print(y_train.shape)
negative,positive = np.bincount(y_full['Goal'])
print(positive/(negative+positive))
import tensorflow as tf
from tensorflow import keras
import sklearn
from sklearn.preprocessing import StandardScaler
scaler = StandardScaler()
train_feats = scaler.fit_transform(X_train)
val_feats = scaler.transform(X_val)
test_feats = scaler.transform(X_test)
train_feats = np.clip(train_feats,-5,5)
val_feats = np.clip(val_feats,-5,5)
test_feats = np.clip(test_feats,-5,5)
boolean_train_labels = y_train != 0
METRICS = [
keras.metrics.TruePositives(name='tp'),
keras.metrics.FalsePositives(name='fp'),
keras.metrics.TrueNegatives(name='tn'),
keras.metrics.FalseNegatives(name='fn'),
keras.metrics.BinaryAccuracy(name='accuracy'),
keras.metrics.Precision(name='precision'),
keras.metrics.Recall(name='recall'),
keras.metrics.AUC(name='auc'),
keras.metrics.AUC(name='prc', curve='PR'), # precision-recall curve
]
EPOCHS = 100
BATCH_SIZE = 256
early_stopping = tf.keras.callbacks.EarlyStopping(monitor = 'val_prc',verbose=1,patience=10,mode='max',restore_best_weights=True)
model = make_model()
model.summary()
orig_bias = np.log([positive/negative])
model = make_model(output_bias=orig_bias)
import os
import tempfile
initial_weights = os.path.join(tempfile.mkdtemp(), 'initial_weights')
model.save_weights(initial_weights)
model = make_model()
model.load_weights(initial_weights)
careful_bias_history = model.fit(
train_feats,
y_train,
batch_size=BATCH_SIZE,
epochs=100,
validation_data=(val_feats, y_val),
verbose=0)
import matplotlib.pyplot as plt
plot_loss(careful_bias_history,"Bias")
model = make_model()
model.load_weights(initial_weights)
baseline_history = model.fit(
train_feats,
y_train,
batch_size=256,
epochs=100,
callbacks=[early_stopping],
validation_data=(val_feats, y_val))
colors = plt.rcParams['axes.prop_cycle'].by_key()['color']
plot_metrics(baseline_history)
train_predictions_baseline = model.predict(train_feats)
test_predictions_baseline = model.predict(test_feats)
test_preds = []
test_probs = []
for i in test_predictions_baseline:
if i > 0.5:
test_preds.append(1)
test_probs.append(i)
else:
test_preds.append(0)
test_probs.append(i)
TP = sum([(p and l) for (p,l) in zip(test_preds, y_test)])
FP = sum([(p and not l) for (p,l) in zip(test_preds, y_test)])
TN = sum([(not p and not l) for (p,l) in zip(test_preds, y_test)])
FN = sum([(not p and l) for (p,l) in zip(test_preds, y_test)])
TPR = TP/(TP+FN)
TNR = TN/(TN+FP)
BER = 1 - .5 * (TPR + TNR)
precision = TP/(TP+FP)
recall = TP/(TP + FN)
F1 = 2 * (precision*recall)/(precision + recall)
accuracy = (TP + TN)/(TP + FP + TN + FN)
print(BER)
print(precision)
print(recall)
print(F1)
print(accuracy)
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error, r2_score
from yellowbrick.regressor import ResidualsPlot
Y = []
X = []
count1 = 0
count2 = 0
for i in range(len(test_probs)):
count1 += test_probs[i]
count2 += y_test[i]
X.append(count1)
Y.append(count2)
count1 = 0
count2 = 0
print(Y[0:10])
X = np.array(X)
X = X.reshape(-1,1)
lin = LinearRegression().fit(X,Y)
print(lin.score(X,Y))
lpreds = lin.predict(X)
print('Coeffs')
print(lin.coef_)
print(mean_squared_error(Y,lpreds))
print(r2_score(Y,lpreds))
visualizer = ResidualsPlot(lin)
visualizer.fit(X,Y)
visualizer.score(X,lpreds)
visualizer.show()
from sklearn.metrics import roc_curve, roc_auc_score
r_probs = [0 for _ in range(len(y_test))]
r_auc = roc_auc_score(y_test,r_probs)
nn_auc = roc_auc_score(y_test,test_probs)
r_fpr,r_tpr,_ = roc_curve(y_test,r_probs)
nn_fpr,nn_tpr,_ = roc_curve(y_test,test_probs)
plt.plot(r_fpr,r_tpr, label = 'Guess 0 Always',color='black')
plt.plot(nn_fpr,nn_tpr, label = 'Baseline NN',color ='b')
plt.title('ROC Plot Baseline Neural Network')
plt.xlabel('FPR %')
plt.ylabel('TPR %')
plt.legend()
plt.show()
print(nn_auc)
weight_0 = (1/negative) * (positive+negative/2.0)
weight_1 = (1/positive) * (positive+negative/2.0)
class_weight = {0: weight_0, 1: weight_1}
print(weight_0)
print(weight_1)
weighted_model = make_model()
weighted_model.load_weights(initial_weights)
weighted_history = weighted_model.fit(
train_feats,
y_train,
batch_size=256,
epochs=100,
callbacks=[early_stopping],
validation_data=(val_feats, y_val),
class_weight=class_weight)
train_preds_weighted = weighted_model.predict(train_feats)
test_preds_weighted = weighted_model.predict(test_feats)
test_predictions_weighted = []
test_probs_weighted = []
for i in test_preds_weighted:
if i > 0.5:
test_predictions_weighted.append(1)
test_probs_weighted.append(i)
else:
test_predictions_weighted.append(0)
test_probs_weighted.append(i)
TP = sum([(p and l) for (p,l) in zip(test_predictions_weighted, y_test)])
FP = sum([(p and not l) for (p,l) in zip(test_predictions_weighted, y_test)])
TN = sum([(not p and not l) for (p,l) in zip(test_predictions_weighted, y_test)])
FN = sum([(not p and l) for (p,l) in zip(test_predictions_weighted, y_test)])
TPR = TP/(TP+FN)
TNR = TN/(TN+FP)
BER = 1 - .5 * (TPR + TNR)
precision = TP/(TP+FP)
recall = TP/(TP + FN)
F1 = 2 * (precision*recall)/(precision + recall)
accuracy = (TP + TN)/(TP + FP + TN + FN)
print("Balanced Error rate: " + str(BER))
print("Precision: " + str(precision))
print('Recall: ' + str(recall))
print('F1 score: ' + str(F1))
print('Total Classification Accuracy: ' + str(accuracy))
r_probs = [0 for _ in range(len(y_test))]
r_auc = roc_auc_score(y_test,r_probs)
nn_auc = roc_auc_score(y_test,test_probs_weighted)
r_fpr,r_tpr,_ = roc_curve(y_test,r_probs)
nn_fpr,nn_tpr,_ = roc_curve(y_test,test_probs_weighted)
plt.plot(r_fpr,r_tpr, label = 'BER = 0',color='black')
plt.plot(nn_fpr,nn_tpr, label = 'Weighted Class NN',color='b')
plt.title('ROC Plot Weighte Classes Neural Network')
plt.xlabel('FPR %')
plt.ylabel('TPR %')
plt.legend()
plt.show()
print(nn_auc)
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error, r2_score
from yellowbrick.regressor import ResidualsPlot
Y = []
X = []
count1 = 0
count2 = 0
for i in range(len(test_probs_weighted)):
count1 += test_probs_weighted[i]
count2 += y_test[i]
X.append(count1)
Y.append(count2)
count1 = 0
count2 = 0
print(Y[0:10])
X = np.array(X)
X = X.reshape(-1,1)
lin = LinearRegression().fit(X,Y)
print(lin.score(X,Y))
lpreds = lin.predict(X)
print('Coeffs')
print(lin.coef_)
print(mean_squared_error(Y,lpreds))
print(r2_score(Y,lpreds))
visualizer = ResidualsPlot(lin)
visualizer.fit(X,Y)
visualizer.score(X,lpreds)
visualizer.show()
| [
11748,
299,
32152,
355,
45941,
220,
201,
198,
11748,
19798,
292,
355,
279,
67,
201,
198,
11748,
33918,
201,
198,
6738,
285,
489,
35634,
2189,
13,
79,
2007,
1330,
33517,
11,
38937,
47,
2007,
201,
198,
201,
198,
201,
198,
6978,
796,
366,
34,
14079,
14490,
14,
17938,
14,
41375,
14,
31534,
14,
31534,
62,
39163,
13,
17752,
1,
220,
201,
198,
201,
198,
4480,
1280,
7,
6978,
8,
355,
277,
25,
201,
198,
220,
220,
220,
1366,
796,
33918,
13,
2220,
7,
69,
8,
201,
198,
201,
198,
27432,
796,
279,
67,
13,
6601,
19778,
7,
7890,
8,
201,
198,
201,
198,
201,
198,
6978,
17,
796,
366,
34,
14079,
14490,
14,
17938,
14,
41375,
14,
32399,
13,
17752,
1,
220,
201,
198,
201,
198,
201,
198,
4480,
1280,
7,
6978,
17,
8,
355,
277,
25,
201,
198,
220,
220,
220,
711,
796,
33918,
13,
2220,
7,
69,
8,
201,
198,
201,
198,
32399,
796,
279,
67,
13,
6601,
19778,
7,
1759,
8,
201,
198,
201,
198,
75,
301,
796,
37250,
31534,
62,
28572,
13,
17752,
41707,
31534,
62,
27079,
13,
17752,
41707,
31534,
62,
45001,
13,
17752,
41707,
31534,
62,
45355,
13,
17752,
20520,
201,
198,
6978,
1014,
796,
366,
34,
14079,
14490,
14,
17938,
14,
41375,
14,
31534,
30487,
201,
198,
201,
198,
1640,
1499,
287,
300,
301,
25,
201,
198,
220,
220,
220,
351,
1280,
7,
6978,
1014,
1343,
1499,
8,
355,
277,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4818,
282,
796,
33918,
13,
2220,
7,
69,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
256,
75,
796,
279,
67,
13,
6601,
19778,
7,
67,
10254,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4512,
796,
279,
67,
13,
1102,
9246,
26933,
27432,
11,
28781,
4357,
46430,
62,
9630,
28,
17821,
8,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
2,
30094,
13,
34642,
7,
27432,
17816,
7266,
9237,
5376,
6,
12962,
201,
198,
20910,
796,
4512,
58,
27432,
17816,
7266,
9237,
5376,
20520,
6624,
705,
28512,
20520,
201,
198,
201,
198,
4798,
7,
11925,
7,
20910,
4008,
201,
198,
201,
198,
20910,
62,
19849,
796,
279,
67,
13,
6601,
19778,
7,
28665,
82,
28,
14692,
49045,
2430,
55,
2430,
56,
33116,
288,
4906,
28,
15252,
8,
201,
198,
201,
198,
1640,
1312,
11,
9442,
287,
6934,
13,
2676,
8516,
33529,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
39681,
20520,
796,
657,
201,
198,
220,
220,
220,
329,
7621,
287,
2823,
17816,
31499,
6,
5974,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
17816,
312,
20520,
6624,
38210,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
39681,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1303,
20657,
5253,
422,
3641,
286,
3061,
379,
331,
796,
2026,
11,
2124,
2292,
286,
3061,
318,
1464,
1802,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
55,
20520,
796,
1802,
12,
9442,
17816,
1930,
1756,
6,
7131,
15,
7131,
6,
87,
20520,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
56,
20520,
796,
2823,
17816,
1930,
1756,
6,
7131,
15,
7131,
6,
88,
20520,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
34,
20520,
796,
2352,
7,
9442,
17816,
1930,
1756,
6,
7131,
15,
7131,
6,
88,
20520,
532,
2026,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1303,
30246,
287,
10700,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
2124,
796,
6934,
62,
19849,
13,
265,
58,
72,
4032,
55,
20520,
9,
13343,
14,
3064,
201,
198,
220,
220,
220,
331,
796,
6934,
62,
19849,
13,
265,
58,
72,
4032,
34,
20520,
9,
6135,
14,
3064,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
45767,
20520,
796,
45941,
13,
31166,
17034,
7,
87,
1174,
17,
1343,
331,
1174,
17,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
9848,
796,
45941,
13,
283,
310,
272,
7,
22,
13,
2624,
1635,
2124,
1220,
357,
87,
1174,
17,
1343,
331,
1174,
17,
532,
357,
22,
13,
2624,
14,
17,
8,
1174,
17,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
611,
9848,
1279,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
9848,
796,
45941,
13,
14415,
1343,
9848,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
13450,
293,
20520,
796,
9848,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1303,
35231,
2198,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
49045,
20520,
796,
657,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
31694,
8307,
20520,
796,
657,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
3629,
3543,
20520,
796,
657,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
11028,
7870,
20520,
796,
657,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
21768,
7390,
20520,
796,
2823,
17816,
7829,
7390,
20520,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
611,
2823,
17816,
15699,
5990,
2101,
20520,
6624,
705,
16,
39,
10354,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
5962,
13139,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
5962,
13139,
20520,
796,
657,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
329,
15940,
287,
2823,
17816,
31499,
6,
5974,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15940,
17816,
312,
20520,
6624,
8949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
4032,
49045,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15940,
17816,
312,
20520,
6624,
39923,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
31694,
8307,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15940,
17816,
312,
20520,
6624,
2310,
486,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
3629,
3543,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15940,
17816,
312,
20520,
6624,
42622,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
11028,
7870,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
20910,
62,
19849,
17816,
9248,
62,
13500,
6037,
20520,
796,
6934,
62,
19849,
17816,
13450,
293,
20520,
1635,
11546,
1220,
45941,
13,
14415,
201,
198,
201,
198,
20910,
62,
19849,
796,
6934,
62,
19849,
13,
647,
469,
7,
32399,
11,
1364,
62,
261,
796,
705,
21768,
7390,
6,
837,
826,
62,
261,
796,
705,
21768,
7390,
11537,
201,
198,
201,
198,
1640,
1312,
11,
9442,
287,
6934,
62,
19849,
13,
2676,
8516,
33529,
201,
198,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
11576,
2366,
20520,
796,
657,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
611,
2823,
17816,
11028,
7870,
20520,
6624,
352,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2823,
17816,
5898,
20520,
6624,
705,
3506,
10354,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
11576,
2366,
20520,
796,
352,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1288,
361,
2823,
17816,
11028,
7870,
20520,
6624,
657,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2823,
17816,
5898,
20520,
6624,
705,
9464,
10354,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6934,
62,
19849,
13,
265,
58,
72,
11,
705,
11576,
2366,
20520,
796,
352,
201,
198,
201,
198,
201,
198,
79,
2007,
796,
33517,
7,
79,
2007,
62,
8043,
796,
6,
13424,
3256,
1627,
62,
8043,
796,
705,
11186,
3256,
39858,
28,
25101,
11,
79,
2007,
62,
4906,
11639,
86,
28349,
448,
11537,
201,
198,
201,
198,
5647,
11,
897,
796,
7078,
13,
19334,
7,
5647,
7857,
16193,
940,
11,
23,
4008,
201,
198,
201,
198,
7568,
796,
6934,
62,
19849,
13,
17946,
58,
20910,
62,
19849,
17816,
49045,
20520,
6624,
352,
60,
201,
198,
87,
1930,
796,
47764,
14692,
55,
8973,
201,
198,
88,
1930,
796,
47764,
14692,
56,
8973,
201,
198,
201,
198,
7568,
62,
77,
25162,
874,
796,
6934,
62,
19849,
13,
17946,
58,
20910,
62,
19849,
17816,
49045,
20520,
6624,
657,
60,
201,
198,
87,
1930,
17,
796,
47764,
62,
77,
25162,
874,
14692,
55,
8973,
201,
198,
88,
1930,
17,
796,
47764,
62,
77,
25162,
874,
14692,
56,
8973,
201,
198,
201,
198,
201,
198,
201,
198,
2256,
796,
6934,
62,
19849,
58,
20910,
62,
19849,
17816,
39681,
20520,
6624,
352,
60,
201,
198,
24588,
796,
6934,
62,
19849,
58,
20910,
62,
19849,
17816,
31694,
8307,
20520,
6624,
352,
60,
201,
198,
11576,
796,
6934,
62,
19849,
58,
20910,
62,
19849,
17816,
11576,
2366,
20520,
6624,
352,
60,
201,
198,
11085,
796,
6934,
62,
19849,
58,
20910,
62,
19849,
17816,
5962,
13139,
20520,
6624,
352,
60,
201,
198,
2256,
62,
7568,
796,
1182,
13,
17946,
58,
2256,
17816,
49045,
20520,
6624,
352,
60,
201,
198,
11576,
62,
35231,
796,
1913,
13,
17946,
58,
11576,
17816,
49045,
20520,
6624,
352,
60,
201,
198,
201,
198,
15353,
62,
2188,
874,
796,
18896,
7,
2256,
62,
7568,
8,
201,
198,
201,
198,
201,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
201,
198,
201,
198,
55,
62,
12853,
796,
6934,
62,
19849,
58,
14692,
39681,
2430,
45767,
1600,
366,
13450,
293,
2430,
31694,
8307,
2430,
11576,
2366,
1600,
366,
5962,
13139,
8973,
60,
201,
198,
88,
62,
12853,
796,
6934,
62,
19849,
58,
14692,
49045,
8973,
60,
201,
198,
88,
62,
12853,
17816,
49045,
20520,
796,
331,
62,
12853,
17816,
49045,
6,
4083,
459,
2981,
7,
600,
8,
201,
198,
4798,
7,
55,
62,
12853,
13,
2256,
28955,
201,
198,
201,
198,
55,
62,
27432,
11,
55,
62,
9288,
11,
88,
62,
27432,
11,
88,
62,
9288,
796,
4512,
62,
9288,
62,
35312,
7,
55,
62,
12853,
11,
88,
62,
12853,
11,
9288,
62,
7857,
796,
657,
13,
1314,
11,
25120,
62,
5219,
28,
17,
8,
201,
198,
201,
198,
55,
62,
27432,
11,
55,
62,
2100,
11,
88,
62,
27432,
11,
88,
62,
2100,
796,
4512,
62,
9288,
62,
35312,
7,
55,
62,
27432,
11,
88,
62,
27432,
11,
9288,
62,
7857,
796,
657,
13,
24096,
11,
4738,
62,
5219,
28,
17,
8,
201,
198,
201,
198,
201,
198,
88,
62,
2100,
796,
45941,
13,
18747,
7,
88,
62,
2100,
13,
12924,
10786,
49045,
6,
4008,
201,
198,
88,
62,
9288,
796,
45941,
13,
18747,
7,
88,
62,
9288,
13,
12924,
10786,
49045,
6,
4008,
201,
198,
88,
62,
27432,
796,
45941,
13,
18747,
7,
88,
62,
27432,
13,
12924,
10786,
49045,
6,
4008,
201,
198,
201,
198,
201,
198,
55,
62,
27432,
796,
1395,
62,
27432,
13,
1462,
62,
77,
32152,
3419,
201,
198,
55,
62,
9288,
796,
1395,
62,
9288,
13,
1462,
62,
77,
32152,
3419,
201,
198,
55,
62,
2100,
796,
1395,
62,
2100,
13,
1462,
62,
77,
32152,
3419,
201,
198,
4798,
7,
55,
62,
27432,
13,
43358,
8,
201,
198,
4798,
7,
88,
62,
27432,
13,
43358,
8,
220,
220,
220,
220,
220,
201,
198,
201,
198,
201,
198,
31591,
11,
24561,
796,
45941,
13,
65,
1939,
608,
7,
88,
62,
12853,
17816,
49045,
6,
12962,
201,
198,
201,
198,
4798,
7,
24561,
29006,
31591,
10,
24561,
4008,
201,
198,
201,
198,
11748,
11192,
273,
11125,
355,
48700,
201,
198,
6738,
11192,
273,
11125,
1330,
41927,
292,
220,
201,
198,
11748,
1341,
35720,
220,
201,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
8997,
3351,
36213,
201,
198,
201,
198,
1416,
36213,
796,
8997,
3351,
36213,
3419,
201,
198,
27432,
62,
5036,
1381,
796,
16578,
263,
13,
11147,
62,
35636,
7,
55,
62,
27432,
8,
201,
198,
201,
198,
2100,
62,
5036,
1381,
796,
16578,
263,
13,
35636,
7,
55,
62,
2100,
8,
201,
198,
9288,
62,
5036,
1381,
796,
16578,
263,
13,
35636,
7,
55,
62,
9288,
8,
201,
198,
201,
198,
201,
198,
27432,
62,
5036,
1381,
796,
45941,
13,
15036,
7,
27432,
62,
5036,
1381,
12095,
20,
11,
20,
8,
201,
198,
2100,
62,
5036,
1381,
796,
45941,
13,
15036,
7,
2100,
62,
5036,
1381,
12095,
20,
11,
20,
8,
201,
198,
9288,
62,
5036,
1381,
796,
45941,
13,
15036,
7,
9288,
62,
5036,
1381,
12095,
20,
11,
20,
8,
201,
198,
201,
198,
201,
198,
201,
198,
2127,
21052,
62,
27432,
62,
23912,
1424,
796,
331,
62,
27432,
14512,
657,
201,
198,
201,
198,
201,
198,
47123,
49,
19505,
796,
685,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
17821,
47,
7434,
1083,
7,
3672,
11639,
34788,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
25101,
47,
7434,
1083,
7,
3672,
11639,
46428,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
17821,
32863,
2929,
7,
3672,
11639,
34106,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
25101,
32863,
2929,
7,
3672,
11639,
22184,
33809,
220,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
33,
3219,
17320,
23843,
7,
3672,
11639,
4134,
23843,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
6719,
16005,
7,
3672,
11639,
3866,
16005,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
6690,
439,
7,
3672,
11639,
8344,
439,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
32,
9598,
7,
3672,
11639,
14272,
33809,
201,
198,
220,
220,
220,
220,
220,
41927,
292,
13,
4164,
10466,
13,
32,
9598,
7,
3672,
11639,
1050,
66,
3256,
12133,
11639,
4805,
33809,
1303,
15440,
12,
8344,
439,
12133,
201,
198,
60,
201,
198,
201,
198,
201,
198,
8905,
46,
3398,
50,
796,
1802,
201,
198,
33,
11417,
62,
33489,
796,
17759,
201,
198,
201,
198,
11458,
62,
301,
33307,
796,
48700,
13,
6122,
292,
13,
13345,
10146,
13,
20457,
1273,
33307,
7,
41143,
796,
705,
2100,
62,
1050,
66,
3256,
19011,
577,
28,
16,
11,
8071,
1240,
28,
940,
11,
14171,
11639,
9806,
3256,
2118,
382,
62,
13466,
62,
43775,
28,
17821,
8,
201,
198,
201,
198,
19849,
796,
787,
62,
19849,
3419,
201,
198,
19849,
13,
49736,
3419,
201,
198,
201,
198,
201,
198,
11612,
62,
65,
4448,
796,
45941,
13,
6404,
26933,
24561,
14,
31591,
12962,
201,
198,
19849,
796,
787,
62,
19849,
7,
22915,
62,
65,
4448,
28,
11612,
62,
65,
4448,
8,
201,
198,
201,
198,
201,
198,
11748,
28686,
220,
201,
198,
11748,
20218,
7753,
201,
198,
201,
198,
36733,
62,
43775,
796,
28686,
13,
6978,
13,
22179,
7,
29510,
7753,
13,
28015,
67,
29510,
22784,
705,
36733,
62,
43775,
11537,
201,
198,
19849,
13,
21928,
62,
43775,
7,
36733,
62,
43775,
8,
201,
198,
201,
198,
201,
198,
19849,
796,
787,
62,
19849,
3419,
201,
198,
19849,
13,
2220,
62,
43775,
7,
36733,
62,
43775,
8,
201,
198,
6651,
913,
62,
65,
4448,
62,
23569,
796,
2746,
13,
11147,
7,
201,
198,
220,
220,
220,
4512,
62,
5036,
1381,
11,
201,
198,
220,
220,
220,
331,
62,
27432,
11,
201,
198,
220,
220,
220,
15458,
62,
7857,
28,
33,
11417,
62,
33489,
11,
201,
198,
220,
220,
220,
36835,
82,
28,
3064,
11,
201,
198,
220,
220,
220,
21201,
62,
7890,
16193,
2100,
62,
5036,
1381,
11,
331,
62,
2100,
828,
220,
201,
198,
220,
220,
220,
15942,
577,
28,
15,
8,
201,
198,
201,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
201,
198,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
201,
198,
29487,
62,
22462,
7,
6651,
913,
62,
65,
4448,
62,
23569,
553,
33,
4448,
4943,
201,
198,
201,
198,
19849,
796,
787,
62,
19849,
3419,
201,
198,
19849,
13,
2220,
62,
43775,
7,
36733,
62,
43775,
8,
201,
198,
12093,
4470,
62,
23569,
796,
2746,
13,
11147,
7,
201,
198,
220,
220,
220,
4512,
62,
5036,
1381,
11,
201,
198,
220,
220,
220,
331,
62,
27432,
11,
201,
198,
220,
220,
220,
15458,
62,
7857,
28,
11645,
11,
201,
198,
220,
220,
220,
36835,
82,
28,
3064,
11,
201,
198,
220,
220,
220,
869,
10146,
41888,
11458,
62,
301,
33307,
4357,
201,
198,
220,
220,
220,
21201,
62,
7890,
16193,
2100,
62,
5036,
1381,
11,
331,
62,
2100,
4008,
201,
198,
201,
198,
201,
198,
4033,
669,
796,
458,
83,
13,
6015,
10044,
4105,
17816,
897,
274,
13,
22930,
62,
13696,
6,
4083,
1525,
62,
2539,
3419,
17816,
8043,
20520,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
29487,
62,
4164,
10466,
7,
12093,
4470,
62,
23569,
8,
201,
198,
201,
198,
201,
198,
27432,
62,
28764,
9278,
62,
12093,
4470,
796,
2746,
13,
79,
17407,
7,
27432,
62,
5036,
1381,
8,
201,
198,
9288,
62,
28764,
9278,
62,
12093,
4470,
796,
2746,
13,
79,
17407,
7,
9288,
62,
5036,
1381,
8,
201,
198,
201,
198,
201,
198,
9288,
62,
28764,
82,
796,
17635,
201,
198,
9288,
62,
1676,
1443,
796,
17635,
201,
198,
1640,
1312,
287,
1332,
62,
28764,
9278,
62,
12093,
4470,
25,
201,
198,
220,
220,
220,
611,
1312,
1875,
657,
13,
20,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
28764,
82,
13,
33295,
7,
16,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
1676,
1443,
13,
33295,
7,
72,
8,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
28764,
82,
13,
33295,
7,
15,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
1676,
1443,
13,
33295,
7,
72,
8,
201,
198,
201,
198,
201,
198,
7250,
796,
2160,
26933,
7,
79,
290,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
82,
11,
331,
62,
9288,
8,
12962,
201,
198,
5837,
796,
2160,
26933,
7,
79,
290,
407,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
82,
11,
331,
62,
9288,
8,
12962,
201,
198,
46559,
796,
2160,
26933,
7,
1662,
279,
290,
407,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
82,
11,
331,
62,
9288,
8,
12962,
201,
198,
43221,
796,
2160,
26933,
7,
1662,
279,
290,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
82,
11,
331,
62,
9288,
8,
12962,
201,
198,
220,
220,
220,
220,
201,
198,
51,
4805,
796,
24525,
29006,
7250,
10,
43221,
8,
201,
198,
51,
24723,
796,
29025,
29006,
46559,
10,
5837,
8,
201,
198,
220,
220,
220,
220,
201,
198,
13246,
796,
352,
532,
764,
20,
1635,
357,
51,
4805,
1343,
309,
24723,
8,
201,
198,
220,
220,
220,
220,
201,
198,
3866,
16005,
796,
24525,
29006,
7250,
10,
5837,
8,
201,
198,
8344,
439,
796,
24525,
29006,
7250,
1343,
44260,
8,
201,
198,
220,
220,
220,
220,
201,
198,
37,
16,
796,
362,
1635,
357,
3866,
16005,
9,
8344,
439,
20679,
7,
3866,
16005,
1343,
10014,
8,
201,
198,
201,
198,
4134,
23843,
796,
357,
7250,
1343,
29025,
20679,
7,
7250,
1343,
31459,
1343,
29025,
1343,
44260,
8,
201,
198,
201,
198,
4798,
7,
13246,
8,
201,
198,
4798,
7,
3866,
16005,
8,
201,
198,
4798,
7,
8344,
439,
8,
201,
198,
4798,
7,
37,
16,
8,
201,
198,
4798,
7,
4134,
23843,
8,
201,
198,
201,
198,
201,
198,
201,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
44800,
8081,
2234,
201,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
1612,
62,
16485,
1144,
62,
18224,
11,
374,
17,
62,
26675,
201,
198,
6738,
7872,
1671,
624,
13,
2301,
44292,
1330,
1874,
312,
723,
82,
43328,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
56,
796,
17635,
201,
198,
55,
796,
17635,
201,
198,
9127,
16,
796,
657,
201,
198,
9127,
17,
796,
657,
201,
198,
1640,
1312,
287,
2837,
7,
11925,
7,
9288,
62,
1676,
1443,
8,
2599,
201,
198,
220,
220,
220,
954,
16,
15853,
1332,
62,
1676,
1443,
58,
72,
60,
201,
198,
220,
220,
220,
954,
17,
15853,
331,
62,
9288,
58,
72,
60,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1395,
13,
33295,
7,
9127,
16,
8,
201,
198,
220,
220,
220,
575,
13,
33295,
7,
9127,
17,
8,
201,
198,
220,
220,
220,
954,
16,
796,
657,
201,
198,
220,
220,
220,
954,
17,
796,
657,
201,
198,
201,
198,
4798,
7,
56,
58,
15,
25,
940,
12962,
201,
198,
55,
796,
45941,
13,
18747,
7,
55,
8,
201,
198,
55,
796,
1395,
13,
3447,
1758,
32590,
16,
11,
16,
8,
201,
198,
201,
198,
201,
198,
201,
198,
2815,
796,
44800,
8081,
2234,
22446,
11147,
7,
55,
11,
56,
8,
201,
198,
201,
198,
4798,
7,
2815,
13,
26675,
7,
55,
11,
56,
4008,
201,
198,
201,
198,
75,
28764,
82,
796,
9493,
13,
79,
17407,
7,
55,
8,
201,
198,
4798,
10786,
34,
2577,
487,
82,
11537,
201,
198,
4798,
7,
2815,
13,
1073,
891,
62,
8,
201,
198,
201,
198,
4798,
7,
32604,
62,
16485,
1144,
62,
18224,
7,
56,
11,
75,
28764,
82,
4008,
201,
198,
4798,
7,
81,
17,
62,
26675,
7,
56,
11,
75,
28764,
82,
4008,
201,
198,
201,
198,
201,
198,
41464,
7509,
796,
1874,
312,
723,
82,
43328,
7,
2815,
8,
201,
198,
41464,
7509,
13,
11147,
7,
55,
11,
56,
8,
201,
198,
41464,
7509,
13,
26675,
7,
55,
11,
75,
28764,
82,
8,
201,
198,
41464,
7509,
13,
12860,
3419,
201,
198,
201,
198,
201,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
686,
66,
62,
22019,
303,
11,
686,
66,
62,
14272,
62,
26675,
201,
198,
201,
198,
81,
62,
1676,
1443,
796,
685,
15,
329,
4808,
287,
2837,
7,
11925,
7,
88,
62,
9288,
4008,
60,
201,
198,
201,
198,
81,
62,
14272,
796,
686,
66,
62,
14272,
62,
26675,
7,
88,
62,
9288,
11,
81,
62,
1676,
1443,
8,
201,
198,
20471,
62,
14272,
796,
686,
66,
62,
14272,
62,
26675,
7,
88,
62,
9288,
11,
9288,
62,
1676,
1443,
8,
201,
198,
201,
198,
81,
62,
69,
1050,
11,
81,
62,
83,
1050,
11,
62,
796,
686,
66,
62,
22019,
303,
7,
88,
62,
9288,
11,
81,
62,
1676,
1443,
8,
201,
198,
20471,
62,
69,
1050,
11,
20471,
62,
83,
1050,
11,
62,
796,
686,
66,
62,
22019,
303,
7,
88,
62,
9288,
11,
9288,
62,
1676,
1443,
8,
201,
198,
201,
198,
201,
198,
201,
198,
489,
83,
13,
29487,
7,
81,
62,
69,
1050,
11,
81,
62,
83,
1050,
11,
6167,
796,
705,
8205,
408,
657,
16622,
3256,
8043,
11639,
13424,
11537,
201,
198,
489,
83,
13,
29487,
7,
20471,
62,
69,
1050,
11,
20471,
62,
83,
1050,
11,
6167,
796,
705,
15522,
4470,
399,
45,
3256,
8043,
796,
6,
65,
11537,
201,
198,
201,
198,
489,
83,
13,
7839,
10786,
49,
4503,
28114,
6455,
4470,
47986,
7311,
11537,
201,
198,
489,
83,
13,
87,
18242,
10786,
37,
4805,
4064,
11537,
201,
198,
489,
83,
13,
2645,
9608,
10786,
51,
4805,
4064,
11537,
201,
198,
489,
83,
13,
1455,
437,
3419,
201,
198,
489,
83,
13,
12860,
3419,
201,
198,
201,
198,
4798,
7,
20471,
62,
14272,
8,
201,
198,
201,
198,
6551,
62,
15,
796,
357,
16,
14,
31591,
8,
1635,
357,
24561,
10,
31591,
14,
17,
13,
15,
8,
201,
198,
6551,
62,
16,
796,
357,
16,
14,
24561,
8,
1635,
357,
24561,
10,
31591,
14,
17,
13,
15,
8,
201,
198,
201,
198,
4871,
62,
6551,
796,
1391,
15,
25,
3463,
62,
15,
11,
352,
25,
3463,
62,
16,
92,
201,
198,
201,
198,
4798,
7,
6551,
62,
15,
8,
201,
198,
4798,
7,
6551,
62,
16,
8,
201,
198,
201,
198,
201,
198,
6551,
276,
62,
19849,
796,
787,
62,
19849,
3419,
201,
198,
6551,
276,
62,
19849,
13,
2220,
62,
43775,
7,
36733,
62,
43775,
8,
201,
198,
201,
198,
6551,
276,
62,
23569,
796,
26356,
62,
19849,
13,
11147,
7,
201,
198,
220,
220,
220,
4512,
62,
5036,
1381,
11,
201,
198,
220,
220,
220,
331,
62,
27432,
11,
201,
198,
220,
220,
220,
15458,
62,
7857,
28,
11645,
11,
201,
198,
220,
220,
220,
36835,
82,
28,
3064,
11,
201,
198,
220,
220,
220,
869,
10146,
41888,
11458,
62,
301,
33307,
4357,
201,
198,
220,
220,
220,
21201,
62,
7890,
16193,
2100,
62,
5036,
1381,
11,
331,
62,
2100,
828,
201,
198,
220,
220,
220,
1398,
62,
6551,
28,
4871,
62,
6551,
8,
201,
198,
201,
198,
201,
198,
201,
198,
27432,
62,
28764,
82,
62,
6551,
276,
796,
26356,
62,
19849,
13,
79,
17407,
7,
27432,
62,
5036,
1381,
8,
201,
198,
9288,
62,
28764,
82,
62,
6551,
276,
796,
26356,
62,
19849,
13,
79,
17407,
7,
9288,
62,
5036,
1381,
8,
201,
198,
201,
198,
201,
198,
9288,
62,
28764,
9278,
62,
6551,
276,
796,
17635,
201,
198,
9288,
62,
1676,
1443,
62,
6551,
276,
796,
17635,
201,
198,
201,
198,
1640,
1312,
287,
1332,
62,
28764,
82,
62,
6551,
276,
25,
201,
198,
220,
220,
220,
611,
1312,
1875,
657,
13,
20,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
28764,
9278,
62,
6551,
276,
13,
33295,
7,
16,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
1676,
1443,
62,
6551,
276,
13,
33295,
7,
72,
8,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
2073,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
28764,
9278,
62,
6551,
276,
13,
33295,
7,
15,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
1676,
1443,
62,
6551,
276,
13,
33295,
7,
72,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
201,
198,
201,
198,
7250,
796,
2160,
26933,
7,
79,
290,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
9278,
62,
6551,
276,
11,
331,
62,
9288,
8,
12962,
201,
198,
5837,
796,
2160,
26933,
7,
79,
290,
407,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
9278,
62,
6551,
276,
11,
331,
62,
9288,
8,
12962,
201,
198,
46559,
796,
2160,
26933,
7,
1662,
279,
290,
407,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
9278,
62,
6551,
276,
11,
331,
62,
9288,
8,
12962,
201,
198,
43221,
796,
2160,
26933,
7,
1662,
279,
290,
300,
8,
329,
357,
79,
11,
75,
8,
287,
19974,
7,
9288,
62,
28764,
9278,
62,
6551,
276,
11,
331,
62,
9288,
8,
12962,
201,
198,
220,
220,
220,
220,
201,
198,
51,
4805,
796,
24525,
29006,
7250,
10,
43221,
8,
201,
198,
51,
24723,
796,
29025,
29006,
46559,
10,
5837,
8,
201,
198,
220,
220,
220,
220,
201,
198,
13246,
796,
352,
532,
764,
20,
1635,
357,
51,
4805,
1343,
309,
24723,
8,
201,
198,
220,
220,
220,
220,
201,
198,
3866,
16005,
796,
24525,
29006,
7250,
10,
5837,
8,
201,
198,
8344,
439,
796,
24525,
29006,
7250,
1343,
44260,
8,
201,
198,
220,
220,
220,
220,
201,
198,
37,
16,
796,
362,
1635,
357,
3866,
16005,
9,
8344,
439,
20679,
7,
3866,
16005,
1343,
10014,
8,
201,
198,
201,
198,
4134,
23843,
796,
357,
7250,
1343,
29025,
20679,
7,
7250,
1343,
31459,
1343,
29025,
1343,
44260,
8,
201,
198,
201,
198,
4798,
7203,
24597,
2903,
13047,
2494,
25,
366,
1343,
965,
7,
13246,
4008,
201,
198,
4798,
7203,
6719,
16005,
25,
366,
1343,
965,
7,
3866,
16005,
4008,
201,
198,
4798,
10786,
6690,
439,
25,
705,
1343,
965,
7,
8344,
439,
4008,
201,
198,
4798,
10786,
37,
16,
4776,
25,
705,
1343,
965,
7,
37,
16,
4008,
201,
198,
4798,
10786,
14957,
40984,
33222,
25,
705,
1343,
965,
7,
4134,
23843,
4008,
201,
198,
201,
198,
201,
198,
81,
62,
1676,
1443,
796,
685,
15,
329,
4808,
287,
2837,
7,
11925,
7,
88,
62,
9288,
4008,
60,
201,
198,
201,
198,
81,
62,
14272,
796,
686,
66,
62,
14272,
62,
26675,
7,
88,
62,
9288,
11,
81,
62,
1676,
1443,
8,
201,
198,
20471,
62,
14272,
796,
686,
66,
62,
14272,
62,
26675,
7,
88,
62,
9288,
11,
9288,
62,
1676,
1443,
62,
6551,
276,
8,
201,
198,
201,
198,
81,
62,
69,
1050,
11,
81,
62,
83,
1050,
11,
62,
796,
686,
66,
62,
22019,
303,
7,
88,
62,
9288,
11,
81,
62,
1676,
1443,
8,
201,
198,
20471,
62,
69,
1050,
11,
20471,
62,
83,
1050,
11,
62,
796,
686,
66,
62,
22019,
303,
7,
88,
62,
9288,
11,
9288,
62,
1676,
1443,
62,
6551,
276,
8,
201,
198,
201,
198,
201,
198,
201,
198,
489,
83,
13,
29487,
7,
81,
62,
69,
1050,
11,
81,
62,
83,
1050,
11,
6167,
796,
705,
13246,
796,
657,
3256,
8043,
11639,
13424,
11537,
201,
198,
489,
83,
13,
29487,
7,
20471,
62,
69,
1050,
11,
20471,
62,
83,
1050,
11,
6167,
796,
705,
25844,
276,
5016,
399,
45,
3256,
8043,
11639,
65,
11537,
201,
198,
201,
198,
489,
83,
13,
7839,
10786,
49,
4503,
28114,
14331,
68,
38884,
47986,
7311,
11537,
201,
198,
489,
83,
13,
87,
18242,
10786,
37,
4805,
4064,
11537,
201,
198,
489,
83,
13,
2645,
9608,
10786,
51,
4805,
4064,
11537,
201,
198,
489,
83,
13,
1455,
437,
3419,
201,
198,
489,
83,
13,
12860,
3419,
201,
198,
201,
198,
4798,
7,
20471,
62,
14272,
8,
201,
198,
201,
198,
201,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
44800,
8081,
2234,
201,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
1612,
62,
16485,
1144,
62,
18224,
11,
374,
17,
62,
26675,
201,
198,
6738,
7872,
1671,
624,
13,
2301,
44292,
1330,
1874,
312,
723,
82,
43328,
201,
198,
201,
198,
201,
198,
201,
198,
201,
198,
56,
796,
17635,
201,
198,
55,
796,
17635,
201,
198,
9127,
16,
796,
657,
201,
198,
9127,
17,
796,
657,
201,
198,
1640,
1312,
287,
2837,
7,
11925,
7,
9288,
62,
1676,
1443,
62,
6551,
276,
8,
2599,
201,
198,
220,
220,
220,
954,
16,
15853,
1332,
62,
1676,
1443,
62,
6551,
276,
58,
72,
60,
201,
198,
220,
220,
220,
954,
17,
15853,
331,
62,
9288,
58,
72,
60,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1395,
13,
33295,
7,
9127,
16,
8,
201,
198,
220,
220,
220,
575,
13,
33295,
7,
9127,
17,
8,
201,
198,
220,
220,
220,
954,
16,
796,
657,
201,
198,
220,
220,
220,
954,
17,
796,
657,
201,
198,
201,
198,
4798,
7,
56,
58,
15,
25,
940,
12962,
201,
198,
55,
796,
45941,
13,
18747,
7,
55,
8,
201,
198,
55,
796,
1395,
13,
3447,
1758,
32590,
16,
11,
16,
8,
201,
198,
201,
198,
201,
198,
201,
198,
2815,
796,
44800,
8081,
2234,
22446,
11147,
7,
55,
11,
56,
8,
201,
198,
201,
198,
4798,
7,
2815,
13,
26675,
7,
55,
11,
56,
4008,
201,
198,
201,
198,
75,
28764,
82,
796,
9493,
13,
79,
17407,
7,
55,
8,
201,
198,
4798,
10786,
34,
2577,
487,
82,
11537,
201,
198,
4798,
7,
2815,
13,
1073,
891,
62,
8,
201,
198,
201,
198,
4798,
7,
32604,
62,
16485,
1144,
62,
18224,
7,
56,
11,
75,
28764,
82,
4008,
201,
198,
4798,
7,
81,
17,
62,
26675,
7,
56,
11,
75,
28764,
82,
4008,
201,
198,
201,
198,
201,
198,
41464,
7509,
796,
1874,
312,
723,
82,
43328,
7,
2815,
8,
201,
198,
41464,
7509,
13,
11147,
7,
55,
11,
56,
8,
201,
198,
41464,
7509,
13,
26675,
7,
55,
11,
75,
28764,
82,
8,
201,
198,
41464,
7509,
13,
12860,
3419,
201,
198
] | 2.096182 | 5,552 |
#!/usr/bin/env python
#
# Copyright 2014 - 2018 The BCE Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the license.txt file.
#
import bce.parser.interface.printer as _interface_printer
class SubstituteError(Exception):
"""Molecule substitution error."""
pass
class MoleculeParserInterface:
"""Interface for math expression parsers."""
def __init__(self):
"""Initialize."""
pass
# noinspection PyMethodMayBeStatic
def parse_expression(
self,
expression,
options,
mexp_protected_header_enabled=False,
mexp_protected_header_prefix="X"
):
"""Parse an expression.
:type expression: str
:type options: bce.option.Option
:type mexp_protected_header_enabled: bool
:type mexp_protected_header_prefix: str
:param expression: The expression.
:param options: The options.
:param mexp_protected_header_enabled: Whether the MEXP protected headers are enabled.
:param mexp_protected_header_prefix: The prefix of the MEXP protected headers.
:rtype : bce.parser.ast.molecule.ASTNodeMolecule | bce.parser.ast.molecule.ASTNodeHydrateGroup
:return: The root node of the AST.
"""
raise RuntimeError("parse_expression() method should be overrided.")
# noinspection PyMethodMayBeStatic
def parse_ast(
self,
expression,
ast_root,
option,
mexp_protected_header_enabled=False,
mexp_protected_header_prefix="X"
):
"""Parse an AST.
:type expression: str
:type ast_root: bce.parser.ast.molecule.ASTNodeMolecule | bce.parser.ast.molecule.ASTNodeHydrateGroup
:type option: bce.option.Option
:type mexp_protected_header_enabled: bool
:type mexp_protected_header_prefix: str
:param expression: The expression.
:param ast_root: The root node of the AST.
:param option: The options.
:param mexp_protected_header_enabled: Whether the MEXP protected headers are enabled.
:param mexp_protected_header_prefix: The prefix of the MEXP protected headers.
:rtype : dict
:return: The parsed element dictionary.
"""
raise RuntimeError("parse_ast() method should be overrided.")
# noinspection PyMethodMayBeStatic
def substitute(self, ast_root, substitute_map=None):
"""Substitute a ast_root.
:type ast_root: bce.parser.ast.molecule.ASTNodeMolecule | bce.parser.ast.molecule.ASTNodeHydrateGroup
:type substitute_map: dict | None
:param ast_root: The ast_root.
:param substitute_map: The substitution map.
:rtype : bce.parser.ast.molecule.ASTNodeMolecule | bce.parser.ast.molecule.ASTNodeHydrateGroup | None
:return: The substituted AST root node.
"""
raise RuntimeError("substitute() method should be overrided.")
# noinspection PyMethodMayBeStatic
def print_out(
self,
ast_root,
mexp_parser,
mexp_protected_header_enabled=False,
mexp_protected_header_prefix="X",
printer_type=_interface_printer.PRINTER_TYPE_TEXT
):
"""Print a molecule.
:type ast_root: bce.parser.ast.molecule.ASTNodeMolecule | bce.parser.ast.molecule.ASTNodeHydrateGroup
:type mexp_parser: bce.parser.interface.mexp_parser.MathExpressionParserInterface
:type mexp_protected_header_enabled: bool
:type mexp_protected_header_prefix: str
:type printer_type: int
:param ast_root: The AST root.
:param printer_type: The printer type.
:param mexp_parser: The math expression parser.
:param mexp_protected_header_enabled: Whether the MEXP protected headers are enabled.
:param mexp_protected_header_prefix: The prefix of the MEXP protected headers.
:rtype : str | bce.dom.mathml.all.Base
:return: The printed string or MathML object.
"""
raise RuntimeError("print_out() method should be overrided.")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
198,
2,
220,
15069,
1946,
532,
2864,
383,
37078,
46665,
13,
1439,
2489,
10395,
13,
198,
2,
220,
5765,
286,
428,
2723,
2438,
318,
21825,
416,
257,
347,
10305,
12,
7635,
5964,
326,
460,
307,
198,
2,
220,
1043,
287,
262,
5964,
13,
14116,
2393,
13,
198,
2,
198,
198,
11748,
275,
344,
13,
48610,
13,
39994,
13,
1050,
3849,
355,
4808,
39994,
62,
1050,
3849,
628,
198,
4871,
24944,
3678,
12331,
7,
16922,
2599,
198,
220,
220,
220,
37227,
44,
2305,
23172,
32097,
4049,
526,
15931,
628,
220,
220,
220,
1208,
628,
198,
4871,
25726,
23172,
46677,
39317,
25,
198,
220,
220,
220,
37227,
39317,
329,
10688,
5408,
13544,
364,
526,
15931,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
24243,
1096,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
1303,
645,
1040,
14978,
9485,
17410,
6747,
3856,
45442,
198,
220,
220,
220,
825,
21136,
62,
38011,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5408,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
2625,
55,
1,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10044,
325,
281,
5408,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
5408,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3689,
25,
275,
344,
13,
18076,
13,
19722,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
5408,
25,
383,
5408,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3689,
25,
383,
3689,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
10127,
262,
337,
49864,
6861,
24697,
389,
9343,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
383,
21231,
286,
262,
337,
49864,
6861,
24697,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
1058,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
44,
2305,
23172,
930,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
40436,
4873,
13247,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
6808,
10139,
286,
262,
29273,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
29572,
62,
38011,
3419,
2446,
815,
307,
23170,
1384,
19570,
628,
220,
220,
220,
1303,
645,
1040,
14978,
9485,
17410,
6747,
3856,
45442,
198,
220,
220,
220,
825,
21136,
62,
459,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5408,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6468,
62,
15763,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3038,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
2625,
55,
1,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10044,
325,
281,
29273,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
5408,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
6468,
62,
15763,
25,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
44,
2305,
23172,
930,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
40436,
4873,
13247,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3038,
25,
275,
344,
13,
18076,
13,
19722,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
5408,
25,
383,
5408,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6468,
62,
15763,
25,
383,
6808,
10139,
286,
262,
29273,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3038,
25,
383,
3689,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
10127,
262,
337,
49864,
6861,
24697,
389,
9343,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
383,
21231,
286,
262,
337,
49864,
6861,
24697,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
1058,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
44267,
5002,
22155,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
29572,
62,
459,
3419,
2446,
815,
307,
23170,
1384,
19570,
628,
220,
220,
220,
1303,
645,
1040,
14978,
9485,
17410,
6747,
3856,
45442,
198,
220,
220,
220,
825,
15373,
7,
944,
11,
6468,
62,
15763,
11,
15373,
62,
8899,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7004,
301,
3678,
257,
6468,
62,
15763,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
6468,
62,
15763,
25,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
44,
2305,
23172,
930,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
40436,
4873,
13247,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
15373,
62,
8899,
25,
8633,
930,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6468,
62,
15763,
25,
383,
6468,
62,
15763,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
15373,
62,
8899,
25,
383,
32097,
3975,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
1058,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
44,
2305,
23172,
930,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
40436,
4873,
13247,
930,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
31601,
29273,
6808,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
7266,
301,
3678,
3419,
2446,
815,
307,
23170,
1384,
19570,
628,
220,
220,
220,
1303,
645,
1040,
14978,
9485,
17410,
6747,
3856,
45442,
198,
220,
220,
220,
825,
3601,
62,
448,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6468,
62,
15763,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
48610,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
2625,
55,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20632,
62,
4906,
28,
62,
39994,
62,
1050,
3849,
13,
4805,
41358,
62,
25216,
62,
32541,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
18557,
257,
27756,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
6468,
62,
15763,
25,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
44,
2305,
23172,
930,
275,
344,
13,
48610,
13,
459,
13,
76,
2305,
23172,
13,
11262,
19667,
40436,
4873,
13247,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
48610,
25,
275,
344,
13,
48610,
13,
39994,
13,
76,
11201,
62,
48610,
13,
37372,
16870,
2234,
46677,
39317,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
20632,
62,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
6468,
62,
15763,
25,
383,
29273,
6808,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20632,
62,
4906,
25,
383,
20632,
2099,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
48610,
25,
383,
10688,
5408,
30751,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
25616,
25,
10127,
262,
337,
49864,
6861,
24697,
389,
9343,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
502,
42372,
62,
24326,
62,
25677,
62,
40290,
25,
383,
21231,
286,
262,
337,
49864,
6861,
24697,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
1058,
965,
930,
275,
344,
13,
3438,
13,
11018,
4029,
13,
439,
13,
14881,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
10398,
4731,
393,
16320,
5805,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
4798,
62,
448,
3419,
2446,
815,
307,
23170,
1384,
19570,
198
] | 2.480519 | 1,694 |
from moto.core.exceptions import JsonRESTError
class NoSuchBucketException(JsonRESTError):
"""We are *only* validating that there is value that is not '' here."""
code = 400
class InvalidSNSTopicARNException(JsonRESTError):
"""We are *only* validating that there is value that is not '' here."""
code = 400
| [
6738,
285,
2069,
13,
7295,
13,
1069,
11755,
1330,
449,
1559,
49,
6465,
12331,
628,
628,
628,
628,
628,
198,
4871,
1400,
16678,
33,
38811,
16922,
7,
41,
1559,
49,
6465,
12331,
2599,
198,
220,
220,
220,
37227,
1135,
389,
1635,
8807,
9,
4938,
803,
326,
612,
318,
1988,
326,
318,
407,
10148,
994,
526,
15931,
628,
220,
220,
220,
2438,
796,
7337,
628,
628,
198,
4871,
17665,
15571,
2257,
16603,
1503,
45,
16922,
7,
41,
1559,
49,
6465,
12331,
2599,
198,
220,
220,
220,
37227,
1135,
389,
1635,
8807,
9,
4938,
803,
326,
612,
318,
1988,
326,
318,
407,
10148,
994,
526,
15931,
628,
220,
220,
220,
2438,
796,
7337,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628
] | 2.928 | 125 |
# File: generators.py
# Description: Examples on how to create and use generators in Python
# Environment: PyCharm and Anaconda environment
#
# MIT License
# Copyright (c) 2018 Valentyn N Sichkar
# github.com/sichkar-valentyn
#
# Reference to:
# [1] Valentyn N Sichkar. Examples on how to create and use generators in Python // GitHub platform [Electronic resource]. URL: https://github.com/sichkar-valentyn/Generators_in_Python (date of access: XX.XX.XXXX)
from random import random
# Creating the class for iterations
# We add the method __iter__ if we want to iterate this class
# Creating function as generator
# Instead of return we use yield
# In this way we remember the order till yield each time we call the function
# Creating instance of class
gen = random_generator(3)
print(type(gen))
for i in gen:
print(i)
# More clear example about remembering the yield the order
g = simple_gen()
x = next(g)
print(x)
y = next(g)
print(y)
z = next(g)
# Implementing the task - creating the methods for prime numbers
| [
2,
9220,
25,
27298,
13,
9078,
198,
2,
12489,
25,
21066,
319,
703,
284,
2251,
290,
779,
27298,
287,
11361,
198,
2,
9344,
25,
9485,
1925,
1670,
290,
1052,
330,
13533,
2858,
198,
2,
198,
2,
17168,
13789,
198,
2,
15069,
357,
66,
8,
2864,
17284,
2047,
399,
311,
488,
21070,
198,
2,
33084,
13,
785,
14,
82,
488,
21070,
12,
2100,
298,
2047,
198,
2,
198,
2,
20984,
284,
25,
198,
2,
685,
16,
60,
17284,
2047,
399,
311,
488,
21070,
13,
21066,
319,
703,
284,
2251,
290,
779,
27298,
287,
11361,
3373,
21722,
3859,
685,
19453,
4565,
8271,
4083,
10289,
25,
3740,
1378,
12567,
13,
785,
14,
82,
488,
21070,
12,
2100,
298,
2047,
14,
8645,
2024,
62,
259,
62,
37906,
357,
4475,
286,
1895,
25,
21044,
13,
8051,
13,
24376,
8,
628,
198,
6738,
4738,
1330,
4738,
628,
198,
2,
30481,
262,
1398,
329,
34820,
198,
220,
220,
220,
1303,
775,
751,
262,
2446,
11593,
2676,
834,
611,
356,
765,
284,
11629,
378,
428,
1398,
628,
198,
2,
30481,
2163,
355,
17301,
198,
2,
5455,
286,
1441,
356,
779,
7800,
198,
2,
554,
428,
835,
356,
3505,
262,
1502,
10597,
7800,
1123,
640,
356,
869,
262,
2163,
628,
198,
2,
30481,
4554,
286,
1398,
198,
5235,
796,
4738,
62,
8612,
1352,
7,
18,
8,
198,
4798,
7,
4906,
7,
5235,
4008,
198,
198,
1640,
1312,
287,
2429,
25,
198,
220,
220,
220,
3601,
7,
72,
8,
628,
198,
2,
3125,
1598,
1672,
546,
24865,
262,
7800,
262,
1502,
628,
198,
70,
796,
2829,
62,
5235,
3419,
198,
87,
796,
1306,
7,
70,
8,
198,
4798,
7,
87,
8,
198,
88,
796,
1306,
7,
70,
8,
198,
4798,
7,
88,
8,
198,
89,
796,
1306,
7,
70,
8,
628,
198,
2,
48282,
278,
262,
4876,
532,
4441,
262,
5050,
329,
6994,
3146,
628,
198
] | 3.401961 | 306 |
#!/usr/bin/env python
"""
Loading data from Excel files stored at /src/data.
"""
# Copyright (c) 2014, Pavlo Bazilinskyy <[email protected]>
# Department of Computer Science, National University of Ireland, Maynooth
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
__author__ = "Pavlo Bazilinskyy"
__copyright__ = "Copyright 2008, National University of Ireland, Maynooth"
__credits__ = "Ronan Reilly"
__version__ = "1.0"
__maintainer__ = "Pavlo Bazilinskyy"
__email__ = "[email protected]"
__status__ = "Production"
import traceback
from xlrd import open_workbook, cellname
import csv
import model
import conf
import random | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
37811,
198,
19031,
1366,
422,
24134,
3696,
8574,
379,
1220,
10677,
14,
7890,
13,
198,
37811,
198,
2,
15069,
357,
66,
8,
1946,
11,
24081,
5439,
47099,
346,
19870,
88,
1279,
79,
615,
5439,
13,
65,
1031,
346,
19870,
88,
31,
14816,
13,
785,
29,
198,
2,
2732,
286,
13851,
5800,
11,
2351,
2059,
286,
7517,
11,
1737,
3919,
849,
198,
2,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
4866,
198,
2,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
366,
25423,
12340,
284,
1730,
198,
2,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
262,
2489,
198,
2,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
198,
2,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
10442,
318,
198,
2,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
198,
2,
198,
2,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
287,
198,
2,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
2,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
6375,
198,
2,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
198,
2,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
3336,
198,
2,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
198,
2,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
16034,
11,
198,
2,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
25401,
5550,
1847,
20754,
3268,
198,
2,
3336,
47466,
13,
198,
834,
9800,
834,
796,
366,
47,
615,
5439,
47099,
346,
19870,
88,
1,
198,
834,
22163,
4766,
834,
796,
366,
15269,
3648,
11,
2351,
2059,
286,
7517,
11,
1737,
3919,
849,
1,
198,
834,
66,
20696,
834,
796,
366,
23672,
272,
47879,
1,
198,
834,
9641,
834,
796,
366,
16,
13,
15,
1,
198,
834,
76,
2913,
10613,
834,
796,
366,
47,
615,
5439,
47099,
346,
19870,
88,
1,
198,
834,
12888,
834,
796,
366,
79,
615,
5439,
13,
65,
1031,
346,
19870,
88,
31,
14816,
13,
785,
1,
198,
834,
13376,
834,
796,
366,
35027,
1,
198,
198,
11748,
12854,
1891,
198,
6738,
2124,
75,
4372,
1330,
1280,
62,
1818,
2070,
11,
2685,
3672,
198,
11748,
269,
21370,
198,
11748,
2746,
198,
11748,
1013,
198,
11748,
4738
] | 3.517021 | 470 |
from django.urls import path, include
from django.contrib import admin
from django.contrib.auth import views
from authentication.views import HomeView
urlpatterns = [
path('admin/', admin.site.urls),
path('', HomeView.as_view(), name='home'),
path('auth/', include('authentication.urls')),
path('', include('dashboard.urls')),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
11,
2291,
198,
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
5009,
198,
6738,
18239,
13,
33571,
1330,
5995,
7680,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
10786,
28482,
14,
3256,
13169,
13,
15654,
13,
6371,
82,
828,
198,
220,
220,
220,
3108,
10786,
3256,
5995,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
11195,
33809,
198,
220,
220,
220,
3108,
10786,
18439,
14,
3256,
2291,
10786,
41299,
3299,
13,
6371,
82,
11537,
828,
198,
220,
220,
220,
3108,
10786,
3256,
2291,
10786,
42460,
3526,
13,
6371,
82,
11537,
828,
198,
60,
198
] | 2.982759 | 116 |
from arbitrary_dateparser.dateparser import *
| [
6738,
14977,
62,
4475,
48610,
13,
4475,
48610,
1330,
1635,
201,
198
] | 3.916667 | 12 |
import csv
import os
import time
from selenium.webdriver.support.select import Select
from Data.parameters import Data
from filenames import file_extention
from get_dir import pwd
from reuse_func import GetData
| [
11748,
269,
21370,
198,
11748,
28686,
198,
11748,
640,
198,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
13,
19738,
1330,
9683,
198,
198,
6738,
6060,
13,
17143,
7307,
1330,
6060,
198,
6738,
1226,
268,
1047,
1330,
2393,
62,
2302,
1463,
198,
6738,
651,
62,
15908,
1330,
279,
16993,
198,
6738,
32349,
62,
20786,
1330,
3497,
6601,
628
] | 3.566667 | 60 |
###########################################################################################
# #
# ObjectTracker 2.0 #
# #
###########################################################################################
# #
# with ObjectTracker you can track the last updated time from any object in HA #
# options are to give the last time an object was updated or the time that has gone by #
# you have to set the following options in the appdaemon.cfg: #
# #
# object_type = the type you like to track (switch, input_boolean, sensor, etc) #
# time_gone_by = True or False (false for showing last updated time) #
# dir_name = the name of the directory you want the files with times saved #
# time_format = any timeformat you like (python strftime type) without % #
# H:M gives 01:27, Y-m-d H:M:S gives 2016-09-04 01:27:25, etc. #
# total_objects = the amount off object you want to track #
# object1 = HA entity_ID without the platform part. (for switch.light1 use light1) #
# object2 = ... #
# object3 = untill you reached youre total_object amount #
# #
# note that you need to set a new sections in the cfg for each type of object you like #
# to track. if you want to track 1 switch and 1 sensor you need to make to sections. #
# #
# ObjectTracker depends on general_app_functions.py set as app and set in the cfg as #
# [generalvars] #
# #
# Rene Tode ( [email protected] ) #
# version 2.0 #
# 2016/09/04 Germany #
# #
###########################################################################################
import appdaemon.plugins.hass.hassapi as hass
import datetime
| [
29113,
29113,
14468,
7804,
21017,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
9515,
35694,
362,
13,
15,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
29113,
29113,
14468,
7804,
21017,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
351,
9515,
35694,
345,
460,
2610,
262,
938,
6153,
640,
422,
597,
2134,
287,
14558,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
3689,
389,
284,
1577,
262,
938,
640,
281,
2134,
373,
6153,
393,
262,
640,
326,
468,
3750,
416,
220,
220,
1303,
198,
2,
220,
345,
423,
284,
900,
262,
1708,
3689,
287,
262,
598,
6814,
7966,
13,
37581,
25,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2134,
62,
4906,
796,
262,
2099,
345,
588,
284,
2610,
357,
31943,
11,
5128,
62,
2127,
21052,
11,
12694,
11,
3503,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
640,
62,
21260,
62,
1525,
796,
6407,
393,
10352,
357,
9562,
329,
4478,
938,
6153,
640,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
26672,
62,
3672,
796,
262,
1438,
286,
262,
8619,
345,
765,
262,
3696,
351,
1661,
7448,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
640,
62,
18982,
796,
597,
640,
18982,
345,
588,
357,
29412,
965,
31387,
2099,
8,
1231,
4064,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
367,
25,
44,
3607,
5534,
25,
1983,
11,
575,
12,
76,
12,
67,
367,
25,
44,
25,
50,
3607,
1584,
12,
2931,
12,
3023,
5534,
25,
1983,
25,
1495,
11,
3503,
13,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2472,
62,
48205,
796,
262,
2033,
572,
2134,
345,
765,
284,
2610,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2134,
16,
796,
14558,
9312,
62,
2389,
1231,
262,
3859,
636,
13,
357,
1640,
5078,
13,
2971,
16,
779,
1657,
16,
8,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2134,
17,
796,
2644,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2134,
18,
796,
1418,
359,
345,
4251,
345,
260,
2472,
62,
15252,
2033,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
3465,
326,
345,
761,
284,
900,
257,
649,
9004,
287,
262,
30218,
70,
329,
1123,
2099,
286,
2134,
345,
588,
220,
220,
1303,
198,
2,
220,
284,
2610,
13,
611,
345,
765,
284,
2610,
352,
5078,
290,
352,
12694,
345,
761,
284,
787,
284,
9004,
13,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
9515,
35694,
8338,
319,
2276,
62,
1324,
62,
12543,
2733,
13,
9078,
900,
355,
598,
290,
900,
287,
262,
30218,
70,
355,
220,
220,
220,
220,
1303,
198,
2,
220,
685,
24622,
85,
945,
60,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
371,
1734,
309,
1098,
357,
468,
82,
31,
260,
313,
13,
2398,
1267,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2196,
362,
13,
15,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
1584,
14,
2931,
14,
3023,
4486,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
29113,
29113,
14468,
7804,
21017,
198,
198,
11748,
598,
6814,
7966,
13,
37390,
13,
71,
562,
13,
71,
562,
15042,
355,
468,
82,
198,
11748,
4818,
8079,
198
] | 1.650623 | 1,766 |
import cv2
import mediapipe as mp
mp_drawing = mp.solutions.drawing_utils
# mp_drawing_styles = mp.solutions.drawing_styles
mp_face_mesh = mp.solutions.face_mesh
# for webcam input:
if __name__ == '__main__':
main()
| [
11748,
269,
85,
17,
198,
11748,
16957,
499,
3757,
355,
29034,
198,
198,
3149,
62,
19334,
278,
796,
29034,
13,
82,
14191,
13,
19334,
278,
62,
26791,
198,
2,
29034,
62,
19334,
278,
62,
47720,
796,
29034,
13,
82,
14191,
13,
19334,
278,
62,
47720,
198,
3149,
62,
2550,
62,
76,
5069,
796,
29034,
13,
82,
14191,
13,
2550,
62,
76,
5069,
628,
198,
2,
329,
49823,
5128,
25,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.556818 | 88 |
# Designed by Andy OConnell <[email protected]> <[email protected]>
class CacheRow(object):
"""This represents a row of cache.
Instance Variables
Slot : middle 4 bits
Valid : If the row is real data
Tag : left 4 Bits
Data : 16 Bytes of information from memory
Dirty : is true if any data has been changed
"""
| [
2,
39198,
416,
12382,
440,
15559,
1279,
64,
36221,
4954,
31,
11110,
13,
15532,
29,
1279,
392,
1809,
36221,
10076,
4531,
31,
14816,
13,
785,
29,
198,
198,
4871,
34088,
25166,
7,
15252,
2599,
198,
220,
220,
220,
37227,
1212,
6870,
257,
5752,
286,
12940,
13,
198,
220,
220,
220,
2262,
590,
15965,
2977,
198,
220,
220,
220,
220,
220,
220,
220,
32026,
1058,
3504,
604,
10340,
198,
220,
220,
220,
220,
220,
220,
220,
48951,
1058,
1002,
262,
5752,
318,
1103,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
17467,
1058,
1364,
604,
44733,
198,
220,
220,
220,
220,
220,
220,
220,
6060,
1058,
1467,
2750,
4879,
286,
1321,
422,
4088,
198,
220,
220,
220,
220,
220,
220,
220,
32052,
1058,
318,
2081,
611,
597,
1366,
468,
587,
3421,
198,
220,
220,
220,
37227,
198
] | 2.693431 | 137 |
from ckeditor.fields import RichTextFormField
from django import forms
from django.conf import settings
from django.contrib.auth.models import User
from django.db.models import Count
from django.forms import ModelChoiceField
from django.utils.module_loading import import_string
from helpdesk.models import State, Comment, Ticket, Project
from helpdesk.utils import DefaultProfile
| [
6738,
269,
9091,
2072,
13,
25747,
1330,
3998,
8206,
8479,
15878,
198,
6738,
42625,
14208,
1330,
5107,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
1330,
2764,
198,
6738,
42625,
14208,
13,
23914,
1330,
9104,
46770,
15878,
198,
6738,
42625,
14208,
13,
26791,
13,
21412,
62,
25138,
1330,
1330,
62,
8841,
198,
198,
6738,
1037,
8906,
74,
13,
27530,
1330,
1812,
11,
18957,
11,
24014,
11,
4935,
198,
6738,
1037,
8906,
74,
13,
26791,
1330,
15161,
37046,
628,
628,
628,
628
] | 3.813725 | 102 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
import uuid
from msrest.pipeline import ClientRawResponse
from msrestazure.azure_exceptions import CloudError
from msrest.polling import LROPoller, NoPolling
from msrestazure.polling.arm_polling import ARMPolling
from .. import models
class WorkspacesOperations(object):
"""WorkspacesOperations operations.
:param client: Client for service requests.
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
"""
models = models
def list_link_targets(
self, custom_headers=None, raw=False, **operation_config):
"""Get a list of workspaces which the current user has administrator
privileges and are not associated with an Azure Subscription. The
subscriptionId parameter in the Url is ignored.
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: list or ClientRawResponse if raw=true
:rtype: list[~azure.mgmt.loganalytics.models.LinkTarget] or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-03-20"
# Construct URL
url = self.list_link_targets.metadata['url']
path_format_arguments = {
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.get(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('[LinkTarget]', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
list_link_targets.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/linkTargets'}
def get_schema(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Gets the schema for a given workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Log Analytics workspace name
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: SearchGetSchemaResponse or ClientRawResponse if raw=true
:rtype: ~azure.mgmt.loganalytics.models.SearchGetSchemaResponse or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-03-20"
# Construct URL
url = self.get_schema.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('SearchGetSchemaResponse', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
get_schema.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/schema'}
def get_search_results(
self, resource_group_name, workspace_name, parameters, custom_headers=None, raw=False, polling=True, **operation_config):
"""Submit a search for a given workspace. The response will contain an id
to track the search. User can use the id to poll the search status and
get the full search result later if the search takes long time to
finish. .
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Log Analytics workspace name
:type workspace_name: str
:param parameters: The parameters required to execute a search query.
:type parameters: ~azure.mgmt.loganalytics.models.SearchParameters
:param dict custom_headers: headers that will be added to the request
:param bool raw: The poller return type is ClientRawResponse, the
direct response alongside the deserialized response
:param polling: True for ARMPolling, False for no polling, or a
polling object for personal polling strategy
:return: An instance of LROPoller that returns SearchResultsResponse
or ClientRawResponse<SearchResultsResponse> if raw==True
:rtype:
~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.loganalytics.models.SearchResultsResponse]
or
~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.loganalytics.models.SearchResultsResponse]]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
raw_result = self._get_search_results_initial(
resource_group_name=resource_group_name,
workspace_name=workspace_name,
parameters=parameters,
custom_headers=custom_headers,
raw=True,
**operation_config
)
lro_delay = operation_config.get(
'long_running_operation_timeout',
self.config.long_running_operation_timeout)
if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
elif polling is False: polling_method = NoPolling()
else: polling_method = polling
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
get_search_results.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search'}
def update_search_results(
self, resource_group_name, workspace_name, id, custom_headers=None, raw=False, **operation_config):
"""Gets updated search results for a given search query.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Log Analytics workspace name
:type workspace_name: str
:param id: The id of the search that will have results updated. You
can get the id from the response of the GetResults call.
:type id: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: SearchResultsResponse or ClientRawResponse if raw=true
:rtype: ~azure.mgmt.loganalytics.models.SearchResultsResponse or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-03-20"
# Construct URL
url = self.update_search_results.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'id': self._serialize.url("id", id, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('SearchResultsResponse', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
update_search_results.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/search/{id}'}
def purge(
self, resource_group_name, workspace_name, table, filters, custom_headers=None, raw=False, polling=True, **operation_config):
"""Purges data in an Log Analytics workspace by a set of user-defined
filters.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Log Analytics workspace name
:type workspace_name: str
:param table: Table from which to purge data.
:type table: str
:param filters: The set of columns and filters (queries) to run over
them to purge the resulting data.
:type filters:
list[~azure.mgmt.loganalytics.models.WorkspacePurgeBodyFilters]
:param dict custom_headers: headers that will be added to the request
:param bool raw: The poller return type is ClientRawResponse, the
direct response alongside the deserialized response
:param polling: True for ARMPolling, False for no polling, or a
polling object for personal polling strategy
:return: An instance of LROPoller that returns object or
ClientRawResponse<object> if raw==True
:rtype: ~msrestazure.azure_operation.AzureOperationPoller[object] or
~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[object]]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
raw_result = self._purge_initial(
resource_group_name=resource_group_name,
workspace_name=workspace_name,
table=table,
filters=filters,
custom_headers=custom_headers,
raw=True,
**operation_config
)
lro_delay = operation_config.get(
'long_running_operation_timeout',
self.config.long_running_operation_timeout)
if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
elif polling is False: polling_method = NoPolling()
else: polling_method = polling
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
purge.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/purge'}
def disable_intelligence_pack(
self, resource_group_name, workspace_name, intelligence_pack_name, custom_headers=None, raw=False, **operation_config):
"""Disables an intelligence pack for a given workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param intelligence_pack_name: The name of the intelligence pack to be
disabled.
:type intelligence_pack_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: None or ClientRawResponse if raw=true
:rtype: None or ~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.disable_intelligence_pack.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'intelligencePackName': self._serialize.url("intelligence_pack_name", intelligence_pack_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
if raw:
client_raw_response = ClientRawResponse(None, response)
return client_raw_response
disable_intelligence_pack.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Disable'}
def enable_intelligence_pack(
self, resource_group_name, workspace_name, intelligence_pack_name, custom_headers=None, raw=False, **operation_config):
"""Enables an intelligence pack for a given workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param intelligence_pack_name: The name of the intelligence pack to be
enabled.
:type intelligence_pack_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: None or ClientRawResponse if raw=true
:rtype: None or ~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.enable_intelligence_pack.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'intelligencePackName': self._serialize.url("intelligence_pack_name", intelligence_pack_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
if raw:
client_raw_response = ClientRawResponse(None, response)
return client_raw_response
enable_intelligence_pack.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks/{intelligencePackName}/Enable'}
def list_intelligence_packs(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Lists all the intelligence packs possible and whether they are enabled
or disabled for a given workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: list or ClientRawResponse if raw=true
:rtype: list[~azure.mgmt.loganalytics.models.IntelligencePack] or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.list_intelligence_packs.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.get(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('[IntelligencePack]', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
list_intelligence_packs.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/intelligencePacks'}
def get_shared_keys(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Gets the shared keys for a workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: SharedKeys or ClientRawResponse if raw=true
:rtype: ~azure.mgmt.loganalytics.models.SharedKeys or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.get_shared_keys.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.post(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('SharedKeys', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
get_shared_keys.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/sharedKeys'}
def list_usages(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Gets a list of usage metrics for a workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: The name of the workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: An iterator like instance of UsageMetric
:rtype:
~azure.mgmt.loganalytics.models.UsageMetricPaged[~azure.mgmt.loganalytics.models.UsageMetric]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Deserialize response
deserialized = models.UsageMetricPaged(internal_paging, self._deserialize.dependencies)
if raw:
header_dict = {}
client_raw_response = models.UsageMetricPaged(internal_paging, self._deserialize.dependencies, header_dict)
return client_raw_response
return deserialized
list_usages.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/usages'}
def list_management_groups(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Gets a list of management groups connected to a workspace.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param workspace_name: The name of the workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: An iterator like instance of ManagementGroup
:rtype:
~azure.mgmt.loganalytics.models.ManagementGroupPaged[~azure.mgmt.loganalytics.models.ManagementGroup]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Deserialize response
deserialized = models.ManagementGroupPaged(internal_paging, self._deserialize.dependencies)
if raw:
header_dict = {}
client_raw_response = models.ManagementGroupPaged(internal_paging, self._deserialize.dependencies, header_dict)
return client_raw_response
return deserialized
list_management_groups.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/managementGroups'}
def list_by_resource_group(
self, resource_group_name, custom_headers=None, raw=False, **operation_config):
"""Gets workspaces in a resource group.
:param resource_group_name: The name of the resource group to get. The
name is case insensitive.
:type resource_group_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: An iterator like instance of Workspace
:rtype:
~azure.mgmt.loganalytics.models.WorkspacePaged[~azure.mgmt.loganalytics.models.Workspace]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Deserialize response
deserialized = models.WorkspacePaged(internal_paging, self._deserialize.dependencies)
if raw:
header_dict = {}
client_raw_response = models.WorkspacePaged(internal_paging, self._deserialize.dependencies, header_dict)
return client_raw_response
return deserialized
list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces'}
def list(
self, custom_headers=None, raw=False, **operation_config):
"""Gets the workspaces in a subscription.
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: An iterator like instance of Workspace
:rtype:
~azure.mgmt.loganalytics.models.WorkspacePaged[~azure.mgmt.loganalytics.models.Workspace]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Deserialize response
deserialized = models.WorkspacePaged(internal_paging, self._deserialize.dependencies)
if raw:
header_dict = {}
client_raw_response = models.WorkspacePaged(internal_paging, self._deserialize.dependencies, header_dict)
return client_raw_response
return deserialized
list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.OperationalInsights/workspaces'}
def create_or_update(
self, resource_group_name, workspace_name, parameters, custom_headers=None, raw=False, polling=True, **operation_config):
"""Create or update a workspace.
:param resource_group_name: The resource group name of the workspace.
:type resource_group_name: str
:param workspace_name: The name of the workspace.
:type workspace_name: str
:param parameters: The parameters required to create or update a
workspace.
:type parameters: ~azure.mgmt.loganalytics.models.Workspace
:param dict custom_headers: headers that will be added to the request
:param bool raw: The poller return type is ClientRawResponse, the
direct response alongside the deserialized response
:param polling: True for ARMPolling, False for no polling, or a
polling object for personal polling strategy
:return: An instance of LROPoller that returns Workspace or
ClientRawResponse<Workspace> if raw==True
:rtype:
~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.loganalytics.models.Workspace]
or
~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.loganalytics.models.Workspace]]
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
raw_result = self._create_or_update_initial(
resource_group_name=resource_group_name,
workspace_name=workspace_name,
parameters=parameters,
custom_headers=custom_headers,
raw=True,
**operation_config
)
lro_delay = operation_config.get(
'long_running_operation_timeout',
self.config.long_running_operation_timeout)
if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
elif polling is False: polling_method = NoPolling()
else: polling_method = polling
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}'}
def delete(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Deletes a workspace instance.
:param resource_group_name: The resource group name of the workspace.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: None or ClientRawResponse if raw=true
:rtype: None or ~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.delete.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.delete(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200, 204]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
if raw:
client_raw_response = ClientRawResponse(None, response)
return client_raw_response
delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}'}
def get(
self, resource_group_name, workspace_name, custom_headers=None, raw=False, **operation_config):
"""Gets a workspace instance.
:param resource_group_name: The resource group name of the workspace.
:type resource_group_name: str
:param workspace_name: Name of the Log Analytics Workspace.
:type workspace_name: str
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: Workspace or ClientRawResponse if raw=true
:rtype: ~azure.mgmt.loganalytics.models.Workspace or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.get.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct and send request
request = self._client.get(url, query_parameters)
response = self._client.send(request, header_parameters, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('Workspace', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}'}
def update(
self, resource_group_name, workspace_name, parameters, custom_headers=None, raw=False, **operation_config):
"""Updates a workspace.
:param resource_group_name: The resource group name of the workspace.
:type resource_group_name: str
:param workspace_name: The name of the workspace.
:type workspace_name: str
:param parameters: The parameters required to patch a workspace.
:type parameters: ~azure.mgmt.loganalytics.models.Workspace
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
deserialized response
:param operation_config: :ref:`Operation configuration
overrides<msrest:optionsforoperations>`.
:return: Workspace or ClientRawResponse if raw=true
:rtype: ~azure.mgmt.loganalytics.models.Workspace or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError<msrestazure.azure_exceptions.CloudError>`
"""
api_version = "2015-11-01-preview"
# Construct URL
url = self.update.metadata['url']
path_format_arguments = {
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str', max_length=63, min_length=4, pattern=r'^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$'),
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
}
url = self._client.format_url(url, **path_format_arguments)
# Construct parameters
query_parameters = {}
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
# Construct headers
header_parameters = {}
header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
header_parameters.update(custom_headers)
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
# Construct body
body_content = self._serialize.body(parameters, 'Workspace')
# Construct and send request
request = self._client.patch(url, query_parameters)
response = self._client.send(
request, header_parameters, body_content, stream=False, **operation_config)
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
deserialized = None
if response.status_code == 200:
deserialized = self._deserialize('Workspace', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
return client_raw_response
return deserialized
update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}'}
| [
2,
19617,
28,
40477,
12,
23,
198,
2,
16529,
35937,
198,
2,
15069,
357,
66,
8,
5413,
10501,
13,
1439,
2489,
10395,
13,
198,
2,
49962,
739,
262,
17168,
13789,
13,
4091,
13789,
13,
14116,
287,
262,
1628,
6808,
329,
198,
2,
5964,
1321,
13,
198,
2,
198,
2,
6127,
7560,
416,
5413,
357,
49,
8,
11160,
19452,
6127,
35986,
13,
198,
2,
19179,
743,
2728,
11491,
4069,
290,
481,
307,
2626,
611,
262,
2438,
318,
198,
2,
16935,
515,
13,
198,
2,
16529,
35937,
198,
198,
11748,
334,
27112,
198,
6738,
13845,
2118,
13,
79,
541,
4470,
1330,
20985,
27369,
31077,
198,
6738,
13845,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
1330,
10130,
12331,
198,
6738,
13845,
2118,
13,
30393,
278,
1330,
37491,
3185,
49252,
11,
1400,
39176,
278,
198,
6738,
13845,
2118,
1031,
495,
13,
30393,
278,
13,
1670,
62,
30393,
278,
1330,
5923,
7378,
692,
278,
198,
198,
6738,
11485,
1330,
4981,
628,
198,
4871,
10933,
43076,
18843,
602,
7,
15252,
2599,
198,
220,
220,
220,
37227,
23044,
43076,
18843,
602,
4560,
13,
628,
220,
220,
220,
1058,
17143,
5456,
25,
20985,
329,
2139,
7007,
13,
198,
220,
220,
220,
1058,
17143,
4566,
25,
28373,
286,
2139,
5456,
13,
198,
220,
220,
220,
1058,
17143,
11389,
7509,
25,
1052,
2134,
2746,
11389,
7509,
13,
198,
220,
220,
220,
1058,
17143,
748,
48499,
7509,
25,
1052,
2134,
2746,
748,
48499,
7509,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
4981,
796,
4981,
628,
220,
220,
220,
825,
1351,
62,
8726,
62,
83,
853,
1039,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
257,
1351,
286,
2499,
43076,
543,
262,
1459,
2836,
468,
18382,
198,
220,
220,
220,
220,
220,
220,
220,
18850,
290,
389,
407,
3917,
351,
281,
22134,
3834,
33584,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
14569,
7390,
11507,
287,
262,
8799,
75,
318,
9514,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1351,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
11280,
21745,
60,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
3070,
12,
1238,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
4868,
62,
8726,
62,
83,
853,
1039,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
1136,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
58,
11280,
21745,
60,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
62,
8726,
62,
83,
853,
1039,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
8726,
51,
853,
1039,
6,
92,
628,
220,
220,
220,
825,
651,
62,
15952,
2611,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
262,
32815,
329,
257,
1813,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
5972,
30437,
44573,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
11140,
3855,
27054,
2611,
31077,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
18243,
3855,
27054,
2611,
31077,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
3070,
12,
1238,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
1136,
62,
15952,
2611,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
7353,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
18243,
3855,
27054,
2611,
31077,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
651,
62,
15952,
2611,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
15952,
2611,
6,
92,
628,
198,
220,
220,
220,
825,
651,
62,
12947,
62,
43420,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
10007,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
13985,
28,
17821,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
45135,
257,
2989,
329,
257,
1813,
44573,
13,
383,
2882,
481,
3994,
281,
4686,
198,
220,
220,
220,
220,
220,
220,
220,
284,
2610,
262,
2989,
13,
11787,
460,
779,
262,
4686,
284,
3278,
262,
2989,
3722,
290,
198,
220,
220,
220,
220,
220,
220,
220,
651,
262,
1336,
2989,
1255,
1568,
611,
262,
2989,
2753,
890,
640,
284,
198,
220,
220,
220,
220,
220,
220,
220,
5461,
13,
764,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
5972,
30437,
44573,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10007,
25,
383,
10007,
2672,
284,
12260,
257,
2989,
12405,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10007,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
18243,
48944,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
383,
3278,
263,
1441,
2099,
318,
20985,
27369,
31077,
11,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1277,
2882,
7848,
262,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13985,
25,
6407,
329,
5923,
7378,
692,
278,
11,
10352,
329,
645,
13985,
11,
393,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
13985,
2134,
329,
2614,
13985,
4811,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
4554,
286,
37491,
3185,
49252,
326,
5860,
11140,
25468,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
220,
393,
20985,
27369,
31077,
27,
18243,
25468,
31077,
29,
611,
8246,
855,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
18243,
25468,
31077,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
93,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
18243,
25468,
31077,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8246,
62,
20274,
796,
2116,
13557,
1136,
62,
12947,
62,
43420,
62,
36733,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
8094,
62,
3672,
28,
31092,
62,
8094,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44573,
62,
3672,
28,
5225,
10223,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
28,
17143,
7307,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2183,
62,
50145,
28,
23144,
62,
50145,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8246,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
27184,
62,
11250,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
300,
305,
62,
40850,
796,
4905,
62,
11250,
13,
1136,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6511,
62,
20270,
62,
27184,
62,
48678,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
6511,
62,
20270,
62,
27184,
62,
48678,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13985,
318,
6407,
25,
13985,
62,
24396,
796,
5923,
7378,
692,
278,
7,
75,
305,
62,
40850,
11,
12429,
27184,
62,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
13985,
318,
10352,
25,
13985,
62,
24396,
796,
1400,
39176,
278,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
13985,
62,
24396,
796,
13985,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
37491,
3185,
49252,
7,
944,
13557,
16366,
11,
8246,
62,
20274,
11,
651,
62,
6511,
62,
20270,
62,
22915,
11,
13985,
62,
24396,
8,
198,
220,
220,
220,
651,
62,
12947,
62,
43420,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
12947,
6,
92,
628,
220,
220,
220,
825,
4296,
62,
12947,
62,
43420,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
4686,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
6153,
2989,
2482,
329,
257,
1813,
2989,
12405,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
5972,
30437,
44573,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4686,
25,
383,
4686,
286,
262,
2989,
326,
481,
423,
2482,
6153,
13,
921,
198,
220,
220,
220,
220,
220,
220,
220,
220,
460,
651,
262,
4686,
422,
262,
2882,
286,
262,
3497,
25468,
869,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
4686,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
11140,
25468,
31077,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
18243,
25468,
31077,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
3070,
12,
1238,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
19119,
62,
12947,
62,
43420,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
312,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
312,
1600,
4686,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
7353,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
18243,
25468,
31077,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
4296,
62,
12947,
62,
43420,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
12947,
14,
90,
312,
92,
6,
92,
628,
198,
220,
220,
220,
825,
35714,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
3084,
11,
16628,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
13985,
28,
17821,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
30026,
3212,
1366,
287,
281,
5972,
30437,
44573,
416,
257,
900,
286,
2836,
12,
23211,
198,
220,
220,
220,
220,
220,
220,
220,
16628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
5972,
30437,
44573,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3084,
25,
8655,
422,
543,
284,
35714,
1366,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3084,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
383,
900,
286,
15180,
290,
16628,
357,
421,
10640,
8,
284,
1057,
625,
198,
220,
220,
220,
220,
220,
220,
220,
220,
606,
284,
35714,
262,
7186,
1366,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
16628,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
30026,
469,
25842,
11928,
1010,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
383,
3278,
263,
1441,
2099,
318,
20985,
27369,
31077,
11,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1277,
2882,
7848,
262,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13985,
25,
6407,
329,
5923,
7378,
692,
278,
11,
10352,
329,
645,
13985,
11,
393,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
13985,
2134,
329,
2614,
13985,
4811,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
4554,
286,
37491,
3185,
49252,
326,
5860,
2134,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
20985,
27369,
31077,
27,
15252,
29,
611,
8246,
855,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
15252,
60,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
93,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
58,
15252,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8246,
62,
20274,
796,
2116,
13557,
14225,
469,
62,
36733,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
8094,
62,
3672,
28,
31092,
62,
8094,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44573,
62,
3672,
28,
5225,
10223,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3084,
28,
11487,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16628,
28,
10379,
1010,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2183,
62,
50145,
28,
23144,
62,
50145,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8246,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
27184,
62,
11250,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
300,
305,
62,
40850,
796,
4905,
62,
11250,
13,
1136,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6511,
62,
20270,
62,
27184,
62,
48678,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
6511,
62,
20270,
62,
27184,
62,
48678,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13985,
318,
6407,
25,
13985,
62,
24396,
796,
5923,
7378,
692,
278,
7,
75,
305,
62,
40850,
11,
12429,
27184,
62,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
13985,
318,
10352,
25,
13985,
62,
24396,
796,
1400,
39176,
278,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
13985,
62,
24396,
796,
13985,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
37491,
3185,
49252,
7,
944,
13557,
16366,
11,
8246,
62,
20274,
11,
651,
62,
6511,
62,
20270,
62,
22915,
11,
13985,
62,
24396,
8,
198,
220,
220,
220,
35714,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
38,
14459,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
14225,
469,
6,
92,
628,
220,
220,
220,
825,
15560,
62,
32683,
62,
8002,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
4430,
62,
8002,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7279,
2977,
281,
4430,
2353,
329,
257,
1813,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4430,
62,
8002,
62,
3672,
25,
383,
1438,
286,
262,
4430,
2353,
284,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
10058,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
4430,
62,
8002,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6045,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
393,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
40223,
62,
32683,
62,
8002,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32683,
11869,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
32683,
62,
8002,
62,
3672,
1600,
4430,
62,
8002,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
7353,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
14202,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
198,
220,
220,
220,
15560,
62,
32683,
62,
8002,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
32683,
47,
4595,
14,
90,
32683,
11869,
5376,
92,
14,
48893,
6,
92,
628,
220,
220,
220,
825,
7139,
62,
32683,
62,
8002,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
4430,
62,
8002,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4834,
2977,
281,
4430,
2353,
329,
257,
1813,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4430,
62,
8002,
62,
3672,
25,
383,
1438,
286,
262,
4430,
2353,
284,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
9343,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
4430,
62,
8002,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6045,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
393,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
21633,
62,
32683,
62,
8002,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32683,
11869,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
32683,
62,
8002,
62,
3672,
1600,
4430,
62,
8002,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
7353,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
14202,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
198,
220,
220,
220,
7139,
62,
32683,
62,
8002,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
32683,
47,
4595,
14,
90,
32683,
11869,
5376,
92,
14,
36695,
6,
92,
628,
220,
220,
220,
825,
1351,
62,
32683,
62,
32377,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
43,
1023,
477,
262,
4430,
15186,
1744,
290,
1771,
484,
389,
9343,
198,
220,
220,
220,
220,
220,
220,
220,
393,
10058,
329,
257,
1813,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1351,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
1351,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
5317,
3480,
11869,
60,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
4868,
62,
32683,
62,
32377,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
1136,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
58,
5317,
3480,
11869,
60,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
62,
32683,
62,
32377,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
32683,
47,
4595,
6,
92,
628,
220,
220,
220,
825,
651,
62,
28710,
62,
13083,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
262,
4888,
8251,
329,
257,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
39403,
40729,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
2484,
1144,
40729,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
1136,
62,
28710,
62,
13083,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
3829,
11,
949,
62,
13664,
28,
16,
11,
3912,
28,
81,
6,
61,
58,
12,
59,
86,
59,
13557,
59,
38016,
15437,
10,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
7353,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
2484,
1144,
40729,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
651,
62,
28710,
62,
13083,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
28710,
40729,
6,
92,
628,
220,
220,
220,
825,
1351,
62,
385,
1095,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
257,
1351,
286,
8748,
20731,
329,
257,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
383,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
41313,
588,
4554,
286,
29566,
9171,
1173,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
28350,
9171,
1173,
47,
1886,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
28350,
9171,
1173,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2935,
48499,
1096,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
4981,
13,
28350,
9171,
1173,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
11600,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
4981,
13,
28350,
9171,
1173,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
11,
13639,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
62,
385,
1095,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
385,
1095,
6,
92,
628,
220,
220,
220,
825,
1351,
62,
27604,
62,
24432,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
257,
1351,
286,
4542,
2628,
5884,
284,
257,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
383,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
41313,
588,
4554,
286,
8549,
13247,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
48032,
13247,
47,
1886,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
48032,
13247,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2935,
48499,
1096,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
4981,
13,
48032,
13247,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
11600,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
4981,
13,
48032,
13247,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
11,
13639,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
62,
27604,
62,
24432,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
14,
27604,
38,
14459,
6,
92,
628,
220,
220,
220,
825,
1351,
62,
1525,
62,
31092,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
2499,
43076,
287,
257,
8271,
1448,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
1438,
286,
262,
8271,
1448,
284,
651,
13,
383,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
318,
1339,
41246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
41313,
588,
4554,
286,
10933,
10223,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
47,
1886,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2935,
48499,
1096,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
4981,
13,
23044,
10223,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
11600,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
4981,
13,
23044,
10223,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
11,
13639,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
62,
1525,
62,
31092,
62,
8094,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
6,
92,
628,
220,
220,
220,
825,
1351,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
262,
2499,
43076,
287,
257,
14569,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
41313,
588,
4554,
286,
10933,
10223,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
47,
1886,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2935,
48499,
1096,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
4981,
13,
23044,
10223,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
11600,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
4981,
13,
23044,
10223,
47,
1886,
7,
32538,
62,
79,
3039,
11,
2116,
13557,
8906,
48499,
1096,
13,
45841,
3976,
11,
13639,
62,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
1351,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
6,
92,
628,
198,
220,
220,
220,
825,
2251,
62,
273,
62,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
10007,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
13985,
28,
17821,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16447,
393,
4296,
257,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
8271,
1448,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
383,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10007,
25,
383,
10007,
2672,
284,
2251,
393,
4296,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10007,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
383,
3278,
263,
1441,
2099,
318,
20985,
27369,
31077,
11,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1277,
2882,
7848,
262,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13985,
25,
6407,
329,
5923,
7378,
692,
278,
11,
10352,
329,
645,
13985,
11,
393,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
13985,
2134,
329,
2614,
13985,
4811,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1052,
4554,
286,
37491,
3185,
49252,
326,
5860,
10933,
10223,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
20985,
27369,
31077,
27,
23044,
10223,
29,
611,
8246,
855,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
1031,
495,
13,
1031,
495,
62,
27184,
13,
26903,
495,
32180,
39176,
263,
58,
93,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
58,
93,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8246,
62,
20274,
796,
2116,
13557,
17953,
62,
273,
62,
19119,
62,
36733,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
8094,
62,
3672,
28,
31092,
62,
8094,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44573,
62,
3672,
28,
5225,
10223,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10007,
28,
17143,
7307,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2183,
62,
50145,
28,
23144,
62,
50145,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8246,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
27184,
62,
11250,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
300,
305,
62,
40850,
796,
4905,
62,
11250,
13,
1136,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6511,
62,
20270,
62,
27184,
62,
48678,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
13,
6511,
62,
20270,
62,
27184,
62,
48678,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
13985,
318,
6407,
25,
13985,
62,
24396,
796,
5923,
7378,
692,
278,
7,
75,
305,
62,
40850,
11,
12429,
27184,
62,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
13985,
318,
10352,
25,
13985,
62,
24396,
796,
1400,
39176,
278,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
13985,
62,
24396,
796,
13985,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
37491,
3185,
49252,
7,
944,
13557,
16366,
11,
8246,
62,
20274,
11,
651,
62,
6511,
62,
20270,
62,
22915,
11,
13985,
62,
24396,
8,
198,
220,
220,
220,
2251,
62,
273,
62,
19119,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
6,
92,
628,
220,
220,
220,
825,
12233,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5005,
40676,
257,
44573,
4554,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
8271,
1448,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
6045,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
6045,
393,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
33678,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
33678,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
11,
26956,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
14202,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
198,
220,
220,
220,
12233,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
6,
92,
628,
220,
220,
220,
825,
651,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38,
1039,
257,
44573,
4554,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
8271,
1448,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
6530,
286,
262,
5972,
30437,
10933,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
10933,
10223,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
1136,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
1136,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
25927,
11,
13639,
62,
17143,
7307,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
23044,
10223,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
651,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
6,
92,
628,
220,
220,
220,
825,
4296,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
8271,
62,
8094,
62,
3672,
11,
44573,
62,
3672,
11,
10007,
11,
2183,
62,
50145,
28,
14202,
11,
8246,
28,
25101,
11,
12429,
27184,
62,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4933,
19581,
257,
44573,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8271,
62,
8094,
62,
3672,
25,
383,
8271,
1448,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8271,
62,
8094,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
44573,
62,
3672,
25,
383,
1438,
286,
262,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
44573,
62,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10007,
25,
383,
10007,
2672,
284,
8529,
257,
44573,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10007,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8633,
2183,
62,
50145,
25,
24697,
326,
481,
307,
2087,
284,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
20512,
8246,
25,
5860,
262,
1277,
2882,
7848,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
2882,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4905,
62,
11250,
25,
1058,
5420,
25,
63,
32180,
8398,
198,
220,
220,
220,
220,
220,
220,
220,
220,
23170,
1460,
27,
907,
2118,
25,
25811,
1640,
3575,
602,
29,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
10933,
10223,
393,
20985,
27369,
31077,
611,
8246,
28,
7942,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
5299,
1031,
495,
13,
11296,
16762,
13,
6404,
38200,
14094,
13,
27530,
13,
23044,
10223,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5299,
907,
2118,
13,
79,
541,
4470,
13,
11792,
27369,
31077,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
25,
1058,
4871,
25,
63,
18839,
12331,
27,
907,
2118,
1031,
495,
13,
1031,
495,
62,
1069,
11755,
13,
18839,
12331,
29,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
40391,
62,
9641,
796,
366,
4626,
12,
1157,
12,
486,
12,
3866,
1177,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13,
19119,
13,
38993,
17816,
6371,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
18982,
62,
853,
2886,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
31092,
13247,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
31092,
62,
8094,
62,
3672,
1600,
8271,
62,
8094,
62,
3672,
11,
705,
2536,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5225,
10223,
5376,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
5225,
10223,
62,
3672,
1600,
44573,
62,
3672,
11,
705,
2536,
3256,
3509,
62,
13664,
28,
5066,
11,
949,
62,
13664,
28,
19,
11,
3912,
28,
81,
6,
61,
58,
32,
12,
57,
64,
12,
89,
15,
12,
24,
7131,
32,
12,
57,
64,
12,
89,
15,
12,
24,
12,
48688,
58,
32,
12,
57,
64,
12,
89,
15,
12,
24,
60,
3,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7266,
33584,
7390,
10354,
2116,
13557,
46911,
1096,
13,
6371,
7203,
944,
13,
11250,
13,
7266,
33584,
62,
312,
1600,
2116,
13,
11250,
13,
7266,
33584,
62,
312,
11,
705,
2536,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
2116,
13557,
16366,
13,
18982,
62,
6371,
7,
6371,
11,
12429,
6978,
62,
18982,
62,
853,
2886,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
10007,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
17143,
7307,
17816,
15042,
12,
9641,
20520,
796,
2116,
13557,
46911,
1096,
13,
22766,
7203,
15042,
62,
9641,
1600,
40391,
62,
9641,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
24697,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
19746,
12,
6030,
20520,
796,
705,
31438,
14,
17752,
26,
34534,
316,
28,
40477,
12,
23,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
8612,
378,
62,
16366,
62,
25927,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
87,
12,
907,
12,
16366,
12,
25927,
12,
312,
20520,
796,
965,
7,
12303,
312,
13,
12303,
312,
16,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2183,
62,
50145,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
13,
19119,
7,
23144,
62,
50145,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
11250,
13,
13635,
62,
16129,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
62,
17143,
7307,
17816,
13635,
12,
16129,
20520,
796,
2116,
13557,
46911,
1096,
13,
25677,
7203,
944,
13,
11250,
13,
13635,
62,
16129,
1600,
2116,
13,
11250,
13,
13635,
62,
16129,
11,
705,
2536,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
1767,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
62,
11299,
796,
2116,
13557,
46911,
1096,
13,
2618,
7,
17143,
7307,
11,
705,
23044,
10223,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
28407,
290,
3758,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
2581,
796,
2116,
13557,
16366,
13,
17147,
7,
6371,
11,
12405,
62,
17143,
7307,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13557,
16366,
13,
21280,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2581,
11,
13639,
62,
17143,
7307,
11,
1767,
62,
11299,
11,
4269,
28,
25101,
11,
12429,
27184,
62,
11250,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
407,
287,
685,
2167,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
796,
10130,
12331,
7,
26209,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
13,
25927,
62,
312,
796,
2882,
13,
50145,
13,
1136,
10786,
87,
12,
907,
12,
25927,
12,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1033,
628,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2882,
13,
13376,
62,
8189,
6624,
939,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
748,
48499,
1143,
796,
2116,
13557,
8906,
48499,
1096,
10786,
23044,
10223,
3256,
2882,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
8246,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
1831,
62,
26209,
796,
20985,
27369,
31077,
7,
8906,
48499,
1143,
11,
2882,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5456,
62,
1831,
62,
26209,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
748,
48499,
1143,
198,
220,
220,
220,
4296,
13,
38993,
796,
1391,
6,
6371,
10354,
31051,
7266,
12048,
507,
14,
90,
7266,
33584,
7390,
92,
14,
31092,
24432,
14,
90,
31092,
13247,
5376,
92,
14,
15234,
4157,
14,
15905,
13,
18843,
864,
20376,
2337,
14,
5225,
43076,
14,
90,
5225,
10223,
5376,
92,
6,
92,
198
] | 2.596222 | 17,522 |
import numpy as np
import torch
| [
11748,
299,
32152,
355,
45941,
220,
198,
11748,
28034,
628,
628
] | 3.272727 | 11 |
"""A command line interface that exposes softlearning examples to user.
run_example_* methods, which run the experiments by invoking
`tune.run_experiments` function.
"""
import click
import sys
sys.path.append('./')
from examples.instrument import run_example_local
@click.group()
@cli.command(
name='run_local',
context_settings={'ignore_unknown_options': True})
@click.argument("example_module_name", required=True, type=str)
@click.argument('example_argv', nargs=-1, type=click.UNPROCESSED)
cli.add_command(run_example_local_cmd)
if __name__ == "__main__":
main()
| [
37811,
32,
3141,
1627,
7071,
326,
32142,
2705,
40684,
6096,
284,
2836,
13,
198,
198,
5143,
62,
20688,
62,
9,
5050,
11,
543,
1057,
262,
10256,
416,
39744,
198,
220,
220,
220,
4600,
83,
1726,
13,
5143,
62,
23100,
6800,
63,
2163,
13,
198,
37811,
198,
198,
11748,
3904,
198,
198,
11748,
25064,
198,
17597,
13,
6978,
13,
33295,
7,
4458,
14,
11537,
198,
198,
6738,
6096,
13,
259,
43872,
1330,
1057,
62,
20688,
62,
12001,
628,
198,
31,
12976,
13,
8094,
3419,
628,
198,
31,
44506,
13,
21812,
7,
198,
220,
220,
220,
1438,
11639,
5143,
62,
12001,
3256,
198,
220,
220,
220,
4732,
62,
33692,
34758,
6,
46430,
62,
34680,
62,
25811,
10354,
6407,
30072,
198,
31,
12976,
13,
49140,
7203,
20688,
62,
21412,
62,
3672,
1600,
2672,
28,
17821,
11,
2099,
28,
2536,
8,
198,
31,
12976,
13,
49140,
10786,
20688,
62,
853,
85,
3256,
299,
22046,
10779,
16,
11,
2099,
28,
12976,
13,
4944,
4805,
4503,
7597,
1961,
8,
628,
198,
44506,
13,
2860,
62,
21812,
7,
5143,
62,
20688,
62,
12001,
62,
28758,
8,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.994975 | 199 |
# Generated by Django 3.2.5 on 2021-07-31 21:18
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
17,
13,
20,
319,
33448,
12,
2998,
12,
3132,
2310,
25,
1507,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
#!/usr/bin/env python
# Python imports
import collections
# Project imports
import util
import util_date
NAMESPACE = 'LivingResources'
DATE_RANGE = util_date.DATES[NAMESPACE]
"""
LivingResources data has 3 top-level categories (programs) -- Tidal Plankton Data, Tidal Benthic
Data, and Nontidal Benthic Data.
"""
# https://data.chesapeakebay.net/api.json/LivingResources/Programs
programs = util.download_and_jsonify(NAMESPACE, 'Programs')
program_ids = sorted([d['ProgramId'] for d in programs])
# [{
# "ProgramId": "TidalPlankton",
# "ProgramIdentifier": "TPD",
# "ProgramName": "Tidal Plankton Data"
# }, {
# "ProgramId": "TidalBenthic",
# "ProgramIdentifier": "TBD",
# "ProgramName": "Tidal Benthic Data"
# }, {
# "ProgramId": "NontidalBenthic",
# "ProgramIdentifier": "NBD",
# "ProgramName": "Nontidal Benthic Data"
# }]
# Each of the 3 programs requires some study to understand and download properly. I doubt
# they'll add/delete/change programs, but if they do, this code might break. That being the case, I
# check here to ensure that the programs are what I expect them to be, and fail loudly if not.
expected_program_ids = sorted(('TidalPlankton', 'TidalBenthic', 'NontidalBenthic'))
if program_ids != expected_program_ids:
print('Received programs: ' + ', '.join(program_ids))
print('Expected programs: ' + ', '.join(expected_program_ids))
raise ValueError('Unexpected or missing program(s)')
# Each of the 3 programs has a number of different data types. They all behave the same, except
# for /TidalPlankton/Station which requires special handling. I handle it here.
# https://data.chesapeakebay.net/api.json/LivingResources/TidalPlankton/GeographicalAttributes
geographical_types = util.download_and_jsonify(NAMESPACE, 'TidalPlankton', 'GeographicalAttributes')
# The last two elements of the DataTypes URL seem backwards to me but that's what they are.
# https://data.chesapeakebay.net/api.json/LivingResources/DataTypes/TidalPlankton
data_types = util.download_and_jsonify(NAMESPACE, 'DataTypes', 'TidalPlankton')
data_type_ids = [d['DataTypeId'] for d in data_types]
# For TidalPlankton, geographical_types is a dicts of lists keyed by data type. Simplify.
# ref: LivingResources.js (line 67)
temp_geographical_types = collections.defaultdict(list)
for data_type_id in data_type_ids:
temp_geographical_types[data_type_id] = [d['GeoTypeId'] for
d in geographical_types[data_type_id]]
geographical_types = temp_geographical_types
# geographical_types is now a dict like this --
# {'MonitorEvent': ['HUC8', 'HUC12', 'FIPS', 'CBSeg2003', 'Station'],
# 'Reported': ['HUC8', 'HUC12', 'FIPS', 'CBSeg2003', 'Station'],
# 'Station': ['HUC8', 'HUC12', 'FIPS', 'CBSeg2003', 'SegmentShed2009', 'Station']}
# First handle program == TidalPlankton, geo type == Station
for geographical_type_id in geographical_types['Station']:
attributes = util.download_and_jsonify(NAMESPACE, 'TidalPlankton', 'Station',
geographical_type_id)
attribute_ids = util.extract_attribute_ids(geographical_type_id, attributes)
attribute_ids = map(str, attribute_ids)
if geographical_type_id == 'FIPS':
# FIPS works differently than other geo types (why?) and requires POSTing data rather
# than simple GETs.
for attribute_id in attribute_ids:
# e.g. https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/Station/FIPS
util.post_single_attribute_id(attribute_id, NAMESPACE, 'TidalPlankton', 'Station',
geographical_type_id)
else:
# e.g. https://data.chesapeakebay.net/api.json/LivingResources/TidalPlankton/Station/HUC8/
for attribute_id in attribute_ids:
# e.g. https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/Station/HUC8/20
util.download(NAMESPACE, 'TidalPlankton', 'Station', geographical_type_id, attribute_id)
# Remove Station since it was handled above
data_type_ids = [data_type_id for data_type_id in data_type_ids if data_type_id != 'Station']
# https://data.chesapeakebay.net/api.json/LivingResources/Projects/TidalPlankton
projects = util.download_and_jsonify(NAMESPACE, 'Projects', 'TidalPlankton')
project_ids = [str(d['ProjectId']) for d in projects]
# At this point, data_type_ids should be just ('MonitorEvent', 'Reported')
for data_type_id in data_type_ids:
for project_id in project_ids:
for geographical_type_id in geographical_types[data_type_id]:
# e.g. https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/MonitorEvent/1-16-1984/4-4-2017/9/HUC12
attributes = util.download_and_jsonify(NAMESPACE,
'TidalPlankton',
data_type_id,
DATE_RANGE.start.url_format,
DATE_RANGE.end.url_format,
project_id,
geographical_type_id)
attribute_ids = util.extract_attribute_ids(geographical_type_id, attributes)
attribute_ids = map(str, attribute_ids)
for attribute_id in attribute_ids:
# e.g. https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/MonitorEvent/1-16-1984/4-4-2017/9/HUC12/767
util.download(NAMESPACE,
'TidalPlankton',
data_type_id,
DATE_RANGE.start.url_format,
DATE_RANGE.end.url_format,
project_id,
geographical_type_id,
attribute_id)
# OK, that takes care of all 3 TidalPlankton data types. Remove TidalPlankton since it's been
# handled.
program_ids = [program_id for program_id in program_ids if program_id != 'TidalPlankton']
# And now for the remaining programs. At this point, program_ids should be just this --
# ('NontidalBenthic', 'TidalBenthic')
for program_id in program_ids:
print('Starting program {}...'.format(program_id))
# e.g. https://data.chesapeakebay.net/api.json/LivingResources/DataTypes/TidalBenthic
data_types = util.download_and_jsonify(NAMESPACE, 'DataTypes', program_id)
data_type_ids = [d['DataTypeId'] for d in data_types]
# e.g. https://data.chesapeakebay.net/api.json/LivingResources/NontidalBenthic/GeographicalAttributes
geographical_types = util.download_and_jsonify(NAMESPACE, program_id, 'GeographicalAttributes')
geographical_type_ids = [d['GeoTypeId'] for d in geographical_types]
for data_type_id in data_type_ids:
print('Starting program {}, data type {}...'.format(program_id, data_type_id))
# e.g. https://data.chesapeakebay.net/api.json/LivingResources/Projects/TidalBenthic
projects = util.download_and_jsonify(NAMESPACE, 'Projects', program_id)
project_ids = [str(d['ProjectId']) for d in projects]
for project_id in project_ids:
params = (program_id, data_type_id, project_id)
print('Starting program {}, data type {}, project {}...'.format(*params))
for geographical_type_id in geographical_type_ids:
params = (program_id, data_type_id, project_id, geographical_type_id)
print('Starting program {}, data type {}, project {}, geo type {}...'.format(*params))
# geographical_type_id is something like HUC8, FIPS, etc.
# https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/MonitorEvent/4-4-2012/4-4-2017/17/HUC12
attributes = util.download_and_jsonify(NAMESPACE,
program_id,
data_type_id,
DATE_RANGE.start.url_format,
DATE_RANGE.end.url_format,
project_id,
geographical_type_id)
attribute_ids = util.extract_attribute_ids(geographical_type_id, attributes)
attribute_ids = map(str, attribute_ids)
for attribute_id in attribute_ids:
if (NAMESPACE == 'LivingResources') and (program_id == 'TidalBenthic') and \
(data_type_id == 'WaterQuality') and (geographical_type_id == 'Station'):
# This is broken on the server side, skip for now.
pass
else:
# e.g. https://data.chesapeakebay.net/api.JSON/LivingResources/TidalPlankton/MonitorEvent/4-4-2012/4-4-2017/17/HUC12/781
util.download(NAMESPACE,
program_id,
data_type_id,
DATE_RANGE.start.url_format,
DATE_RANGE.end.url_format,
project_id,
geographical_type_id,
attribute_id)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
11361,
17944,
198,
11748,
17268,
198,
198,
2,
4935,
17944,
198,
11748,
7736,
198,
11748,
7736,
62,
4475,
198,
198,
45,
29559,
47,
11598,
796,
705,
36376,
33236,
6,
198,
198,
35,
6158,
62,
49,
27746,
796,
7736,
62,
4475,
13,
35,
29462,
58,
45,
29559,
47,
11598,
60,
198,
198,
37811,
198,
36376,
33236,
1366,
468,
513,
1353,
12,
5715,
9376,
357,
23065,
82,
8,
1377,
309,
11624,
1345,
962,
1122,
6060,
11,
309,
11624,
347,
7944,
291,
198,
6601,
11,
290,
399,
756,
11624,
347,
7944,
291,
6060,
13,
198,
37811,
198,
198,
2,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
15167,
82,
198,
23065,
82,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
15167,
82,
11537,
198,
23065,
62,
2340,
796,
23243,
26933,
67,
17816,
15167,
7390,
20520,
329,
288,
287,
4056,
12962,
198,
2,
685,
90,
198,
2,
220,
220,
220,
220,
366,
15167,
7390,
1298,
366,
51,
11624,
3646,
962,
1122,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
33234,
7483,
1298,
366,
51,
5760,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
5376,
1298,
366,
51,
11624,
1345,
962,
1122,
6060,
1,
198,
2,
8964,
1391,
198,
2,
220,
220,
220,
220,
366,
15167,
7390,
1298,
366,
51,
11624,
33,
7944,
291,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
33234,
7483,
1298,
366,
51,
14529,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
5376,
1298,
366,
51,
11624,
347,
7944,
291,
6060,
1,
198,
2,
8964,
1391,
198,
2,
220,
220,
220,
220,
366,
15167,
7390,
1298,
366,
45,
756,
11624,
33,
7944,
291,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
33234,
7483,
1298,
366,
45,
14529,
1600,
198,
2,
220,
220,
220,
220,
366,
15167,
5376,
1298,
366,
45,
756,
11624,
347,
7944,
291,
6060,
1,
198,
2,
1782,
60,
198,
198,
2,
5501,
286,
262,
513,
4056,
4433,
617,
2050,
284,
1833,
290,
4321,
6105,
13,
314,
4719,
198,
2,
484,
1183,
751,
14,
33678,
14,
3803,
4056,
11,
475,
611,
484,
466,
11,
428,
2438,
1244,
2270,
13,
1320,
852,
262,
1339,
11,
314,
198,
2,
2198,
994,
284,
4155,
326,
262,
4056,
389,
644,
314,
1607,
606,
284,
307,
11,
290,
2038,
23112,
611,
407,
13,
198,
40319,
62,
23065,
62,
2340,
796,
23243,
7,
10786,
51,
11624,
3646,
962,
1122,
3256,
705,
51,
11624,
33,
7944,
291,
3256,
705,
45,
756,
11624,
33,
7944,
291,
6,
4008,
198,
361,
1430,
62,
2340,
14512,
2938,
62,
23065,
62,
2340,
25,
198,
220,
220,
220,
3601,
10786,
3041,
6471,
4056,
25,
705,
1343,
46083,
45302,
22179,
7,
23065,
62,
2340,
4008,
198,
220,
220,
220,
3601,
10786,
3109,
7254,
4056,
25,
705,
1343,
46083,
45302,
22179,
7,
40319,
62,
23065,
62,
2340,
4008,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
52,
42072,
393,
4814,
1430,
7,
82,
8,
11537,
198,
198,
2,
5501,
286,
262,
513,
4056,
468,
257,
1271,
286,
1180,
1366,
3858,
13,
1119,
477,
17438,
262,
976,
11,
2845,
198,
2,
329,
1220,
51,
11624,
3646,
962,
1122,
14,
12367,
543,
4433,
2041,
9041,
13,
314,
5412,
340,
994,
13,
198,
198,
2,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
10082,
17046,
29021,
198,
469,
17046,
62,
19199,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
51,
11624,
3646,
962,
1122,
3256,
705,
10082,
17046,
29021,
11537,
198,
2,
383,
938,
734,
4847,
286,
262,
6060,
31431,
10289,
1283,
16196,
284,
502,
475,
326,
338,
644,
484,
389,
13,
198,
2,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
6601,
31431,
14,
51,
11624,
3646,
962,
1122,
198,
7890,
62,
19199,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
6601,
31431,
3256,
705,
51,
11624,
3646,
962,
1122,
11537,
198,
7890,
62,
4906,
62,
2340,
796,
685,
67,
17816,
6601,
6030,
7390,
20520,
329,
288,
287,
1366,
62,
19199,
60,
198,
198,
2,
1114,
309,
11624,
3646,
962,
1122,
11,
27465,
62,
19199,
318,
257,
8633,
82,
286,
8341,
1994,
276,
416,
1366,
2099,
13,
45157,
1958,
13,
198,
2,
1006,
25,
13728,
33236,
13,
8457,
357,
1370,
8275,
8,
198,
29510,
62,
469,
17046,
62,
19199,
796,
17268,
13,
12286,
11600,
7,
4868,
8,
198,
1640,
1366,
62,
4906,
62,
312,
287,
1366,
62,
4906,
62,
2340,
25,
198,
220,
220,
220,
20218,
62,
469,
17046,
62,
19199,
58,
7890,
62,
4906,
62,
312,
60,
796,
685,
67,
17816,
10082,
78,
6030,
7390,
20520,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
287,
27465,
62,
19199,
58,
7890,
62,
4906,
62,
312,
11907,
198,
469,
17046,
62,
19199,
796,
20218,
62,
469,
17046,
62,
19199,
198,
198,
2,
27465,
62,
19199,
318,
783,
257,
8633,
588,
428,
1377,
198,
2,
220,
220,
220,
220,
1391,
6,
35479,
9237,
10354,
37250,
39,
9598,
23,
3256,
705,
39,
9598,
1065,
3256,
705,
11674,
3705,
3256,
705,
22923,
1533,
16088,
3256,
705,
12367,
6,
4357,
198,
2,
220,
220,
220,
220,
220,
705,
6207,
9741,
10354,
37250,
39,
9598,
23,
3256,
705,
39,
9598,
1065,
3256,
705,
11674,
3705,
3256,
705,
22923,
1533,
16088,
3256,
705,
12367,
6,
4357,
198,
2,
220,
220,
220,
220,
220,
705,
12367,
10354,
37250,
39,
9598,
23,
3256,
705,
39,
9598,
1065,
3256,
705,
11674,
3705,
3256,
705,
22923,
1533,
16088,
3256,
705,
41030,
434,
50,
704,
10531,
3256,
705,
12367,
20520,
92,
198,
198,
2,
3274,
5412,
1430,
6624,
309,
11624,
3646,
962,
1122,
11,
40087,
2099,
6624,
9327,
198,
1640,
27465,
62,
4906,
62,
312,
287,
27465,
62,
19199,
17816,
12367,
6,
5974,
198,
220,
220,
220,
12608,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
51,
11624,
3646,
962,
1122,
3256,
705,
12367,
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,
27465,
62,
4906,
62,
312,
8,
198,
220,
220,
220,
11688,
62,
2340,
796,
7736,
13,
2302,
974,
62,
42348,
62,
2340,
7,
469,
17046,
62,
4906,
62,
312,
11,
12608,
8,
198,
220,
220,
220,
11688,
62,
2340,
796,
3975,
7,
2536,
11,
11688,
62,
2340,
8,
198,
220,
220,
220,
611,
27465,
62,
4906,
62,
312,
6624,
705,
11674,
3705,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
18930,
3705,
2499,
10338,
621,
584,
40087,
3858,
357,
22850,
10091,
290,
4433,
24582,
278,
1366,
2138,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
621,
2829,
17151,
82,
13,
198,
220,
220,
220,
220,
220,
220,
220,
329,
11688,
62,
312,
287,
11688,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
12367,
14,
11674,
3705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7736,
13,
7353,
62,
29762,
62,
42348,
62,
312,
7,
42348,
62,
312,
11,
399,
29559,
47,
11598,
11,
705,
51,
11624,
3646,
962,
1122,
3256,
705,
12367,
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,
27465,
62,
4906,
62,
312,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
12367,
14,
39,
9598,
23,
14,
198,
220,
220,
220,
220,
220,
220,
220,
329,
11688,
62,
312,
287,
11688,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
12367,
14,
39,
9598,
23,
14,
1238,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7736,
13,
15002,
7,
45,
29559,
47,
11598,
11,
705,
51,
11624,
3646,
962,
1122,
3256,
705,
12367,
3256,
27465,
62,
4906,
62,
312,
11,
11688,
62,
312,
8,
628,
198,
2,
17220,
9327,
1201,
340,
373,
12118,
2029,
198,
7890,
62,
4906,
62,
2340,
796,
685,
7890,
62,
4906,
62,
312,
329,
1366,
62,
4906,
62,
312,
287,
1366,
62,
4906,
62,
2340,
611,
1366,
62,
4906,
62,
312,
14512,
705,
12367,
20520,
198,
198,
2,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
16775,
82,
14,
51,
11624,
3646,
962,
1122,
198,
42068,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
16775,
82,
3256,
705,
51,
11624,
3646,
962,
1122,
11537,
198,
16302,
62,
2340,
796,
685,
2536,
7,
67,
17816,
16775,
7390,
6,
12962,
329,
288,
287,
4493,
60,
198,
198,
2,
1629,
428,
966,
11,
1366,
62,
4906,
62,
2340,
815,
307,
655,
19203,
35479,
9237,
3256,
705,
6207,
9741,
11537,
198,
1640,
1366,
62,
4906,
62,
312,
287,
1366,
62,
4906,
62,
2340,
25,
198,
220,
220,
220,
329,
1628,
62,
312,
287,
1628,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
27465,
62,
4906,
62,
312,
287,
27465,
62,
19199,
58,
7890,
62,
4906,
62,
312,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
35479,
9237,
14,
16,
12,
1433,
12,
28296,
14,
19,
12,
19,
12,
5539,
14,
24,
14,
39,
9598,
1065,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12608,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
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,
705,
51,
11624,
3646,
962,
1122,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
6158,
62,
49,
27746,
13,
9688,
13,
6371,
62,
18982,
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,
360,
6158,
62,
49,
27746,
13,
437,
13,
6371,
62,
18982,
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,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27465,
62,
4906,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
2340,
796,
7736,
13,
2302,
974,
62,
42348,
62,
2340,
7,
469,
17046,
62,
4906,
62,
312,
11,
12608,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
2340,
796,
3975,
7,
2536,
11,
11688,
62,
2340,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
11688,
62,
312,
287,
11688,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
35479,
9237,
14,
16,
12,
1433,
12,
28296,
14,
19,
12,
19,
12,
5539,
14,
24,
14,
39,
9598,
1065,
14,
32059,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7736,
13,
15002,
7,
45,
29559,
47,
11598,
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,
705,
51,
11624,
3646,
962,
1122,
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,
1366,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
6158,
62,
49,
27746,
13,
9688,
13,
6371,
62,
18982,
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,
360,
6158,
62,
49,
27746,
13,
437,
13,
6371,
62,
18982,
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,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27465,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
312,
8,
198,
198,
2,
7477,
11,
326,
2753,
1337,
286,
477,
513,
309,
11624,
3646,
962,
1122,
1366,
3858,
13,
17220,
309,
11624,
3646,
962,
1122,
1201,
340,
338,
587,
198,
2,
12118,
13,
198,
23065,
62,
2340,
796,
685,
23065,
62,
312,
329,
1430,
62,
312,
287,
1430,
62,
2340,
611,
1430,
62,
312,
14512,
705,
51,
11624,
3646,
962,
1122,
20520,
198,
2,
843,
783,
329,
262,
5637,
4056,
13,
1629,
428,
966,
11,
1430,
62,
2340,
815,
307,
655,
428,
1377,
198,
2,
220,
220,
220,
19203,
45,
756,
11624,
33,
7944,
291,
3256,
705,
51,
11624,
33,
7944,
291,
11537,
198,
1640,
1430,
62,
312,
287,
1430,
62,
2340,
25,
198,
220,
220,
220,
3601,
10786,
22851,
1430,
23884,
986,
4458,
18982,
7,
23065,
62,
312,
4008,
198,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
6601,
31431,
14,
51,
11624,
33,
7944,
291,
198,
220,
220,
220,
1366,
62,
19199,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
6601,
31431,
3256,
1430,
62,
312,
8,
198,
220,
220,
220,
1366,
62,
4906,
62,
2340,
796,
685,
67,
17816,
6601,
6030,
7390,
20520,
329,
288,
287,
1366,
62,
19199,
60,
628,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
45,
756,
11624,
33,
7944,
291,
14,
10082,
17046,
29021,
198,
220,
220,
220,
27465,
62,
19199,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
1430,
62,
312,
11,
705,
10082,
17046,
29021,
11537,
198,
220,
220,
220,
27465,
62,
4906,
62,
2340,
796,
685,
67,
17816,
10082,
78,
6030,
7390,
20520,
329,
288,
287,
27465,
62,
19199,
60,
628,
220,
220,
220,
329,
1366,
62,
4906,
62,
312,
287,
1366,
62,
4906,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
22851,
1430,
1391,
5512,
1366,
2099,
23884,
986,
4458,
18982,
7,
23065,
62,
312,
11,
1366,
62,
4906,
62,
312,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
17752,
14,
36376,
33236,
14,
16775,
82,
14,
51,
11624,
33,
7944,
291,
198,
220,
220,
220,
220,
220,
220,
220,
4493,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
11,
705,
16775,
82,
3256,
1430,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
2340,
796,
685,
2536,
7,
67,
17816,
16775,
7390,
6,
12962,
329,
288,
287,
4493,
60,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1628,
62,
312,
287,
1628,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
796,
357,
23065,
62,
312,
11,
1366,
62,
4906,
62,
312,
11,
1628,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
22851,
1430,
1391,
5512,
1366,
2099,
1391,
5512,
1628,
23884,
986,
4458,
18982,
46491,
37266,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
27465,
62,
4906,
62,
312,
287,
27465,
62,
4906,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42287,
796,
357,
23065,
62,
312,
11,
1366,
62,
4906,
62,
312,
11,
1628,
62,
312,
11,
27465,
62,
4906,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
22851,
1430,
1391,
5512,
1366,
2099,
1391,
5512,
1628,
1391,
5512,
40087,
2099,
23884,
986,
4458,
18982,
46491,
37266,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
27465,
62,
4906,
62,
312,
318,
1223,
588,
367,
9598,
23,
11,
18930,
3705,
11,
3503,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
35479,
9237,
14,
19,
12,
19,
12,
6999,
14,
19,
12,
19,
12,
5539,
14,
1558,
14,
39,
9598,
1065,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12608,
796,
7736,
13,
15002,
62,
392,
62,
17752,
1958,
7,
45,
29559,
47,
11598,
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,
1430,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
6158,
62,
49,
27746,
13,
9688,
13,
6371,
62,
18982,
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,
360,
6158,
62,
49,
27746,
13,
437,
13,
6371,
62,
18982,
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,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27465,
62,
4906,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
2340,
796,
7736,
13,
2302,
974,
62,
42348,
62,
2340,
7,
469,
17046,
62,
4906,
62,
312,
11,
12608,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
2340,
796,
3975,
7,
2536,
11,
11688,
62,
2340,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
11688,
62,
312,
287,
11688,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
45,
29559,
47,
11598,
6624,
705,
36376,
33236,
11537,
290,
357,
23065,
62,
312,
6624,
705,
51,
11624,
33,
7944,
291,
11537,
290,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
7890,
62,
4906,
62,
312,
6624,
705,
19184,
35013,
11537,
290,
357,
469,
17046,
62,
4906,
62,
312,
6624,
705,
12367,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
318,
5445,
319,
262,
4382,
1735,
11,
14267,
329,
783,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
304,
13,
70,
13,
3740,
1378,
7890,
13,
2052,
49528,
24406,
13,
3262,
14,
15042,
13,
40386,
14,
36376,
33236,
14,
51,
11624,
3646,
962,
1122,
14,
35479,
9237,
14,
19,
12,
19,
12,
6999,
14,
19,
12,
19,
12,
5539,
14,
1558,
14,
39,
9598,
1065,
14,
49703,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7736,
13,
15002,
7,
45,
29559,
47,
11598,
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,
1430,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
6158,
62,
49,
27746,
13,
9688,
13,
6371,
62,
18982,
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,
360,
6158,
62,
49,
27746,
13,
437,
13,
6371,
62,
18982,
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,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27465,
62,
4906,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11688,
62,
312,
8,
198
] | 2.159918 | 4,396 |
import csv
import json
from flask import Flask
from flask import Response
from flask import request
from flask import render_template
from flask.ext.triangle import Triangle
import data.database_commands as database_commands
app = Flask(__name__)
Triangle(app)
@app.route("/")
@app.route("/tweets")
# @app.route("/tweets")
# def root():
# handle = request.args.get('handle')
# tweets = database_commands.get_tweet_by_handle(handle)
# data = 'handle,timestamp,data_type,data_id,status,tweet_text<br>'
# for tweet in tweets:
# data += str(tweet.twitter_handle) + ","
# data += str(tweet.tweet_time) + ","
# data += str(tweet.data_type) + ","
# data += str(tweet.data_id) + ","
# data += str(tweet.status) + ","
# data += str(tweet.tweet_text)
# data += '<br>'
# return data
@app.route("/export")
if __name__ == '__main__':
app.run(
host= '0.0.0.0',
debug=True,
port=8080
)
| [
11748,
269,
21370,
198,
11748,
33918,
198,
6738,
42903,
1330,
46947,
198,
6738,
42903,
1330,
18261,
198,
6738,
42903,
1330,
2581,
198,
6738,
42903,
1330,
8543,
62,
28243,
198,
6738,
42903,
13,
2302,
13,
28461,
9248,
1330,
33233,
198,
11748,
1366,
13,
48806,
62,
9503,
1746,
355,
6831,
62,
9503,
1746,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
8,
198,
14824,
9248,
7,
1324,
8,
628,
198,
31,
1324,
13,
38629,
7203,
14,
4943,
628,
198,
31,
1324,
13,
38629,
7203,
14,
83,
732,
1039,
4943,
198,
198,
2,
2488,
1324,
13,
38629,
7203,
14,
83,
732,
1039,
4943,
198,
2,
825,
6808,
33529,
198,
2,
220,
220,
220,
220,
5412,
796,
2581,
13,
22046,
13,
1136,
10786,
28144,
11537,
198,
2,
220,
220,
220,
220,
12665,
796,
6831,
62,
9503,
1746,
13,
1136,
62,
83,
7277,
62,
1525,
62,
28144,
7,
28144,
8,
198,
2,
220,
220,
220,
220,
1366,
796,
705,
28144,
11,
16514,
27823,
11,
7890,
62,
4906,
11,
7890,
62,
312,
11,
13376,
11,
83,
7277,
62,
5239,
27,
1671,
29,
6,
198,
2,
220,
220,
220,
220,
329,
6126,
287,
12665,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
6956,
62,
28144,
8,
1343,
366,
553,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
83,
7277,
62,
2435,
8,
1343,
366,
553,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
7890,
62,
4906,
8,
1343,
366,
553,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
7890,
62,
312,
8,
1343,
366,
553,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
13376,
8,
1343,
366,
553,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
965,
7,
83,
7277,
13,
83,
7277,
62,
5239,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
15853,
705,
27,
1671,
29,
6,
198,
2,
220,
220,
220,
220,
1441,
1366,
198,
198,
31,
1324,
13,
38629,
7203,
14,
39344,
4943,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
598,
13,
5143,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2583,
28,
705,
15,
13,
15,
13,
15,
13,
15,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
14257,
28,
17821,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2493,
28,
1795,
1795,
198,
220,
220,
220,
1267,
198
] | 2.273563 | 435 |
# -*- coding: utf-8 -*-
import os
import json
from simmate.workflow_engine import ErrorHandler
from simmate.calculators.vasp.inputs import Incar
class RotationNonIntMatrix(ErrorHandler):
"""
This a simple error handler that is active when VASP finds an issue with the
rotation matrix.
"""
is_monitor = True
filename_to_check = "vasp.out"
possible_error_messages = [
"Found some non-integer element in rotation matrix",
"SGRCON",
]
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
28686,
198,
11748,
33918,
198,
198,
6738,
985,
9830,
13,
1818,
11125,
62,
18392,
1330,
13047,
25060,
198,
6738,
985,
9830,
13,
9948,
3129,
2024,
13,
85,
5126,
13,
15414,
82,
1330,
3457,
283,
628,
198,
4871,
371,
14221,
15419,
5317,
46912,
7,
12331,
25060,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
257,
2829,
4049,
21360,
326,
318,
4075,
618,
569,
1921,
47,
7228,
281,
2071,
351,
262,
198,
220,
220,
220,
13179,
17593,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
318,
62,
41143,
796,
6407,
198,
220,
220,
220,
29472,
62,
1462,
62,
9122,
796,
366,
85,
5126,
13,
448,
1,
198,
220,
220,
220,
1744,
62,
18224,
62,
37348,
1095,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21077,
617,
1729,
12,
41433,
5002,
287,
13179,
17593,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
38475,
7397,
1340,
1600,
198,
220,
220,
220,
2361,
198
] | 2.765714 | 175 |
import sys
import argparse
import darshan
if __name__ == "__main__":
main()
| [
11748,
25064,
198,
11748,
1822,
29572,
198,
11748,
288,
5406,
272,
628,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.636364 | 33 |
"""Main class for the Crownstone cloud cloud."""
from __future__ import annotations
import asyncio
import logging
import aiohttp
from crownstone_cloud.cloud_models.crownstones import Crownstone
from crownstone_cloud.cloud_models.spheres import Spheres
from crownstone_cloud.exceptions import CrownstoneNotFoundError
from crownstone_cloud.helpers.conversion import password_to_hash
from crownstone_cloud.helpers.requests import RequestHandler
_LOGGER = logging.getLogger(__name__)
class CrownstoneCloud:
"""Create a Crownstone cloud instance."""
cloud_data: Spheres
access_token: str
async def async_initialize(self) -> None:
"""
Login to Crownstone API & synchronize all cloud data.
This method is a coroutine.
"""
# Login
login_response = await self.request_handler.request_login(self.login_data)
# Save access token & create cloud data object
self.access_token = login_response["id"]
self.cloud_data = Spheres(self, login_response["userId"])
_LOGGER.debug("Login to Crownstone Cloud successful")
# Synchronize data
await self.async_synchronize()
async def async_synchronize(self) -> None:
"""
Sync all data from cloud.
This method is a coroutine.
"""
_LOGGER.debug("Initiating all cloud data")
# get the sphere data for this user_id
await self.cloud_data.async_update_sphere_data()
# get the data from the sphere attributes
for sphere in self.cloud_data:
await asyncio.gather(
sphere.async_update_sphere_presence(),
sphere.crownstones.async_update_crownstone_data(),
sphere.locations.async_update_location_data(),
sphere.locations.async_update_location_presence(),
sphere.users.async_update_user_data(),
)
_LOGGER.debug("Cloud data successfully initialized")
def get_crownstone(
self, crownstone_name: str, sphere_id: str | None = None
) -> Crownstone:
"""
Get a Crownstone object by providing the name and optionally a sphere id.
:param crownstone_name: Name of the Crownstone.
:param sphere_id: Sphere id that should match.
:return: Crownstone object.
"""
for sphere in self.cloud_data:
if sphere_id is not None:
if sphere.cloud_id != sphere_id:
continue
for crownstone in sphere.crownstones:
if crownstone.name == crownstone_name:
return crownstone
raise CrownstoneNotFoundError from None
def get_crownstone_by_id(
self, crownstone_id: str, sphere_id: str | None = None
) -> Crownstone:
"""
Get a Crownstone object by providing the id and optionally a sphere id.
:param crownstone_id: The cloud id of the Crownstone.
:param sphere_id: Sphere id that should match.
:return: Crownstone object.
"""
for sphere in self.cloud_data:
if sphere_id is not None:
if sphere.cloud_id != sphere_id:
continue
for crownstone in sphere.crownstones:
if crownstone.cloud_id == crownstone_id:
return crownstone
raise CrownstoneNotFoundError from None
def get_crownstone_by_uid(
self, crownstone_uid: int, sphere_id: str | None = None
) -> Crownstone:
"""
Get a Crownstone object by providing the uid and optionally a sphere id.
:param crownstone_uid: The unique id of the Crownstone.
:param sphere_id: Sphere id that should match.
:return: Crownstone object.
"""
for sphere in self.cloud_data:
if sphere_id is not None:
if sphere.cloud_id != sphere_id:
continue
for crownstone in sphere.crownstones:
if crownstone.unique_id == crownstone_uid:
return crownstone
raise CrownstoneNotFoundError from None
async def async_close_session(self) -> None:
"""
Close the aiohttp clientsession after all requests are done.
The session should always be closed when the program ends.
When there's an external clientsession in use, DON'T use this method.
This method is a coroutine.
"""
await self.request_handler.client_session.close()
| [
37811,
13383,
1398,
329,
262,
12223,
6440,
6279,
6279,
526,
15931,
198,
6738,
11593,
37443,
834,
1330,
37647,
198,
198,
11748,
30351,
952,
198,
11748,
18931,
198,
198,
11748,
257,
952,
4023,
198,
198,
6738,
12389,
6440,
62,
17721,
13,
17721,
62,
27530,
13,
66,
2053,
28750,
1330,
12223,
6440,
198,
6738,
12389,
6440,
62,
17721,
13,
17721,
62,
27530,
13,
2777,
19079,
1330,
1338,
19079,
198,
6738,
12389,
6440,
62,
17721,
13,
1069,
11755,
1330,
12223,
6440,
3673,
21077,
12331,
198,
6738,
12389,
6440,
62,
17721,
13,
16794,
364,
13,
1102,
9641,
1330,
9206,
62,
1462,
62,
17831,
198,
6738,
12389,
6440,
62,
17721,
13,
16794,
364,
13,
8897,
3558,
1330,
19390,
25060,
198,
198,
62,
25294,
30373,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
12223,
6440,
18839,
25,
198,
220,
220,
220,
37227,
16447,
257,
12223,
6440,
6279,
4554,
526,
15931,
628,
220,
220,
220,
6279,
62,
7890,
25,
1338,
19079,
198,
220,
220,
220,
1895,
62,
30001,
25,
965,
628,
220,
220,
220,
30351,
825,
30351,
62,
36733,
1096,
7,
944,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
23093,
284,
12223,
6440,
7824,
1222,
18305,
1096,
477,
6279,
1366,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
318,
257,
1162,
28399,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
23093,
198,
220,
220,
220,
220,
220,
220,
220,
17594,
62,
26209,
796,
25507,
2116,
13,
25927,
62,
30281,
13,
25927,
62,
38235,
7,
944,
13,
38235,
62,
7890,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12793,
1895,
11241,
1222,
2251,
6279,
1366,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
15526,
62,
30001,
796,
17594,
62,
26209,
14692,
312,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17721,
62,
7890,
796,
1338,
19079,
7,
944,
11,
17594,
62,
26209,
14692,
7220,
7390,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
25294,
30373,
13,
24442,
7203,
47790,
284,
12223,
6440,
10130,
4388,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
16065,
11413,
1096,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
25507,
2116,
13,
292,
13361,
62,
28869,
11413,
1096,
3419,
628,
220,
220,
220,
30351,
825,
30351,
62,
28869,
11413,
1096,
7,
944,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
35908,
477,
1366,
422,
6279,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
318,
257,
1162,
28399,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
25294,
30373,
13,
24442,
7203,
818,
8846,
803,
477,
6279,
1366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
262,
16558,
1366,
329,
428,
2836,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
25507,
2116,
13,
17721,
62,
7890,
13,
292,
13361,
62,
19119,
62,
2777,
1456,
62,
7890,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
651,
262,
1366,
422,
262,
16558,
12608,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16558,
287,
2116,
13,
17721,
62,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25507,
30351,
952,
13,
70,
1032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16558,
13,
292,
13361,
62,
19119,
62,
2777,
1456,
62,
18302,
594,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16558,
13,
66,
2053,
28750,
13,
292,
13361,
62,
19119,
62,
66,
2053,
6440,
62,
7890,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16558,
13,
17946,
602,
13,
292,
13361,
62,
19119,
62,
24886,
62,
7890,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16558,
13,
17946,
602,
13,
292,
13361,
62,
19119,
62,
24886,
62,
18302,
594,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16558,
13,
18417,
13,
292,
13361,
62,
19119,
62,
7220,
62,
7890,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
25294,
30373,
13,
24442,
7203,
18839,
1366,
7675,
23224,
4943,
628,
220,
220,
220,
825,
651,
62,
66,
2053,
6440,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
12389,
6440,
62,
3672,
25,
965,
11,
16558,
62,
312,
25,
965,
930,
6045,
796,
6045,
198,
220,
220,
220,
1267,
4613,
12223,
6440,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
12223,
6440,
2134,
416,
4955,
262,
1438,
290,
42976,
257,
16558,
4686,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12389,
6440,
62,
3672,
25,
6530,
286,
262,
12223,
6440,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16558,
62,
312,
25,
31798,
4686,
326,
815,
2872,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
12223,
6440,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16558,
287,
2116,
13,
17721,
62,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
62,
312,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
13,
17721,
62,
312,
14512,
16558,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
12389,
6440,
287,
16558,
13,
66,
2053,
28750,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
12389,
6440,
13,
3672,
6624,
12389,
6440,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
12389,
6440,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
12223,
6440,
3673,
21077,
12331,
422,
6045,
628,
220,
220,
220,
825,
651,
62,
66,
2053,
6440,
62,
1525,
62,
312,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
12389,
6440,
62,
312,
25,
965,
11,
16558,
62,
312,
25,
965,
930,
6045,
796,
6045,
198,
220,
220,
220,
1267,
4613,
12223,
6440,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
12223,
6440,
2134,
416,
4955,
262,
4686,
290,
42976,
257,
16558,
4686,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12389,
6440,
62,
312,
25,
383,
6279,
4686,
286,
262,
12223,
6440,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16558,
62,
312,
25,
31798,
4686,
326,
815,
2872,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
12223,
6440,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16558,
287,
2116,
13,
17721,
62,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
62,
312,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
13,
17721,
62,
312,
14512,
16558,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
12389,
6440,
287,
16558,
13,
66,
2053,
28750,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
12389,
6440,
13,
17721,
62,
312,
6624,
12389,
6440,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
12389,
6440,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
12223,
6440,
3673,
21077,
12331,
422,
6045,
628,
220,
220,
220,
825,
651,
62,
66,
2053,
6440,
62,
1525,
62,
27112,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
12389,
6440,
62,
27112,
25,
493,
11,
16558,
62,
312,
25,
965,
930,
6045,
796,
6045,
198,
220,
220,
220,
1267,
4613,
12223,
6440,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
12223,
6440,
2134,
416,
4955,
262,
334,
312,
290,
42976,
257,
16558,
4686,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12389,
6440,
62,
27112,
25,
383,
3748,
4686,
286,
262,
12223,
6440,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16558,
62,
312,
25,
31798,
4686,
326,
815,
2872,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
12223,
6440,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16558,
287,
2116,
13,
17721,
62,
7890,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
62,
312,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16558,
13,
17721,
62,
312,
14512,
16558,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
12389,
6440,
287,
16558,
13,
66,
2053,
28750,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
12389,
6440,
13,
34642,
62,
312,
6624,
12389,
6440,
62,
27112,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
12389,
6440,
628,
220,
220,
220,
220,
220,
220,
220,
5298,
12223,
6440,
3673,
21077,
12331,
422,
6045,
628,
220,
220,
220,
30351,
825,
30351,
62,
19836,
62,
29891,
7,
944,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
13872,
262,
257,
952,
4023,
7534,
2521,
706,
477,
7007,
389,
1760,
13,
628,
220,
220,
220,
220,
220,
220,
220,
383,
6246,
815,
1464,
307,
4838,
618,
262,
1430,
5645,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1649,
612,
338,
281,
7097,
7534,
2521,
287,
779,
11,
23917,
6,
51,
779,
428,
2446,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2446,
318,
257,
1162,
28399,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
25507,
2116,
13,
25927,
62,
30281,
13,
16366,
62,
29891,
13,
19836,
3419,
198
] | 2.434104 | 1,859 |
from corehq.apps.commtrack.models import SupplyPointCase
from corehq.apps.products.models import Product
from corehq.apps.locations.models import Location, SQLLocation
from corehq.apps.domain.models import Domain
from corehq.util.quickcache import quickcache
from dimagi.utils.decorators.memoized import memoized
from dimagi.utils.excel import flatten_json, json_to_headers
from couchdbkit import ResourceNotFound
from dimagi.utils.couch.loosechange import map_reduce
from couchexport.writers import Excel2007ExportWriter
from StringIO import StringIO
from corehq.apps.consumption.shortcuts import get_loaded_default_monthly_consumption, build_consumption_dict
def load_locs_json(domain, selected_loc_id=None, include_archived=False):
"""initialize a json location tree for drill-down controls on
the client. tree is only partially initialized and branches
will be filled in on the client via ajax.
what is initialized:
* all top level locs
* if a 'selected' loc is provided, that loc and its complete
ancestry
"""
loc_json = [
loc_to_json(loc) for loc in
SQLLocation.root_locations(
domain, include_archive_ancestors=include_archived
)
]
# if a location is selected, we need to pre-populate its location hierarchy
# so that the data is available client-side to pre-populate the drop-downs
if selected_loc_id:
selected = SQLLocation.objects.get(
domain=domain,
location_id=selected_loc_id
)
lineage = selected.get_ancestors()
parent = {'children': loc_json}
for loc in lineage:
# find existing entry in the json tree that corresponds to this loc
this_loc = [k for k in parent['children'] if k['uuid'] == loc.location_id][0]
this_loc['children'] = [
loc_to_json(loc) for loc in
loc.child_locations(include_archive_ancestors=include_archived)
]
parent = this_loc
return loc_json
def parent_child(domain):
"""
Returns a dict mapping from a location type to its possible
child types
"""
return map_reduce(lambda (k, v): [(p, k) for p in v], data=dict(location_hierarchy_config(domain)).iteritems())
@quickcache(['domain'], timeout=60)
def write_to_file(locations):
"""
locations = [
('loc_type1', {
'headers': ['header1', 'header2', ...]
'rows': [
{
'header1': val1
'header2': val2
},
{...},
]
})
]
"""
outfile = StringIO()
writer = Excel2007ExportWriter()
header_table = [(loc_type, [tab['headers']]) for loc_type, tab in locations]
writer.open(header_table=header_table, file=outfile)
for loc_type, tab in locations:
headers = tab['headers']
tab_rows = [[row.get(header, '') for header in headers]
for row in tab['rows']]
writer.write([(loc_type, tab_rows)])
writer.close()
return outfile.getvalue()
| [
6738,
4755,
71,
80,
13,
18211,
13,
9503,
11659,
13,
27530,
1330,
22663,
12727,
20448,
198,
6738,
4755,
71,
80,
13,
18211,
13,
29498,
13,
27530,
1330,
8721,
198,
6738,
4755,
71,
80,
13,
18211,
13,
17946,
602,
13,
27530,
1330,
13397,
11,
49747,
3069,
5040,
198,
6738,
4755,
71,
80,
13,
18211,
13,
27830,
13,
27530,
1330,
20021,
198,
6738,
4755,
71,
80,
13,
22602,
13,
24209,
23870,
1330,
2068,
23870,
198,
6738,
5391,
18013,
13,
26791,
13,
12501,
273,
2024,
13,
11883,
78,
1143,
1330,
16155,
1143,
198,
6738,
5391,
18013,
13,
26791,
13,
1069,
5276,
1330,
27172,
268,
62,
17752,
11,
33918,
62,
1462,
62,
50145,
198,
6738,
18507,
9945,
15813,
1330,
20857,
3673,
21077,
198,
6738,
5391,
18013,
13,
26791,
13,
66,
7673,
13,
5439,
577,
3803,
1330,
3975,
62,
445,
7234,
198,
6738,
2284,
2395,
87,
634,
13,
34422,
1330,
24134,
12726,
43834,
34379,
198,
6738,
10903,
9399,
1330,
10903,
9399,
198,
6738,
4755,
71,
80,
13,
18211,
13,
5936,
24098,
13,
19509,
23779,
1330,
651,
62,
14578,
62,
12286,
62,
8424,
306,
62,
5936,
24098,
11,
1382,
62,
5936,
24098,
62,
11600,
628,
198,
4299,
3440,
62,
17946,
82,
62,
17752,
7,
27830,
11,
6163,
62,
17946,
62,
312,
28,
14202,
11,
2291,
62,
998,
1572,
28,
25101,
2599,
198,
220,
220,
220,
37227,
36733,
1096,
257,
33918,
4067,
5509,
329,
16007,
12,
2902,
6973,
319,
198,
220,
220,
220,
262,
5456,
13,
5509,
318,
691,
12387,
23224,
290,
13737,
198,
220,
220,
220,
481,
307,
5901,
287,
319,
262,
5456,
2884,
257,
73,
897,
13,
628,
220,
220,
220,
644,
318,
23224,
25,
198,
220,
220,
220,
1635,
477,
1353,
1241,
1179,
82,
198,
220,
220,
220,
1635,
611,
257,
705,
34213,
6,
1179,
318,
2810,
11,
326,
1179,
290,
663,
1844,
198,
220,
220,
220,
220,
220,
29171,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1179,
62,
17752,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1179,
62,
1462,
62,
17752,
7,
17946,
8,
329,
1179,
287,
198,
220,
220,
220,
220,
220,
220,
220,
49747,
3069,
5040,
13,
15763,
62,
17946,
602,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
11,
2291,
62,
17474,
62,
1192,
395,
669,
28,
17256,
62,
998,
1572,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
1303,
611,
257,
4067,
318,
6163,
11,
356,
761,
284,
662,
12,
12924,
5039,
663,
4067,
18911,
198,
220,
220,
220,
1303,
523,
326,
262,
1366,
318,
1695,
5456,
12,
1589,
284,
662,
12,
12924,
5039,
262,
4268,
12,
30371,
198,
220,
220,
220,
611,
6163,
62,
17946,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6163,
796,
49747,
3069,
5040,
13,
48205,
13,
1136,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
28,
27830,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4067,
62,
312,
28,
34213,
62,
17946,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
31144,
796,
6163,
13,
1136,
62,
1192,
395,
669,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
1391,
6,
17197,
10354,
1179,
62,
17752,
92,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1179,
287,
31144,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1064,
4683,
5726,
287,
262,
33918,
5509,
326,
24866,
284,
428,
1179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
62,
17946,
796,
685,
74,
329,
479,
287,
2560,
17816,
17197,
20520,
611,
479,
17816,
12303,
312,
20520,
6624,
1179,
13,
24886,
62,
312,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
62,
17946,
17816,
17197,
20520,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1179,
62,
1462,
62,
17752,
7,
17946,
8,
329,
1179,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1179,
13,
9410,
62,
17946,
602,
7,
17256,
62,
17474,
62,
1192,
395,
669,
28,
17256,
62,
998,
1572,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
428,
62,
17946,
628,
220,
220,
220,
1441,
1179,
62,
17752,
628,
628,
198,
4299,
2560,
62,
9410,
7,
27830,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
257,
8633,
16855,
422,
257,
4067,
2099,
284,
663,
1744,
198,
220,
220,
220,
1200,
3858,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
3975,
62,
445,
7234,
7,
50033,
357,
74,
11,
410,
2599,
47527,
79,
11,
479,
8,
329,
279,
287,
410,
4357,
1366,
28,
11600,
7,
24886,
62,
71,
959,
9282,
62,
11250,
7,
27830,
29720,
2676,
23814,
28955,
628,
628,
198,
31,
24209,
23870,
7,
17816,
27830,
6,
4357,
26827,
28,
1899,
8,
628,
628,
198,
4299,
3551,
62,
1462,
62,
7753,
7,
17946,
602,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7064,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19203,
17946,
62,
4906,
16,
3256,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
50145,
10354,
37250,
25677,
16,
3256,
705,
25677,
17,
3256,
2644,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8516,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25677,
16,
10354,
1188,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25677,
17,
10354,
1188,
17,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
986,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
32092,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
503,
7753,
796,
10903,
9399,
3419,
198,
220,
220,
220,
6260,
796,
24134,
12726,
43834,
34379,
3419,
198,
220,
220,
220,
13639,
62,
11487,
796,
47527,
17946,
62,
4906,
11,
685,
8658,
17816,
50145,
6,
11907,
8,
329,
1179,
62,
4906,
11,
7400,
287,
7064,
60,
198,
220,
220,
220,
6260,
13,
9654,
7,
25677,
62,
11487,
28,
25677,
62,
11487,
11,
2393,
28,
448,
7753,
8,
198,
220,
220,
220,
329,
1179,
62,
4906,
11,
7400,
287,
7064,
25,
198,
220,
220,
220,
220,
220,
220,
220,
24697,
796,
7400,
17816,
50145,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
7400,
62,
8516,
796,
16410,
808,
13,
1136,
7,
25677,
11,
10148,
8,
329,
13639,
287,
24697,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
7400,
17816,
8516,
6,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
13564,
26933,
7,
17946,
62,
4906,
11,
7400,
62,
8516,
8,
12962,
198,
220,
220,
220,
6260,
13,
19836,
3419,
198,
220,
220,
220,
1441,
503,
7753,
13,
1136,
8367,
3419,
198
] | 2.461781 | 1,269 |
# Copyright 2017 The Forseti Security Authors. 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.
"""Enforcer runner.
Usage for enforcing a single project's firewall:
$ forseti_enforcer --enforce_project <project_id> \\
--policy_file <policy file path>
"""
import argparse
import sys
import threading
from google.cloud.forseti.common.util import file_loader
from google.cloud.forseti.common.util import logger
from google.cloud.forseti.enforcer import batch_enforcer
from google.cloud.forseti.enforcer import enforcer_log_pb2
LOGGER = logger.get_logger(__name__)
class Error(Exception):
"""Base error class for the module."""
class InvalidParsedPolicyFileError(Error):
"""An invalid policy file was parsed."""
def initialize_batch_enforcer(global_configs, concurrent_threads,
max_write_threads, max_running_operations,
dry_run):
"""Initialize and return a BatchFirewallEnforcer object.
Args:
global_configs (dict): Global configurations.
concurrent_threads (str): The number of parallel enforcement threads to
execute.
max_write_threads (str): The maximum number of enforcement threads that
can be actively updating project firewalls.
max_running_operations (str): [DEPRECATED] The maximum number of write
operations per enforcement thread.
dry_run (boolean): If True, will simply log what action would have been
taken without actually applying any modifications.
Returns:
BatchFirewallEnforcer: A BatchFirewallEnforcer instance.
"""
if max_running_operations:
LOGGER.warn('Deprecated argument max_running_operations set.')
if max_write_threads:
project_sema = threading.BoundedSemaphore(value=max_write_threads)
else:
project_sema = None
enforcer = batch_enforcer.BatchFirewallEnforcer(
global_configs=global_configs,
dry_run=dry_run,
concurrent_workers=concurrent_threads,
project_sema=project_sema)
return enforcer
def enforce_single_project(enforcer, project_id, policy_filename):
"""Runs the enforcer on a single project.
Args:
enforcer (BatchFirewallEnforcer): An instance of the
batch_enforcer.BatchFirewallEnforcer class.
project_id (str): The project to enforce.
policy_filename (str): The json encoded file to read the firewall policy
from.
Raises:
InvalidParsedPolicyFileError: When the policy file can't be parsed.
Returns:
EnforcerLogProto: A instance of the proto.
"""
policy = file_loader.read_and_parse_file(policy_filename)
if not isinstance(policy, list):
raise InvalidParsedPolicyFileError(
'Invalid parsed policy file: found %s expected list' %
type(policy))
project_policies = [(project_id, policy)]
enforcer_results = enforcer.run(project_policies)
for result in enforcer_results.results:
result.gce_firewall_enforcement.policy_path = policy_filename
result.run_context = enforcer_log_pb2.ENFORCER_ONE_PROJECT
return enforcer_results
def main():
"""The main entry point for Forseti Security Enforcer runner."""
arg_parser = argparse.ArgumentParser()
arg_parser.add_argument(
'--forseti_config',
default='/home/ubuntu/forseti-security/configs/'
'forseti_conf_server.yaml',
help='Fully qualified path and filename of the Forseti config file.')
arg_parser.add_argument(
'--enforce_project', default=None,
help='A single projectId to enforce the firewall on.'
' Must be used with the policy_file flag.')
arg_parser.add_argument(
'--policy_file', default=None,
help='A json encoded policy file to enforce,'
' must contain a list of Firewall resources to'
'apply to the project. If in a GCS bucket, '
'include full path, e.g. '
'"gs://<bucketname>/path/to/file".')
arg_parser.add_argument(
'--dry_run', default=False,
help='If True will simulate the changes and not change'
'any policies.')
arg_parser.add_argument(
'--concurrent_threads', default=10,
help='The number concurrent worker threads to use.')
arg_parser.add_argument(
'--maximum_firewall_write_operations', default=10,
help='The maximum number of in flight write operations'
'on project firewalls. Each running thread is '
'allowed up to this many running operations, '
'so to limit the over all number of operations, '
'limit the number of write threads using the'
' maximum_project_writer_threads flag.')
arg_parser.add_argument(
'--maximum_project_writer_threads', default=1,
help='The maximum number of projects with active write '
'operations on project firewalls.')
flags = vars(arg_parser.parse_args())
forseti_config = flags['forseti_config']
if forseti_config is None:
LOGGER.error('Path to Forseti Security config needs to be specified.')
sys.exit()
try:
configs = file_loader.read_and_parse_file(forseti_config)
except IOError:
LOGGER.exception('Unable to open Forseti Security config file. '
'Please check your path and filename and try again.')
sys.exit()
global_configs = configs.get('global')
enforcer = initialize_batch_enforcer(
global_configs, flags['concurrent_threads'],
flags['maximum_project_writer_threads'],
flags['maximum_firewall_write_operations'],
flags['dry_run']
)
if flags['enforce_project'] and flags['policy_file']:
enforcer_results = enforce_single_project(enforcer,
flags['enforce_project'],
flags['policy_file'])
print enforcer_results
else:
print 'Batch mode not implemented yet.'
if __name__ == '__main__':
main()
| [
2,
15069,
2177,
383,
27325,
316,
72,
4765,
46665,
13,
1439,
2489,
10395,
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,
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,
37811,
4834,
45515,
17490,
13,
198,
198,
28350,
329,
26587,
257,
2060,
1628,
338,
32928,
25,
628,
220,
720,
329,
2617,
72,
62,
268,
45515,
1377,
268,
3174,
62,
16302,
1279,
16302,
62,
312,
29,
26867,
198,
220,
220,
220,
220,
220,
1377,
30586,
62,
7753,
1279,
30586,
2393,
3108,
29,
198,
198,
37811,
198,
11748,
1822,
29572,
198,
11748,
25064,
198,
11748,
4704,
278,
198,
198,
6738,
23645,
13,
17721,
13,
69,
49590,
72,
13,
11321,
13,
22602,
1330,
2393,
62,
29356,
198,
6738,
23645,
13,
17721,
13,
69,
49590,
72,
13,
11321,
13,
22602,
1330,
49706,
198,
6738,
23645,
13,
17721,
13,
69,
49590,
72,
13,
268,
45515,
1330,
15458,
62,
268,
45515,
198,
6738,
23645,
13,
17721,
13,
69,
49590,
72,
13,
268,
45515,
1330,
551,
45515,
62,
6404,
62,
40842,
17,
198,
198,
25294,
30373,
796,
49706,
13,
1136,
62,
6404,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
13047,
7,
16922,
2599,
198,
220,
220,
220,
37227,
14881,
4049,
1398,
329,
262,
8265,
526,
15931,
628,
198,
4871,
17665,
47,
945,
276,
36727,
8979,
12331,
7,
12331,
2599,
198,
220,
220,
220,
37227,
2025,
12515,
2450,
2393,
373,
44267,
526,
15931,
628,
198,
4299,
41216,
62,
43501,
62,
268,
45515,
7,
20541,
62,
11250,
82,
11,
24580,
62,
16663,
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,
3509,
62,
13564,
62,
16663,
82,
11,
3509,
62,
20270,
62,
3575,
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,
5894,
62,
5143,
2599,
198,
220,
220,
220,
37227,
24243,
1096,
290,
1441,
257,
347,
963,
13543,
11930,
4834,
45515,
2134,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
62,
11250,
82,
357,
11600,
2599,
8060,
25412,
13,
198,
220,
220,
220,
220,
220,
220,
220,
24580,
62,
16663,
82,
357,
2536,
2599,
383,
1271,
286,
10730,
5394,
14390,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12260,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
13564,
62,
16663,
82,
357,
2536,
2599,
383,
5415,
1271,
286,
5394,
14390,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
460,
307,
10630,
19698,
1628,
2046,
86,
5691,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
20270,
62,
3575,
602,
357,
2536,
2599,
685,
46162,
38827,
11617,
60,
383,
5415,
1271,
286,
3551,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4560,
583,
5394,
4704,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5894,
62,
5143,
357,
2127,
21052,
2599,
1002,
6407,
11,
481,
2391,
2604,
644,
2223,
561,
423,
587,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2077,
1231,
1682,
11524,
597,
19008,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
347,
963,
13543,
11930,
4834,
45515,
25,
317,
347,
963,
13543,
11930,
4834,
45515,
4554,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
3509,
62,
20270,
62,
3575,
602,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41605,
30373,
13,
40539,
10786,
12156,
31023,
4578,
3509,
62,
20270,
62,
3575,
602,
900,
2637,
8,
628,
220,
220,
220,
611,
3509,
62,
13564,
62,
16663,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
325,
2611,
796,
4704,
278,
13,
33,
6302,
13900,
6570,
382,
7,
8367,
28,
9806,
62,
13564,
62,
16663,
82,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
325,
2611,
796,
6045,
628,
220,
220,
220,
551,
45515,
796,
15458,
62,
268,
45515,
13,
33,
963,
13543,
11930,
4834,
45515,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
62,
11250,
82,
28,
20541,
62,
11250,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5894,
62,
5143,
28,
39140,
62,
5143,
11,
198,
220,
220,
220,
220,
220,
220,
220,
24580,
62,
22896,
28,
1102,
14421,
62,
16663,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
325,
2611,
28,
16302,
62,
325,
2611,
8,
628,
220,
220,
220,
1441,
551,
45515,
628,
198,
4299,
4605,
62,
29762,
62,
16302,
7,
268,
45515,
11,
1628,
62,
312,
11,
2450,
62,
34345,
2599,
198,
220,
220,
220,
37227,
10987,
82,
262,
551,
45515,
319,
257,
2060,
1628,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
551,
45515,
357,
33,
963,
13543,
11930,
4834,
45515,
2599,
1052,
4554,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
268,
45515,
13,
33,
963,
13543,
11930,
4834,
45515,
1398,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
357,
2536,
2599,
383,
1628,
284,
4605,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2450,
62,
34345,
357,
2536,
2599,
383,
33918,
30240,
2393,
284,
1100,
262,
32928,
2450,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
422,
13,
628,
220,
220,
220,
7567,
2696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17665,
47,
945,
276,
36727,
8979,
12331,
25,
1649,
262,
2450,
2393,
460,
470,
307,
44267,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2039,
45515,
11187,
2964,
1462,
25,
317,
4554,
286,
262,
44876,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2450,
796,
2393,
62,
29356,
13,
961,
62,
392,
62,
29572,
62,
7753,
7,
30586,
62,
34345,
8,
628,
220,
220,
220,
611,
407,
318,
39098,
7,
30586,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
47,
945,
276,
36727,
8979,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
44651,
44267,
2450,
2393,
25,
1043,
4064,
82,
2938,
1351,
6,
4064,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
7,
30586,
4008,
628,
220,
220,
220,
1628,
62,
79,
4160,
444,
796,
47527,
16302,
62,
312,
11,
2450,
15437,
628,
220,
220,
220,
551,
45515,
62,
43420,
796,
551,
45515,
13,
5143,
7,
16302,
62,
79,
4160,
444,
8,
628,
220,
220,
220,
329,
1255,
287,
551,
45515,
62,
43420,
13,
43420,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
70,
344,
62,
6495,
11930,
62,
44976,
13,
30586,
62,
6978,
796,
2450,
62,
34345,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
5143,
62,
22866,
796,
551,
45515,
62,
6404,
62,
40842,
17,
13,
1677,
13775,
34,
1137,
62,
11651,
62,
31190,
23680,
628,
220,
220,
220,
1441,
551,
45515,
62,
43420,
628,
198,
4299,
1388,
33529,
198,
220,
220,
220,
37227,
464,
1388,
5726,
966,
329,
27325,
316,
72,
4765,
2039,
45515,
17490,
526,
15931,
198,
220,
220,
220,
1822,
62,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
69,
49590,
72,
62,
11250,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
14,
11195,
14,
32230,
14,
69,
49590,
72,
12,
12961,
14,
11250,
82,
14,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
49590,
72,
62,
10414,
62,
15388,
13,
88,
43695,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
37,
2132,
10617,
3108,
290,
29472,
286,
262,
27325,
316,
72,
4566,
2393,
2637,
8,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
268,
3174,
62,
16302,
3256,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
32,
2060,
1628,
7390,
284,
4605,
262,
32928,
319,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12039,
307,
973,
351,
262,
2450,
62,
7753,
6056,
2637,
8,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
30586,
62,
7753,
3256,
4277,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
32,
33918,
30240,
2450,
2393,
284,
4605,
4032,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1276,
3994,
257,
1351,
286,
3764,
11930,
4133,
284,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39014,
284,
262,
1628,
13,
1002,
287,
257,
402,
7902,
19236,
11,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17256,
1336,
3108,
11,
304,
13,
70,
13,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1,
14542,
1378,
27,
27041,
316,
3672,
29,
14,
6978,
14,
1462,
14,
7753,
1911,
11537,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
39140,
62,
5143,
3256,
4277,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
1532,
6407,
481,
29308,
262,
2458,
290,
407,
1487,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1092,
4788,
2637,
8,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
1102,
14421,
62,
16663,
82,
3256,
4277,
28,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
1271,
24580,
8383,
14390,
284,
779,
2637,
8,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
47033,
62,
6495,
11930,
62,
13564,
62,
3575,
602,
3256,
4277,
28,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
5415,
1271,
286,
287,
5474,
3551,
4560,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
261,
1628,
2046,
86,
5691,
13,
5501,
2491,
4704,
318,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
40845,
510,
284,
428,
867,
2491,
4560,
11,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
568,
284,
4179,
262,
625,
477,
1271,
286,
4560,
11,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32374,
262,
1271,
286,
3551,
14390,
1262,
262,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5415,
62,
16302,
62,
16002,
62,
16663,
82,
6056,
2637,
8,
628,
220,
220,
220,
1822,
62,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
705,
438,
47033,
62,
16302,
62,
16002,
62,
16663,
82,
3256,
4277,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
5415,
1271,
286,
4493,
351,
4075,
3551,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3575,
602,
319,
1628,
2046,
86,
5691,
2637,
8,
628,
220,
220,
220,
9701,
796,
410,
945,
7,
853,
62,
48610,
13,
29572,
62,
22046,
28955,
628,
220,
220,
220,
329,
2617,
72,
62,
11250,
796,
9701,
17816,
69,
49590,
72,
62,
11250,
20520,
628,
220,
220,
220,
611,
329,
2617,
72,
62,
11250,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41605,
30373,
13,
18224,
10786,
15235,
284,
27325,
316,
72,
4765,
4566,
2476,
284,
307,
7368,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
3419,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
82,
796,
2393,
62,
29356,
13,
961,
62,
392,
62,
29572,
62,
7753,
7,
69,
49590,
72,
62,
11250,
8,
198,
220,
220,
220,
2845,
24418,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41605,
30373,
13,
1069,
4516,
10786,
3118,
540,
284,
1280,
27325,
316,
72,
4765,
4566,
2393,
13,
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,
705,
5492,
2198,
534,
3108,
290,
29472,
290,
1949,
757,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
3419,
198,
220,
220,
220,
3298,
62,
11250,
82,
796,
4566,
82,
13,
1136,
10786,
20541,
11537,
628,
220,
220,
220,
551,
45515,
796,
41216,
62,
43501,
62,
268,
45515,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3298,
62,
11250,
82,
11,
9701,
17816,
1102,
14421,
62,
16663,
82,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
9701,
17816,
47033,
62,
16302,
62,
16002,
62,
16663,
82,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
9701,
17816,
47033,
62,
6495,
11930,
62,
13564,
62,
3575,
602,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
9701,
17816,
39140,
62,
5143,
20520,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
611,
9701,
17816,
268,
3174,
62,
16302,
20520,
290,
9701,
17816,
30586,
62,
7753,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
551,
45515,
62,
43420,
796,
4605,
62,
29762,
62,
16302,
7,
268,
45515,
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,
9701,
17816,
268,
3174,
62,
16302,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9701,
17816,
30586,
62,
7753,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
551,
45515,
62,
43420,
628,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
33,
963,
4235,
407,
9177,
1865,
2637,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.592421 | 2,586 |
from django.conf import settings
from django.conf.urls import url, include
urlpatterns = []
if 'admin_tools.menu' in settings.INSTALLED_APPS:
urlpatterns.append(url(r'^menu/', include('admin_tools.menu.urls')))
if 'admin_tools.dashboard' in settings.INSTALLED_APPS:
urlpatterns.append(
url(r'^dashboard/', include('admin_tools.dashboard.urls'))
)
| [
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
19016,
11,
2291,
198,
198,
6371,
33279,
82,
796,
17635,
198,
361,
705,
28482,
62,
31391,
13,
26272,
6,
287,
6460,
13,
38604,
7036,
1961,
62,
2969,
3705,
25,
198,
220,
220,
220,
19016,
33279,
82,
13,
33295,
7,
6371,
7,
81,
6,
61,
26272,
14,
3256,
2291,
10786,
28482,
62,
31391,
13,
26272,
13,
6371,
82,
6,
22305,
198,
361,
705,
28482,
62,
31391,
13,
42460,
3526,
6,
287,
6460,
13,
38604,
7036,
1961,
62,
2969,
3705,
25,
198,
220,
220,
220,
19016,
33279,
82,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
7,
81,
6,
61,
42460,
3526,
14,
3256,
2291,
10786,
28482,
62,
31391,
13,
42460,
3526,
13,
6371,
82,
6,
4008,
198,
220,
220,
220,
1267,
198
] | 2.591549 | 142 |
from app.models.Note.note import Note
from app.models.Message.message import Message
from app.models.User.user import User
from app.models.Analytics.analytics import Analytics
from app.models.Benefits.benefits import Benefits
from app.models.KeyManagement.key_management import KeyManagement
from app.models.PaidTimeOff.paid_time_off import PaidTimeOff
from app.models.Pay.pay import Pay
from app.models.Performance.performance import Performance
from app.models.Retirement.retirement import Retirement
from app.models.Schedule.schedule import Schedule
from app.models.WorkInfo.work_info import WorkInfo
import app.signals | [
6738,
598,
13,
27530,
13,
6425,
13,
11295,
1330,
5740,
198,
6738,
598,
13,
27530,
13,
12837,
13,
20500,
1330,
16000,
198,
6738,
598,
13,
27530,
13,
12982,
13,
7220,
1330,
11787,
198,
6738,
598,
13,
27530,
13,
37702,
14094,
13,
38200,
14094,
1330,
30437,
198,
6738,
598,
13,
27530,
13,
42166,
896,
13,
36934,
896,
1330,
30582,
198,
6738,
598,
13,
27530,
13,
9218,
48032,
13,
2539,
62,
27604,
1330,
7383,
48032,
198,
6738,
598,
13,
27530,
13,
47,
1698,
7575,
9362,
13,
20333,
62,
2435,
62,
2364,
1330,
47355,
7575,
9362,
198,
6738,
598,
13,
27530,
13,
19197,
13,
15577,
1330,
7119,
198,
6738,
598,
13,
27530,
13,
32273,
13,
26585,
1330,
15193,
198,
6738,
598,
13,
27530,
13,
9781,
24615,
13,
1186,
24615,
1330,
41863,
198,
6738,
598,
13,
27530,
13,
27054,
5950,
13,
15952,
5950,
1330,
19281,
198,
6738,
598,
13,
27530,
13,
12468,
12360,
13,
1818,
62,
10951,
1330,
5521,
12360,
198,
11748,
598,
13,
12683,
874
] | 3.839506 | 162 |
# Copyright (c) 2018 Cisco and/or its affiliates.
# 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.
"""DUT setup library."""
from robot.api import logger
from resources.libraries.python.Constants import Constants
from resources.libraries.python.ssh import SSH, exec_cmd_no_error
from resources.libraries.python.topology import NodeType, Topology
class DUTSetup(object):
"""Contains methods for setting up DUTs."""
@staticmethod
def get_service_logs(node, service):
"""Get specific service unit logs from node.
:param node: Node in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
if DUTSetup.running_in_container(node):
command = ('echo $(< /var/log/supervisord.log);'
'echo $(< /tmp/*supervisor*.log)')
else:
command = ('journalctl --no-pager --unit={name} '
'--since="$(echo `systemctl show -p '
'ActiveEnterTimestamp {name}` | '
'awk \'{{print $2 $3}}\')"'.
format(name=service))
message = 'Node {host} failed to get logs from unit {name}'.\
format(host=node['host'], name=service)
exec_cmd_no_error(node, command, timeout=30, sudo=True,
message=message)
@staticmethod
def get_service_logs_on_all_duts(nodes, service):
"""Get specific service unit logs from all DUTs.
:param nodes: Nodes in the topology.
:param service: Service unit name.
:type nodes: dict
:type service: str
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
DUTSetup.get_service_logs(node, service)
@staticmethod
def restart_service(node, service):
"""Restart the named service on node.
:param node: Node in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
if DUTSetup.running_in_container(node):
command = 'supervisorctl restart {name}'.format(name=service)
else:
command = 'service {name} restart'.format(name=service)
message = 'Node {host} failed to restart service {name}'.\
format(host=node['host'], name=service)
exec_cmd_no_error(
node, command, timeout=180, sudo=True, message=message)
DUTSetup.get_service_logs(node, service)
@staticmethod
def restart_service_on_all_duts(nodes, service):
"""Restart the named service on all DUTs.
:param node: Nodes in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
DUTSetup.restart_service(node, service)
@staticmethod
def start_service(node, service):
"""Start up the named service on node.
:param node: Node in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
# TODO: change command to start once all parent function updated.
if DUTSetup.running_in_container(node):
command = 'supervisorctl restart {name}'.format(name=service)
else:
command = 'service {name} restart'.format(name=service)
message = 'Node {host} failed to start service {name}'.\
format(host=node['host'], name=service)
exec_cmd_no_error(
node, command, timeout=180, sudo=True, message=message)
DUTSetup.get_service_logs(node, service)
@staticmethod
def start_service_on_all_duts(nodes, service):
"""Start up the named service on all DUTs.
:param node: Nodes in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
DUTSetup.start_service(node, service)
@staticmethod
def stop_service(node, service):
"""Stop the named service on node.
:param node: Node in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
if DUTSetup.running_in_container(node):
command = 'supervisorctl stop {name}'.format(name=service)
else:
command = 'service {name} stop'.format(name=service)
message = 'Node {host} failed to stop service {name}'.\
format(host=node['host'], name=service)
exec_cmd_no_error(
node, command, timeout=180, sudo=True, message=message)
DUTSetup.get_service_logs(node, service)
@staticmethod
def stop_service_on_all_duts(nodes, service):
"""Stop the named service on all DUTs.
:param node: Nodes in the topology.
:param service: Service unit name.
:type node: dict
:type service: str
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
DUTSetup.stop_service(node, service)
@staticmethod
def get_vpp_pid(node):
"""Get PID of running VPP process.
:param node: DUT node.
:type node: dict
:returns: PID
:rtype: int
:raises RuntimeError: If it is not possible to get the PID.
"""
ssh = SSH()
ssh.connect(node)
for i in range(3):
logger.trace('Try {}: Get VPP PID'.format(i))
ret_code, stdout, stderr = ssh.exec_command('pidof vpp')
if int(ret_code):
raise RuntimeError('Not possible to get PID of VPP process '
'on node: {0}\n {1}'.
format(node['host'], stdout + stderr))
pid_list = stdout.split()
if len(pid_list) == 1:
return int(stdout)
elif not pid_list:
logger.debug("No VPP PID found on node {0}".
format(node['host']))
continue
else:
logger.debug("More then one VPP PID found on node {0}".
format(node['host']))
return [int(pid) for pid in pid_list]
return None
@staticmethod
def get_vpp_pids(nodes):
"""Get PID of running VPP process on all DUTs.
:param nodes: DUT nodes.
:type nodes: dict
:returns: PIDs
:rtype: dict
"""
pids = dict()
for node in nodes.values():
if node['type'] == NodeType.DUT:
pids[node['host']] = DUTSetup.get_vpp_pid(node)
return pids
@staticmethod
def crypto_device_verify(node, crypto_type, numvfs, force_init=False):
"""Verify if Crypto QAT device virtual functions are initialized on all
DUTs. If parameter force initialization is set to True, then try to
initialize or remove VFs on QAT.
:param node: DUT node.
:crypto_type: Crypto device type - HW_DH895xcc or HW_C3xxx.
:param numvfs: Number of VFs to initialize, 0 - disable the VFs.
:param force_init: If True then try to initialize to specific value.
:type node: dict
:type crypto_type: string
:type numvfs: int
:type force_init: bool
:returns: nothing
:raises RuntimeError: If QAT VFs are not created and force init is set
to False.
"""
pci_addr = Topology.get_cryptodev(node)
sriov_numvfs = DUTSetup.get_sriov_numvfs(node, pci_addr)
if sriov_numvfs != numvfs:
if force_init:
# QAT is not initialized and we want to initialize with numvfs
DUTSetup.crypto_device_init(node, crypto_type, numvfs)
else:
raise RuntimeError('QAT device failed to create VFs on {host}'.
format(host=node['host']))
@staticmethod
def crypto_device_init(node, crypto_type, numvfs):
"""Init Crypto QAT device virtual functions on DUT.
:param node: DUT node.
:crypto_type: Crypto device type - HW_DH895xcc or HW_C3xxx.
:param numvfs: Number of VFs to initialize, 0 - disable the VFs.
:type node: dict
:type crypto_type: string
:type numvfs: int
:returns: nothing
:raises RuntimeError: If failed to stop VPP or QAT failed to initialize.
"""
if crypto_type == "HW_DH895xcc":
kernel_mod = "qat_dh895xcc"
kernel_drv = "dh895xcc"
elif crypto_type == "HW_C3xxx":
kernel_mod = "qat_c3xxx"
kernel_drv = "c3xxx"
else:
raise RuntimeError('Unsupported crypto device type on {host}'.
format(host=node['host']))
pci_addr = Topology.get_cryptodev(node)
# QAT device must be re-bound to kernel driver before initialization.
DUTSetup.verify_kernel_module(node, kernel_mod, force_load=True)
# Stop VPP to prevent deadlock.
DUTSetup.stop_service(node, Constants.VPP_UNIT)
current_driver = DUTSetup.get_pci_dev_driver(
node, pci_addr.replace(':', r'\:'))
if current_driver is not None:
DUTSetup.pci_driver_unbind(node, pci_addr)
# Bind to kernel driver.
DUTSetup.pci_driver_bind(node, pci_addr, kernel_drv)
# Initialize QAT VFs.
if numvfs > 0:
DUTSetup.set_sriov_numvfs(node, pci_addr, numvfs)
@staticmethod
def get_virtfn_pci_addr(node, pf_pci_addr, vf_id):
"""Get PCI address of Virtual Function.
:param node: DUT node.
:param pf_pci_addr: Physical Function PCI address.
:param vf_id: Virtual Function number.
:type node: dict
:type pf_pci_addr: str
:type vf_id: int
:returns: Virtual Function PCI address.
:rtype: int
:raises RuntimeError: If failed to get Virtual Function PCI address.
"""
command = "sh -c "\
"'basename $(readlink /sys/bus/pci/devices/{pci}/virtfn{vf_id})'".\
format(pci=pf_pci_addr, vf_id=vf_id)
message = 'Failed to get virtual function PCI address.'
stdout, _ = exec_cmd_no_error(node, command, timeout=30, sudo=True,
message=message)
return stdout.strip()
@staticmethod
def get_sriov_numvfs(node, pf_pci_addr):
"""Get number of SR-IOV VFs.
:param node: DUT node.
:param pf_pci_addr: Physical Function PCI device address.
:type node: dict
:type pf_pci_addr: str
:returns: Number of VFs.
:rtype: int
:raises RuntimeError: If PCI device is not SR-IOV capable.
"""
command = 'cat /sys/bus/pci/devices/{pci}/sriov_numvfs'.\
format(pci=pf_pci_addr.replace(':', r'\:'))
message = 'PCI device {pci} is not a SR-IOV device.'.\
format(pci=pf_pci_addr)
for _ in range(3):
stdout, _ = exec_cmd_no_error(node, command, timeout=30, sudo=True,
message=message)
try:
sriov_numvfs = int(stdout)
except ValueError:
logger.trace('Reading sriov_numvfs info failed on {host}'.
format(host=node['host']))
else:
return sriov_numvfs
@staticmethod
def set_sriov_numvfs(node, pf_pci_addr, numvfs=0):
"""Init or reset SR-IOV virtual functions by setting its number on PCI
device on DUT. Setting to zero removes all VFs.
:param node: DUT node.
:param pf_pci_addr: Physical Function PCI device address.
:param numvfs: Number of VFs to initialize, 0 - removes the VFs.
:type node: dict
:type pf_pci_addr: str
:type numvfs: int
:raises RuntimeError: Failed to create VFs on PCI.
"""
command = "sh -c "\
"'echo {num} | tee /sys/bus/pci/devices/{pci}/sriov_numvfs'".\
format(num=numvfs, pci=pf_pci_addr.replace(':', r'\:'))
message = 'Failed to create {num} VFs on {pci} device on {host}'.\
format(num=numvfs, pci=pf_pci_addr, host=node['host'])
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
@staticmethod
def pci_driver_unbind(node, pci_addr):
"""Unbind PCI device from current driver on node.
:param node: DUT node.
:param pci_addr: PCI device address.
:type node: dict
:type pci_addr: str
:raises RuntimeError: If PCI device unbind failed.
"""
command = "sh -c "\
"'echo {pci} | tee /sys/bus/pci/devices/{pcie}/driver/unbind'".\
format(pci=pci_addr, pcie=pci_addr.replace(':', r'\:'))
message = 'Failed to unbind PCI device {pci} on {host}'.\
format(pci=pci_addr, host=node['host'])
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
@staticmethod
def pci_driver_bind(node, pci_addr, driver):
"""Bind PCI device to driver on node.
:param node: DUT node.
:param pci_addr: PCI device address.
:param driver: Driver to bind.
:type node: dict
:type pci_addr: str
:type driver: str
:raises RuntimeError: If PCI device bind failed.
"""
message = 'Failed to bind PCI device {pci} to {driver} on host {host}'.\
format(pci=pci_addr, driver=driver, host=node['host'])
command = "sh -c "\
"'echo {driver} | tee /sys/bus/pci/devices/{pci}/driver_override'".\
format(driver=driver, pci=pci_addr.replace(':', r'\:'))
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
command = "sh -c "\
"'echo {pci} | tee /sys/bus/pci/drivers/{driver}/bind'".\
format(pci=pci_addr, driver=driver)
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
command = "sh -c "\
"'echo | tee /sys/bus/pci/devices/{pci}/driver_override'".\
format(pci=pci_addr.replace(':', r'\:'))
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
@staticmethod
def pci_vf_driver_unbind(node, pf_pci_addr, vf_id):
"""Unbind Virtual Function from driver on node.
:param node: DUT node.
:param pf_pci_addr: PCI device address.
:param vf_id: Virtual Function ID.
:type node: dict
:type pf_pci_addr: str
:type vf_id: int
:raises RuntimeError: If Virtual Function unbind failed.
"""
vf_pci_addr = DUTSetup.get_virtfn_pci_addr(node, pf_pci_addr, vf_id)
vf_path = "/sys/bus/pci/devices/{pf_pci_addr}/virtfn{vf_id}".\
format(pf_pci_addr=pf_pci_addr.replace(':', r'\:'), vf_id=vf_id)
command = "sh -c "\
"'echo {vf_pci_addr} | tee {vf_path}/driver/unbind'".\
format(vf_pci_addr=vf_pci_addr, vf_path=vf_path)
message = 'Failed to unbind VF {vf_pci_addr} to on {host}'.\
format(vf_pci_addr=vf_pci_addr, host=node['host'])
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
@staticmethod
def pci_vf_driver_bind(node, pf_pci_addr, vf_id, driver):
"""Bind Virtual Function to driver on node.
:param node: DUT node.
:param pf_pci_addr: PCI device address.
:param vf_id: Virtual Function ID.
:param driver: Driver to bind.
:type node: dict
:type pf_pci_addr: str
:type vf_id: int
:type driver: str
:raises RuntimeError: If PCI device bind failed.
"""
vf_pci_addr = DUTSetup.get_virtfn_pci_addr(node, pf_pci_addr, vf_id)
vf_path = "/sys/bus/pci/devices/{pf_pci_addr}/virtfn{vf_id}".\
format(pf_pci_addr=pf_pci_addr.replace(':', r'\:'), vf_id=vf_id)
message = 'Failed to bind VF {vf_pci_addr} to {driver} on {host}'.\
format(vf_pci_addr=vf_pci_addr, driver=driver, host=node['host'])
command = "sh -c "\
"'echo {driver} | tee {vf_path}/driver_override'".\
format(driver=driver, vf_path=vf_path)
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
command = "sh -c "\
"'echo {vf_pci_addr} | tee /sys/bus/pci/drivers/{driver}/bind'".\
format(vf_pci_addr=vf_pci_addr, driver=driver)
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
command = "sh -c "\
"'echo | tee {vf_path}/driver_override'".\
format(vf_path=vf_path)
exec_cmd_no_error(node, command, timeout=120, sudo=True,
message=message)
@staticmethod
def get_pci_dev_driver(node, pci_addr):
"""Get current PCI device driver on node.
.. note::
# lspci -vmmks 0000:00:05.0
Slot: 00:05.0
Class: Ethernet controller
Vendor: Red Hat, Inc
Device: Virtio network device
SVendor: Red Hat, Inc
SDevice: Device 0001
PhySlot: 5
Driver: virtio-pci
:param node: DUT node.
:param pci_addr: PCI device address.
:type node: dict
:type pci_addr: str
:returns: Driver or None
:raises RuntimeError: If PCI rescan or lspci command execution failed.
:raises RuntimeError: If it is not possible to get the interface driver
information from the node.
"""
ssh = SSH()
ssh.connect(node)
for i in range(3):
logger.trace('Try number {0}: Get PCI device driver'.format(i))
cmd = 'lspci -vmmks {0}'.format(pci_addr)
ret_code, stdout, _ = ssh.exec_command(cmd)
if int(ret_code):
raise RuntimeError("'{0}' failed on '{1}'"
.format(cmd, node['host']))
for line in stdout.splitlines():
if not line:
continue
name = None
value = None
try:
name, value = line.split("\t", 1)
except ValueError:
if name == "Driver:":
return None
if name == 'Driver:':
return value
if i < 2:
logger.trace('Driver for PCI device {} not found, executing '
'pci rescan and retrying'.format(pci_addr))
cmd = 'sh -c "echo 1 > /sys/bus/pci/rescan"'
ret_code, _, _ = ssh.exec_command_sudo(cmd)
if int(ret_code) != 0:
raise RuntimeError("'{0}' failed on '{1}'"
.format(cmd, node['host']))
return None
@staticmethod
def verify_kernel_module(node, module, force_load=False):
"""Verify if kernel module is loaded on node. If parameter force
load is set to True, then try to load the modules.
:param node: Node.
:param module: Module to verify.
:param force_load: If True then try to load module.
:type node: dict
:type module: str
:type force_load: bool
:raises RuntimeError: If module is not loaded or failed to load.
"""
command = 'grep -w {module} /proc/modules'.format(module=module)
message = 'Kernel module {module} is not loaded on host {host}'.\
format(module=module, host=node['host'])
try:
exec_cmd_no_error(node, command, timeout=30, sudo=False,
message=message)
except RuntimeError:
if force_load:
# Module is not loaded and we want to load it
DUTSetup.load_kernel_module(node, module)
else:
raise
@staticmethod
def verify_kernel_module_on_all_duts(nodes, module, force_load=False):
"""Verify if kernel module is loaded on all DUTs. If parameter force
load is set to True, then try to load the modules.
:param node: DUT nodes.
:param module: Module to verify.
:param force_load: If True then try to load module.
:type node: dict
:type module: str
:type force_load: bool
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
DUTSetup.verify_kernel_module(node, module, force_load)
@staticmethod
def verify_uio_driver_on_all_duts(nodes):
"""Verify if uio driver kernel module is loaded on all DUTs. If module
is not present it will try to load it.
:param node: DUT nodes.
:type node: dict
"""
for node in nodes.values():
if node['type'] == NodeType.DUT:
uio_driver = Topology.get_uio_driver(node)
DUTSetup.verify_kernel_module(node, uio_driver, force_load=True)
@staticmethod
def load_kernel_module(node, module):
"""Load kernel module on node.
:param node: DUT node.
:param module: Module to load.
:type node: dict
:type module: str
:returns: nothing
:raises RuntimeError: If loading failed.
"""
command = 'modprobe {module}'.format(module=module)
message = 'Failed to load {module} on host {host}'.\
format(module=module, host=node['host'])
exec_cmd_no_error(node, command, timeout=30, sudo=True, message=message)
@staticmethod
def install_vpp_on_all_duts(nodes, vpp_pkg_dir):
"""Install VPP on all DUT nodes. Start the VPP service in case of
systemd is not available or does not support autostart.
:param nodes: Nodes in the topology.
:param vpp_pkg_dir: Path to directory where VPP packages are stored.
:type nodes: dict
:type vpp_pkg_dir: str
:raises RuntimeError: If failed to remove or install VPP.
"""
for node in nodes.values():
message = 'Failed to install VPP on host {host}!'.\
format(host=node['host'])
if node['type'] == NodeType.DUT:
command = 'ln -s /dev/null /etc/sysctl.d/80-vpp.conf || true'
exec_cmd_no_error(node, command, sudo=True)
command = '. /etc/lsb-release; echo "${DISTRIB_ID}"'
stdout, _ = exec_cmd_no_error(node, command)
if stdout.strip() == 'Ubuntu':
exec_cmd_no_error(node, 'apt-get purge -y "*vpp*" || true',
timeout=120, sudo=True)
exec_cmd_no_error(node, 'dpkg -i --force-all {dir}*.deb'.
format(dir=vpp_pkg_dir), timeout=120,
sudo=True, message=message)
exec_cmd_no_error(node, 'dpkg -l | grep vpp', sudo=True)
if DUTSetup.running_in_container(node):
DUTSetup.restart_service(node, Constants.VPP_UNIT)
else:
exec_cmd_no_error(node, 'yum -y remove "*vpp*" || true',
timeout=120, sudo=True)
exec_cmd_no_error(node, 'rpm -ivh {dir}*.rpm'.
format(dir=vpp_pkg_dir), timeout=120,
sudo=True, message=message)
exec_cmd_no_error(node, 'rpm -qai *vpp*', sudo=True)
DUTSetup.restart_service(node, Constants.VPP_UNIT)
@staticmethod
def running_in_container(node):
"""This method tests if topology node is running inside container.
:param node: Topology node.
:type node: dict
:returns: True if running in docker container, false if not or failed
to detect.
:rtype: bool
"""
command = "fgrep docker /proc/1/cgroup"
message = 'Failed to get cgroup settings.'
try:
exec_cmd_no_error(node, command, timeout=30, sudo=False,
message=message)
except RuntimeError:
return False
return True
@staticmethod
def get_docker_mergeddir(node, uuid):
"""Get Docker overlay for MergedDir diff.
:param node: DUT node.
:param uuid: Docker UUID.
:type node: dict
:type uuid: str
:returns: Docker container MergedDir.
:rtype: str
:raises RuntimeError: If getting output failed.
"""
command = "docker inspect --format='"\
"{{{{.GraphDriver.Data.MergedDir}}}}' {uuid}".format(uuid=uuid)
message = 'Failed to get directory of {uuid} on host {host}'.\
format(uuid=uuid, host=node['host'])
stdout, _ = exec_cmd_no_error(node, command, sudo=True, message=message)
return stdout.strip()
@staticmethod
def get_huge_page_size(node):
"""Get default size of huge pages in system.
:param node: Node in the topology.
:type node: dict
:returns: Default size of free huge pages in system.
:rtype: int
:raises RuntimeError: If reading failed for three times.
"""
ssh = SSH()
ssh.connect(node)
for _ in range(3):
ret_code, stdout, _ = ssh.exec_command_sudo(
"grep Hugepagesize /proc/meminfo | awk '{ print $2 }'")
if ret_code == 0:
try:
huge_size = int(stdout)
except ValueError:
logger.trace('Reading huge page size information failed')
else:
break
else:
raise RuntimeError('Getting huge page size information failed.')
return huge_size
@staticmethod
def get_huge_page_free(node, huge_size):
"""Get number of free huge pages in system.
:param node: Node in the topology.
:param huge_size: Size of hugepages.
:type node: dict
:type huge_size: int
:returns: Number of free huge pages in system.
:rtype: int
:raises RuntimeError: If reading failed for three times.
"""
# TODO: add numa aware option
ssh = SSH()
ssh.connect(node)
for _ in range(3):
ret_code, stdout, _ = ssh.exec_command_sudo(
'cat /sys/kernel/mm/hugepages/hugepages-{0}kB/free_hugepages'.
format(huge_size))
if ret_code == 0:
try:
huge_free = int(stdout)
except ValueError:
logger.trace('Reading free huge pages information failed')
else:
break
else:
raise RuntimeError('Getting free huge pages information failed.')
return huge_free
@staticmethod
def get_huge_page_total(node, huge_size):
"""Get total number of huge pages in system.
:param node: Node in the topology.
:param huge_size: Size of hugepages.
:type node: dict
:type huge_size: int
:returns: Total number of huge pages in system.
:rtype: int
:raises RuntimeError: If reading failed for three times.
"""
# TODO: add numa aware option
ssh = SSH()
ssh.connect(node)
for _ in range(3):
ret_code, stdout, _ = ssh.exec_command_sudo(
'cat /sys/kernel/mm/hugepages/hugepages-{0}kB/nr_hugepages'.
format(huge_size))
if ret_code == 0:
try:
huge_total = int(stdout)
except ValueError:
logger.trace('Reading total huge pages information failed')
else:
break
else:
raise RuntimeError('Getting total huge pages information failed.')
return huge_total
@staticmethod
def check_huge_page(node, huge_mnt, mem_size, allocate=False):
"""Check if there is enough HugePages in system. If allocate is set to
true, try to allocate more HugePages.
:param node: Node in the topology.
:param huge_mnt: HugePage mount point.
:param mem_size: Requested memory in MB.
:param allocate: Whether to allocate more memory if not enough.
:type node: dict
:type huge_mnt: str
:type mem_size: str
:type allocate: bool
:raises RuntimeError: Mounting hugetlbfs failed or not enough HugePages
or increasing map count failed.
"""
# TODO: split function into smaller parts.
ssh = SSH()
ssh.connect(node)
# Get huge pages information
huge_size = DUTSetup.get_huge_page_size(node)
huge_free = DUTSetup.get_huge_page_free(node, huge_size)
huge_total = DUTSetup.get_huge_page_total(node, huge_size)
# Check if memory reqested is available on host
if (mem_size * 1024) > (huge_free * huge_size):
# If we want to allocate hugepage dynamically
if allocate:
mem_needed = (mem_size * 1024) - (huge_free * huge_size)
huge_to_allocate = ((mem_needed / huge_size) * 2) + huge_total
max_map_count = huge_to_allocate*4
# Increase maximum number of memory map areas a process may have
ret_code, _, _ = ssh.exec_command_sudo(
'echo "{0}" | sudo tee /proc/sys/vm/max_map_count'.
format(max_map_count))
if int(ret_code) != 0:
raise RuntimeError('Increase map count failed on {host}'.
format(host=node['host']))
# Increase hugepage count
ret_code, _, _ = ssh.exec_command_sudo(
'echo "{0}" | sudo tee /proc/sys/vm/nr_hugepages'.
format(huge_to_allocate))
if int(ret_code) != 0:
raise RuntimeError('Mount huge pages failed on {host}'.
format(host=node['host']))
# If we do not want to allocate dynamicaly end with error
else:
raise RuntimeError('Not enough free huge pages: {0}, {1} MB'.
format(huge_free, huge_free * huge_size))
# Check if huge pages mount point exist
has_huge_mnt = False
ret_code, stdout, _ = ssh.exec_command('cat /proc/mounts')
if int(ret_code) == 0:
for line in stdout.splitlines():
# Try to find something like:
# none /mnt/huge hugetlbfs rw,relatime,pagesize=2048k 0 0
mount = line.split()
if mount[2] == 'hugetlbfs' and mount[1] == huge_mnt:
has_huge_mnt = True
break
# If huge page mount point not exist create one
if not has_huge_mnt:
ret_code, _, _ = ssh.exec_command_sudo(
'mkdir -p {mnt}'.format(mnt=huge_mnt))
if int(ret_code) != 0:
raise RuntimeError('Create mount dir failed on {host}'.
format(host=node['host']))
ret_code, _, _ = ssh.exec_command_sudo(
'mount -t hugetlbfs -o pagesize=2048k none {mnt}'.
format(mnt=huge_mnt))
if int(ret_code) != 0:
raise RuntimeError('Mount huge pages failed on {host}'.
format(host=node['host']))
| [
2,
15069,
357,
66,
8,
2864,
28289,
290,
14,
273,
663,
29116,
13,
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,
25,
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,
37811,
35,
3843,
9058,
5888,
526,
15931,
198,
198,
6738,
9379,
13,
15042,
1330,
49706,
198,
198,
6738,
4133,
13,
75,
11127,
13,
29412,
13,
34184,
1187,
1330,
4757,
1187,
198,
6738,
4133,
13,
75,
11127,
13,
29412,
13,
45824,
1330,
33825,
11,
2452,
62,
28758,
62,
3919,
62,
18224,
198,
6738,
4133,
13,
75,
11127,
13,
29412,
13,
4852,
1435,
1330,
19081,
6030,
11,
5849,
1435,
628,
198,
4871,
360,
3843,
40786,
7,
15252,
2599,
198,
220,
220,
220,
37227,
4264,
1299,
5050,
329,
4634,
510,
360,
3843,
82,
526,
15931,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
15271,
62,
6404,
82,
7,
17440,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
2176,
2139,
4326,
17259,
422,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
360,
3843,
40786,
13,
20270,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
19203,
30328,
29568,
27,
1220,
7785,
14,
6404,
14,
16668,
4703,
585,
13,
6404,
1776,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
30328,
29568,
27,
1220,
22065,
15211,
16668,
13131,
24620,
6404,
8,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
19203,
24891,
34168,
1377,
3919,
12,
79,
3536,
1377,
20850,
34758,
3672,
92,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
20777,
2625,
3,
7,
30328,
4600,
10057,
34168,
905,
532,
79,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
13739,
17469,
14967,
27823,
1391,
3672,
92,
63,
930,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19301,
34373,
27007,
4798,
720,
17,
720,
18,
11709,
59,
11537,
1,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
3672,
28,
15271,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
19667,
1391,
4774,
92,
4054,
284,
651,
17259,
422,
4326,
1391,
3672,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
6,
4357,
1438,
28,
15271,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
15271,
62,
6404,
82,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
2176,
2139,
4326,
17259,
422,
477,
360,
3843,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13760,
25,
399,
4147,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
13760,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
1136,
62,
15271,
62,
6404,
82,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
15765,
62,
15271,
7,
17440,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19452,
433,
262,
3706,
2139,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
360,
3843,
40786,
13,
20270,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
16668,
13131,
34168,
15765,
1391,
3672,
92,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
15271,
1391,
3672,
92,
15765,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
19667,
1391,
4774,
92,
4054,
284,
15765,
2139,
1391,
3672,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
6,
4357,
1438,
28,
15271,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
11,
3141,
11,
26827,
28,
15259,
11,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
1136,
62,
15271,
62,
6404,
82,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
15765,
62,
15271,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19452,
433,
262,
3706,
2139,
319,
477,
360,
3843,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
399,
4147,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
2118,
433,
62,
15271,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
923,
62,
15271,
7,
17440,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10434,
510,
262,
3706,
2139,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
1487,
3141,
284,
923,
1752,
477,
2560,
2163,
6153,
13,
198,
220,
220,
220,
220,
220,
220,
220,
611,
360,
3843,
40786,
13,
20270,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
16668,
13131,
34168,
15765,
1391,
3672,
92,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
15271,
1391,
3672,
92,
15765,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
19667,
1391,
4774,
92,
4054,
284,
923,
2139,
1391,
3672,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
6,
4357,
1438,
28,
15271,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
11,
3141,
11,
26827,
28,
15259,
11,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
1136,
62,
15271,
62,
6404,
82,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
923,
62,
15271,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10434,
510,
262,
3706,
2139,
319,
477,
360,
3843,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
399,
4147,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
9688,
62,
15271,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2245,
62,
15271,
7,
17440,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19485,
262,
3706,
2139,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
360,
3843,
40786,
13,
20270,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
16668,
13131,
34168,
2245,
1391,
3672,
92,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
15271,
1391,
3672,
92,
2245,
4458,
18982,
7,
3672,
28,
15271,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
19667,
1391,
4774,
92,
4054,
284,
2245,
2139,
1391,
3672,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
6,
4357,
1438,
28,
15271,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
11,
3141,
11,
26827,
28,
15259,
11,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
1136,
62,
15271,
62,
6404,
82,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2245,
62,
15271,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
2139,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19485,
262,
3706,
2139,
319,
477,
360,
3843,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
399,
4147,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2139,
25,
4809,
4326,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2139,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
11338,
62,
15271,
7,
17440,
11,
2139,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
85,
381,
62,
35317,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
37022,
286,
2491,
569,
10246,
1429,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
37022,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
340,
318,
407,
1744,
284,
651,
262,
37022,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
23433,
23884,
25,
3497,
569,
10246,
37022,
4458,
18982,
7,
72,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
336,
1082,
81,
796,
26678,
13,
18558,
62,
21812,
10786,
35317,
1659,
410,
381,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
3673,
1744,
284,
651,
37022,
286,
569,
10246,
1429,
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,
705,
261,
10139,
25,
1391,
15,
32239,
77,
1391,
16,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
17440,
17816,
4774,
6,
4357,
14367,
448,
1343,
336,
1082,
81,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46514,
62,
4868,
796,
14367,
448,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
35317,
62,
4868,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
493,
7,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
407,
46514,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
2949,
569,
10246,
37022,
1043,
319,
10139,
1391,
15,
92,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
5167,
788,
530,
569,
10246,
37022,
1043,
319,
10139,
1391,
15,
92,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
600,
7,
35317,
8,
329,
46514,
287,
46514,
62,
4868,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
85,
381,
62,
79,
2340,
7,
77,
4147,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
37022,
286,
2491,
569,
10246,
1429,
319,
477,
360,
3843,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13760,
25,
360,
3843,
13760,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
13760,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
37022,
82,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
279,
2340,
796,
8633,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
2340,
58,
17440,
17816,
4774,
6,
11907,
796,
360,
3843,
40786,
13,
1136,
62,
85,
381,
62,
35317,
7,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
279,
2340,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
21473,
62,
25202,
62,
332,
1958,
7,
17440,
11,
21473,
62,
4906,
11,
997,
85,
9501,
11,
2700,
62,
15003,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13414,
1958,
611,
36579,
1195,
1404,
3335,
7166,
5499,
389,
23224,
319,
477,
198,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
82,
13,
1002,
11507,
2700,
37588,
318,
900,
284,
6407,
11,
788,
1949,
284,
198,
220,
220,
220,
220,
220,
220,
220,
41216,
393,
4781,
569,
42388,
319,
1195,
1404,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
29609,
78,
62,
4906,
25,
36579,
3335,
2099,
532,
44884,
62,
41473,
23,
3865,
87,
535,
393,
44884,
62,
34,
18,
31811,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
997,
85,
9501,
25,
7913,
286,
569,
42388,
284,
41216,
11,
657,
532,
15560,
262,
569,
42388,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2700,
62,
15003,
25,
1002,
6407,
788,
1949,
284,
41216,
284,
2176,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
21473,
62,
4906,
25,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
997,
85,
9501,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2700,
62,
15003,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
1195,
1404,
569,
42388,
389,
407,
2727,
290,
2700,
2315,
318,
900,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
10352,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
39886,
62,
29851,
796,
5849,
1435,
13,
1136,
62,
29609,
1098,
85,
7,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
264,
380,
709,
62,
22510,
85,
9501,
796,
360,
3843,
40786,
13,
1136,
62,
82,
380,
709,
62,
22510,
85,
9501,
7,
17440,
11,
39886,
62,
29851,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
264,
380,
709,
62,
22510,
85,
9501,
14512,
997,
85,
9501,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2700,
62,
15003,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1195,
1404,
318,
407,
23224,
290,
356,
765,
284,
41216,
351,
997,
85,
9501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
29609,
78,
62,
25202,
62,
15003,
7,
17440,
11,
21473,
62,
4906,
11,
997,
85,
9501,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
48,
1404,
3335,
4054,
284,
2251,
569,
42388,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
21473,
62,
25202,
62,
15003,
7,
17440,
11,
21473,
62,
4906,
11,
997,
85,
9501,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
31768,
36579,
1195,
1404,
3335,
7166,
5499,
319,
360,
3843,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
29609,
78,
62,
4906,
25,
36579,
3335,
2099,
532,
44884,
62,
41473,
23,
3865,
87,
535,
393,
44884,
62,
34,
18,
31811,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
997,
85,
9501,
25,
7913,
286,
569,
42388,
284,
41216,
11,
657,
532,
15560,
262,
569,
42388,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
21473,
62,
4906,
25,
4731,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
997,
85,
9501,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
4054,
284,
2245,
569,
10246,
393,
1195,
1404,
4054,
284,
41216,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
21473,
62,
4906,
6624,
366,
39,
54,
62,
41473,
23,
3865,
87,
535,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9720,
62,
4666,
796,
366,
80,
265,
62,
34985,
23,
3865,
87,
535,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9720,
62,
7109,
85,
796,
366,
34985,
23,
3865,
87,
535,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
21473,
62,
4906,
6624,
366,
39,
54,
62,
34,
18,
31811,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9720,
62,
4666,
796,
366,
80,
265,
62,
66,
18,
31811,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9720,
62,
7109,
85,
796,
366,
66,
18,
31811,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
3118,
15999,
21473,
3335,
2099,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
39886,
62,
29851,
796,
5849,
1435,
13,
1136,
62,
29609,
1098,
85,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1195,
1404,
3335,
1276,
307,
302,
12,
7784,
284,
9720,
4639,
878,
37588,
13,
198,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
332,
1958,
62,
33885,
62,
21412,
7,
17440,
11,
9720,
62,
4666,
11,
2700,
62,
2220,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13707,
569,
10246,
284,
2948,
2636,
5354,
13,
198,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
11338,
62,
15271,
7,
17440,
11,
4757,
1187,
13,
8859,
47,
62,
4944,
2043,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1459,
62,
26230,
796,
360,
3843,
40786,
13,
1136,
62,
79,
979,
62,
7959,
62,
26230,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
11,
39886,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1459,
62,
26230,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
79,
979,
62,
26230,
62,
403,
21653,
7,
17440,
11,
39886,
62,
29851,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
41211,
284,
9720,
4639,
13,
198,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
79,
979,
62,
26230,
62,
21653,
7,
17440,
11,
39886,
62,
29851,
11,
9720,
62,
7109,
85,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
20768,
1096,
1195,
1404,
569,
42388,
13,
198,
220,
220,
220,
220,
220,
220,
220,
611,
997,
85,
9501,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
2617,
62,
82,
380,
709,
62,
22510,
85,
9501,
7,
17440,
11,
39886,
62,
29851,
11,
997,
85,
9501,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
48940,
22184,
62,
79,
979,
62,
29851,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
17976,
2209,
286,
15595,
15553,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
279,
69,
62,
79,
979,
62,
29851,
25,
16331,
15553,
17976,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
410,
69,
62,
312,
25,
15595,
15553,
1271,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
279,
69,
62,
79,
979,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
410,
69,
62,
312,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
15595,
15553,
17976,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
4054,
284,
651,
15595,
15553,
17976,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
12093,
12453,
29568,
961,
8726,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
979,
92,
14,
48940,
22184,
90,
85,
69,
62,
312,
30072,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
28,
85,
69,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
651,
7166,
2163,
17976,
2209,
2637,
628,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
11,
4808,
796,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
14367,
448,
13,
36311,
3419,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
82,
380,
709,
62,
22510,
85,
9501,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
1271,
286,
16808,
12,
40,
8874,
569,
42388,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
279,
69,
62,
79,
979,
62,
29851,
25,
16331,
15553,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
279,
69,
62,
79,
979,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
7913,
286,
569,
42388,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
17976,
3335,
318,
407,
16808,
12,
40,
8874,
6007,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
9246,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
979,
92,
14,
82,
380,
709,
62,
22510,
85,
9501,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
69,
62,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
5662,
40,
3335,
1391,
79,
979,
92,
318,
407,
257,
16808,
12,
40,
8874,
3335,
2637,
13,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
69,
62,
79,
979,
62,
29851,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
11,
4808,
796,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
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,
220,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
380,
709,
62,
22510,
85,
9501,
796,
493,
7,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
36120,
264,
380,
709,
62,
22510,
85,
9501,
7508,
4054,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
264,
380,
709,
62,
22510,
85,
9501,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
900,
62,
82,
380,
709,
62,
22510,
85,
9501,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
997,
85,
9501,
28,
15,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
31768,
393,
13259,
16808,
12,
40,
8874,
7166,
5499,
416,
4634,
663,
1271,
319,
17976,
198,
220,
220,
220,
220,
220,
220,
220,
3335,
319,
360,
3843,
13,
25700,
284,
6632,
20694,
477,
569,
42388,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
279,
69,
62,
79,
979,
62,
29851,
25,
16331,
15553,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
997,
85,
9501,
25,
7913,
286,
569,
42388,
284,
41216,
11,
657,
532,
20694,
262,
569,
42388,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
279,
69,
62,
79,
979,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
997,
85,
9501,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
22738,
284,
2251,
569,
42388,
319,
17976,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
22510,
92,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
979,
92,
14,
82,
380,
709,
62,
22510,
85,
9501,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
22510,
28,
22510,
85,
9501,
11,
39886,
28,
79,
69,
62,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
2251,
1391,
22510,
92,
569,
42388,
319,
1391,
79,
979,
92,
3335,
319,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
22510,
28,
22510,
85,
9501,
11,
39886,
28,
79,
69,
62,
79,
979,
62,
29851,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
39886,
62,
26230,
62,
403,
21653,
7,
17440,
11,
39886,
62,
29851,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3118,
21653,
17976,
3335,
422,
1459,
4639,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
39886,
62,
29851,
25,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
39886,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
17976,
3335,
555,
21653,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
79,
979,
92,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
14751,
494,
92,
14,
26230,
14,
403,
21653,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
979,
62,
29851,
11,
40653,
494,
28,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
555,
21653,
17976,
3335,
1391,
79,
979,
92,
319,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
979,
62,
29851,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
39886,
62,
26230,
62,
21653,
7,
17440,
11,
39886,
62,
29851,
11,
4639,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36180,
17976,
3335,
284,
4639,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
39886,
62,
29851,
25,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4639,
25,
12434,
284,
11007,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
39886,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
4639,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
17976,
3335,
11007,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
11007,
17976,
3335,
1391,
79,
979,
92,
284,
1391,
26230,
92,
319,
2583,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
979,
62,
29851,
11,
4639,
28,
26230,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
26230,
92,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
979,
92,
14,
26230,
62,
2502,
13154,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
26230,
28,
26230,
11,
39886,
28,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
79,
979,
92,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
36702,
14,
90,
26230,
92,
14,
21653,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
979,
62,
29851,
11,
4639,
28,
26230,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
220,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
979,
92,
14,
26230,
62,
2502,
13154,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
979,
28,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
39886,
62,
85,
69,
62,
26230,
62,
403,
21653,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3118,
21653,
15595,
15553,
422,
4639,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
279,
69,
62,
79,
979,
62,
29851,
25,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
410,
69,
62,
312,
25,
15595,
15553,
4522,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
279,
69,
62,
79,
979,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
410,
69,
62,
312,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
15595,
15553,
555,
21653,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
410,
69,
62,
79,
979,
62,
29851,
796,
360,
3843,
40786,
13,
1136,
62,
48940,
22184,
62,
79,
979,
62,
29851,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
410,
69,
62,
6978,
796,
12813,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
69,
62,
79,
979,
62,
29851,
92,
14,
48940,
22184,
90,
85,
69,
62,
312,
92,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
69,
62,
79,
979,
62,
29851,
28,
79,
69,
62,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
828,
410,
69,
62,
312,
28,
85,
69,
62,
312,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
85,
69,
62,
79,
979,
62,
29851,
92,
930,
30479,
1391,
85,
69,
62,
6978,
92,
14,
26230,
14,
403,
21653,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
85,
69,
62,
79,
979,
62,
29851,
28,
85,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
6978,
28,
85,
69,
62,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
555,
21653,
569,
37,
1391,
85,
69,
62,
79,
979,
62,
29851,
92,
284,
319,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
85,
69,
62,
79,
979,
62,
29851,
28,
85,
69,
62,
79,
979,
62,
29851,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
39886,
62,
85,
69,
62,
26230,
62,
21653,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
11,
4639,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36180,
15595,
15553,
284,
4639,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
279,
69,
62,
79,
979,
62,
29851,
25,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
410,
69,
62,
312,
25,
15595,
15553,
4522,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4639,
25,
12434,
284,
11007,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
279,
69,
62,
79,
979,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
410,
69,
62,
312,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
4639,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
17976,
3335,
11007,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
410,
69,
62,
79,
979,
62,
29851,
796,
360,
3843,
40786,
13,
1136,
62,
48940,
22184,
62,
79,
979,
62,
29851,
7,
17440,
11,
279,
69,
62,
79,
979,
62,
29851,
11,
410,
69,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
410,
69,
62,
6978,
796,
12813,
17597,
14,
10885,
14,
79,
979,
14,
42034,
14,
90,
79,
69,
62,
79,
979,
62,
29851,
92,
14,
48940,
22184,
90,
85,
69,
62,
312,
92,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
79,
69,
62,
79,
979,
62,
29851,
28,
79,
69,
62,
79,
979,
62,
29851,
13,
33491,
7,
10354,
3256,
374,
6,
59,
32105,
828,
410,
69,
62,
312,
28,
85,
69,
62,
312,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
11007,
569,
37,
1391,
85,
69,
62,
79,
979,
62,
29851,
92,
284,
1391,
26230,
92,
319,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
85,
69,
62,
79,
979,
62,
29851,
28,
85,
69,
62,
79,
979,
62,
29851,
11,
4639,
28,
26230,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
26230,
92,
930,
30479,
1391,
85,
69,
62,
6978,
92,
14,
26230,
62,
2502,
13154,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
26230,
28,
26230,
11,
410,
69,
62,
6978,
28,
85,
69,
62,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
1391,
85,
69,
62,
79,
979,
62,
29851,
92,
930,
30479,
1220,
17597,
14,
10885,
14,
79,
979,
14,
36702,
14,
90,
26230,
92,
14,
21653,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
85,
69,
62,
79,
979,
62,
29851,
28,
85,
69,
62,
79,
979,
62,
29851,
11,
4639,
28,
26230,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
1477,
532,
66,
37082,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24018,
30328,
220,
930,
30479,
1391,
85,
69,
62,
6978,
92,
14,
26230,
62,
2502,
13154,
6,
1911,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
85,
69,
62,
6978,
28,
85,
69,
62,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
10232,
11,
21061,
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,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
79,
979,
62,
7959,
62,
26230,
7,
17440,
11,
39886,
62,
29851,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
1459,
17976,
3335,
4639,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
3465,
3712,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
300,
2777,
979,
532,
85,
3020,
591,
17643,
25,
405,
25,
2713,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32026,
25,
220,
220,
3571,
25,
2713,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5016,
25,
220,
31903,
10444,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39896,
25,
2297,
10983,
11,
3457,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16232,
25,
11285,
952,
3127,
3335,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20546,
18738,
25,
220,
220,
220,
220,
220,
220,
220,
2297,
10983,
11,
3457,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9834,
1990,
501,
25,
220,
220,
220,
220,
220,
220,
220,
16232,
3571,
486,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1380,
88,
38963,
25,
220,
220,
220,
220,
220,
220,
220,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12434,
25,
4118,
952,
12,
79,
979,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
39886,
62,
29851,
25,
17976,
3335,
2209,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
39886,
62,
29851,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
12434,
393,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
17976,
581,
5171,
393,
300,
2777,
979,
3141,
9706,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
340,
318,
407,
1744,
284,
651,
262,
7071,
4639,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1321,
422,
262,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
23433,
1271,
1391,
15,
38362,
3497,
17976,
3335,
4639,
4458,
18982,
7,
72,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
75,
2777,
979,
532,
85,
3020,
591,
1391,
15,
92,
4458,
18982,
7,
79,
979,
62,
29851,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
7,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
6,
90,
15,
92,
6,
4054,
319,
705,
90,
16,
92,
29653,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
18982,
7,
28758,
11,
10139,
17816,
4774,
20520,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
14367,
448,
13,
35312,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
1988,
796,
1627,
13,
35312,
7203,
59,
83,
1600,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
6624,
366,
32103,
25,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
6624,
705,
32103,
25,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1988,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
1279,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
32103,
329,
17976,
3335,
23884,
407,
1043,
11,
23710,
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,
705,
79,
979,
581,
5171,
290,
1005,
14992,
4458,
18982,
7,
79,
979,
62,
29851,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
1477,
532,
66,
366,
30328,
352,
1875,
1220,
17597,
14,
10885,
14,
79,
979,
14,
411,
5171,
30543,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
4808,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
6,
90,
15,
92,
6,
4054,
319,
705,
90,
16,
92,
29653,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
18982,
7,
28758,
11,
10139,
17816,
4774,
20520,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
11767,
62,
33885,
62,
21412,
7,
17440,
11,
8265,
11,
2700,
62,
2220,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13414,
1958,
611,
9720,
8265,
318,
9639,
319,
10139,
13,
1002,
11507,
2700,
198,
220,
220,
220,
220,
220,
220,
220,
3440,
318,
900,
284,
6407,
11,
788,
1949,
284,
3440,
262,
13103,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8265,
25,
19937,
284,
11767,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2700,
62,
2220,
25,
1002,
6407,
788,
1949,
284,
3440,
8265,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8265,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2700,
62,
2220,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
8265,
318,
407,
9639,
393,
4054,
284,
3440,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
70,
7856,
532,
86,
1391,
21412,
92,
1220,
36942,
14,
18170,
4458,
18982,
7,
21412,
28,
21412,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
42,
7948,
8265,
1391,
21412,
92,
318,
407,
9639,
319,
2583,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
21412,
28,
21412,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
43160,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2700,
62,
2220,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
19937,
318,
407,
9639,
290,
356,
765,
284,
3440,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
2220,
62,
33885,
62,
21412,
7,
17440,
11,
8265,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
11767,
62,
33885,
62,
21412,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
8265,
11,
2700,
62,
2220,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13414,
1958,
611,
9720,
8265,
318,
9639,
319,
477,
360,
3843,
82,
13,
1002,
11507,
2700,
198,
220,
220,
220,
220,
220,
220,
220,
3440,
318,
900,
284,
6407,
11,
788,
1949,
284,
3440,
262,
13103,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
13760,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8265,
25,
19937,
284,
11767,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2700,
62,
2220,
25,
1002,
6407,
788,
1949,
284,
3440,
8265,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8265,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2700,
62,
2220,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
332,
1958,
62,
33885,
62,
21412,
7,
17440,
11,
8265,
11,
2700,
62,
2220,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
11767,
62,
84,
952,
62,
26230,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13414,
1958,
611,
334,
952,
4639,
9720,
8265,
318,
9639,
319,
477,
360,
3843,
82,
13,
1002,
8265,
198,
220,
220,
220,
220,
220,
220,
220,
318,
407,
1944,
340,
481,
1949,
284,
3440,
340,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
13760,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
952,
62,
26230,
796,
5849,
1435,
13,
1136,
62,
84,
952,
62,
26230,
7,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
332,
1958,
62,
33885,
62,
21412,
7,
17440,
11,
334,
952,
62,
26230,
11,
2700,
62,
2220,
28,
17821,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
3440,
62,
33885,
62,
21412,
7,
17440,
11,
8265,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8912,
9720,
8265,
319,
10139,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
8265,
25,
19937,
284,
3440,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
8265,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
2147,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
11046,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
4666,
1676,
1350,
1391,
21412,
92,
4458,
18982,
7,
21412,
28,
21412,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
3440,
1391,
21412,
92,
319,
2583,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
21412,
28,
21412,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2721,
62,
85,
381,
62,
261,
62,
439,
62,
67,
5500,
7,
77,
4147,
11,
410,
381,
62,
35339,
62,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15798,
569,
10246,
319,
477,
360,
3843,
13760,
13,
7253,
262,
569,
10246,
2139,
287,
1339,
286,
198,
220,
220,
220,
220,
220,
220,
220,
31490,
318,
407,
1695,
393,
857,
407,
1104,
1960,
455,
433,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13760,
25,
399,
4147,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
410,
381,
62,
35339,
62,
15908,
25,
10644,
284,
8619,
810,
569,
10246,
10392,
389,
8574,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
13760,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
410,
381,
62,
35339,
62,
15908,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
4054,
284,
4781,
393,
2721,
569,
10246,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
13760,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
2721,
569,
10246,
319,
2583,
1391,
4774,
92,
0,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
17816,
4906,
20520,
6624,
19081,
6030,
13,
35,
3843,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
705,
18755,
532,
82,
1220,
7959,
14,
8423,
1220,
14784,
14,
17597,
34168,
13,
67,
14,
1795,
12,
85,
381,
13,
10414,
8614,
2081,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
21061,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
45302,
1220,
14784,
14,
7278,
65,
12,
20979,
26,
9809,
17971,
90,
26288,
5446,
9865,
62,
2389,
92,
30543,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
11,
4808,
796,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
14367,
448,
13,
36311,
3419,
6624,
705,
36609,
11157,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
2373,
12,
1136,
35714,
532,
88,
366,
9,
85,
381,
9,
1,
8614,
2081,
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,
26827,
28,
10232,
11,
21061,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
26059,
10025,
532,
72,
1377,
3174,
12,
439,
1391,
15908,
92,
24620,
11275,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
15908,
28,
85,
381,
62,
35339,
62,
15908,
828,
26827,
28,
10232,
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,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
26059,
10025,
532,
75,
930,
42717,
410,
381,
3256,
21061,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
360,
3843,
40786,
13,
20270,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
2118,
433,
62,
15271,
7,
17440,
11,
4757,
1187,
13,
8859,
47,
62,
4944,
2043,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
88,
388,
532,
88,
4781,
366,
9,
85,
381,
9,
1,
8614,
2081,
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,
26827,
28,
10232,
11,
21061,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
48235,
532,
452,
71,
1391,
15908,
92,
24620,
48235,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
15908,
28,
85,
381,
62,
35339,
62,
15908,
828,
26827,
28,
10232,
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,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
705,
48235,
532,
80,
1872,
1635,
85,
381,
9,
3256,
21061,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
3843,
40786,
13,
2118,
433,
62,
15271,
7,
17440,
11,
4757,
1187,
13,
8859,
47,
62,
4944,
2043,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2491,
62,
259,
62,
34924,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2446,
5254,
611,
1353,
1435,
10139,
318,
2491,
2641,
9290,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
5849,
1435,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
6407,
611,
2491,
287,
36253,
9290,
11,
3991,
611,
407,
393,
4054,
198,
220,
220,
220,
220,
220,
220,
220,
284,
4886,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
20512,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
40616,
7856,
36253,
1220,
36942,
14,
16,
14,
66,
8094,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
651,
269,
8094,
6460,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
26827,
28,
1270,
11,
21061,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
43160,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
45986,
62,
647,
2004,
15908,
7,
17440,
11,
334,
27112,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
25716,
33345,
329,
4638,
2004,
35277,
814,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
360,
3843,
10139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
334,
27112,
25,
25716,
471,
27586,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
334,
27112,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
25716,
9290,
4638,
2004,
35277,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
1972,
5072,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
796,
366,
45986,
10104,
1377,
18982,
11639,
1,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27007,
27007,
13,
37065,
32103,
13,
6601,
13,
13102,
2004,
35277,
11709,
11709,
6,
1391,
12303,
312,
92,
1911,
18982,
7,
12303,
312,
28,
12303,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
705,
37,
6255,
284,
651,
8619,
286,
1391,
12303,
312,
92,
319,
2583,
1391,
4774,
92,
4458,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
12303,
312,
28,
12303,
312,
11,
2583,
28,
17440,
17816,
4774,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
11,
4808,
796,
2452,
62,
28758,
62,
3919,
62,
18224,
7,
17440,
11,
3141,
11,
21061,
28,
17821,
11,
3275,
28,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
14367,
448,
13,
36311,
3419,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
40878,
62,
7700,
62,
7857,
7,
17440,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
4277,
2546,
286,
3236,
5468,
287,
1080,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
15161,
2546,
286,
1479,
3236,
5468,
287,
1080,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
3555,
4054,
329,
1115,
1661,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
70,
7856,
35225,
31126,
1096,
1220,
36942,
14,
11883,
10951,
930,
3253,
74,
705,
90,
3601,
720,
17,
1782,
6,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1005,
62,
8189,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
7857,
796,
493,
7,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
36120,
3236,
2443,
2546,
1321,
4054,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
20570,
3236,
2443,
2546,
1321,
4054,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3236,
62,
7857,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
40878,
62,
7700,
62,
5787,
7,
17440,
11,
3236,
62,
7857,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
1271,
286,
1479,
3236,
5468,
287,
1080,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3236,
62,
7857,
25,
12849,
286,
3236,
31126,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3236,
62,
7857,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
7913,
286,
1479,
3236,
5468,
287,
1080,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
3555,
4054,
329,
1115,
1661,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
751,
997,
64,
3910,
3038,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9246,
1220,
17597,
14,
33885,
14,
3020,
14,
40878,
31126,
14,
40878,
31126,
12,
90,
15,
92,
38841,
14,
5787,
62,
40878,
31126,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
40878,
62,
7857,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1005,
62,
8189,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
5787,
796,
493,
7,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
36120,
1479,
3236,
5468,
1321,
4054,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
20570,
1479,
3236,
5468,
1321,
4054,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3236,
62,
5787,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
40878,
62,
7700,
62,
23350,
7,
17440,
11,
3236,
62,
7857,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
2472,
1271,
286,
3236,
5468,
287,
1080,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3236,
62,
7857,
25,
12849,
286,
3236,
31126,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3236,
62,
7857,
25,
493,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
7472,
1271,
286,
3236,
5468,
287,
1080,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
493,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
1002,
3555,
4054,
329,
1115,
1661,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
751,
997,
64,
3910,
3038,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9246,
1220,
17597,
14,
33885,
14,
3020,
14,
40878,
31126,
14,
40878,
31126,
12,
90,
15,
92,
38841,
14,
48624,
62,
40878,
31126,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
40878,
62,
7857,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1005,
62,
8189,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
23350,
796,
493,
7,
19282,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40546,
10786,
36120,
2472,
3236,
5468,
1321,
4054,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
20570,
2472,
3236,
5468,
1321,
4054,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3236,
62,
23350,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2198,
62,
40878,
62,
7700,
7,
17440,
11,
3236,
62,
76,
429,
11,
1066,
62,
7857,
11,
31935,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9787,
611,
612,
318,
1576,
35225,
47798,
287,
1080,
13,
1002,
31935,
318,
900,
284,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
11,
1949,
284,
31935,
517,
35225,
47798,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10139,
25,
19081,
287,
262,
1353,
1435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
3236,
62,
76,
429,
25,
35225,
9876,
3817,
966,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1066,
62,
7857,
25,
19390,
276,
4088,
287,
10771,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
31935,
25,
10127,
284,
31935,
517,
4088,
611,
407,
1576,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10139,
25,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
3236,
62,
76,
429,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
1066,
62,
7857,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
31935,
25,
20512,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
430,
2696,
43160,
12331,
25,
5628,
278,
16225,
316,
23160,
9501,
4054,
393,
407,
1576,
35225,
47798,
198,
220,
220,
220,
220,
220,
220,
220,
393,
3649,
3975,
954,
4054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
6626,
2163,
656,
4833,
3354,
13,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
796,
33825,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26678,
13,
8443,
7,
17440,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
3236,
5468,
1321,
198,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
7857,
796,
360,
3843,
40786,
13,
1136,
62,
40878,
62,
7700,
62,
7857,
7,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
5787,
796,
360,
3843,
40786,
13,
1136,
62,
40878,
62,
7700,
62,
5787,
7,
17440,
11,
3236,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
23350,
796,
360,
3843,
40786,
13,
1136,
62,
40878,
62,
7700,
62,
23350,
7,
17440,
11,
3236,
62,
7857,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
4088,
43089,
7287,
318,
1695,
319,
2583,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
11883,
62,
7857,
1635,
28119,
8,
1875,
357,
40878,
62,
5787,
1635,
3236,
62,
7857,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
356,
765,
284,
31935,
3236,
7700,
32366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
31935,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1066,
62,
27938,
796,
357,
11883,
62,
7857,
1635,
28119,
8,
532,
357,
40878,
62,
5787,
1635,
3236,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3236,
62,
1462,
62,
439,
13369,
796,
14808,
11883,
62,
27938,
1220,
3236,
62,
7857,
8,
1635,
362,
8,
1343,
3236,
62,
23350,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
8899,
62,
9127,
796,
3236,
62,
1462,
62,
439,
13369,
9,
19,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
25285,
5415,
1271,
286,
4088,
3975,
3006,
257,
1429,
743,
423,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
4808,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
30328,
45144,
15,
36786,
930,
21061,
30479,
1220,
36942,
14,
17597,
14,
14761,
14,
9806,
62,
8899,
62,
9127,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
9806,
62,
8899,
62,
9127,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
46890,
3975,
954,
4054,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
25285,
3236,
7700,
954,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
4808,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
30328,
45144,
15,
36786,
930,
21061,
30479,
1220,
36942,
14,
17597,
14,
14761,
14,
48624,
62,
40878,
31126,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
40878,
62,
1462,
62,
439,
13369,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
35452,
3236,
5468,
4054,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
356,
466,
407,
765,
284,
31935,
6382,
605,
88,
886,
351,
4049,
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,
5298,
43160,
12331,
10786,
3673,
1576,
1479,
3236,
5468,
25,
1391,
15,
5512,
1391,
16,
92,
10771,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
40878,
62,
5787,
11,
3236,
62,
5787,
1635,
3236,
62,
7857,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
3236,
5468,
3817,
966,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
468,
62,
40878,
62,
76,
429,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
14367,
448,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
10786,
9246,
1220,
36942,
14,
14948,
82,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
14367,
448,
13,
35312,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9993,
284,
1064,
1223,
588,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4844,
1220,
76,
429,
14,
40878,
16225,
316,
23160,
9501,
374,
86,
11,
2411,
265,
524,
11,
31126,
1096,
28,
1238,
2780,
74,
657,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3817,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3817,
58,
17,
60,
6624,
705,
71,
1018,
316,
23160,
9501,
6,
290,
3817,
58,
16,
60,
6624,
3236,
62,
76,
429,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
468,
62,
40878,
62,
76,
429,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
3236,
2443,
3817,
966,
407,
2152,
2251,
530,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
468,
62,
40878,
62,
76,
429,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
4808,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28015,
15908,
532,
79,
1391,
76,
429,
92,
4458,
18982,
7,
76,
429,
28,
40878,
62,
76,
429,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
16447,
3817,
26672,
4054,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
62,
8189,
11,
4808,
11,
4808,
796,
26678,
13,
18558,
62,
21812,
62,
24032,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14948,
532,
83,
16225,
316,
23160,
9501,
532,
78,
5468,
1096,
28,
1238,
2780,
74,
4844,
1391,
76,
429,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
76,
429,
28,
40878,
62,
76,
429,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
1186,
62,
8189,
8,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
35452,
3236,
5468,
4054,
319,
1391,
4774,
92,
4458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
7,
4774,
28,
17440,
17816,
4774,
20520,
4008,
198
] | 2.054498 | 15,964 |
import coreutil
import unittest
| [
11748,
4755,
22602,
198,
11748,
555,
715,
395,
628
] | 3.666667 | 9 |
#!usr/bin/env python
# coding=utf-8
# Created by [email protected] on 2016/11/16.
"""
启动
"""
from scrapy import cmdline
cmdline.execute("scrapy crawl biquge".split())
| [
2,
0,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
28,
40477,
12,
23,
198,
2,
15622,
416,
1976,
258,
89,
5303,
88,
506,
31,
24136,
13,
785,
319,
1584,
14,
1157,
14,
1433,
13,
198,
198,
37811,
198,
28938,
107,
27950,
101,
198,
37811,
198,
198,
6738,
15881,
88,
1330,
23991,
1370,
198,
198,
28758,
1370,
13,
41049,
7203,
1416,
2416,
88,
27318,
275,
1557,
469,
1911,
35312,
28955,
198
] | 2.375 | 72 |
from cx_Freeze import setup, Executable
files = {"include_files": [
"command/",
], "packages": []}
setup(
name="pykage",
version="0.1.5",
description="npmjs en python",
options={'build_exe': files},
executables=[Executable("pykage.py", base=None)])
| [
6738,
43213,
62,
11146,
2736,
1330,
9058,
11,
8393,
18187,
198,
16624,
796,
19779,
17256,
62,
16624,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
366,
43789,
1298,
17635,
92,
198,
198,
40406,
7,
198,
1438,
2625,
9078,
74,
496,
1600,
198,
2196,
2625,
15,
13,
16,
13,
20,
1600,
198,
6764,
2625,
77,
4426,
8457,
551,
21015,
1600,
198,
3689,
34758,
6,
11249,
62,
13499,
10354,
3696,
5512,
198,
3121,
2977,
41888,
23002,
18187,
7203,
9078,
74,
496,
13,
9078,
1600,
2779,
28,
14202,
8,
12962,
628
] | 2.270677 | 133 |
from onegov.core.framework import Framework
from onegov.core.security import Public, Personal, Private, Secret
@Framework.setting_section(section="roles")
def get_roles_setting():
""" Returns the default roles available to onegov.core applications.
Applications building on onegov.core may add more roles and permissions,
or replace the existing ones entirely, though it's not something that
one should do carelessly.
The default roles are:
**admin**
Has access to everything
**editor**
Has access to most things
**member**
Has access their own data. Be careful though, core doesn't know about
personal data, so this is just a role to implement registered users.
As with all permissions, making sure the right information is shown
is up to the applications.
**anonymous**
Has access to public things
"""
return {
# the admin role has access to everything
'admin': set((
Public,
Private,
Personal,
Secret
)),
# the editor can do most things
'editor': set((
Public,
Private,
Personal,
)),
# registered users can do a few things
'member': set((
Public,
Personal,
)),
# the public has some access
'anonymous': set((
Public,
))
}
| [
6738,
530,
9567,
13,
7295,
13,
30604,
1330,
25161,
198,
6738,
530,
9567,
13,
7295,
13,
12961,
1330,
5094,
11,
15644,
11,
15348,
11,
3943,
628,
198,
31,
21055,
6433,
13,
33990,
62,
5458,
7,
5458,
2625,
305,
829,
4943,
198,
4299,
651,
62,
305,
829,
62,
33990,
33529,
198,
220,
220,
220,
37227,
16409,
262,
4277,
9176,
1695,
284,
530,
9567,
13,
7295,
5479,
13,
628,
220,
220,
220,
26622,
2615,
319,
530,
9567,
13,
7295,
743,
751,
517,
9176,
290,
21627,
11,
198,
220,
220,
220,
393,
6330,
262,
4683,
3392,
5000,
11,
996,
340,
338,
407,
1223,
326,
198,
220,
220,
220,
530,
815,
466,
1337,
8613,
13,
628,
220,
220,
220,
383,
4277,
9176,
389,
25,
628,
220,
220,
220,
12429,
28482,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
7875,
1895,
284,
2279,
628,
220,
220,
220,
12429,
35352,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
7875,
1895,
284,
749,
1243,
628,
220,
220,
220,
12429,
19522,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
7875,
1895,
511,
898,
1366,
13,
1355,
8161,
996,
11,
4755,
1595,
470,
760,
546,
198,
220,
220,
220,
220,
220,
220,
220,
2614,
1366,
11,
523,
428,
318,
655,
257,
2597,
284,
3494,
6823,
2985,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1081,
351,
477,
21627,
11,
1642,
1654,
262,
826,
1321,
318,
3402,
198,
220,
220,
220,
220,
220,
220,
220,
318,
510,
284,
262,
5479,
13,
628,
220,
220,
220,
12429,
272,
6704,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
7875,
1895,
284,
1171,
1243,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
13169,
2597,
468,
1895,
284,
2279,
198,
220,
220,
220,
220,
220,
220,
220,
705,
28482,
10354,
900,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5094,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15348,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15644,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3943,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
5464,
460,
466,
749,
1243,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35352,
10354,
900,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5094,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15348,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15644,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6823,
2985,
460,
466,
257,
1178,
1243,
198,
220,
220,
220,
220,
220,
220,
220,
705,
19522,
10354,
900,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5094,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15644,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
828,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
1171,
468,
617,
1895,
198,
220,
220,
220,
220,
220,
220,
220,
705,
272,
6704,
10354,
900,
19510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5094,
11,
198,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
1782,
198
] | 2.528696 | 575 |
# Copyright: 2006 Brian Harring <[email protected]>
# License: GPL2/BSD
from snakeoil.test.mixins import TempDirMixin
from pkgcore.cache import flat_hash
from pkgcore.test.cache import util, test_base
| [
2,
15069,
25,
4793,
8403,
2113,
1806,
1279,
2232,
1806,
65,
31,
14816,
13,
785,
29,
198,
2,
13789,
25,
38644,
17,
14,
21800,
198,
198,
6738,
17522,
9437,
13,
9288,
13,
19816,
1040,
1330,
24189,
35277,
35608,
259,
198,
198,
6738,
279,
10025,
7295,
13,
23870,
1330,
6228,
62,
17831,
198,
6738,
279,
10025,
7295,
13,
9288,
13,
23870,
1330,
7736,
11,
1332,
62,
8692,
628,
198
] | 3.029412 | 68 |
# -*- coding: utf-8 -*-
# 版权所有 2019 深圳米筐科技有限公司(下称“米筐科技”)
#
# 除非遵守当前许可,否则不得使用本软件。
#
# * 非商业用途(非商业用途指个人出于非商业目的使用本软件,或者高校、研究所等非营利机构出于教育、科研等目的使用本软件):
# 遵守 Apache License 2.0(下称“Apache 2.0 许可”),
# 您可以在以下位置获得 Apache 2.0 许可的副本:http://www.apache.org/licenses/LICENSE-2.0。
# 除非法律有要求或以书面形式达成协议,否则本软件分发时需保持当前许可“原样”不变,且不得附加任何条件。
#
# * 商业用途(商业用途指个人出于任何商业目的使用本软件,或者法人或其他组织出于任何目的使用本软件):
# 未经米筐科技授权,任何个人不得出于任何商业目的使用本软件(包括但不限于向第三方提供、销售、出租、出借、转让本软件、
# 本软件的衍生产品、引用或借鉴了本软件功能或源代码的产品或服务),任何法人或其他组织不得出于任何目的使用本软件,
# 否则米筐科技有权追究相应的知识产权侵权责任。
# 在此前提下,对本软件的使用同样需要遵守 Apache 2.0 许可,Apache 2.0 许可与本许可冲突之处,以本许可为准。
# 详细的授权流程,请联系 [email protected] 获取。
from inspect import signature
from typing import Callable, Union, Iterable
from functools import wraps, lru_cache as origin_lru_cache
cached_functions = []
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
13328,
231,
230,
30266,
225,
33699,
222,
17312,
231,
13130,
10545,
115,
109,
28839,
111,
163,
109,
111,
163,
255,
238,
163,
100,
239,
162,
232,
222,
17312,
231,
165,
247,
238,
17739,
105,
20998,
116,
171,
120,
230,
10310,
233,
163,
100,
108,
447,
250,
163,
109,
111,
163,
255,
238,
163,
100,
239,
162,
232,
222,
447,
251,
171,
120,
231,
198,
2,
198,
2,
16268,
247,
97,
165,
251,
252,
34402,
113,
22522,
230,
37605,
241,
30298,
235,
164,
106,
116,
20998,
107,
171,
120,
234,
28938,
99,
26344,
247,
38834,
36181,
245,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
16764,
198,
2,
198,
2,
220,
220,
220,
220,
1635,
16268,
251,
252,
161,
243,
228,
10310,
248,
18796,
101,
34460,
242,
171,
120,
230,
165,
251,
252,
161,
243,
228,
10310,
248,
18796,
101,
34460,
242,
162,
234,
229,
10310,
103,
21689,
49035,
118,
12859,
236,
165,
251,
252,
161,
243,
228,
10310,
248,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
234,
22755,
244,
38519,
165,
45865,
43718,
94,
23513,
163,
254,
242,
163,
102,
114,
33699,
222,
163,
255,
231,
165,
251,
252,
164,
238,
98,
26344,
102,
17312,
118,
162,
252,
226,
49035,
118,
12859,
236,
46763,
247,
164,
224,
110,
23513,
163,
100,
239,
163,
254,
242,
163,
255,
231,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
231,
171,
120,
248,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
16268,
223,
113,
22522,
230,
24843,
13789,
362,
13,
15,
171,
120,
230,
10310,
233,
163,
100,
108,
447,
250,
25189,
4891,
362,
13,
15,
5525,
106,
116,
20998,
107,
447,
251,
171,
120,
231,
171,
120,
234,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
10545,
224,
101,
20998,
107,
20015,
98,
28839,
101,
20015,
98,
10310,
233,
19526,
235,
163,
121,
106,
164,
236,
115,
36181,
245,
24843,
362,
13,
15,
5525,
106,
116,
20998,
107,
21410,
30298,
107,
17312,
105,
171,
120,
248,
4023,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
16764,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
16268,
247,
97,
165,
251,
252,
37345,
243,
36181,
233,
17312,
231,
17358,
223,
162,
109,
224,
22755,
244,
20015,
98,
20046,
99,
165,
251,
95,
37605,
95,
28156,
237,
164,
122,
122,
22755,
238,
39355,
237,
164,
106,
106,
171,
120,
234,
28938,
99,
26344,
247,
17312,
105,
164,
121,
107,
20015,
114,
26344,
228,
20998,
239,
33768,
114,
165,
250,
222,
46479,
251,
162,
234,
223,
37605,
241,
30298,
235,
164,
106,
116,
20998,
107,
447,
250,
43889,
253,
43718,
115,
447,
251,
38834,
20998,
246,
171,
120,
234,
10310,
242,
38834,
36181,
245,
165,
247,
226,
27950,
254,
20015,
119,
19526,
243,
30266,
94,
20015,
114,
16764,
198,
2,
198,
2,
220,
220,
220,
220,
1635,
10263,
243,
228,
10310,
248,
18796,
101,
34460,
242,
171,
120,
230,
161,
243,
228,
10310,
248,
18796,
101,
34460,
242,
162,
234,
229,
10310,
103,
21689,
49035,
118,
12859,
236,
20015,
119,
19526,
243,
161,
243,
228,
10310,
248,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
234,
22755,
244,
38519,
37345,
243,
21689,
22755,
244,
17739,
114,
20015,
244,
163,
119,
226,
163,
119,
229,
49035,
118,
12859,
236,
20015,
119,
19526,
243,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
231,
171,
120,
248,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
42164,
103,
163,
119,
237,
163,
109,
111,
163,
255,
238,
163,
100,
239,
162,
232,
222,
162,
236,
230,
30266,
225,
171,
120,
234,
20015,
119,
19526,
243,
10310,
103,
21689,
38834,
36181,
245,
49035,
118,
12859,
236,
20015,
119,
19526,
243,
161,
243,
228,
10310,
248,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
230,
44293,
227,
162,
233,
105,
19526,
228,
38834,
165,
247,
238,
12859,
236,
28938,
239,
163,
105,
105,
49011,
43095,
162,
237,
238,
160,
122,
249,
23513,
165,
242,
222,
161,
242,
106,
23513,
49035,
118,
163,
100,
253,
23513,
49035,
118,
161,
222,
253,
23513,
164,
121,
105,
164,
106,
102,
17312,
105,
164,
121,
107,
20015,
114,
23513,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
42164,
105,
164,
121,
107,
20015,
114,
21410,
26193,
235,
37955,
12859,
100,
161,
241,
223,
23513,
28156,
243,
18796,
101,
22755,
244,
161,
222,
253,
165,
231,
112,
12859,
228,
17312,
105,
164,
121,
107,
20015,
114,
27950,
253,
47797,
121,
22755,
244,
162,
118,
238,
47987,
163,
254,
223,
21410,
12859,
100,
161,
241,
223,
22755,
244,
17312,
235,
27950,
94,
171,
120,
231,
171,
120,
234,
20015,
119,
19526,
243,
37345,
243,
21689,
22755,
244,
17739,
114,
20015,
244,
163,
119,
226,
163,
119,
229,
38834,
36181,
245,
49035,
118,
12859,
236,
20015,
119,
19526,
243,
33566,
106,
21410,
45635,
18796,
101,
17312,
105,
164,
121,
107,
20015,
114,
171,
120,
234,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
10263,
238,
99,
26344,
247,
163,
109,
111,
163,
255,
238,
163,
100,
239,
162,
232,
222,
17312,
231,
30266,
225,
164,
4204,
163,
102,
114,
33566,
116,
41753,
242,
21410,
163,
253,
98,
46237,
228,
12859,
100,
30266,
225,
160,
122,
113,
30266,
225,
164,
112,
96,
20015,
119,
16764,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
10263,
250,
101,
29826,
97,
30298,
235,
162,
237,
238,
10310,
233,
171,
120,
234,
43380,
117,
17312,
105,
164,
121,
107,
20015,
114,
21410,
45635,
18796,
101,
28938,
234,
43718,
115,
165,
250,
222,
17358,
223,
34402,
113,
22522,
230,
24843,
362,
13,
15,
5525,
106,
116,
20998,
107,
171,
120,
234,
25189,
4891,
362,
13,
15,
5525,
106,
116,
20998,
107,
10310,
236,
17312,
105,
164,
106,
116,
20998,
107,
37863,
110,
163,
103,
223,
45298,
13783,
226,
171,
120,
234,
20015,
98,
17312,
105,
164,
106,
116,
20998,
107,
10310,
118,
49035,
228,
16764,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
5525,
107,
99,
163,
119,
228,
21410,
162,
236,
230,
30266,
225,
38184,
223,
163,
101,
233,
171,
120,
234,
46237,
115,
164,
223,
242,
163,
111,
119,
1171,
31,
20970,
40972,
13,
785,
5525,
236,
115,
20998,
244,
16764,
198,
198,
6738,
10104,
1330,
9877,
198,
6738,
19720,
1330,
4889,
540,
11,
4479,
11,
40806,
540,
198,
6738,
1257,
310,
10141,
1330,
27521,
11,
300,
622,
62,
23870,
355,
8159,
62,
75,
622,
62,
23870,
198,
198,
66,
2317,
62,
12543,
2733,
796,
17635,
628,
628
] | 0.752868 | 1,133 |
from collections import namedtuple
import numpy as np
"""
Templates for glycan residues
"""
AA_info = namedtuple('AA_info', 'coords atom_names bonds bb sc offset')
BDP_info = AA_info(coords=np.array([[-14.69, 10.15, -18.15],
[-15.46, 11.47, -18.33],
[-16.33, 11.35, -19.46],
[-14.45, 12.62, -18.54],
[-15.15, 13.88, -18.62],
[-13.41, 12.66, -17.39],
[-12.36, 13.57, -17.75],
[-12.76, 11.28, -17.17],
[-11.74, 11.28, -16.03],
[-10.58, 11.62, -16.19],
[-12.26, 11.06, -14.85],
[-13.8, 10.27, -17.01],
[-14.09, 9.95, -19.04],
[-16.06, 11.66, -17.43],
[-13.92, 12.44, -19.49],
[-13.9, 12.98, -16.46],
[-12.19, 11.01, -18.07],
[-16.99, 10.64, -19.31],
[-14.59, 14.56, -19.03]]),
atom_names=['C1', 'C2', 'O2', 'C3', 'O3', 'C4', 'O4', 'C5',
'C6', 'O6A', 'O6B', 'OR', 'H1', 'H2', 'H3',
'H4', 'H5', 'H2o', 'H3o'],
bb=[],
sc=[],
bonds=[(0, 1), (0, 11), (0, 12), (1, 2), (1, 3), (1, 13),
(2, 17), (3, 4), (3, 5), (3, 14), (4, 18), (5, 6),
(5, 7), (5, 15), (7, 8), (7, 11), (7, 16), (8, 9),
(8, 10)],
offset=19)
NGA_info = AA_info(coords=np.array([[-15., 5.88, -16.15],
[-15.3, 7.39, -16.33],
[-16.63, 7.71, -15.78],
[-15.24, 7.7, -17.85],
[-15.52, 9.08, -18.1],
[-13.87, 7.26, -18.45],
[-12.73, 7.93, -17.9],
[-13.71, 5.74, -18.23],
[-12.4, 5.17, -18.83],
[-12.36, 3.77, -18.58],
[-17.03, 8.94, -15.35],
[-16.27, 9.85, -15.15],
[-18.54, 9.06, -15.17],
[-13.75, 5.49, -16.79],
[-17.3, 6.97, -15.77],
[-15.8, 5.34, -16.66],
[-14.56, 7.98, -15.81],
[-16.02, 7.14, -18.36],
[-13.91, 7.52, -19.51],
[-14.54, 5.23, -18.71],
[-19.05, 8.97, -16.13],
[-18.78, 10.05, -14.75],
[-18.91, 8.29, -14.49],
[-12.37, 5.36, -19.91],
[-11.52, 5.64, -18.37],
[-12.52, 7.65, -16.98],
[-12.35, 3.64, -17.61]]),
atom_names=['C1', 'C2', 'N2', 'C3', 'O3', 'C4', 'O4', 'C5',
'C6', 'O6', 'C7', 'O7', 'C8', 'OR', 'HN2', 'H1',
'H2', 'H3', 'H4', 'H5', 'H81', 'H82', 'H83',
'H6R', 'H6S', 'H4o', 'H6o'],
bb=[],
sc=[],
bonds=[(0, 1), (0, 13), (0, 15), (1, 2), (1, 3), (1, 16),
(2, 10), (2, 14), (3, 4), (3, 5), (3, 17), (5, 6),
(5, 7), (5, 18), (6, 25), (7, 8), (7, 13), (7, 19),
(8, 9), (8, 23), (8, 24), (9, 26), (10, 11), (10, 12),
(12, 20), (12, 21), (12, 22)],
offset=27)
AFL_info = AA_info(coords=np.array([[ 3.54, -4.94, -9.76],
[ 3.83, -3.48, -10.16],
[ 3.92, -2.65, -9.01],
[ 5.17, -3.41, -10.92],
[ 5.41, -2.05, -11.31],
[ 5.13, -4.33, -12.16],
[ 4.22, -3.76, -13.11],
[ 4.71, -5.76, -11.76],
[ 4.44, -6.66, -12.99],
[ 3.49, -5.74, -10.97],
[ 2.58, -5. , -9.26],
[ 3.03, -3.12, -10.81],
[ 5.98, -3.74, -10.26],
[ 6.13, -4.36, -12.61],
[ 5.5 , -6.22, -11.15],
[ 5.32, -6.68, -13.65],
[ 4.23, -7.68, -12.67],
[ 3.59, -6.29, -13.56],
[ 4.24, -1.79, -9.36],
[ 6.3 , -2.01, -11.67],
[ 4.27, -2.8 , -13. ]]),
atom_names = ['C1', 'C2', 'O2', 'C3', 'O3', 'C4', 'O4', 'C5',
'C6', 'OR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H61',
'H62', 'H63', 'H2o', 'H3o', 'H4o'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 9), (0, 10), (1, 2), (1, 3), (1, 11),
(2, 18), (3, 4), (3, 5), (3, 12), (4, 19), (5, 6),
(5, 7), (5, 13), (6, 20), (7, 8), (7, 9), (7, 14),
(8, 15), (8, 16), (8, 17)],
offset = 21)
NAG_info = AA_info(coords=np.array([[ 0.7 , -7.06, -8.68],
[ -0.47, -6.53, -7.82],
[ -0.6 , -7.33, -6.59],
[ -1.77, -6.52, -8.68],
[ -2.86, -5.83, -8.05],
[ -1.54, -5.79, -10.02],
[ -2.72, -5.91, -10.8 ],
[ -0.32, -6.38, -10.77],
[ -0.01, -5.62, -12.08],
[ 0.03, -4.21, -11.88],
[ -1.35, -6.97, -5.53],
[ -2.06, -6. , -5.51],
[ -1.26, -7.89, -4.34],
[ 0.83, -6.29, -9.9 ],
[ 0.53, -8.1 , -8.97],
[ -0.24, -5.51, -7.51],
[ -2.09, -7.55, -8.86],
[ -1.37, -4.73, -9.8 ],
[ -0.5 , -7.43, -11. ],
[ -0.35, -8.49, -4.36],
[ 0.04, -8.12, -6.49],
[ -2.13, -8.56, -4.33],
[ -1.25, -7.3 , -3.42],
[ -2.7 , -5.79, -7.09],
[ -0.78, -5.86, -12.82],
[ 0.96, -5.95, -12.45],
[ -3.45, -5.7 , -10.19],
[ -0.89, -3.9 , -11.9 ]]),
atom_names = ['C1', 'C2', 'N2', 'C3', 'O3', 'C4', 'O4', 'C5',
'C6', 'O6', 'C7', 'O7', 'C8', 'OR', 'H1', 'H2',
'H3', 'H4', 'H5', 'H81', 'H2n', 'H82', 'H83',
'H3o', 'H6R', 'H6S', 'H4o', 'H6o'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 13), (0, 14), (1, 2), (1, 3), (1, 15),
(2, 10), (2, 20), (3, 4), (3, 5), (3, 16), (4, 23),
(5, 6), (5, 7), (5, 17), (6, 26), (7, 8), (7, 13),
(7, 18), (8, 9), (8, 24), (8, 25), (9, 27), (10, 11),
(10, 12), (12, 19), (12, 21), (12, 22)],
offset = 28)
MAG_info = AA_info(coords=np.array([[ 5.63, -8.87, -7.81],
[ 6.82, -9.65, -8.03],
[ 5.68, -7.48, -8.46],
[ 6.84, -6.71, -7.97],
[ 4.37, -6.71, -8.2 ],
[ 4.45, -5.46, -8.88],
[ 3.1 , -7.58, -8.52],
[ 1.94, -6.96, -7.95],
[ 3.26, -8.98, -7.84],
[ 2.14, -10.01, -8.14],
[ 1.97, -10.17, -9.54],
[ 7.69, -6.03, -8.75],
[ 7.65, -6.05, -9.98],
[ 8.75, -5.26, -8.01],
[ 7.14, -9.94, -9.4 ],
[ 4.48, -9.59, -8.28],
[ 7.47, -9.03, -9.9 ],
[ 6.26, -10.36, -9.91],
[ 7.95, -10.67, -9.41],
[ 5.54, -8.78, -6.72],
[ 5.79, -7.59, -9.54],
[ 4.3 , -6.47, -7.13],
[ 2.96, -7.7 , -9.6 ],
[ 3.31, -8.86, -6.76],
[ 9.47, -5.95, -7.57],
[ 6.93, -6.62, -6.96],
[ 8.29, -4.67, -7.22],
[ 9.27, -4.58, -8.69],
[ 1.21, -9.7 , -7.67],
[ 2.44, -10.98, -7.71],
[ 2.82, -10.46, -9.9 ]]),
atom_names = ['C1', 'O1', 'C2', 'N2', 'C3', 'O3', 'C4', 'O4',
'C5', 'C6', 'O6', 'C7', 'O7', 'C8', 'CO1', 'OR',
'HCO1', 'HCO2', 'HCO3', 'H1', 'H2', 'H3', 'H4',
'H5', 'H81', 'H2n', 'H82', 'H83', 'H6R', 'H6S',
'H6o'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 2), (0, 15), (0, 19), (1, 14), (2, 3),
(2, 4), (2, 20), (3, 11), (3, 25), (4, 5), (4, 6),
(4, 21), (6, 7), (6, 8), (6, 22), (8, 9), (8, 15),
(8, 23), (9, 10), (9, 28), (9, 29), (10, 30), (11, 12),
(11, 13), (13, 24), (13, 26), (13, 27), (14, 16),
(14, 17), (14, 18)],
offset = 31)
B6D_info = AA_info(coords=np.array([[ 1.95e+01, 3.45e+01, 1.77e+00],
[ 1.85e+01, 3.49e+01, 2.70e+00],
[ 1.99e+01, 3.57e+01, 8.50e-01],
[ 1.88e+01, 3.62e+01, 1.03e-01],
[ 2.11e+01, 3.53e+01, -5.60e-02],
[ 2.16e+01, 3.64e+01, -7.50e-01],
[ 2.23e+01, 3.47e+01, 7.93e-01],
[ 2.35e+01, 3.43e+01, -1.70e-02],
[ 2.18e+01, 3.35e+01, 1.71e+00],
[ 2.29e+01, 3.30e+01, 2.67e+00],
[ 1.80e+01, 3.55e+01, -7.76e-01],
[ 1.82e+01, 3.44e+01, -1.05e+00],
[ 1.69e+01, 3.63e+01, -1.37e+00],
[ 2.48e+01, 3.32e+01, -1.65e+00],
[ 2.35e+01, 3.33e+01, -9.47e-01],
[ 2.25e+01, 3.26e+01, -1.18e+00],
[ 2.07e+01, 3.40e+01, 2.52e+00],
[ 1.91e+01, 3.36e+01, 1.20e+00],
[ 2.03e+01, 3.65e+01, 1.51e+00],
[ 2.08e+01, 3.45e+01, -7.86e-01],
[ 2.26e+01, 3.55e+01, 1.46e+00],
[ 2.14e+01, 3.27e+01, 1.11e+00],
[ 1.86e+01, 3.72e+01, 2.98e-01],
[ 2.24e+01, 3.23e+01, 3.35e+00],
[ 2.37e+01, 3.26e+01, 2.12e+00],
[ 2.33e+01, 3.38e+01, 3.27e+00],
[ 2.43e+01, 3.49e+01, 1.15e-01],
[ 1.84e+01, 3.42e+01, 3.32e+00],
[ 1.73e+01, 3.73e+01, -1.75e+00],
[ 1.61e+01, 3.65e+01, -6.10e-01],
[ 1.64e+01, 3.58e+01, -2.20e+00],
[ 2.55e+01, 3.27e+01, -9.86e-01],
[ 2.47e+01, 3.25e+01, -2.54e+00],
[ 2.52e+01, 3.41e+01, -1.96e+00]]),
atom_names = ['C1', 'O1', 'C2', 'N2', 'C3', 'O3', 'C4', 'N4', 'C5', 'C6', 'C7', 'O7', 'C8', 'C9', 'C10', 'O10', 'OR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H2N', 'H61', 'H62', 'H63', 'H4N', 'H1o', 'H81', 'H82', 'H83', 'H91', 'H92', 'H93'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 2), (0, 16), (0, 17), (1, 27), (2, 3), (2, 4), (2, 18), (3, 10), (3, 22), (4, 5), (4, 6), (4, 19), (6, 7), (6, 8), (6, 20), (7, 14), (7, 26), (8, 9), (8, 16), (8, 21), (9, 23), (9, 24), (9, 25), (10, 11), (10, 12), (12, 28), (12, 29), (12, 30), (13, 14), (13, 31), (13, 32), (13, 33), (14, 15)],
offset = 34)
A2G_info = AA_info(coords=np.array([[ 2.25e+01, 3.67e+01, -2.07e+00],
[ 2.33e+01, 3.80e+01, -2.32e+00],
[ 2.43e+01, 3.82e+01, -1.26e+00],
[ 2.23e+01, 3.92e+01, -2.39e+00],
[ 2.30e+01, 4.04e+01, -2.61e+00],
[ 2.12e+01, 3.90e+01, -3.45e+00],
[ 2.18e+01, 3.89e+01, -4.76e+00],
[ 2.05e+01, 3.76e+01, -3.14e+00],
[ 1.94e+01, 3.73e+01, -4.19e+00],
[ 1.87e+01, 3.61e+01, -3.81e+00],
[ 2.54e+01, 3.75e+01, -1.15e+00],
[ 2.57e+01, 3.65e+01, -1.90e+00],
[ 2.63e+01, 3.79e+01, -2.70e-02],
[ 2.14e+01, 3.66e+01, -3.09e+00],
[ 2.31e+01, 3.58e+01, -2.09e+00],
[ 2.38e+01, 3.79e+01, -3.28e+00],
[ 2.05e+01, 3.98e+01, -3.38e+00],
[ 2.00e+01, 3.77e+01, -2.16e+00],
[ 2.41e+01, 3.89e+01, -6.34e-01],
[ 1.99e+01, 3.72e+01, -5.17e+00],
[ 1.87e+01, 3.81e+01, -4.26e+00],
[ 2.58e+01, 3.78e+01, 9.29e-01],
[ 2.67e+01, 3.89e+01, -1.90e-01],
[ 2.72e+01, 3.72e+01, 2.90e-02],
[ 1.94e+01, 3.54e+01, -3.68e+00]]),
atom_names = ['C1', 'C2', 'N2', 'C3', 'O3', 'C4', 'O4', 'C5', 'C6', 'O6', 'C7', 'O7', 'C8', 'OR', 'H1', 'H2', 'H4', 'H5', 'H2N', 'H61', 'H62', 'H81', 'H82', 'H83', 'H6o'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 13), (0, 14), (1, 2), (1, 3), (1, 15), (2, 10), (2, 18), (3, 4), (3, 5), (5, 6), (5, 7), (5, 16), (7, 8), (7, 13), (7, 17), (8, 9), (8, 19), (8, 20), (9, 24), (10, 11), (10, 12), (12, 21), (12, 22), (12, 23)],
offset = 25)
BGC_info = AA_info(coords=np.array([[ 20.45, 43.74, -11.36],
[ 19.72, 45.09, -11.42],
[ 19.65, 45.66, -10.11],
[ 18.29, 44.89, -11.94],
[ 17.63, 46.15, -12.08],
[ 18.32, 44.19, -13.32],
[ 16.97, 43.96, -13.73],
[ 19.11, 42.86, -13.22],
[ 19.33, 42.2 , -14.6 ],
[ 18.08, 41.74, -15.13],
[ 20.43, 43.13, -12.67],
[ 19.97, 43.07, -10.64],
[ 20.27, 45.77, -12.08],
[ 17.73, 44.27, -11.24],
[ 18.81, 44.85, -14.05],
[ 18.59, 42.16, -12.55],
[ 18.22, 41.54, -16.07],
[ 18.99, 46.38, -10.17],
[ 16.82, 45.99, -12.59],
[ 19.77, 42.93, -15.28],
[ 20.01, 41.36, -14.49],
[ 17. , 43.31, -14.46]]),
atom_names = ['C1', 'C2', 'O2', 'C3', 'O3', 'C4', 'O4', 'C5', 'C6', 'O6', 'OR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6', 'H2o', 'H3o', 'H6R', 'H6S', 'H4o'],
bb = [],
sc = [],
bonds = [(0, 1), (0, 10), (0, 11), (1, 2), (1, 3), (1, 12), (2, 17), (3, 4), (3, 5), (3, 13), (4, 18), (5, 6), (5, 7), (5, 14), (6, 21), (7, 8), (7, 10), (7, 15), (8, 9), (8, 19), (8, 20), (9, 16)],
offset = 22)
templates_gl = {'B': BDP_info, 'N': NGA_info,
'A':AFL_info, 'G':NAG_info, 'M':MAG_info,
'D':B6D_info, 'C':A2G_info, 'F':BGC_info}
one_to_three_gl = {'B': 'BDP', 'N': 'NGA',
'A':'AFL', 'G':'NAG', 'M':'MAG',
'D':'B6D', 'C':'A2G', 'F':'BGC'}
three_to_one_gl = {val: key for key, val in one_to_three_gl.items()}
| [
6738,
17268,
1330,
3706,
83,
29291,
198,
11748,
299,
32152,
355,
45941,
198,
37811,
198,
12966,
17041,
329,
13874,
5171,
47185,
198,
37811,
198,
198,
3838,
62,
10951,
796,
3706,
83,
29291,
10786,
3838,
62,
10951,
3256,
705,
1073,
3669,
22037,
62,
14933,
13100,
275,
65,
629,
11677,
11537,
198,
198,
33,
6322,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
12,
1415,
13,
3388,
11,
220,
838,
13,
1314,
11,
532,
1507,
13,
1314,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
3510,
11,
220,
1367,
13,
2857,
11,
532,
1507,
13,
2091,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
2091,
11,
220,
1367,
13,
2327,
11,
532,
1129,
13,
3510,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1415,
13,
2231,
11,
220,
1105,
13,
5237,
11,
532,
1507,
13,
4051,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
1314,
11,
220,
1511,
13,
3459,
11,
532,
1507,
13,
5237,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
3901,
11,
220,
1105,
13,
2791,
11,
532,
1558,
13,
2670,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
2623,
11,
220,
1511,
13,
3553,
11,
532,
1558,
13,
2425,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
4304,
11,
220,
1367,
13,
2078,
11,
532,
1558,
13,
1558,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1157,
13,
4524,
11,
220,
1367,
13,
2078,
11,
532,
1433,
13,
3070,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
940,
13,
3365,
11,
220,
1367,
13,
5237,
11,
532,
1433,
13,
1129,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
2075,
11,
220,
1367,
13,
3312,
11,
532,
1415,
13,
5332,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
23,
11,
220,
838,
13,
1983,
11,
532,
1558,
13,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1415,
13,
2931,
11,
220,
220,
860,
13,
3865,
11,
532,
1129,
13,
3023,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
3312,
11,
220,
1367,
13,
2791,
11,
532,
1558,
13,
3559,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
5892,
11,
220,
1105,
13,
2598,
11,
532,
1129,
13,
2920,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
24,
11,
220,
1105,
13,
4089,
11,
532,
1433,
13,
3510,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
1129,
11,
220,
1367,
13,
486,
11,
532,
1507,
13,
2998,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
2079,
11,
220,
838,
13,
2414,
11,
532,
1129,
13,
3132,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1415,
13,
3270,
11,
220,
1478,
13,
3980,
11,
532,
1129,
13,
3070,
11907,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
28,
17816,
34,
16,
3256,
705,
34,
17,
3256,
705,
46,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34,
21,
3256,
705,
46,
21,
32,
3256,
705,
46,
21,
33,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
17,
78,
3256,
705,
39,
18,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
41888,
7,
15,
11,
352,
828,
357,
15,
11,
1367,
828,
357,
15,
11,
1105,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1511,
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,
357,
17,
11,
1596,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
18,
11,
1478,
828,
357,
19,
11,
1248,
828,
357,
20,
11,
718,
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,
357,
20,
11,
767,
828,
357,
20,
11,
1315,
828,
357,
22,
11,
807,
828,
357,
22,
11,
1367,
828,
357,
22,
11,
1467,
828,
357,
23,
11,
860,
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,
357,
23,
11,
838,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
28,
1129,
8,
198,
198,
45,
9273,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
12,
1314,
1539,
220,
220,
642,
13,
3459,
11,
532,
1433,
13,
1314,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
18,
11,
220,
220,
767,
13,
2670,
11,
532,
1433,
13,
2091,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
5066,
11,
220,
220,
767,
13,
4869,
11,
532,
1314,
13,
3695,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
1731,
11,
220,
220,
767,
13,
22,
11,
532,
1558,
13,
5332,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
4309,
11,
220,
220,
860,
13,
2919,
11,
532,
1507,
13,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
5774,
11,
220,
220,
767,
13,
2075,
11,
532,
1507,
13,
2231,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
4790,
11,
220,
220,
767,
13,
6052,
11,
532,
1558,
13,
24,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
4869,
11,
220,
220,
642,
13,
4524,
11,
532,
1507,
13,
1954,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
19,
11,
220,
220,
642,
13,
1558,
11,
532,
1507,
13,
5999,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
2623,
11,
220,
220,
513,
13,
3324,
11,
532,
1507,
13,
3365,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1558,
13,
3070,
11,
220,
220,
807,
13,
5824,
11,
532,
1314,
13,
2327,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
1983,
11,
220,
220,
860,
13,
5332,
11,
532,
1314,
13,
1314,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1507,
13,
4051,
11,
220,
220,
860,
13,
3312,
11,
532,
1314,
13,
1558,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
2425,
11,
220,
220,
642,
13,
2920,
11,
532,
1433,
13,
3720,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1558,
13,
18,
11,
220,
220,
718,
13,
5607,
11,
532,
1314,
13,
3324,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1314,
13,
23,
11,
220,
220,
642,
13,
2682,
11,
532,
1433,
13,
2791,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1415,
13,
3980,
11,
220,
220,
767,
13,
4089,
11,
532,
1314,
13,
6659,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1433,
13,
2999,
11,
220,
220,
767,
13,
1415,
11,
532,
1507,
13,
2623,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1485,
13,
6420,
11,
220,
220,
767,
13,
4309,
11,
532,
1129,
13,
4349,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1415,
13,
4051,
11,
220,
220,
642,
13,
1954,
11,
532,
1507,
13,
4869,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1129,
13,
2713,
11,
220,
220,
807,
13,
5607,
11,
532,
1433,
13,
1485,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1507,
13,
3695,
11,
220,
838,
13,
2713,
11,
532,
1415,
13,
2425,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1507,
13,
6420,
11,
220,
220,
807,
13,
1959,
11,
532,
1415,
13,
2920,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
2718,
11,
220,
220,
642,
13,
2623,
11,
532,
1129,
13,
6420,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1157,
13,
4309,
11,
220,
220,
642,
13,
2414,
11,
532,
1507,
13,
2718,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
4309,
11,
220,
220,
767,
13,
2996,
11,
532,
1433,
13,
4089,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
1065,
13,
2327,
11,
220,
220,
513,
13,
2414,
11,
532,
1558,
13,
5333,
11907,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
28,
17816,
34,
16,
3256,
705,
34,
17,
3256,
705,
45,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34,
21,
3256,
705,
46,
21,
3256,
705,
34,
22,
3256,
705,
46,
22,
3256,
705,
34,
23,
3256,
705,
1581,
3256,
705,
39,
45,
17,
3256,
705,
39,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
17,
3256,
705,
39,
18,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
6659,
3256,
705,
39,
6469,
3256,
705,
39,
5999,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
21,
49,
3256,
705,
39,
21,
50,
3256,
705,
39,
19,
78,
3256,
705,
39,
21,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
41888,
7,
15,
11,
352,
828,
357,
15,
11,
1511,
828,
357,
15,
11,
1315,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1467,
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,
357,
17,
11,
838,
828,
357,
17,
11,
1478,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
18,
11,
1596,
828,
357,
20,
11,
718,
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,
357,
20,
11,
767,
828,
357,
20,
11,
1248,
828,
357,
21,
11,
1679,
828,
357,
22,
11,
807,
828,
357,
22,
11,
1511,
828,
357,
22,
11,
678,
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,
357,
23,
11,
860,
828,
357,
23,
11,
2242,
828,
357,
23,
11,
1987,
828,
357,
24,
11,
2608,
828,
357,
940,
11,
1367,
828,
357,
940,
11,
1105,
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,
357,
1065,
11,
1160,
828,
357,
1065,
11,
2310,
828,
357,
1065,
11,
2534,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
28,
1983,
8,
198,
198,
32,
3697,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
220,
513,
13,
4051,
11,
220,
532,
19,
13,
5824,
11,
220,
532,
24,
13,
4304,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
5999,
11,
220,
532,
18,
13,
2780,
11,
532,
940,
13,
1433,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
5892,
11,
220,
532,
17,
13,
2996,
11,
220,
532,
24,
13,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
1558,
11,
220,
532,
18,
13,
3901,
11,
532,
940,
13,
5892,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
3901,
11,
220,
532,
17,
13,
2713,
11,
532,
1157,
13,
3132,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
1485,
11,
220,
532,
19,
13,
2091,
11,
532,
1065,
13,
1433,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
1828,
11,
220,
532,
18,
13,
4304,
11,
532,
1485,
13,
1157,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
4869,
11,
220,
532,
20,
13,
4304,
11,
532,
1157,
13,
4304,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
2598,
11,
220,
532,
21,
13,
2791,
11,
532,
1065,
13,
2079,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
2920,
11,
220,
532,
20,
13,
4524,
11,
532,
940,
13,
5607,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3365,
11,
220,
532,
20,
13,
220,
837,
220,
532,
24,
13,
2075,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
3070,
11,
220,
532,
18,
13,
1065,
11,
532,
940,
13,
6659,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
4089,
11,
220,
532,
18,
13,
4524,
11,
532,
940,
13,
2075,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
1485,
11,
220,
532,
19,
13,
2623,
11,
532,
1065,
13,
5333,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
20,
837,
220,
532,
21,
13,
1828,
11,
532,
1157,
13,
1314,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
2624,
11,
220,
532,
21,
13,
3104,
11,
532,
1485,
13,
2996,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
1954,
11,
220,
532,
22,
13,
3104,
11,
532,
1065,
13,
3134,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
3270,
11,
220,
532,
21,
13,
1959,
11,
532,
1485,
13,
3980,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
1731,
11,
220,
532,
16,
13,
3720,
11,
220,
532,
24,
13,
2623,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
18,
837,
220,
532,
17,
13,
486,
11,
532,
1157,
13,
3134,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
1983,
11,
220,
532,
17,
13,
23,
837,
532,
1485,
13,
220,
2361,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
34,
17,
3256,
705,
46,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
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,
705,
34,
21,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
18,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
5333,
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,
705,
39,
5237,
3256,
705,
39,
5066,
3256,
705,
39,
17,
78,
3256,
705,
39,
18,
78,
3256,
705,
39,
19,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
860,
828,
357,
15,
11,
838,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1367,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
17,
11,
1248,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
18,
11,
1105,
828,
357,
19,
11,
678,
828,
357,
20,
11,
718,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
20,
11,
767,
828,
357,
20,
11,
1511,
828,
357,
21,
11,
1160,
828,
357,
22,
11,
807,
828,
357,
22,
11,
860,
828,
357,
22,
11,
1478,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
23,
11,
1315,
828,
357,
23,
11,
1467,
828,
357,
23,
11,
1596,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
2310,
8,
198,
198,
4535,
38,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
220,
657,
13,
22,
837,
220,
532,
22,
13,
3312,
11,
220,
532,
23,
13,
3104,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
2857,
11,
220,
532,
21,
13,
4310,
11,
220,
532,
22,
13,
6469,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
21,
837,
220,
532,
22,
13,
2091,
11,
220,
532,
21,
13,
3270,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
3324,
11,
220,
532,
21,
13,
4309,
11,
220,
532,
23,
13,
3104,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
4521,
11,
220,
532,
20,
13,
5999,
11,
220,
532,
23,
13,
2713,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
4051,
11,
220,
532,
20,
13,
3720,
11,
532,
940,
13,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
4761,
11,
220,
532,
20,
13,
6420,
11,
532,
940,
13,
23,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
2624,
11,
220,
532,
21,
13,
2548,
11,
532,
940,
13,
3324,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
486,
11,
220,
532,
20,
13,
5237,
11,
532,
1065,
13,
2919,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
657,
13,
3070,
11,
220,
532,
19,
13,
2481,
11,
532,
1157,
13,
3459,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
2327,
11,
220,
532,
21,
13,
5607,
11,
220,
532,
20,
13,
4310,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
3312,
11,
220,
532,
21,
13,
220,
837,
220,
532,
20,
13,
4349,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
2075,
11,
220,
532,
22,
13,
4531,
11,
220,
532,
19,
13,
2682,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
657,
13,
5999,
11,
220,
532,
21,
13,
1959,
11,
220,
532,
24,
13,
24,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
220,
657,
13,
4310,
11,
220,
532,
23,
13,
16,
837,
220,
532,
23,
13,
5607,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
1731,
11,
220,
532,
20,
13,
4349,
11,
220,
532,
22,
13,
4349,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
2931,
11,
220,
532,
22,
13,
2816,
11,
220,
532,
23,
13,
4521,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
2718,
11,
220,
532,
19,
13,
4790,
11,
220,
532,
24,
13,
23,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
20,
837,
220,
532,
22,
13,
3559,
11,
532,
1157,
13,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
2327,
11,
220,
532,
23,
13,
2920,
11,
220,
532,
19,
13,
2623,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
657,
13,
3023,
11,
220,
532,
23,
13,
1065,
11,
220,
532,
21,
13,
2920,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
1485,
11,
220,
532,
23,
13,
3980,
11,
220,
532,
19,
13,
2091,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
16,
13,
1495,
11,
220,
532,
22,
13,
18,
837,
220,
532,
18,
13,
3682,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
17,
13,
22,
837,
220,
532,
20,
13,
3720,
11,
220,
532,
22,
13,
2931,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
3695,
11,
220,
532,
20,
13,
4521,
11,
532,
1065,
13,
6469,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
657,
13,
4846,
11,
220,
532,
20,
13,
3865,
11,
532,
1065,
13,
2231,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
18,
13,
2231,
11,
220,
532,
20,
13,
22,
837,
532,
940,
13,
1129,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
532,
15,
13,
4531,
11,
220,
532,
18,
13,
24,
837,
532,
1157,
13,
24,
2361,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
34,
17,
3256,
705,
45,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
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,
705,
34,
21,
3256,
705,
46,
21,
3256,
705,
34,
22,
3256,
705,
46,
22,
3256,
705,
34,
23,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39,
18,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
6659,
3256,
705,
39,
17,
77,
3256,
705,
39,
6469,
3256,
705,
39,
5999,
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,
705,
39,
18,
78,
3256,
705,
39,
21,
49,
3256,
705,
39,
21,
50,
3256,
705,
39,
19,
78,
3256,
705,
39,
21,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
1511,
828,
357,
15,
11,
1478,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1315,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
17,
11,
838,
828,
357,
17,
11,
1160,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
18,
11,
1467,
828,
357,
19,
11,
2242,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
20,
11,
718,
828,
357,
20,
11,
767,
828,
357,
20,
11,
1596,
828,
357,
21,
11,
2608,
828,
357,
22,
11,
807,
828,
357,
22,
11,
1511,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
22,
11,
1248,
828,
357,
23,
11,
860,
828,
357,
23,
11,
1987,
828,
357,
23,
11,
1679,
828,
357,
24,
11,
2681,
828,
357,
940,
11,
1367,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
940,
11,
1105,
828,
357,
1065,
11,
678,
828,
357,
1065,
11,
2310,
828,
357,
1065,
11,
2534,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
2579,
8,
198,
198,
45820,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
220,
642,
13,
5066,
11,
220,
532,
23,
13,
5774,
11,
220,
532,
22,
13,
6659,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
6469,
11,
220,
532,
24,
13,
2996,
11,
220,
532,
23,
13,
3070,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
3104,
11,
220,
532,
22,
13,
2780,
11,
220,
532,
23,
13,
3510,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
5705,
11,
220,
532,
21,
13,
4869,
11,
220,
532,
22,
13,
5607,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
2718,
11,
220,
532,
21,
13,
4869,
11,
220,
532,
23,
13,
17,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
2231,
11,
220,
532,
20,
13,
3510,
11,
220,
532,
23,
13,
3459,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
16,
837,
220,
532,
22,
13,
3365,
11,
220,
532,
23,
13,
4309,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5824,
11,
220,
532,
21,
13,
4846,
11,
220,
532,
22,
13,
3865,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
2075,
11,
220,
532,
23,
13,
4089,
11,
220,
532,
22,
13,
5705,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1415,
11,
532,
940,
13,
486,
11,
220,
532,
23,
13,
1415,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5607,
11,
532,
940,
13,
1558,
11,
220,
532,
24,
13,
4051,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
767,
13,
3388,
11,
220,
532,
21,
13,
3070,
11,
220,
532,
23,
13,
2425,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
767,
13,
2996,
11,
220,
532,
21,
13,
2713,
11,
220,
532,
24,
13,
4089,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
807,
13,
2425,
11,
220,
532,
20,
13,
2075,
11,
220,
532,
23,
13,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
767,
13,
1415,
11,
220,
532,
24,
13,
5824,
11,
220,
532,
24,
13,
19,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
2780,
11,
220,
532,
24,
13,
3270,
11,
220,
532,
23,
13,
2078,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
767,
13,
2857,
11,
220,
532,
24,
13,
3070,
11,
220,
532,
24,
13,
24,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
2075,
11,
532,
940,
13,
2623,
11,
220,
532,
24,
13,
6420,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
767,
13,
3865,
11,
532,
940,
13,
3134,
11,
220,
532,
24,
13,
3901,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
4051,
11,
220,
532,
23,
13,
3695,
11,
220,
532,
21,
13,
4761,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
642,
13,
3720,
11,
220,
532,
22,
13,
3270,
11,
220,
532,
24,
13,
4051,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
604,
13,
18,
837,
220,
532,
21,
13,
2857,
11,
220,
532,
22,
13,
1485,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
4846,
11,
220,
532,
22,
13,
22,
837,
220,
532,
24,
13,
21,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
220,
513,
13,
3132,
11,
220,
532,
23,
13,
4521,
11,
220,
532,
21,
13,
4304,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
860,
13,
2857,
11,
220,
532,
20,
13,
3865,
11,
220,
532,
22,
13,
3553,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
718,
13,
6052,
11,
220,
532,
21,
13,
5237,
11,
220,
532,
21,
13,
4846,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
807,
13,
1959,
11,
220,
532,
19,
13,
3134,
11,
220,
532,
22,
13,
1828,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
860,
13,
1983,
11,
220,
532,
19,
13,
3365,
11,
220,
532,
23,
13,
3388,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
2481,
11,
220,
532,
24,
13,
22,
837,
220,
532,
22,
13,
3134,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2598,
11,
532,
940,
13,
4089,
11,
220,
532,
22,
13,
4869,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
6469,
11,
532,
940,
13,
3510,
11,
220,
532,
24,
13,
24,
2361,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
46,
16,
3256,
705,
34,
17,
3256,
705,
45,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
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,
705,
34,
20,
3256,
705,
34,
21,
3256,
705,
46,
21,
3256,
705,
34,
22,
3256,
705,
46,
22,
3256,
705,
34,
23,
3256,
705,
8220,
16,
3256,
705,
1581,
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,
705,
39,
8220,
16,
3256,
705,
39,
8220,
17,
3256,
705,
39,
8220,
18,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
18,
3256,
705,
39,
19,
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,
705,
39,
20,
3256,
705,
39,
6659,
3256,
705,
39,
17,
77,
3256,
705,
39,
6469,
3256,
705,
39,
5999,
3256,
705,
39,
21,
49,
3256,
705,
39,
21,
50,
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,
705,
39,
21,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
362,
828,
357,
15,
11,
1315,
828,
357,
15,
11,
678,
828,
357,
16,
11,
1478,
828,
357,
17,
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,
357,
17,
11,
604,
828,
357,
17,
11,
1160,
828,
357,
18,
11,
1367,
828,
357,
18,
11,
1679,
828,
357,
19,
11,
642,
828,
357,
19,
11,
718,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
19,
11,
2310,
828,
357,
21,
11,
767,
828,
357,
21,
11,
807,
828,
357,
21,
11,
2534,
828,
357,
23,
11,
860,
828,
357,
23,
11,
1315,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
23,
11,
2242,
828,
357,
24,
11,
838,
828,
357,
24,
11,
2579,
828,
357,
24,
11,
2808,
828,
357,
940,
11,
1542,
828,
357,
1157,
11,
1105,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1157,
11,
1511,
828,
357,
1485,
11,
1987,
828,
357,
1485,
11,
2608,
828,
357,
1485,
11,
2681,
828,
357,
1415,
11,
1467,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1415,
11,
1596,
828,
357,
1415,
11,
1248,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
3261,
8,
198,
198,
33,
21,
35,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
220,
352,
13,
3865,
68,
10,
486,
11,
220,
220,
513,
13,
2231,
68,
10,
486,
11,
220,
220,
352,
13,
3324,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5332,
68,
10,
486,
11,
220,
220,
513,
13,
2920,
68,
10,
486,
11,
220,
220,
362,
13,
2154,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
2079,
68,
10,
486,
11,
220,
220,
513,
13,
3553,
68,
10,
486,
11,
220,
220,
807,
13,
1120,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
3459,
68,
10,
486,
11,
220,
220,
513,
13,
5237,
68,
10,
486,
11,
220,
220,
352,
13,
3070,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1157,
68,
10,
486,
11,
220,
220,
513,
13,
4310,
68,
10,
486,
11,
220,
532,
20,
13,
1899,
68,
12,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1433,
68,
10,
486,
11,
220,
220,
513,
13,
2414,
68,
10,
486,
11,
220,
532,
22,
13,
1120,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1954,
68,
10,
486,
11,
220,
220,
513,
13,
2857,
68,
10,
486,
11,
220,
220,
767,
13,
6052,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2327,
68,
10,
486,
11,
220,
220,
513,
13,
3559,
68,
10,
486,
11,
220,
532,
16,
13,
2154,
68,
12,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1507,
68,
10,
486,
11,
220,
220,
513,
13,
2327,
68,
10,
486,
11,
220,
220,
352,
13,
4869,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1959,
68,
10,
486,
11,
220,
220,
513,
13,
1270,
68,
10,
486,
11,
220,
220,
362,
13,
3134,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
1795,
68,
10,
486,
11,
220,
220,
513,
13,
2816,
68,
10,
486,
11,
220,
532,
22,
13,
4304,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
6469,
68,
10,
486,
11,
220,
220,
513,
13,
2598,
68,
10,
486,
11,
220,
532,
16,
13,
2713,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
3388,
68,
10,
486,
11,
220,
220,
513,
13,
5066,
68,
10,
486,
11,
220,
532,
16,
13,
2718,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2780,
68,
10,
486,
11,
220,
220,
513,
13,
2624,
68,
10,
486,
11,
220,
532,
16,
13,
2996,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2327,
68,
10,
486,
11,
220,
220,
513,
13,
2091,
68,
10,
486,
11,
220,
532,
24,
13,
2857,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1495,
68,
10,
486,
11,
220,
220,
513,
13,
2075,
68,
10,
486,
11,
220,
532,
16,
13,
1507,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2998,
68,
10,
486,
11,
220,
220,
513,
13,
1821,
68,
10,
486,
11,
220,
220,
362,
13,
4309,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
6420,
68,
10,
486,
11,
220,
220,
513,
13,
2623,
68,
10,
486,
11,
220,
220,
352,
13,
1238,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3070,
68,
10,
486,
11,
220,
220,
513,
13,
2996,
68,
10,
486,
11,
220,
220,
352,
13,
4349,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2919,
68,
10,
486,
11,
220,
220,
513,
13,
2231,
68,
10,
486,
11,
220,
532,
22,
13,
4521,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2075,
68,
10,
486,
11,
220,
220,
513,
13,
2816,
68,
10,
486,
11,
220,
220,
352,
13,
3510,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1415,
68,
10,
486,
11,
220,
220,
513,
13,
1983,
68,
10,
486,
11,
220,
220,
352,
13,
1157,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
4521,
68,
10,
486,
11,
220,
220,
513,
13,
4761,
68,
10,
486,
11,
220,
220,
362,
13,
4089,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1731,
68,
10,
486,
11,
220,
220,
513,
13,
1954,
68,
10,
486,
11,
220,
220,
513,
13,
2327,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2718,
68,
10,
486,
11,
220,
220,
513,
13,
2075,
68,
10,
486,
11,
220,
220,
362,
13,
1065,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2091,
68,
10,
486,
11,
220,
220,
513,
13,
2548,
68,
10,
486,
11,
220,
220,
513,
13,
1983,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3559,
68,
10,
486,
11,
220,
220,
513,
13,
2920,
68,
10,
486,
11,
220,
220,
352,
13,
1314,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5705,
68,
10,
486,
11,
220,
220,
513,
13,
3682,
68,
10,
486,
11,
220,
220,
513,
13,
2624,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
4790,
68,
10,
486,
11,
220,
220,
513,
13,
4790,
68,
10,
486,
11,
220,
532,
16,
13,
2425,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5333,
68,
10,
486,
11,
220,
220,
513,
13,
2996,
68,
10,
486,
11,
220,
532,
21,
13,
940,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
2414,
68,
10,
486,
11,
220,
220,
513,
13,
3365,
68,
10,
486,
11,
220,
532,
17,
13,
1238,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2816,
68,
10,
486,
11,
220,
220,
513,
13,
1983,
68,
10,
486,
11,
220,
532,
24,
13,
4521,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2857,
68,
10,
486,
11,
220,
220,
513,
13,
1495,
68,
10,
486,
11,
220,
532,
17,
13,
4051,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
4309,
68,
10,
486,
11,
220,
220,
513,
13,
3901,
68,
10,
486,
11,
220,
532,
16,
13,
4846,
68,
10,
405,
11907,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
46,
16,
3256,
705,
34,
17,
3256,
705,
45,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
45,
19,
3256,
705,
34,
20,
3256,
705,
34,
21,
3256,
705,
34,
22,
3256,
705,
46,
22,
3256,
705,
34,
23,
3256,
705,
34,
24,
3256,
705,
34,
940,
3256,
705,
46,
940,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
18,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
17,
45,
3256,
705,
39,
5333,
3256,
705,
39,
5237,
3256,
705,
39,
5066,
3256,
705,
39,
19,
45,
3256,
705,
39,
16,
78,
3256,
705,
39,
6659,
3256,
705,
39,
6469,
3256,
705,
39,
5999,
3256,
705,
39,
6420,
3256,
705,
39,
5892,
3256,
705,
39,
6052,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
362,
828,
357,
15,
11,
1467,
828,
357,
15,
11,
1596,
828,
357,
16,
11,
2681,
828,
357,
17,
11,
513,
828,
357,
17,
11,
604,
828,
357,
17,
11,
1248,
828,
357,
18,
11,
838,
828,
357,
18,
11,
2534,
828,
357,
19,
11,
642,
828,
357,
19,
11,
718,
828,
357,
19,
11,
678,
828,
357,
21,
11,
767,
828,
357,
21,
11,
807,
828,
357,
21,
11,
1160,
828,
357,
22,
11,
1478,
828,
357,
22,
11,
2608,
828,
357,
23,
11,
860,
828,
357,
23,
11,
1467,
828,
357,
23,
11,
2310,
828,
357,
24,
11,
2242,
828,
357,
24,
11,
1987,
828,
357,
24,
11,
1679,
828,
357,
940,
11,
1367,
828,
357,
940,
11,
1105,
828,
357,
1065,
11,
2579,
828,
357,
1065,
11,
2808,
828,
357,
1065,
11,
1542,
828,
357,
1485,
11,
1478,
828,
357,
1485,
11,
3261,
828,
357,
1485,
11,
3933,
828,
357,
1485,
11,
4747,
828,
357,
1415,
11,
1315,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
4974,
8,
198,
198,
32,
17,
38,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
220,
362,
13,
1495,
68,
10,
486,
11,
220,
220,
513,
13,
3134,
68,
10,
486,
11,
220,
532,
17,
13,
2998,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2091,
68,
10,
486,
11,
220,
220,
513,
13,
1795,
68,
10,
486,
11,
220,
532,
17,
13,
2624,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3559,
68,
10,
486,
11,
220,
220,
513,
13,
6469,
68,
10,
486,
11,
220,
532,
16,
13,
2075,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1954,
68,
10,
486,
11,
220,
220,
513,
13,
5892,
68,
10,
486,
11,
220,
532,
17,
13,
2670,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1270,
68,
10,
486,
11,
220,
220,
604,
13,
3023,
68,
10,
486,
11,
220,
532,
17,
13,
5333,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1065,
68,
10,
486,
11,
220,
220,
513,
13,
3829,
68,
10,
486,
11,
220,
532,
18,
13,
2231,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1507,
68,
10,
486,
11,
220,
220,
513,
13,
4531,
68,
10,
486,
11,
220,
532,
19,
13,
4304,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2713,
68,
10,
486,
11,
220,
220,
513,
13,
4304,
68,
10,
486,
11,
220,
532,
18,
13,
1415,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5824,
68,
10,
486,
11,
220,
220,
513,
13,
4790,
68,
10,
486,
11,
220,
532,
19,
13,
1129,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5774,
68,
10,
486,
11,
220,
220,
513,
13,
5333,
68,
10,
486,
11,
220,
532,
18,
13,
6659,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
4051,
68,
10,
486,
11,
220,
220,
513,
13,
2425,
68,
10,
486,
11,
220,
532,
16,
13,
1314,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3553,
68,
10,
486,
11,
220,
220,
513,
13,
2996,
68,
10,
486,
11,
220,
532,
16,
13,
3829,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
5066,
68,
10,
486,
11,
220,
220,
513,
13,
3720,
68,
10,
486,
11,
220,
532,
17,
13,
2154,
68,
12,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
1415,
68,
10,
486,
11,
220,
220,
513,
13,
2791,
68,
10,
486,
11,
220,
532,
18,
13,
2931,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3132,
68,
10,
486,
11,
220,
220,
513,
13,
3365,
68,
10,
486,
11,
220,
532,
17,
13,
2931,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2548,
68,
10,
486,
11,
220,
220,
513,
13,
3720,
68,
10,
486,
11,
220,
532,
18,
13,
2078,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
2713,
68,
10,
486,
11,
220,
220,
513,
13,
4089,
68,
10,
486,
11,
220,
532,
18,
13,
2548,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
405,
68,
10,
486,
11,
220,
220,
513,
13,
3324,
68,
10,
486,
11,
220,
532,
17,
13,
1433,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3901,
68,
10,
486,
11,
220,
220,
513,
13,
4531,
68,
10,
486,
11,
220,
532,
21,
13,
2682,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
2079,
68,
10,
486,
11,
220,
220,
513,
13,
4761,
68,
10,
486,
11,
220,
532,
20,
13,
1558,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5774,
68,
10,
486,
11,
220,
220,
513,
13,
6659,
68,
10,
486,
11,
220,
532,
19,
13,
2075,
68,
10,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3365,
68,
10,
486,
11,
220,
220,
513,
13,
3695,
68,
10,
486,
11,
220,
220,
860,
13,
1959,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
3134,
68,
10,
486,
11,
220,
220,
513,
13,
4531,
68,
10,
486,
11,
220,
532,
16,
13,
3829,
68,
12,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
362,
13,
4761,
68,
10,
486,
11,
220,
220,
513,
13,
4761,
68,
10,
486,
11,
220,
220,
362,
13,
3829,
68,
12,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
220,
352,
13,
5824,
68,
10,
486,
11,
220,
220,
513,
13,
4051,
68,
10,
486,
11,
220,
532,
18,
13,
3104,
68,
10,
405,
11907,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
34,
17,
3256,
705,
45,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
3256,
705,
34,
21,
3256,
705,
46,
21,
3256,
705,
34,
22,
3256,
705,
46,
22,
3256,
705,
34,
23,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
17,
45,
3256,
705,
39,
5333,
3256,
705,
39,
5237,
3256,
705,
39,
6659,
3256,
705,
39,
6469,
3256,
705,
39,
5999,
3256,
705,
39,
21,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
1511,
828,
357,
15,
11,
1478,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1315,
828,
357,
17,
11,
838,
828,
357,
17,
11,
1248,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
20,
11,
718,
828,
357,
20,
11,
767,
828,
357,
20,
11,
1467,
828,
357,
22,
11,
807,
828,
357,
22,
11,
1511,
828,
357,
22,
11,
1596,
828,
357,
23,
11,
860,
828,
357,
23,
11,
678,
828,
357,
23,
11,
1160,
828,
357,
24,
11,
1987,
828,
357,
940,
11,
1367,
828,
357,
940,
11,
1105,
828,
357,
1065,
11,
2310,
828,
357,
1065,
11,
2534,
828,
357,
1065,
11,
2242,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
1679,
8,
628,
198,
33,
15916,
62,
10951,
796,
15923,
62,
10951,
7,
1073,
3669,
28,
37659,
13,
18747,
26933,
58,
1160,
13,
2231,
11,
220,
5946,
13,
4524,
11,
532,
1157,
13,
2623,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
4761,
11,
220,
4153,
13,
2931,
11,
532,
1157,
13,
3682,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
2996,
11,
220,
4153,
13,
2791,
11,
532,
940,
13,
1157,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
1959,
11,
220,
5846,
13,
4531,
11,
532,
1157,
13,
5824,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1596,
13,
5066,
11,
220,
6337,
13,
1314,
11,
532,
1065,
13,
2919,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
2624,
11,
220,
5846,
13,
1129,
11,
532,
1485,
13,
2624,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1467,
13,
5607,
11,
220,
5946,
13,
4846,
11,
532,
1485,
13,
4790,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
1157,
11,
220,
5433,
13,
4521,
11,
532,
1485,
13,
1828,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
2091,
11,
220,
5433,
13,
17,
837,
532,
1415,
13,
21,
16589,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
2919,
11,
220,
6073,
13,
4524,
11,
532,
1314,
13,
1485,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1160,
13,
3559,
11,
220,
5946,
13,
1485,
11,
532,
1065,
13,
3134,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
5607,
11,
220,
5946,
13,
2998,
11,
532,
940,
13,
2414,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1160,
13,
1983,
11,
220,
4153,
13,
3324,
11,
532,
1065,
13,
2919,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1596,
13,
4790,
11,
220,
5846,
13,
1983,
11,
532,
1157,
13,
1731,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
6659,
11,
220,
5846,
13,
5332,
11,
532,
1415,
13,
2713,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
3270,
11,
220,
5433,
13,
1433,
11,
532,
1065,
13,
2816,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
1828,
11,
220,
6073,
13,
4051,
11,
532,
1433,
13,
2998,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1248,
13,
2079,
11,
220,
6337,
13,
2548,
11,
532,
940,
13,
1558,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1467,
13,
6469,
11,
220,
4153,
13,
2079,
11,
532,
1065,
13,
3270,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
678,
13,
3324,
11,
220,
5433,
13,
6052,
11,
532,
1314,
13,
2078,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1160,
13,
486,
11,
220,
6073,
13,
2623,
11,
532,
1415,
13,
2920,
4357,
198,
220,
220,
220,
220,
220,
220,
685,
1596,
13,
220,
837,
220,
5946,
13,
3132,
11,
532,
1415,
13,
3510,
11907,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22037,
62,
14933,
796,
37250,
34,
16,
3256,
705,
34,
17,
3256,
705,
46,
17,
3256,
705,
34,
18,
3256,
705,
46,
18,
3256,
705,
34,
19,
3256,
705,
46,
19,
3256,
705,
34,
20,
3256,
705,
34,
21,
3256,
705,
46,
21,
3256,
705,
1581,
3256,
705,
39,
16,
3256,
705,
39,
17,
3256,
705,
39,
18,
3256,
705,
39,
19,
3256,
705,
39,
20,
3256,
705,
39,
21,
3256,
705,
39,
17,
78,
3256,
705,
39,
18,
78,
3256,
705,
39,
21,
49,
3256,
705,
39,
21,
50,
3256,
705,
39,
19,
78,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
796,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13100,
796,
47527,
15,
11,
352,
828,
357,
15,
11,
838,
828,
357,
15,
11,
1367,
828,
357,
16,
11,
362,
828,
357,
16,
11,
513,
828,
357,
16,
11,
1105,
828,
357,
17,
11,
1596,
828,
357,
18,
11,
604,
828,
357,
18,
11,
642,
828,
357,
18,
11,
1511,
828,
357,
19,
11,
1248,
828,
357,
20,
11,
718,
828,
357,
20,
11,
767,
828,
357,
20,
11,
1478,
828,
357,
21,
11,
2310,
828,
357,
22,
11,
807,
828,
357,
22,
11,
838,
828,
357,
22,
11,
1315,
828,
357,
23,
11,
860,
828,
357,
23,
11,
678,
828,
357,
23,
11,
1160,
828,
357,
24,
11,
1467,
8,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
2534,
8,
628,
198,
11498,
17041,
62,
4743,
796,
1391,
6,
33,
10354,
347,
6322,
62,
10951,
11,
705,
45,
10354,
399,
9273,
62,
10951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32,
10354,
32,
3697,
62,
10951,
11,
705,
38,
10354,
4535,
38,
62,
10951,
11,
705,
44,
10354,
45820,
62,
10951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35,
10354,
33,
21,
35,
62,
10951,
11,
705,
34,
10354,
32,
17,
38,
62,
10951,
11,
705,
37,
10354,
33,
15916,
62,
10951,
92,
198,
198,
505,
62,
1462,
62,
15542,
62,
4743,
796,
1391,
6,
33,
10354,
705,
33,
6322,
3256,
705,
45,
10354,
705,
45,
9273,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32,
10354,
6,
32,
3697,
3256,
705,
38,
10354,
6,
4535,
38,
3256,
705,
44,
10354,
6,
45820,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35,
10354,
6,
33,
21,
35,
3256,
705,
34,
10354,
6,
32,
17,
38,
3256,
705,
37,
10354,
6,
33,
15916,
6,
92,
198,
198,
15542,
62,
1462,
62,
505,
62,
4743,
796,
1391,
2100,
25,
1994,
329,
1994,
11,
1188,
287,
530,
62,
1462,
62,
15542,
62,
4743,
13,
23814,
3419,
92,
198
] | 1.371651 | 10,639 |
import torch
from torch import nn
import math
| [
11748,
28034,
198,
6738,
28034,
1330,
299,
77,
198,
11748,
10688,
628
] | 3.916667 | 12 |
"""
## Metadata Store
The configuration of each pipeline, step, backend, and produced artifacts are
all tracked within the metadata store. The metadata store is an SQL database,
and can be `sqlite` or `mysql`.
Metadata are the pieces of information tracked about the pipelines, experiments
and configurations that you are running with CoML.
"""
from coalescenceml.metadata_store.base_metadata_store import BaseMetadataStore
from coalescenceml.metadata_store.mysql_metadata_store import MySQLMetadataStore
from coalescenceml.metadata_store.sqlite_metadata_store import (
SQLiteMetadataStore,
)
__all__ = [
"BaseMetadataStore",
"MySQLMetadataStore",
"SQLiteMetadataStore",
]
| [
37811,
198,
2235,
3395,
14706,
9363,
198,
464,
8398,
286,
1123,
11523,
11,
2239,
11,
30203,
11,
290,
4635,
20316,
389,
198,
439,
18283,
1626,
262,
20150,
3650,
13,
383,
20150,
3650,
318,
281,
16363,
6831,
11,
198,
392,
460,
307,
4600,
25410,
578,
63,
393,
4600,
28744,
13976,
44646,
198,
198,
9171,
14706,
389,
262,
5207,
286,
1321,
18283,
546,
262,
31108,
11,
10256,
198,
392,
25412,
326,
345,
389,
2491,
351,
1766,
5805,
13,
220,
198,
37811,
198,
198,
6738,
46064,
43696,
4029,
13,
38993,
62,
8095,
13,
8692,
62,
38993,
62,
8095,
1330,
7308,
9171,
14706,
22658,
198,
6738,
46064,
43696,
4029,
13,
38993,
62,
8095,
13,
28744,
13976,
62,
38993,
62,
8095,
1330,
33476,
9171,
14706,
22658,
198,
6738,
46064,
43696,
4029,
13,
38993,
62,
8095,
13,
25410,
578,
62,
38993,
62,
8095,
1330,
357,
198,
220,
220,
220,
16363,
578,
9171,
14706,
22658,
11,
198,
8,
628,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
14881,
9171,
14706,
22658,
1600,
198,
220,
220,
220,
366,
3666,
17861,
9171,
14706,
22658,
1600,
198,
220,
220,
220,
366,
17861,
578,
9171,
14706,
22658,
1600,
198,
60,
198
] | 3.595855 | 193 |
from django.test import TestCase
from ..service import shift_client_priority
from ..models import Client, ProductArea, FeatureRequest
class TestShiftClientPriority(TestCase):
"""Test service.shift_client_priority"""
def test_basic(self):
"""Should shift all priorities up by one"""
# Add 10 features with ascending priority, store id
added = [add_feature(self.client, self.area, client_priority=i).id
for i in range(1, 11)]
query = FeatureRequest.objects.filter(client=self.client)
# Shift priorities to free up 1
shift_client_priority(1, query)
# Actual list of [(id, client_priority) ... ]
priorities = query.values_list('pk', 'client_priority')\
.order_by('pk')
# Expected [(id, client_priority) ... ]
should_be = list(zip(added, range(2, 12)))
self.assertEqual(list(priorities), should_be)
def test_find_gap(self):
"""Should find gap in sequence, minimizing affected models"""
# Make contiguous range
for i in range(1, 11):
add_feature(self.client, self.area, client_priority=i)
# Add more, leaving a gap at 11
for i in range(12, 15):
add_feature(self.client, self.area, client_priority=i)
query = FeatureRequest.objects.filter(client=self.client)
shift_client_priority(1, query)
priorities = query.values_list('client_priority', flat=True)\
.order_by('client_priority')
assert list(priorities) == list(range(2, 15))
def test_returns_modified_models(self):
"""Should return list of all models that were modified"""
# Set up data
models = [add_feature(self.client, self.area, client_priority=i)
for i in range(1,10)]
query = FeatureRequest.objects.filter(client=self.client)
modified = shift_client_priority(1, query)
self.assertCountEqual(models, modified)
| [
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
198,
198,
6738,
11485,
15271,
1330,
6482,
62,
16366,
62,
49336,
198,
6738,
11485,
27530,
1330,
20985,
11,
8721,
30547,
11,
27018,
18453,
628,
198,
198,
4871,
6208,
33377,
11792,
22442,
414,
7,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
14402,
2139,
13,
30846,
62,
16366,
62,
49336,
37811,
628,
220,
220,
220,
825,
1332,
62,
35487,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19926,
6482,
477,
15369,
510,
416,
530,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
838,
3033,
351,
41988,
8475,
11,
3650,
4686,
198,
220,
220,
220,
220,
220,
220,
220,
2087,
796,
685,
2860,
62,
30053,
7,
944,
13,
16366,
11,
2116,
13,
20337,
11,
5456,
62,
49336,
28,
72,
737,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
16,
11,
1367,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
796,
27018,
18453,
13,
48205,
13,
24455,
7,
16366,
28,
944,
13,
16366,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
15576,
15369,
284,
1479,
510,
352,
198,
220,
220,
220,
220,
220,
220,
220,
6482,
62,
16366,
62,
49336,
7,
16,
11,
12405,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
33520,
1351,
286,
47527,
312,
11,
5456,
62,
49336,
8,
2644,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
15369,
796,
12405,
13,
27160,
62,
4868,
10786,
79,
74,
3256,
705,
16366,
62,
49336,
11537,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
2875,
62,
1525,
10786,
79,
74,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1475,
7254,
47527,
312,
11,
5456,
62,
49336,
8,
2644,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
815,
62,
1350,
796,
1351,
7,
13344,
7,
29373,
11,
2837,
7,
17,
11,
1105,
22305,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
4868,
7,
3448,
273,
871,
828,
815,
62,
1350,
8,
628,
220,
220,
220,
825,
1332,
62,
19796,
62,
43554,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19926,
1064,
7625,
287,
8379,
11,
41366,
5676,
4981,
37811,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6889,
48627,
2837,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
16,
11,
1367,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
751,
62,
30053,
7,
944,
13,
16366,
11,
2116,
13,
20337,
11,
5456,
62,
49336,
28,
72,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
517,
11,
4305,
257,
7625,
379,
1367,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
1065,
11,
1315,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
751,
62,
30053,
7,
944,
13,
16366,
11,
2116,
13,
20337,
11,
5456,
62,
49336,
28,
72,
8,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
796,
27018,
18453,
13,
48205,
13,
24455,
7,
16366,
28,
944,
13,
16366,
8,
628,
220,
220,
220,
220,
220,
220,
220,
6482,
62,
16366,
62,
49336,
7,
16,
11,
12405,
8,
628,
220,
220,
220,
220,
220,
220,
220,
15369,
796,
12405,
13,
27160,
62,
4868,
10786,
16366,
62,
49336,
3256,
6228,
28,
17821,
19415,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
2875,
62,
1525,
10786,
16366,
62,
49336,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
6818,
1351,
7,
3448,
273,
871,
8,
6624,
1351,
7,
9521,
7,
17,
11,
1315,
4008,
628,
220,
220,
220,
825,
1332,
62,
7783,
82,
62,
41771,
62,
27530,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19926,
1441,
1351,
286,
477,
4981,
326,
547,
9518,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
510,
1366,
628,
220,
220,
220,
220,
220,
220,
220,
4981,
796,
685,
2860,
62,
30053,
7,
944,
13,
16366,
11,
2116,
13,
20337,
11,
5456,
62,
49336,
28,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
16,
11,
940,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
796,
27018,
18453,
13,
48205,
13,
24455,
7,
16366,
28,
944,
13,
16366,
8,
628,
220,
220,
220,
220,
220,
220,
220,
9518,
796,
6482,
62,
16366,
62,
49336,
7,
16,
11,
12405,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
12332,
36,
13255,
7,
27530,
11,
9518,
8,
198
] | 2.434164 | 843 |
#!/usr/bin/env python
# Small web app to allow a user to top up their personal PaperCut balance
# Add a custom URL to the PaperCut user web page, which is used by end users
# when they want to add credit to their PaperCut personal account. The url
# should refer to this small web app When the user clicks on the URL link
# (in the PaperCut user web page) to the web app, the user identification details
# are passed as part of the URL. This is explained at:
# https://www.papercut.com/products/ng/manual/common/topics/customize-user-web-pages.html#customize-user-web-pages-nav-links
# The URL neeeds to something like http://localhost:8081/simpleTopUpBalance/?user=%user%&return_url=%return_url%
# Generally additional security should be provided. For example if the URL is http://localhost:8081/promptForPassword/?user=%user%&return_url=%return_url%
# then the user will need to enter their PaperCut password to access the payment system
# Handy Tip: By default the link will open in a separate winodow. You can edit the advanced config property user.web.custom-links and
# change "_body" to "_self". You should then use the %return_url% to return the user to the PaperCut MF/NG web interface
# This code is a basic example only. It should not be used for production
import xmlrpc.client
import sys
from json import load as loadjs
import logging
import traceback
# Bottle does not depend on any external libraries.
# You can just download bottle.py into your project directory and using
# $ wget http://bottlepy.org/bottle.py
from bottle import route, run, template, request, debug, response
# Prefer HTTPS connection
# If not localhost then this address will need to be whitelisted in PaperCut
host = "http://localhost:9191/rpc/api/xmlrpc"
auth = "token" # Value defined in advanced config property "auth.webservices.auth-token". Should be random
proxy = xmlrpc.client.ServerProxy(host)
# For more information on this user database file refer to the custom auth and sync demo
paperCutAccountInfoFile = 'c:\\Program Files\\PaperCut MF\\server\\custom\\config.json'
paperCutAccountData = {}
# The user is sent back to the Summary page as if they had just logged in,
# assuming their session has not timed out
# Therefore return url should be consistent
redirect_url = ''
@route('/')
@route('/promptForPassword/')
@route('/simpleTopUpBalance/', method='GET')
@route("/topUp/")
try:
with open(paperCutAccountInfoFile) as f:
paperCutAccountData = loadjs(f)
except OSError:
paperCutAccountData = None
run(host='localhost', port=8081, debug=True, reloader=True)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
10452,
3992,
598,
284,
1249,
257,
2836,
284,
1353,
510,
511,
2614,
14962,
26254,
5236,
198,
198,
2,
3060,
257,
2183,
10289,
284,
262,
14962,
26254,
2836,
3992,
2443,
11,
543,
318,
973,
416,
886,
2985,
198,
2,
618,
484,
765,
284,
751,
3884,
284,
511,
14962,
26254,
2614,
1848,
13,
383,
19016,
198,
2,
815,
3522,
284,
428,
1402,
3992,
598,
1649,
262,
2836,
25785,
319,
262,
10289,
2792,
198,
2,
357,
259,
262,
14962,
26254,
2836,
3992,
2443,
8,
284,
262,
3992,
598,
11,
262,
2836,
11795,
3307,
198,
2,
389,
3804,
355,
636,
286,
262,
10289,
13,
770,
318,
4893,
379,
25,
198,
198,
2,
3740,
1378,
2503,
13,
20189,
8968,
13,
785,
14,
29498,
14,
782,
14,
805,
723,
14,
11321,
14,
4852,
873,
14,
23144,
1096,
12,
7220,
12,
12384,
12,
31126,
13,
6494,
2,
23144,
1096,
12,
7220,
12,
12384,
12,
31126,
12,
28341,
12,
28751,
198,
198,
2,
383,
10289,
497,
39642,
284,
1223,
588,
2638,
1378,
36750,
25,
1795,
6659,
14,
36439,
9126,
4933,
45866,
20924,
7220,
28,
4,
7220,
4,
5,
7783,
62,
6371,
28,
4,
7783,
62,
6371,
4,
198,
198,
2,
23904,
3224,
2324,
815,
307,
2810,
13,
1114,
1672,
611,
262,
10289,
318,
2638,
1378,
36750,
25,
1795,
6659,
14,
16963,
457,
1890,
35215,
20924,
7220,
28,
4,
7220,
4,
5,
7783,
62,
6371,
28,
4,
7783,
62,
6371,
4,
198,
2,
788,
262,
2836,
481,
761,
284,
3802,
511,
14962,
26254,
9206,
284,
1895,
262,
6074,
1080,
198,
198,
2,
7157,
88,
23095,
25,
2750,
4277,
262,
2792,
481,
1280,
287,
257,
4553,
1592,
375,
322,
13,
921,
460,
4370,
262,
6190,
4566,
3119,
2836,
13,
12384,
13,
23144,
12,
28751,
290,
198,
2,
1487,
45434,
2618,
1,
284,
45434,
944,
1911,
921,
815,
788,
779,
262,
4064,
7783,
62,
6371,
4,
284,
1441,
262,
2836,
284,
262,
14962,
26254,
32850,
14,
10503,
3992,
7071,
198,
198,
2,
770,
2438,
318,
257,
4096,
1672,
691,
13,
632,
815,
407,
307,
973,
329,
3227,
198,
198,
11748,
35555,
81,
14751,
13,
16366,
198,
11748,
25064,
198,
6738,
33918,
1330,
3440,
355,
3440,
8457,
198,
11748,
18931,
198,
11748,
12854,
1891,
198,
198,
2,
33608,
857,
407,
4745,
319,
597,
7097,
12782,
13,
198,
2,
921,
460,
655,
4321,
9294,
13,
9078,
656,
534,
1628,
8619,
290,
1262,
198,
2,
720,
266,
1136,
2638,
1378,
10985,
293,
9078,
13,
2398,
14,
10985,
293,
13,
9078,
198,
6738,
9294,
1330,
6339,
11,
1057,
11,
11055,
11,
2581,
11,
14257,
11,
2882,
628,
198,
2,
3771,
2232,
38288,
4637,
198,
2,
1002,
407,
1957,
4774,
788,
428,
2209,
481,
761,
284,
307,
20542,
417,
6347,
287,
14962,
26254,
198,
4774,
796,
366,
4023,
1378,
36750,
25,
24,
26492,
14,
81,
14751,
14,
15042,
14,
19875,
81,
14751,
1,
198,
18439,
796,
366,
30001,
1,
220,
1303,
11052,
5447,
287,
6190,
4566,
3119,
366,
18439,
13,
732,
1443,
712,
1063,
13,
18439,
12,
30001,
1911,
10358,
307,
4738,
198,
198,
36436,
796,
35555,
81,
14751,
13,
16366,
13,
10697,
44148,
7,
4774,
8,
198,
198,
2,
1114,
517,
1321,
319,
428,
2836,
6831,
2393,
3522,
284,
262,
2183,
6284,
290,
17510,
13605,
198,
20189,
26254,
30116,
12360,
8979,
796,
705,
66,
25,
6852,
15167,
13283,
6852,
42950,
26254,
32850,
6852,
15388,
6852,
23144,
6852,
11250,
13,
17752,
6,
198,
198,
20189,
26254,
30116,
6601,
796,
23884,
198,
198,
2,
383,
2836,
318,
1908,
736,
284,
262,
21293,
2443,
355,
611,
484,
550,
655,
18832,
287,
11,
198,
2,
13148,
511,
6246,
468,
407,
28805,
503,
198,
2,
8447,
1441,
19016,
815,
307,
6414,
198,
445,
1060,
62,
6371,
796,
10148,
628,
198,
31,
38629,
10786,
14,
11537,
628,
198,
31,
38629,
10786,
14,
16963,
457,
1890,
35215,
14,
11537,
198,
198,
31,
38629,
10786,
14,
36439,
9126,
4933,
45866,
14,
3256,
2446,
11639,
18851,
11537,
628,
198,
31,
38629,
7203,
14,
4852,
4933,
14,
4943,
198,
198,
28311,
25,
198,
220,
220,
220,
351,
1280,
7,
20189,
26254,
30116,
12360,
8979,
8,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3348,
26254,
30116,
6601,
796,
3440,
8457,
7,
69,
8,
198,
16341,
440,
5188,
81,
1472,
25,
198,
220,
220,
220,
3348,
26254,
30116,
6601,
796,
6045,
198,
198,
5143,
7,
4774,
11639,
36750,
3256,
2493,
28,
1795,
6659,
11,
14257,
28,
17821,
11,
18126,
263,
28,
17821,
8,
198
] | 3.502695 | 742 |
#!/usr/bin/env python
import os, yaml, json, shlex, datetime
import logging
logging.basicConfig(level=logging.INFO)
from jinja2 import Environment, FileSystemLoader
from datetime import datetime
from shutil import copyfile
# Mimic Ansible addional Jinja filter
# Prepare Jinja envs
env = Environment(loader = FileSystemLoader("/awx"), trim_blocks=True, lstrip_blocks=True)
env.filters['quote'] = quote # Register quote filer
# put local config to root Jinja
copyfile("/opt/local/config/values.yml", "/awx/config/values.yml")
logging.info("Generating values")
# Load default config values
default_config_src = yaml.safe_load(open("/awx/config/default.values.yml.j2"))
# Config file itself is a template => render it
template = env.get_template("config/default.values.yml.j2")
data = template.render(default_config_src)
logging.debug("default values render : ")
logging.debug(data)
default_config_src = yaml.safe_load(data)
# Load config values
config_src = yaml.safe_load(open("/awx/config/values.yml"))
# Config file itself may be a template => render it
template = env.get_template("config/values.yml")
data = template.render(config_src)
logging.debug("values render : ")
logging.debug(data)
config_src = yaml.safe_load(data)
# Merge config and defaults
config_src = {**default_config_src, **config_src}
logging.debug(config_src)
# list templates
source_template_dir='/awx/templates'
templates = os.listdir(source_template_dir)
logging.debug(templates)
# Create target dir then iterate
os.makedirs("/opt/local/.awx", exist_ok=True)
for templateName in templates:
logging.info("Generating from : %s", templateName)
template = env.get_template("templates/" + templateName)
data = template.render(config_src)
logging.debug(data)
# Render template
target=os.path.join("/opt/local/.awx",os.path.splitext(templateName)[0])
logging.info("Dumping to : %s ", target)
f = open(target, "w")
f.write(data)
f.close()
logging.info("Create secret key file")
# Dump static secret key
f = open(os.path.join("/opt/local/.awx", "SECRET_KEY"), "w")
f.write(config_src['secret_key'])
f.close()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
28686,
11,
331,
43695,
11,
33918,
11,
427,
2588,
11,
4818,
8079,
198,
11748,
18931,
198,
6404,
2667,
13,
35487,
16934,
7,
5715,
28,
6404,
2667,
13,
10778,
8,
198,
198,
6738,
474,
259,
6592,
17,
1330,
9344,
11,
9220,
11964,
17401,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
4423,
346,
1330,
4866,
7753,
198,
198,
2,
39312,
291,
28038,
856,
751,
1538,
17297,
6592,
8106,
198,
198,
2,
43426,
17297,
6592,
551,
14259,
198,
24330,
796,
9344,
7,
29356,
796,
9220,
11964,
17401,
7203,
14,
707,
87,
12340,
15797,
62,
27372,
28,
17821,
11,
300,
36311,
62,
27372,
28,
17821,
8,
198,
24330,
13,
10379,
1010,
17816,
22708,
20520,
796,
9577,
1303,
17296,
9577,
1226,
263,
198,
198,
2,
1234,
1957,
4566,
284,
6808,
17297,
6592,
198,
30073,
7753,
7203,
14,
8738,
14,
12001,
14,
11250,
14,
27160,
13,
88,
4029,
1600,
12813,
707,
87,
14,
11250,
14,
27160,
13,
88,
4029,
4943,
198,
198,
6404,
2667,
13,
10951,
7203,
8645,
803,
3815,
4943,
198,
198,
2,
8778,
4277,
4566,
3815,
198,
12286,
62,
11250,
62,
10677,
796,
331,
43695,
13,
21230,
62,
2220,
7,
9654,
7203,
14,
707,
87,
14,
11250,
14,
12286,
13,
27160,
13,
88,
4029,
13,
73,
17,
48774,
198,
198,
2,
17056,
2393,
2346,
318,
257,
11055,
5218,
8543,
340,
198,
28243,
796,
17365,
13,
1136,
62,
28243,
7203,
11250,
14,
12286,
13,
27160,
13,
88,
4029,
13,
73,
17,
4943,
198,
7890,
796,
11055,
13,
13287,
7,
12286,
62,
11250,
62,
10677,
8,
198,
6404,
2667,
13,
24442,
7203,
12286,
3815,
8543,
1058,
366,
8,
198,
6404,
2667,
13,
24442,
7,
7890,
8,
198,
12286,
62,
11250,
62,
10677,
796,
331,
43695,
13,
21230,
62,
2220,
7,
7890,
8,
198,
198,
2,
8778,
4566,
3815,
198,
11250,
62,
10677,
796,
331,
43695,
13,
21230,
62,
2220,
7,
9654,
7203,
14,
707,
87,
14,
11250,
14,
27160,
13,
88,
4029,
48774,
198,
198,
2,
17056,
2393,
2346,
743,
307,
257,
11055,
5218,
8543,
340,
198,
28243,
796,
17365,
13,
1136,
62,
28243,
7203,
11250,
14,
27160,
13,
88,
4029,
4943,
198,
7890,
796,
11055,
13,
13287,
7,
11250,
62,
10677,
8,
198,
6404,
2667,
13,
24442,
7203,
27160,
8543,
1058,
366,
8,
198,
6404,
2667,
13,
24442,
7,
7890,
8,
198,
11250,
62,
10677,
796,
331,
43695,
13,
21230,
62,
2220,
7,
7890,
8,
198,
198,
2,
39407,
4566,
290,
26235,
198,
11250,
62,
10677,
796,
1391,
1174,
12286,
62,
11250,
62,
10677,
11,
12429,
11250,
62,
10677,
92,
198,
6404,
2667,
13,
24442,
7,
11250,
62,
10677,
8,
198,
198,
2,
1351,
24019,
198,
10459,
62,
28243,
62,
15908,
11639,
14,
707,
87,
14,
11498,
17041,
6,
198,
11498,
17041,
796,
28686,
13,
4868,
15908,
7,
10459,
62,
28243,
62,
15908,
8,
198,
6404,
2667,
13,
24442,
7,
11498,
17041,
8,
198,
198,
2,
13610,
2496,
26672,
788,
11629,
378,
198,
418,
13,
76,
4335,
17062,
7203,
14,
8738,
14,
12001,
11757,
707,
87,
1600,
2152,
62,
482,
28,
17821,
8,
198,
1640,
11055,
5376,
287,
24019,
25,
198,
220,
220,
220,
18931,
13,
10951,
7203,
8645,
803,
422,
1058,
4064,
82,
1600,
11055,
5376,
8,
628,
220,
220,
220,
11055,
796,
17365,
13,
1136,
62,
28243,
7203,
11498,
17041,
30487,
1343,
11055,
5376,
8,
198,
220,
220,
220,
1366,
796,
11055,
13,
13287,
7,
11250,
62,
10677,
8,
198,
220,
220,
220,
18931,
13,
24442,
7,
7890,
8,
628,
220,
220,
220,
1303,
46722,
11055,
198,
220,
220,
220,
2496,
28,
418,
13,
6978,
13,
22179,
7203,
14,
8738,
14,
12001,
11757,
707,
87,
1600,
418,
13,
6978,
13,
22018,
578,
742,
7,
28243,
5376,
38381,
15,
12962,
198,
220,
220,
220,
18931,
13,
10951,
7203,
35,
25218,
284,
1058,
4064,
82,
33172,
2496,
8,
628,
220,
220,
220,
277,
796,
1280,
7,
16793,
11,
366,
86,
4943,
198,
220,
220,
220,
277,
13,
13564,
7,
7890,
8,
198,
220,
220,
220,
277,
13,
19836,
3419,
198,
198,
6404,
2667,
13,
10951,
7203,
16447,
3200,
1994,
2393,
4943,
198,
198,
2,
360,
931,
9037,
3200,
1994,
198,
69,
796,
1280,
7,
418,
13,
6978,
13,
22179,
7203,
14,
8738,
14,
12001,
11757,
707,
87,
1600,
366,
23683,
26087,
62,
20373,
12340,
366,
86,
4943,
198,
69,
13,
13564,
7,
11250,
62,
10677,
17816,
21078,
62,
2539,
6,
12962,
198,
69,
13,
19836,
3419,
198
] | 2.90068 | 735 |
"""Module: Creates a WeatherScraper class to scrape data from website."""
import urllib.request
import datetime
import time
from time import strptime
from html.parser import HTMLParser
from html.entities import name2codepoint
class WeatherScraper(HTMLParser):
"""This class contains HTMLParser functions."""
def __init__(self):
"""Create an instance of WeatherScraper."""
HTMLParser.__init__(self)
self.inTr = self.inTh = self.inAabr = self.inA = self.inTd = \
self.isDate = self.inCaption = self.inTbody = False
self.inMean = self.inMin = self.inMax = self.inAvg = \
self.inMyDate = False
self.EqualData = True
self.i = self.j = 0
self.keys = ["max", "min", "mean"]
self.dictInner = {}
self.dictOuter = {}
self.myDate = ''
self.myCaptionYear = ''
self.myCaption = []
self.url_year = self.url_month = None
def handle_starttag(self, tag, attrs):
"""Handle the starttag in a website."""
if tag == 'caption':
"""Only one caption in html"""
try:
self.inCaption = True
except Exception as e:
print("Error:", e)
if tag == 'tbody':
"""Only one <tbody> in html"""
try:
self.inTbody = True
except Exception as e:
print("Error:", e)
if tag == 'tr':
"""There are an average of 35 tr"""
try:
self.inTr = True
except Exception as e:
print("Error:", e)
if tag == 'td':
"""First td is under column MAX and DAY 1"""
try:
"""i = 1 -> column MAX TEMP;
i = 2 -> column MIN TEMP;
i = 3 -> column MEAN TEMP"""
self.i += 1
self.inTd = True
except Exception as e:
print("Error:", e)
if tag == 'th':
"""First th = DAY(0,0) in table.
Date is inside a td>th>abbr(attr[1]). Total: 43 """
try:
self.inTh = True
except Exception as e:
print("Error:", e)
if tag == 'abbr':
"""Date is located in here, attr[1]. Total: 62"""
try:
self.inAabr = True
except Exception as e:
print("Error:", e)
if tag == 'a':
"""Set tag <a> to true"""
try:
self.inA = True
except Exception as e:
print("Error:", e)
for attr in attrs:
"""attrs are inside a tag. E.g id='test'."""
self.inMean = True
# print(self.inTbody)
if self.inTbody and self.inTr and self.inTh and self.inAabr and \
attr[0] == 'title' and not attr[0] == 'href' \
and not attr[1] == 'Average' and not attr[1] == 'Extreme':
# print(attr)
self.inMyDate = True
try:
# print(f" attr[1] {attr[1]}")
self.myDate = datetime.datetime \
.strptime(attr[1], '%B %d, %Y') \
.date() \
.strftime('%Y/%m/%d')
print(f" self.myDate {self.myDate}")
self.isDate = True
except Exception as e:
print(f"Error: {attr[1]}", e)
def handle_endtag(self, tag):
"""Handle the endtag in a website."""
if tag == 'caption':
try:
self.inCaption = False
except Exception as e:
print("Error:", e)
if tag == 'tbody':
"""Only one <tbody> in html"""
try:
self.inTbody = False
except Exception as e:
print("Error:", e)
if tag == 'tr':
try:
self.i = 0
self.inTr = False
except Exception as e:
print("Error:", e)
if tag == 'td':
try:
self.inTd = False
except Exception as e:
print("Error:", e)
if tag == 'th':
try:
self.inTh = False
except Exception as e:
print("Error:", e)
if tag == 'abbr':
try:
self.inMean = False
self.inAabr = False
except Exception as e:
print("Error:", e)
if tag == 'a':
"""Set all tag <a>"""
try:
self.inA = False
except Exception as e:
print("Error:", e)
def handle_data(self, data):
"""Handle the data inside a tag in a website and return dictionary."""
if data == 'Sum':
self.inMyDate = False
if self.inMyDate and self.inTd and self.i == 1:
try:
# print("Max Inner:", data)
self.dictInner[self.keys[0]] = data
except Exception as e:
self.dictInner[self.keys[0]] = 0
print("Error:", e)
if self.inMyDate and self.inTd and self.i == 2:
try:
# print("Min Inner:", data)
self.dictInner[self.keys[1]] = data
except Exception as e:
self.dictInner[self.keys[1]] = 0
print("Error:", e)
if self.inMyDate and self.inTd and self.i == 3:
try:
# print("Mean Inner:", data)
self.dictInner[self.keys[2]] = data
except Exception as e:
self.dictInner[self.keys[2]] = 0
print("Error:", e)
if self.inMyDate:
self.dictOuter[self.myDate] = dict(self.dictInner)
if self.inCaption:
self.myCaption = data.split()
self.myCaptionYear = self.myCaption[5]
# print(f"inCaption - YEAR {self.myCaptionYear}")
self.myCaptionMonth = self.myCaption[4]
# print(f"inCaption - MONTH {self.myCaptionMonth}")
m = {'jan': '01', 'feb': '02', 'mar': '03', 'apr': '04',
'may': '05', 'jun': '06', 'jul': '07', 'aug': '08',
'sep': '09', 'oct': '10', 'nov': '11', 'dec': '12'}
s = self.myCaption[4].strip()[:3].lower()
if str(self.url_month).zfill(2) == m[s] and str(self.url_year) \
in self.myCaptionYear:
# print("EQUALLLLLL")
self.EqualData = True
else:
# print("NOT EQUAL")
self.EqualData = False
| [
37811,
26796,
25,
7921,
274,
257,
15615,
3351,
38545,
1398,
284,
42778,
1366,
422,
3052,
526,
15931,
198,
11748,
2956,
297,
571,
13,
25927,
198,
11748,
4818,
8079,
198,
11748,
640,
198,
6738,
640,
1330,
965,
457,
524,
198,
6738,
27711,
13,
48610,
1330,
11532,
46677,
198,
6738,
27711,
13,
298,
871,
1330,
1438,
17,
19815,
538,
1563,
628,
198,
4871,
15615,
3351,
38545,
7,
28656,
46677,
2599,
198,
220,
220,
220,
37227,
1212,
1398,
4909,
11532,
46677,
5499,
526,
15931,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16447,
281,
4554,
286,
15615,
3351,
38545,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
11532,
46677,
13,
834,
15003,
834,
7,
944,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
2898,
796,
2116,
13,
259,
817,
796,
2116,
13,
259,
32,
397,
81,
796,
2116,
13,
259,
32,
796,
2116,
13,
259,
51,
67,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
271,
10430,
796,
2116,
13,
259,
24334,
1159,
796,
2116,
13,
259,
51,
2618,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
5308,
272,
796,
2116,
13,
259,
9452,
796,
2116,
13,
259,
11518,
796,
2116,
13,
259,
48997,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
3666,
10430,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36,
13255,
6601,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
72,
796,
2116,
13,
73,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
13083,
796,
14631,
9806,
1600,
366,
1084,
1600,
366,
32604,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
7975,
263,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
10430,
796,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
24334,
1159,
17688,
796,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
24334,
1159,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
6371,
62,
1941,
796,
2116,
13,
6371,
62,
8424,
796,
6045,
628,
220,
220,
220,
825,
5412,
62,
9688,
12985,
7,
944,
11,
7621,
11,
708,
3808,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37508,
262,
923,
12985,
287,
257,
3052,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
6888,
1159,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
530,
8305,
287,
27711,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
24334,
1159,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
83,
2618,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
530,
1279,
83,
2618,
29,
287,
27711,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
51,
2618,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
2213,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
1858,
389,
281,
2811,
286,
3439,
491,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
2898,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
8671,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
5962,
41560,
318,
739,
5721,
25882,
290,
24644,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
72,
796,
352,
4613,
5721,
25882,
309,
39494,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
362,
4613,
5721,
20625,
309,
39494,
26,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
513,
4613,
5721,
11948,
1565,
309,
39494,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
72,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
51,
67,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
400,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
5962,
294,
796,
24644,
7,
15,
11,
15,
8,
287,
3084,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7536,
318,
2641,
257,
41560,
29,
400,
29,
397,
1671,
7,
35226,
58,
16,
35944,
7472,
25,
5946,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
817,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
397,
1671,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
10430,
318,
5140,
287,
994,
11,
708,
81,
58,
16,
4083,
7472,
25,
8190,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
32,
397,
81,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
64,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
7621,
1279,
64,
29,
284,
2081,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
32,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
708,
81,
287,
708,
3808,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
1078,
3808,
389,
2641,
257,
7621,
13,
412,
13,
70,
4686,
11639,
9288,
30827,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
5308,
272,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
944,
13,
259,
51,
2618,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
51,
2618,
290,
2116,
13,
259,
2898,
290,
2116,
13,
259,
817,
290,
2116,
13,
259,
32,
397,
81,
290,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
708,
81,
58,
15,
60,
6624,
705,
7839,
6,
290,
407,
708,
81,
58,
15,
60,
6624,
705,
33257,
6,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
407,
708,
81,
58,
16,
60,
6624,
705,
26287,
6,
290,
407,
708,
81,
58,
16,
60,
6624,
705,
36716,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
35226,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
3666,
10430,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
69,
1,
708,
81,
58,
16,
60,
1391,
35226,
58,
16,
48999,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
10430,
796,
4818,
8079,
13,
19608,
8079,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
2536,
457,
524,
7,
35226,
58,
16,
4357,
705,
4,
33,
4064,
67,
11,
4064,
56,
11537,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
4475,
3419,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
2536,
31387,
10786,
4,
56,
14,
4,
76,
14,
4,
67,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
2116,
13,
1820,
10430,
1391,
944,
13,
1820,
10430,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
271,
10430,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
12331,
25,
1391,
35226,
58,
16,
48999,
1600,
304,
8,
628,
220,
220,
220,
825,
5412,
62,
437,
12985,
7,
944,
11,
7621,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37508,
262,
886,
12985,
287,
257,
3052,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
6888,
1159,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
24334,
1159,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
83,
2618,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
530,
1279,
83,
2618,
29,
287,
27711,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
51,
2618,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
2213,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
72,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
2898,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
8671,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
51,
67,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
400,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
817,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
397,
1671,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
5308,
272,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
32,
397,
81,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
7621,
6624,
705,
64,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
477,
7621,
1279,
64,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
32,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
825,
5412,
62,
7890,
7,
944,
11,
1366,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37508,
262,
1366,
2641,
257,
7621,
287,
257,
3052,
290,
1441,
22155,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1366,
6624,
705,
13065,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
259,
3666,
10430,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
3666,
10430,
290,
2116,
13,
259,
51,
67,
290,
2116,
13,
72,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
11518,
220,
24877,
25,
1600,
1366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
15,
11907,
796,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
15,
11907,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
3666,
10430,
290,
2116,
13,
259,
51,
67,
290,
2116,
13,
72,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
9452,
220,
24877,
25,
1600,
1366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
16,
11907,
796,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
16,
11907,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
3666,
10430,
290,
2116,
13,
259,
51,
67,
290,
2116,
13,
72,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
5308,
272,
220,
24877,
25,
1600,
1366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
17,
11907,
796,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
818,
1008,
58,
944,
13,
13083,
58,
17,
11907,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
12331,
25,
1600,
304,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
3666,
10430,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11600,
7975,
263,
58,
944,
13,
1820,
10430,
60,
796,
8633,
7,
944,
13,
11600,
818,
1008,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
259,
24334,
1159,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
24334,
1159,
796,
1366,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
24334,
1159,
17688,
796,
2116,
13,
1820,
24334,
1159,
58,
20,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
69,
1,
259,
24334,
1159,
532,
32914,
1391,
944,
13,
1820,
24334,
1159,
17688,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1820,
24334,
1159,
31948,
796,
2116,
13,
1820,
24334,
1159,
58,
19,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
69,
1,
259,
24334,
1159,
532,
25000,
4221,
1391,
944,
13,
1820,
24334,
1159,
31948,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
796,
1391,
6,
13881,
10354,
705,
486,
3256,
705,
69,
1765,
10354,
705,
2999,
3256,
705,
3876,
10354,
705,
3070,
3256,
705,
499,
81,
10354,
705,
3023,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11261,
10354,
705,
2713,
3256,
705,
29741,
10354,
705,
3312,
3256,
705,
73,
377,
10354,
705,
2998,
3256,
705,
7493,
10354,
705,
2919,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
325,
79,
10354,
705,
2931,
3256,
705,
38441,
10354,
705,
940,
3256,
705,
37302,
10354,
705,
1157,
3256,
705,
12501,
10354,
705,
1065,
6,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
796,
2116,
13,
1820,
24334,
1159,
58,
19,
4083,
36311,
3419,
58,
25,
18,
4083,
21037,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
7,
944,
13,
6371,
62,
8424,
737,
89,
20797,
7,
17,
8,
6624,
285,
58,
82,
60,
290,
965,
7,
944,
13,
6371,
62,
1941,
8,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
2116,
13,
1820,
24334,
1159,
17688,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
36,
10917,
1847,
3069,
3069,
43,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36,
13255,
6601,
796,
6407,
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,
1303,
3601,
7203,
11929,
46886,
1847,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36,
13255,
6601,
796,
10352,
198
] | 1.789543 | 3,787 |
import time, cv2
from threading import Thread
from djitellopy import Tello
FPS = 30
tello = Tello()
tello.connect()
print("Battery level:", tello.get_battery())
keepRecording = True
tello.streamon()
frame_read = tello.get_frame_read()
# we need to run the recorder in a seperate thread, otherwise blocking options
# would prevent frames from getting added to the video
recorder = Thread(target=video_recorder)
recorder.start()
# tello.takeoff()
# tello.move_up(100)
# tello.rotate_counter_clockwise(360)
# tello.land()
start = time.time()
while time.time() - start < 15:
cv2.imshow("Drone", frame_read.frame)
cv2.waitKey(1)
keepRecording = False
recorder.join()
tello.end()
| [
11748,
640,
11,
269,
85,
17,
198,
6738,
4704,
278,
1330,
14122,
198,
6738,
42625,
578,
297,
11081,
1330,
309,
11109,
198,
198,
37,
3705,
796,
1542,
198,
198,
660,
18798,
796,
309,
11109,
3419,
198,
660,
18798,
13,
8443,
3419,
198,
4798,
7203,
47006,
1241,
25,
1600,
1560,
78,
13,
1136,
62,
65,
16296,
28955,
198,
198,
14894,
6690,
1284,
796,
6407,
198,
660,
18798,
13,
5532,
261,
3419,
198,
14535,
62,
961,
796,
1560,
78,
13,
1136,
62,
14535,
62,
961,
3419,
198,
198,
2,
356,
761,
284,
1057,
262,
38156,
287,
257,
384,
30052,
4704,
11,
4306,
12013,
3689,
198,
2,
220,
561,
2948,
13431,
422,
1972,
2087,
284,
262,
2008,
198,
8344,
2875,
796,
14122,
7,
16793,
28,
15588,
62,
8344,
2875,
8,
198,
8344,
2875,
13,
9688,
3419,
198,
198,
2,
1560,
78,
13,
20657,
2364,
3419,
198,
2,
1560,
78,
13,
21084,
62,
929,
7,
3064,
8,
198,
2,
1560,
78,
13,
10599,
378,
62,
24588,
62,
15750,
3083,
7,
15277,
8,
198,
2,
1560,
78,
13,
1044,
3419,
198,
9688,
796,
640,
13,
2435,
3419,
198,
4514,
640,
13,
2435,
3419,
532,
923,
1279,
1315,
25,
198,
220,
220,
220,
269,
85,
17,
13,
320,
12860,
7203,
6187,
505,
1600,
5739,
62,
961,
13,
14535,
8,
198,
220,
220,
220,
269,
85,
17,
13,
17077,
9218,
7,
16,
8,
198,
198,
14894,
6690,
1284,
796,
10352,
198,
8344,
2875,
13,
22179,
3419,
198,
198,
660,
18798,
13,
437,
3419,
198
] | 2.793522 | 247 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import utils.fields
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
11,
15720,
602,
198,
11748,
3384,
4487,
13,
25747,
628
] | 2.953488 | 43 |
from textwrap import dedent
import pytest
from pylox.lox import Lox
# Base cases from https://github.com/munificent/craftinginterpreters/blob/master/test/variable/use_local_in_initializer.lox
TEST_SRC = dedent(
"""\
var a = "outer";
{
var a = a; // Error at 'a': Can't read local variable in its own initializer.
}
"""
)
EXPECTED_STDOUTS = ["3:11: LoxResolverError: Can't read local variable in its own initializer."]
| [
6738,
2420,
37150,
1330,
4648,
298,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
279,
2645,
1140,
13,
75,
1140,
1330,
406,
1140,
198,
198,
2,
7308,
2663,
422,
3740,
1378,
12567,
13,
785,
14,
6199,
21559,
14,
3323,
278,
3849,
3866,
1010,
14,
2436,
672,
14,
9866,
14,
9288,
14,
45286,
14,
1904,
62,
12001,
62,
259,
62,
36733,
7509,
13,
75,
1140,
198,
51,
6465,
62,
50,
7397,
796,
4648,
298,
7,
198,
220,
220,
220,
37227,
59,
198,
220,
220,
220,
1401,
257,
796,
366,
39605,
8172,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
1401,
257,
796,
257,
26,
3373,
13047,
379,
705,
64,
10354,
1680,
470,
1100,
1957,
7885,
287,
663,
898,
4238,
7509,
13,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
37227,
198,
8,
198,
198,
49864,
9782,
1961,
62,
32147,
2606,
4694,
796,
14631,
18,
25,
1157,
25,
406,
1140,
4965,
14375,
12331,
25,
1680,
470,
1100,
1957,
7885,
287,
663,
898,
4238,
7509,
526,
60,
628
] | 2.656805 | 169 |
import re
import spacy
spacy_en = spacy.load('en_core_web_sm')
# Setting LF output values
ABSTAIN_VAL = 0
SEIZURE_VAL = 1
NO_SEIZURE_VAL = -1
######################################################################################################
##### HELPFUL REGEXES AND ONTOLOGIES
######################################################################################################
# Defining useful regular expressions.
SIMPLE_NORMAL_RE = re.compile('\snormal\s', re.IGNORECASE)
# Nouns indicating an EEG
EEGSYN = r'(EEG|study|record|electroencephalogram|ambulatory\s+EEG|video.EEG\sstudy)'
# Phrases indicating a normal study
NORMAL_STUDY_PHRASES = re.compile(rf'\snormal\s+{EEGSYN}'
rf'|\snormal\s+awake\s+and\s+asleep\s+{EEGSYN}'
rf'|\snormal\s+awake\s+{EEGSYN}'
rf'|\snormal\s+awake\s+and\s+drowsy\s+{EEGSYN}'
rf'|\snormal\s+asleep\s+{EEGSYN}'
rf'|\s{EEGSYN}\s+(is|was)\s+normal'
rf'|\srange\s+of\s+normal' # generous
rf'|\s(is|was)\s+normal\s+for\s+age'
#rf'|(EEG|study|record)\s+(is|was)\s+normal\s+for\s+age'
#rf'|(EEG|study|record)\s+(is|was)\s+normal\s+for\s+age'
rf'|{EEGSYN}\s+(is|was)\s+within\s+normal\s+'
rf'|{EEGSYN}\s+(is|was)\s+borderline\+snormal'
rf'|{EEGSYN}\s+(is|was)\s+at\s+the\s+borderline\s+of\s+being\s+normal'
rf'|{EEGSYN}\s+capturing\s+wakefulness\s+and\s+sleep\s+(is|was)\s+normal'
rf'|{EEGSYN}\s+capturing\s+wakefulness\s+(is|was)\s+normal',
re.IGNORECASE)
# Regex for abnormal
ABNORMAL_RE = re.compile(r'abnormal', re.IGNORECASE)
# Regex for seizure synonyms
SEIZURE_SYNONYMS = r'seizure|seizures|spasm|spasms|status\sepilepticus|epilepsia\spartialis\scontinua|drop\sattack'
SEIZURE_SYNONYMS_RE = re.compile(SEIZURE_SYNONYMS, re.IGNORECASE|re.UNICODE)
# Regex for negation
NEG_DET = ['no', 'not', 'without']
# Regex for no seizure in study
NEG_SEIZURE = r'no seizures|no epileptiform activity or seizures'.replace(' ','\s')
NEG_SEIZURE_RE = re.compile(NEG_SEIZURE, re.IGNORECASE)
# Alternate section keys for INTERPRATION section of report
candidate_interps = ['INTERPRETATION', 'Interpretation', 'Summary', 'impression', 'IMPRESSION', 'conclusion', 'conclusions']
CANDIDATE_INTERPS_LOWER = list({ss.lower() for ss in candidate_interps})
# Alternate regex for no seizures
NOSEIZURE_PHRASE_RE = re.compile(r'\bno seizures\b|\bno\sepileptiform\sactivity\sor\sseizures\b'
r'|\bno findings to indicate seizures\b'
r'|no findings to indicate'
r'|no new seizures'
r'|with no seizures'
r'|no evidence to support seizures'
r'|nonepileptic'
r'|non-epileptic'
,
re.IGNORECASE|re.UNICODE)
# Defining negexes
NEG_DET= r'(\bno\b|\bnot\b|\bwithout\sfurther\b|\bno\sfurther\b|without|neither)'
BASIC_NEGEX_RE = re.compile(NEG_DET + '.*('+ SEIZURE_SYNONYMS + ')', re.IGNORECASE|re.UNICODE)
REVERSED_NEGEX_RE = re.compile('('+ SEIZURE_SYNONYMS + ').*' + NEG_DET, re.IGNORECASE|re.UNICODE)
######################################################################################################
##### HELPER FUNCTIONS
######################################################################################################
def is_not_abnormal_interp(interp):
"""
Check text of interpretation for abnormal mentions
"""
m = ABNORMAL_RE.search(interp)
if not m:
return True
else:
return False
def abnormal_interp_with_seizure(interp_text):
"""
Tests for abnormal interpretation with seizure synonym
"""
if ABNORMAL_RE.search(interp_text):
if SEIZURE_SYNONYMS_RE.search(interp_text):
return SEIZURE_VAL
else:
return NO_SEIZURE_VAL
else:
return NO_SEIZURE_VAL
def abnormal_interp_test(interp_text):
"""
Tests for abnormal text
"""
return ABNORMAL_RE.search(interp_text)
def eval_interp_with_negex(interp):
"""
Looks at each sentence, if a sentence says there is a seizure,
then that overrides all the negative sentences
"""
if is_not_abnormal_interp(interp):
return NO_SEIZURE_VAL
parsed_interp = spacy_en(interp)
neg_found = 0
seizure_found_and_no_neg = 0
for sent in parsed_interp.sents:
s = str(sent)
m1 = BASIC_NEGEX_RE.search(s)
if m1:
neg_found=1
m2 = REVERSED_NEGEX_RE.search(s)
if m2:
neg_found =2
if not neg_found:
m3 = SEIZURE_SYNONYMS_RE.search(s)
if m3:
seizure_found_and_no_neg = 1
if neg_found and not seizure_found_and_no_neg:
return NO_SEIZURE_VAL
elif seizure_found_and_no_neg:
return SEIZURE_VAL
return NO_SEIZURE_VAL
def get_section_with_name(section_names, doc):
"""
Check exact matches for keys in section_names;
this presumes a certain structure in EEGNote doc object
"""
text = ''
for section in section_names:
try:
text = ' '.join([text, doc.sections[section]['text']])
except:
pass
try:
text = ' '.join([text, doc.sections['narrative'][section]])
except:
pass
try:
text = ' '.join([text, doc.sections['findings'][section]])
except:
pass
return ' '.join(text.split())
######################################################################################################
##### LABELING FUNCTIONS (LFs)
######################################################################################################
def lf_normal_interp_not_seizure(report):
"""
This LF looks for a top level interpretation section -- if none, no seizure
"""
for keyinterp in CANDIDATE_INTERPS_LOWER:
if keyinterp in report.sections.keys():
interpretation = report.sections[keyinterp]
interp_text = interpretation['text']
if SIMPLE_NORMAL_RE.search(interp_text):
if NORMAL_STUDY_PHRASES.search(interp_text):
return NO_SEIZURE_VAL
else:
return ABSTAIN_VAL
else:
return ABSTAIN_VAL
return ABSTAIN_VAL
def lf_abnormal_interp_with_seizure(report):
"""
Searching for abnormal interpretation section with seizure synonym
"""
if 'interpretation' in report.sections.keys():
interpretation = report.sections['interpretation']
interp_text = interpretation['text']
return abnormal_interp_with_seizure(interp_text)
elif 'summary' in report.sections:
return abnormal_interp_with_seizure(report.sections['summary']['text'])
elif 'findings' in report.sections: # fall back to look in the findings
if 'summary' in report.sections['findings']: # fall back to look for a summary instead
return abnormal_interp_with_seizure(report.sections['findings']['summary'])
if 'impression' in report.sections['findings']:
return abnormal_interp_with_seizure(report.sections['findings']['impression'])
return ABSTAIN_VAL
elif 'narrative' in report.sections: # fall back to look in the findings
ky = 'narrative'
if 'summary' in report.sections[ky]: # fall back to look for a summary instead
return abnormal_interp_with_seizure(report.sections[ky]['summary'])
if 'impression' in report.sections[ky]:
return abnormal_interp_with_seizure(report.sections[ky]['impression'])
return ABSTAIN_VAL
else:
return ABSTAIN_VAL
def lf_findall_interp_with_seizure(report):
"""
Check if interpretation sections are abnormal,
then look for words indicating a seizure
"""
if 'interpretation' in report.sections.keys():
interpretation = report.sections['interpretation']
interp_text = interpretation['text']
return abnormal_interp_with_seizure(interp_text)
else:
candtext = get_section_with_name(CANDIDATE_INTERPS_LOWER, report)
if candtext:
return abnormal_interp_with_seizure(candtext)
else:
return ABSTAIN_VAL
def lf_findall_abnl_interp_without_seizure(report):
"""
Check if interpretation sections are abnormal,
then look for words indicating NO seizure
"""
if 'interpretation' in report.sections.keys():
interpretation = report.sections['interpretation']
interp_text = interpretation['text']
if abnormal_interp_test(interp_text):
if NOSEIZURE_PHRASE_RE.search(interp_text):
return NO_SEIZURE_VAL
else:
return ABSTAIN_VAL
else:
return ABSTAIN_VAL
else:
candtext = get_section_with_name(CANDIDATE_INTERPS_LOWER, report)
if candtext:
if abnormal_interp_test(candtext):
if NOSEIZURE_PHRASE_RE.search(candtext):
return NO_SEIZURE_VAL
else:
return ABSTAIN_VAL
else:
return ABSTAIN_VAL
else:
return ABSTAIN_VAL
def lf_abnl_interp_negexsp_seizure(report):
"""
Check if top interpretation section is abnormal and if so,
use negex to find indications that there is no seizure
"""
for topkey in CANDIDATE_INTERPS_LOWER:
if topkey in report.sections.keys():
interpretation = report.sections[topkey]
interp_text = interpretation['text']
return eval_interp_with_negex(interp_text)
return ABSTAIN_VAL
def lf_findall_interp_negex_seizure(report):
"""
Check if lower sections have abnormal text and if so,
use negex to find indications of no seizure
"""
candtext = get_section_with_name(CANDIDATE_INTERPS_LOWER, report)
if candtext:
return eval_interp_with_negex(candtext)
else:
return ABSTAIN_VAL
def lf_seizure_section(report):
"""
Checking to see if there is a 'seizure' section in the report
"""
if 'findings' in report.sections.keys():
seizure_keys = [key for key in report.sections['findings'].keys() if 'seizure' in key ]
if not seizure_keys:
return ABSTAIN_VAL
else:
for ky in seizure_keys:
seizure_text = report.sections['findings'][ky]
if 'None' in seizure_text:
return NO_SEIZURE_VAL
elif 'Many' in seizure_text:
return SEIZURE_VAL
elif len(seizure_text.split()) > 30:
return SEIZURE_VAL
else:
return NO_SEIZURE_VAL
else:
return ABSTAIN_VAL
def lf_impression_section_negative(report):
"""
Getting impression section, checking for specific terms
"""
impression_words = ['impression','interpretation','comments']
impression = get_section_with_name(impression_words, report)
reg_normal = ['no epileptiform', 'absence of epileptiform', 'not epileptiform',
'normal EEG', 'normal aEEG','benign','non-specific','nonepileptic','idiopathic',
'no seizures','EEG is normal','normal study']
if any([re.search(reg, impression, re.IGNORECASE) for reg in reg_normal] ):
return NO_SEIZURE_VAL
else:
return ABSTAIN_VAL
def lf_impression_section_positive(report):
"""
Getting impression section, checking for specific terms
"""
impression_words = ['impression','interpretation','comments']
impression = get_section_with_name(impression_words, report)
reg_abnormal = ['status epilepticus','spasms','abnormal continuous',
'tonic','subclinical','spike-wave', 'markedly abnormal']
if any([re.search(reg, impression, re.IGNORECASE) for reg in reg_abnormal] ):
return SEIZURE_VAL
else:
return ABSTAIN_VAL
def lf_spikes_in_impression(report):
"""
Checking for indications of spikes in the impression section
"""
impression_words = ['impression','interpretation','comments']
impression = get_section_with_name(impression_words, report)
if re.search('spike',impression,re.IGNORECASE):
return SEIZURE_VAL
else:
return ABSTAIN_VAL
def lf_extreme_words_in_impression(report):
"""
Checking for words indicating extreme events in the impression section
"""
impression_words = ['impression','interpretation','comments']
impression = get_section_with_name(impression_words, report)
reg_abnormal = ['excessive','frequent']
if any([re.search(reg, impression, re.IGNORECASE) for reg in reg_abnormal] ):
return SEIZURE_VAL
else:
return ABSTAIN_VAL
| [
11748,
302,
198,
11748,
599,
1590,
198,
2777,
1590,
62,
268,
796,
599,
1590,
13,
2220,
10786,
268,
62,
7295,
62,
12384,
62,
5796,
11537,
198,
198,
2,
25700,
47629,
5072,
3815,
198,
6242,
2257,
29833,
62,
23428,
796,
657,
198,
5188,
14887,
11335,
62,
23428,
796,
352,
198,
15285,
62,
5188,
14887,
11335,
62,
23428,
796,
532,
16,
198,
198,
29113,
29113,
29113,
4242,
2235,
198,
4242,
2,
36255,
42668,
6239,
23337,
6369,
1546,
5357,
6177,
51,
33462,
11015,
198,
29113,
29113,
29113,
4242,
2235,
198,
198,
2,
2896,
3191,
4465,
3218,
14700,
13,
198,
48913,
16437,
62,
35510,
42126,
62,
2200,
796,
302,
13,
5589,
576,
10786,
59,
82,
11265,
59,
82,
3256,
302,
13,
16284,
1581,
2943,
11159,
8,
198,
198,
2,
399,
977,
82,
12739,
281,
48749,
198,
6500,
14313,
40760,
796,
374,
6,
7,
6500,
38,
91,
44517,
91,
22105,
91,
9509,
305,
594,
746,
11794,
859,
91,
4131,
21386,
59,
82,
10,
6500,
38,
91,
15588,
13,
6500,
38,
59,
82,
44517,
33047,
198,
198,
2,
1380,
81,
1386,
12739,
257,
3487,
2050,
198,
35510,
42126,
62,
2257,
8322,
56,
62,
11909,
49,
1921,
1546,
796,
302,
13,
5589,
576,
7,
41871,
6,
59,
82,
11265,
59,
82,
10,
90,
6500,
14313,
40760,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
11265,
59,
82,
10,
707,
539,
59,
82,
10,
392,
59,
82,
10,
292,
8892,
59,
82,
10,
90,
6500,
14313,
40760,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
11265,
59,
82,
10,
707,
539,
59,
82,
10,
90,
6500,
14313,
40760,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
11265,
59,
82,
10,
707,
539,
59,
82,
10,
392,
59,
82,
10,
67,
808,
1837,
59,
82,
10,
90,
6500,
14313,
40760,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
11265,
59,
82,
10,
292,
8892,
59,
82,
10,
90,
6500,
14313,
40760,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
90,
6500,
14313,
40760,
32239,
82,
33747,
271,
91,
9776,
19415,
82,
10,
11265,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
9521,
59,
82,
10,
1659,
59,
82,
10,
11265,
6,
220,
1303,
14431,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
59,
82,
7,
271,
91,
9776,
19415,
82,
10,
11265,
59,
82,
10,
1640,
59,
82,
10,
496,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
41871,
6,
91,
7,
6500,
38,
91,
44517,
91,
22105,
19415,
82,
33747,
271,
91,
9776,
19415,
82,
10,
11265,
59,
82,
10,
1640,
59,
82,
10,
496,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
41871,
6,
91,
7,
6500,
38,
91,
44517,
91,
22105,
19415,
82,
33747,
271,
91,
9776,
19415,
82,
10,
11265,
59,
82,
10,
1640,
59,
82,
10,
496,
6,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
90,
6500,
14313,
40760,
32239,
82,
33747,
271,
91,
9776,
19415,
82,
10,
33479,
59,
82,
10,
11265,
59,
82,
10,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
90,
6500,
14313,
40760,
32239,
82,
33747,
271,
91,
9776,
19415,
82,
10,
20192,
1370,
59,
10,
82,
11265,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
90,
6500,
14313,
40760,
32239,
82,
33747,
271,
91,
9776,
19415,
82,
10,
265,
59,
82,
10,
1169,
59,
82,
10,
20192,
1370,
59,
82,
10,
1659,
59,
82,
10,
11873,
59,
82,
10,
11265,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
90,
6500,
14313,
40760,
32239,
82,
10,
27144,
870,
59,
82,
10,
48530,
15538,
59,
82,
10,
392,
59,
82,
10,
42832,
59,
82,
33747,
271,
91,
9776,
19415,
82,
10,
11265,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
69,
6,
91,
90,
6500,
14313,
40760,
32239,
82,
10,
27144,
870,
59,
82,
10,
48530,
15538,
59,
82,
33747,
271,
91,
9776,
19415,
82,
10,
11265,
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,
302,
13,
16284,
1581,
2943,
11159,
8,
198,
198,
2,
797,
25636,
329,
18801,
198,
6242,
35510,
42126,
62,
2200,
796,
302,
13,
5589,
576,
7,
81,
6,
397,
11265,
3256,
302,
13,
16284,
1581,
2943,
11159,
8,
198,
198,
2,
797,
25636,
329,
22338,
6171,
43612,
198,
5188,
14887,
11335,
62,
23060,
45,
40508,
5653,
796,
374,
338,
68,
528,
495,
91,
325,
528,
942,
91,
2777,
8597,
91,
2777,
34432,
91,
13376,
59,
325,
79,
576,
17459,
385,
91,
538,
576,
862,
544,
59,
2777,
433,
498,
271,
59,
1416,
756,
259,
6413,
91,
14781,
59,
82,
20358,
6,
198,
5188,
14887,
11335,
62,
23060,
45,
40508,
5653,
62,
2200,
796,
302,
13,
5589,
576,
7,
5188,
14887,
11335,
62,
23060,
45,
40508,
5653,
11,
302,
13,
16284,
1581,
2943,
11159,
91,
260,
13,
4944,
2149,
16820,
8,
198,
198,
2,
797,
25636,
329,
2469,
341,
198,
45,
7156,
62,
35,
2767,
796,
37250,
3919,
3256,
705,
1662,
3256,
705,
19419,
20520,
220,
198,
198,
2,
797,
25636,
329,
645,
22338,
287,
2050,
198,
45,
7156,
62,
5188,
14887,
11335,
796,
374,
6,
3919,
24715,
91,
3919,
29790,
457,
6933,
3842,
393,
24715,
4458,
33491,
10786,
705,
4032,
59,
82,
11537,
220,
220,
198,
45,
7156,
62,
5188,
14887,
11335,
62,
2200,
796,
302,
13,
5589,
576,
7,
45,
7156,
62,
5188,
14887,
11335,
11,
302,
13,
16284,
1581,
2943,
11159,
8,
198,
198,
2,
42400,
2665,
8251,
329,
23255,
4805,
6234,
2665,
286,
989,
220,
198,
46188,
20540,
62,
3849,
862,
796,
37250,
41358,
47,
26087,
6234,
3256,
705,
9492,
5310,
341,
3256,
705,
22093,
3256,
705,
11011,
2234,
3256,
705,
3955,
32761,
2849,
3256,
705,
1102,
4717,
3256,
705,
1102,
11539,
20520,
198,
34,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
796,
1351,
15090,
824,
13,
21037,
3419,
329,
37786,
287,
4540,
62,
3849,
862,
30072,
198,
198,
2,
42400,
40364,
329,
645,
24715,
220,
198,
45,
14058,
14887,
11335,
62,
11909,
49,
11159,
62,
2200,
796,
302,
13,
5589,
576,
7,
81,
6,
59,
65,
3919,
24715,
59,
65,
91,
59,
65,
3919,
59,
325,
79,
576,
457,
6933,
59,
82,
21797,
59,
82,
273,
59,
82,
325,
528,
942,
59,
65,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
59,
65,
3919,
6373,
284,
7603,
24715,
59,
65,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
3919,
6373,
284,
7603,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
3919,
649,
24715,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
4480,
645,
24715,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
3919,
2370,
284,
1104,
24715,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
23108,
79,
576,
17459,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
91,
13159,
12,
538,
576,
17459,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
302,
13,
16284,
1581,
2943,
11159,
91,
260,
13,
4944,
2149,
16820,
8,
198,
198,
2,
2896,
3191,
497,
25636,
274,
198,
45,
7156,
62,
35,
2767,
28,
374,
6,
38016,
65,
3919,
59,
65,
91,
59,
65,
1662,
59,
65,
91,
59,
65,
19419,
59,
28202,
1914,
59,
65,
91,
59,
65,
3919,
59,
28202,
1914,
59,
65,
91,
19419,
91,
710,
1555,
33047,
198,
33,
1921,
2149,
62,
45,
7156,
6369,
62,
2200,
796,
302,
13,
5589,
576,
7,
45,
7156,
62,
35,
2767,
1343,
705,
15885,
10786,
10,
7946,
14887,
11335,
62,
23060,
45,
40508,
5653,
1343,
705,
8,
3256,
302,
13,
16284,
1581,
2943,
11159,
91,
260,
13,
4944,
2149,
16820,
8,
198,
2200,
28884,
1961,
62,
45,
7156,
6369,
62,
2200,
796,
302,
13,
5589,
576,
10786,
10786,
10,
7946,
14887,
11335,
62,
23060,
45,
40508,
5653,
1343,
705,
737,
9,
6,
1343,
399,
7156,
62,
35,
2767,
11,
302,
13,
16284,
1581,
2943,
11159,
91,
260,
13,
4944,
2149,
16820,
8,
198,
198,
29113,
29113,
29113,
4242,
2235,
198,
4242,
2,
36255,
18973,
29397,
4177,
11053,
198,
29113,
29113,
29113,
4242,
2235,
198,
198,
4299,
318,
62,
1662,
62,
397,
11265,
62,
3849,
79,
7,
3849,
79,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
2420,
286,
10794,
329,
18801,
15802,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
285,
796,
9564,
35510,
42126,
62,
2200,
13,
12947,
7,
3849,
79,
8,
198,
220,
220,
220,
611,
407,
285,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
198,
4299,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
30307,
329,
18801,
10794,
351,
22338,
6171,
5177,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
9564,
35510,
42126,
62,
2200,
13,
12947,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7946,
14887,
11335,
62,
23060,
45,
40508,
5653,
62,
2200,
13,
12947,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
198,
4299,
18801,
62,
3849,
79,
62,
9288,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
30307,
329,
18801,
2420,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
9564,
35510,
42126,
62,
2200,
13,
12947,
7,
3849,
79,
62,
5239,
8,
220,
220,
220,
198,
198,
4299,
5418,
62,
3849,
79,
62,
4480,
62,
710,
25636,
7,
3849,
79,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
29403,
379,
1123,
6827,
11,
611,
257,
6827,
1139,
612,
318,
257,
22338,
11,
198,
220,
220,
220,
788,
326,
23170,
1460,
477,
262,
4633,
13439,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
62,
1662,
62,
397,
11265,
62,
3849,
79,
7,
3849,
79,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
198,
220,
220,
220,
44267,
62,
3849,
79,
796,
599,
1590,
62,
268,
7,
3849,
79,
8,
198,
220,
220,
220,
2469,
62,
9275,
796,
657,
198,
220,
220,
220,
22338,
62,
9275,
62,
392,
62,
3919,
62,
12480,
796,
657,
628,
220,
220,
220,
329,
1908,
287,
44267,
62,
3849,
79,
13,
82,
658,
25,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
965,
7,
34086,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
16,
796,
29809,
2149,
62,
45,
7156,
6369,
62,
2200,
13,
12947,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
285,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2469,
62,
9275,
28,
16,
198,
220,
220,
220,
220,
220,
220,
220,
285,
17,
796,
4526,
28884,
1961,
62,
45,
7156,
6369,
62,
2200,
13,
12947,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
285,
17,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2469,
62,
9275,
796,
17,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2469,
62,
9275,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
18,
796,
7946,
14887,
11335,
62,
23060,
45,
40508,
5653,
62,
2200,
13,
12947,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
18,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22338,
62,
9275,
62,
392,
62,
3919,
62,
12480,
796,
352,
628,
220,
220,
220,
611,
2469,
62,
9275,
290,
407,
22338,
62,
9275,
62,
392,
62,
3919,
62,
12480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
628,
220,
220,
220,
1288,
361,
22338,
62,
9275,
62,
392,
62,
3919,
62,
12480,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
628,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
4299,
651,
62,
5458,
62,
4480,
62,
3672,
7,
5458,
62,
14933,
11,
2205,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
2748,
7466,
329,
8251,
287,
2665,
62,
14933,
26,
198,
220,
220,
220,
428,
906,
8139,
257,
1728,
4645,
287,
48749,
6425,
2205,
2134,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2420,
796,
10148,
198,
220,
220,
220,
329,
2665,
287,
2665,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
705,
45302,
22179,
26933,
5239,
11,
2205,
13,
23946,
58,
5458,
7131,
6,
5239,
6,
11907,
8,
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,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
705,
45302,
22179,
26933,
5239,
11,
2205,
13,
23946,
17816,
77,
3258,
876,
6,
7131,
5458,
11907,
8,
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,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
705,
45302,
22179,
26933,
5239,
11,
2205,
13,
23946,
17816,
19796,
654,
6,
7131,
5458,
11907,
8,
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,
220,
198,
220,
220,
220,
1441,
705,
45302,
22179,
7,
5239,
13,
35312,
28955,
198,
198,
29113,
29113,
29113,
4242,
2235,
198,
4242,
2,
406,
6242,
3698,
2751,
29397,
4177,
11053,
357,
43,
42388,
8,
198,
29113,
29113,
29113,
4242,
2235,
198,
198,
4299,
300,
69,
62,
11265,
62,
3849,
79,
62,
1662,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
47629,
3073,
329,
257,
1353,
1241,
10794,
2665,
1377,
611,
4844,
11,
645,
22338,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
329,
1994,
3849,
79,
287,
327,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
3849,
79,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10794,
796,
989,
13,
23946,
58,
2539,
3849,
79,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
987,
79,
62,
5239,
796,
10794,
17816,
5239,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
23749,
16437,
62,
35510,
42126,
62,
2200,
13,
12947,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
25273,
42126,
62,
2257,
8322,
56,
62,
11909,
49,
1921,
1546,
13,
12947,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
628,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
198,
4299,
300,
69,
62,
397,
11265,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11140,
278,
329,
18801,
10794,
2665,
351,
22338,
6171,
5177,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
705,
27381,
341,
6,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
10794,
796,
989,
13,
23946,
17816,
27381,
341,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
987,
79,
62,
5239,
796,
10794,
17816,
5239,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
3849,
79,
62,
5239,
8,
198,
220,
220,
220,
1288,
361,
705,
49736,
6,
287,
989,
13,
23946,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
13,
23946,
17816,
49736,
6,
7131,
6,
5239,
6,
12962,
198,
220,
220,
220,
1288,
361,
705,
19796,
654,
6,
287,
989,
13,
23946,
25,
1303,
2121,
736,
284,
804,
287,
262,
6373,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
49736,
6,
287,
989,
13,
23946,
17816,
19796,
654,
6,
5974,
1303,
2121,
736,
284,
804,
329,
257,
10638,
2427,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
13,
23946,
17816,
19796,
654,
6,
7131,
6,
49736,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
11011,
2234,
6,
287,
989,
13,
23946,
17816,
19796,
654,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
13,
23946,
17816,
19796,
654,
6,
7131,
6,
11011,
2234,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
1288,
361,
705,
77,
3258,
876,
6,
287,
989,
13,
23946,
25,
1303,
2121,
736,
284,
804,
287,
262,
6373,
220,
198,
220,
220,
220,
220,
220,
220,
220,
479,
88,
796,
705,
77,
3258,
876,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
49736,
6,
287,
989,
13,
23946,
58,
2584,
5974,
1303,
2121,
736,
284,
804,
329,
257,
10638,
2427,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
13,
23946,
58,
2584,
7131,
6,
49736,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
11011,
2234,
6,
287,
989,
13,
23946,
58,
2584,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
13,
23946,
58,
2584,
7131,
6,
11011,
2234,
6,
12962,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
220,
220,
220,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
198,
4299,
300,
69,
62,
19796,
439,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
611,
10794,
9004,
389,
18801,
11,
198,
220,
220,
220,
788,
804,
329,
2456,
12739,
257,
22338,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
705,
27381,
341,
6,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
10794,
796,
989,
13,
23946,
17816,
27381,
341,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
987,
79,
62,
5239,
796,
10794,
17816,
5239,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
3849,
79,
62,
5239,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2658,
5239,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
34,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
11,
989,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2658,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
18801,
62,
3849,
79,
62,
4480,
62,
325,
528,
495,
7,
46188,
5239,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
198,
4299,
300,
69,
62,
19796,
439,
62,
397,
21283,
62,
3849,
79,
62,
19419,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
611,
10794,
9004,
389,
18801,
11,
198,
220,
220,
220,
788,
804,
329,
2456,
12739,
8005,
22338,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
705,
27381,
341,
6,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
10794,
796,
989,
13,
23946,
17816,
27381,
341,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
987,
79,
62,
5239,
796,
10794,
17816,
5239,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18801,
62,
3849,
79,
62,
9288,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
399,
14058,
14887,
11335,
62,
11909,
49,
11159,
62,
2200,
13,
12947,
7,
3849,
79,
62,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
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,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
220,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2658,
5239,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
34,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
11,
989,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2658,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18801,
62,
3849,
79,
62,
9288,
7,
46188,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
399,
14058,
14887,
11335,
62,
11909,
49,
11159,
62,
2200,
13,
12947,
7,
46188,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
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,
1441,
9564,
2257,
29833,
62,
23428,
220,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
198,
4299,
300,
69,
62,
397,
21283,
62,
3849,
79,
62,
710,
25636,
2777,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
611,
1353,
10794,
2665,
318,
18801,
290,
611,
523,
11,
198,
220,
220,
220,
779,
497,
25636,
284,
1064,
26496,
326,
612,
318,
645,
22338,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
329,
1353,
2539,
287,
327,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1353,
2539,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10794,
796,
989,
13,
23946,
58,
4852,
2539,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
987,
79,
62,
5239,
796,
10794,
17816,
5239,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5418,
62,
3849,
79,
62,
4480,
62,
710,
25636,
7,
3849,
79,
62,
5239,
8,
628,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
220,
198,
198,
4299,
300,
69,
62,
19796,
439,
62,
3849,
79,
62,
710,
25636,
62,
325,
528,
495,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6822,
611,
2793,
9004,
423,
18801,
2420,
290,
611,
523,
11,
198,
220,
220,
220,
779,
497,
25636,
284,
1064,
26496,
286,
645,
22338,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2658,
5239,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
34,
6981,
2389,
6158,
62,
41358,
3705,
62,
43,
36048,
11,
989,
8,
220,
198,
220,
220,
220,
611,
2658,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
5418,
62,
3849,
79,
62,
4480,
62,
710,
25636,
7,
46188,
5239,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
198,
4299,
300,
69,
62,
325,
528,
495,
62,
5458,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
39432,
284,
766,
611,
612,
318,
257,
705,
325,
528,
495,
6,
2665,
287,
262,
989,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
705,
19796,
654,
6,
287,
989,
13,
23946,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
22338,
62,
13083,
796,
685,
2539,
329,
1994,
287,
989,
13,
23946,
17816,
19796,
654,
6,
4083,
13083,
3419,
611,
705,
325,
528,
495,
6,
287,
1994,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
22338,
62,
13083,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
88,
287,
22338,
62,
13083,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22338,
62,
5239,
796,
989,
13,
23946,
17816,
19796,
654,
6,
7131,
2584,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
14202,
6,
287,
22338,
62,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
705,
7085,
6,
287,
22338,
62,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
18896,
7,
325,
528,
495,
62,
5239,
13,
35312,
28955,
1875,
1542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
198,
4299,
300,
69,
62,
11011,
2234,
62,
5458,
62,
31591,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
18067,
10647,
2665,
11,
10627,
329,
2176,
2846,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10647,
62,
10879,
796,
37250,
11011,
2234,
41707,
27381,
341,
41707,
15944,
20520,
198,
220,
220,
220,
10647,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
11011,
2234,
62,
10879,
11,
989,
8,
198,
220,
220,
220,
842,
62,
11265,
796,
37250,
3919,
29790,
457,
6933,
3256,
705,
8937,
594,
286,
29790,
457,
6933,
3256,
705,
1662,
29790,
457,
6933,
3256,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11265,
48749,
3256,
705,
11265,
257,
6500,
38,
41707,
11722,
570,
41707,
13159,
12,
11423,
41707,
23108,
79,
576,
17459,
41707,
312,
14922,
776,
291,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3919,
24715,
41707,
6500,
38,
318,
3487,
41707,
11265,
2050,
20520,
198,
220,
220,
220,
611,
597,
26933,
260,
13,
12947,
7,
2301,
11,
10647,
11,
302,
13,
16284,
1581,
2943,
11159,
8,
329,
842,
287,
842,
62,
11265,
60,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8005,
62,
5188,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
198,
4299,
300,
69,
62,
11011,
2234,
62,
5458,
62,
24561,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
18067,
10647,
2665,
11,
10627,
329,
2176,
2846,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10647,
62,
10879,
796,
37250,
11011,
2234,
41707,
27381,
341,
41707,
15944,
20520,
198,
220,
220,
220,
10647,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
11011,
2234,
62,
10879,
11,
989,
8,
628,
220,
220,
220,
842,
62,
397,
11265,
796,
37250,
13376,
29790,
17459,
385,
41707,
2777,
34432,
41707,
397,
11265,
12948,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1122,
291,
41707,
7266,
47367,
41707,
2777,
522,
12,
19204,
3256,
705,
23505,
306,
18801,
20520,
220,
220,
198,
220,
220,
220,
611,
597,
26933,
260,
13,
12947,
7,
2301,
11,
10647,
11,
302,
13,
16284,
1581,
2943,
11159,
8,
329,
842,
287,
842,
62,
397,
11265,
60,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
198,
4299,
300,
69,
62,
2777,
7938,
62,
259,
62,
11011,
2234,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
39432,
329,
26496,
286,
27198,
287,
262,
10647,
2665,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10647,
62,
10879,
796,
37250,
11011,
2234,
41707,
27381,
341,
41707,
15944,
20520,
198,
220,
220,
220,
10647,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
11011,
2234,
62,
10879,
11,
989,
8,
198,
220,
220,
220,
611,
302,
13,
12947,
10786,
2777,
522,
3256,
11011,
2234,
11,
260,
13,
16284,
1581,
2943,
11159,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198,
220,
220,
220,
220,
198,
4299,
300,
69,
62,
29896,
62,
10879,
62,
259,
62,
11011,
2234,
7,
13116,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
39432,
329,
2456,
12739,
3257,
2995,
287,
262,
10647,
2665,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10647,
62,
10879,
796,
37250,
11011,
2234,
41707,
27381,
341,
41707,
15944,
20520,
198,
220,
220,
220,
10647,
796,
651,
62,
5458,
62,
4480,
62,
3672,
7,
11011,
2234,
62,
10879,
11,
989,
8,
198,
220,
220,
220,
842,
62,
397,
11265,
796,
37250,
1069,
45428,
41707,
69,
46018,
20520,
198,
220,
220,
220,
611,
597,
26933,
260,
13,
12947,
7,
2301,
11,
10647,
11,
302,
13,
16284,
1581,
2943,
11159,
8,
329,
842,
287,
842,
62,
397,
11265,
60,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
7946,
14887,
11335,
62,
23428,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9564,
2257,
29833,
62,
23428,
198
] | 2.186413 | 6,153 |
#Kunal Gautam
#Codewars : @Kunalpod
#Problem name: Find the missing term in an Arithmetic Progression
#Problem level: 5 kyu
| [
2,
42,
18835,
402,
2306,
321,
198,
2,
43806,
413,
945,
1058,
2488,
42,
18835,
33320,
198,
2,
40781,
1438,
25,
9938,
262,
4814,
3381,
287,
281,
943,
29848,
1041,
32383,
198,
2,
40781,
1241,
25,
642,
479,
24767,
198
] | 3.1 | 40 |
import os
import unittest
from dataverk.datapackage import Datapackage
from dataverk.exceptions.dataverk_exceptions import EnvironmentVariableNotSet
from dataverk.utils import storage_paths
valid_metadata = {
'title': 'title',
'readme': "readme",
'license': 'MIT',
'accessRights': 'Open',
'auth': 'unknown',
'description': 'unknown',
'source': 'unknown',
'keywords': ['unknown'],
'provenance': 'unknown',
'publisher': 'unknown',
'bucket': 'opendata',
'store': 'local',
'format': ['datapackage'],
'pii': '',
'purpose': 'open data',
'master': 'secret'
}
| [
11748,
28686,
198,
11748,
555,
715,
395,
198,
6738,
1366,
332,
74,
13,
19608,
499,
441,
496,
1330,
16092,
499,
441,
496,
198,
6738,
1366,
332,
74,
13,
1069,
11755,
13,
7890,
332,
74,
62,
1069,
11755,
1330,
9344,
43015,
3673,
7248,
198,
6738,
1366,
332,
74,
13,
26791,
1330,
6143,
62,
6978,
82,
198,
198,
12102,
62,
38993,
796,
1391,
198,
220,
220,
220,
705,
7839,
10354,
705,
7839,
3256,
198,
220,
220,
220,
705,
961,
1326,
10354,
366,
961,
1326,
1600,
198,
220,
220,
220,
705,
43085,
10354,
705,
36393,
3256,
198,
220,
220,
220,
705,
15526,
49,
2337,
10354,
705,
11505,
3256,
198,
220,
220,
220,
705,
18439,
10354,
705,
34680,
3256,
198,
220,
220,
220,
705,
11213,
10354,
705,
34680,
3256,
198,
220,
220,
220,
705,
10459,
10354,
705,
34680,
3256,
198,
220,
220,
220,
705,
2539,
10879,
10354,
37250,
34680,
6,
4357,
198,
220,
220,
220,
705,
42874,
590,
10354,
705,
34680,
3256,
198,
220,
220,
220,
705,
12984,
8191,
10354,
705,
34680,
3256,
198,
220,
220,
220,
705,
27041,
316,
10354,
705,
404,
437,
1045,
3256,
198,
220,
220,
220,
705,
8095,
10354,
705,
12001,
3256,
198,
220,
220,
220,
705,
18982,
10354,
37250,
19608,
499,
441,
496,
6,
4357,
198,
220,
220,
220,
705,
79,
4178,
10354,
705,
3256,
198,
220,
220,
220,
705,
29983,
10354,
705,
9654,
1366,
3256,
198,
220,
220,
220,
705,
9866,
10354,
705,
21078,
6,
198,
92,
628,
198
] | 2.568465 | 241 |
from django.shortcuts import render,redirect
from .models import *
from django.contrib import messages
from django.contrib.auth import login,logout,authenticate
# Create your views here.
from datetime import date
| [
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
11,
445,
1060,
198,
6738,
764,
27530,
1330,
1635,
198,
6738,
42625,
14208,
13,
3642,
822,
1330,
6218,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
17594,
11,
6404,
448,
11,
41299,
5344,
198,
2,
13610,
534,
5009,
994,
13,
198,
6738,
4818,
8079,
1330,
3128,
628
] | 3.754386 | 57 |
#!/usr/bin/env python3
# encoding: utf-8
"""Classes used for representing Tables, TableRows and TableCells."""
from typing import List
from itertools import chain, accumulate
from inscriptis.html_properties import HorizontalAlignment, VerticalAlignment
from inscriptis.annotation import Annotation, horizontal_shift
from inscriptis.model.canvas import Canvas
class TableCell(Canvas):
"""A table cell.
Attributes:
line_width: the original line widths per line (required to adjust
annotations after a reformatting)
vertical_padding: vertical padding that has been introduced due to
vertical formatting rules.
"""
__slots__ = ('annotations', 'block_annotations', 'blocks', 'current_block',
'margin', 'annotation_counter', 'align', 'valign', '_width',
'line_width', 'vertical_padding')
def normalize_blocks(self) -> int:
"""Split multi-line blocks into multiple one-line blocks.
Returns:
The height of the normalized cell.
"""
self._flush_inline()
self.blocks = list(chain(*(line.split('\n') for line in self.blocks)))
if not self.blocks:
self.blocks = ['']
return len(self.blocks)
@property
def height(self):
"""Compute the table cell's height.
Returns:
The cell's current height.
"""
return max(1, len(self.blocks))
@property
def width(self):
"""Compute the table cell's width.
Returns:
The cell's current width.
"""
if self._width:
return self._width
return max((len(line) for line in chain(*(block.split('\n')
for block in self.blocks))))
@width.setter
def width(self, width):
"""Set the table's width and applies the cell's horizontal formatting.
Args:
The cell's expected width.
"""
# save the original line widths before reformatting
self.line_width = [len(block) for block in self.blocks]
# record new width and start reformatting
self._width = width
format_spec = '{{:{align}{width}}}'.format(align=self.align.value,
width=width)
self.blocks = [format_spec.format(b) for b in self.blocks]
@height.setter
def height(self, height: int):
"""Set the cell's height to the given value.
Notes:
Depending on the height and the cell's vertical formatting this
might require the introduction of empty lines.
"""
rows = len(self.blocks)
if rows < height:
empty_line = ['']
if self.valign == VerticalAlignment.bottom:
self.vertical_padding = (height - rows)
self.blocks = self.vertical_padding * empty_line + self.blocks
elif self.valign == VerticalAlignment.middle:
self.vertical_padding = (height - rows) // 2
self.blocks = self.vertical_padding * empty_line + \
self.blocks + ((height - rows + 1) // 2 * empty_line)
else:
self.blocks = self.blocks + ((height - rows) * empty_line)
def get_annotations(self, idx: int, row_width: int) -> List[Annotation]:
"""Return a list of all annotations within the TableCell.
Returns:
A list of annotations that have been adjusted to the cell's
position.
"""
self.current_block.idx = idx
if not self.annotations:
return []
# the easy case - the cell has only one line :)
if len(self.blocks) == 1:
annotations = horizontal_shift(self.annotations,
self.line_width[0],
self.width, self.align, idx)
self.line_width[0] = self.width
return annotations
# the more challenging one - multiple cell lines
line_break_pos = list(accumulate(self.line_width))
annotation_lines = [[] for _ in self.blocks]
# assign annotations to the corresponding line
for a in self.annotations:
for no, line_break in enumerate(line_break_pos):
if a.start <= (line_break + no): # consider newline
annotation_lines[no + self.vertical_padding].append(a)
break
# compute the annotation index based on its line and delta :)
result = []
idx += self.vertical_padding # newlines introduced by the padding
for line_annotations, line_len in zip(annotation_lines,
self.line_width):
result.extend(horizontal_shift(line_annotations, line_len,
self.width, self.align, idx))
idx += row_width - line_len
self.line_width = [self.width for _ in self.line_width]
return result
class TableRow:
"""A single row within a table."""
__slots__ = ('columns', 'cell_separator')
def get_text(self) -> str:
"""Return a text representation of the TableRow."""
row_lines = [self.cell_separator.join(line)
for line in zip(*[column.blocks
for column in self.columns])]
return '\n'.join(row_lines)
@property
def width(self):
"""Compute and return the width of the current row."""
if not self.columns:
return 0
return sum((cell.width for cell in self.columns)) + len(
self.cell_separator) * (len(self.columns) - 1)
class Table:
"""An HTML table.
Attributes:
rows: the table's rows.
left_margin_len: length of the left margin before the table.
"""
__slots__ = ('rows', 'left_margin_len')
def add_row(self):
"""Add an empty :class:`TableRow` to the table."""
self.rows.append(TableRow())
def add_cell(self, table_cell: TableCell):
"""Add a new :class:`TableCell` to the table's last row.
.. note::
If no row exists yet, a new row is created.
"""
if not self.rows:
self.add_row()
self.rows[-1].columns.append(table_cell)
def _set_row_height(self):
"""Set the cell height for all :class:`TableCell`s in the table."""
for row in self.rows:
max_row_height = max((cell.normalize_blocks()
for cell in row.columns)) \
if row.columns else 0
for cell in row.columns:
cell.height = max_row_height
def _set_column_width(self):
"""Set the column width for all :class:`TableCell`s in the table."""
# determine maximum number of columns
max_columns = max((len(row.columns) for row in self.rows))
for cur_column_idx in range(max_columns):
# determine the required column width for the current column
max_column_width = max((row.columns[cur_column_idx].width
for row in self.rows
if len(row) > cur_column_idx))
# set column width for all TableCells in the current column
for row in self.rows:
if len(row) > cur_column_idx:
row.columns[cur_column_idx].width = max_column_width
def get_text(self):
"""Return and render the text of the given table."""
if not self.rows:
return '\n'
self._set_row_height()
self._set_column_width()
return '\n'.join((row.get_text() for row in self.rows)) + '\n'
def get_annotations(self, idx: int,
left_margin_len: int) -> List[Annotation]:
r"""Return all annotations in the given table.
Args:
idx: the table's start index.
left_margin_len: len of the left margin (required for adapting
the position of annotations).
Returns:
A list of all :class:`~inscriptis.annotation.Annotation`\s present
in the table.
"""
if not self.rows:
return []
annotations = []
idx += left_margin_len
for row in self.rows:
if not row.columns:
continue
row_width = row.width + left_margin_len
cell_idx = idx
for cell in row.columns:
annotations += cell.get_annotations(cell_idx, row_width)
cell_idx += cell.width + len(row.cell_separator)
idx += (row_width + 1) * cell.height # linebreak
return annotations
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
21004,
25,
3384,
69,
12,
23,
198,
37811,
9487,
274,
973,
329,
10200,
33220,
11,
8655,
49,
1666,
290,
8655,
34,
19187,
526,
15931,
198,
198,
6738,
19720,
1330,
7343,
198,
6738,
340,
861,
10141,
1330,
6333,
11,
29915,
198,
198,
6738,
1035,
6519,
271,
13,
6494,
62,
48310,
1330,
6075,
38342,
2348,
16747,
11,
38937,
2348,
16747,
198,
6738,
1035,
6519,
271,
13,
1236,
14221,
1330,
1052,
38983,
11,
16021,
62,
30846,
198,
6738,
1035,
6519,
271,
13,
19849,
13,
5171,
11017,
1330,
1680,
11017,
628,
198,
4871,
8655,
28780,
7,
6090,
11017,
2599,
198,
220,
220,
220,
37227,
32,
3084,
2685,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
10394,
25,
262,
2656,
1627,
9647,
82,
583,
1627,
357,
35827,
284,
4532,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37647,
706,
257,
4975,
265,
889,
8,
198,
220,
220,
220,
220,
220,
220,
220,
11723,
62,
39231,
25,
11723,
24511,
326,
468,
587,
5495,
2233,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11723,
33313,
3173,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
19203,
34574,
602,
3256,
705,
9967,
62,
34574,
602,
3256,
705,
27372,
3256,
705,
14421,
62,
9967,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
36153,
3256,
705,
1236,
14221,
62,
24588,
3256,
705,
31494,
3256,
705,
2100,
570,
3256,
705,
62,
10394,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1370,
62,
10394,
3256,
705,
1851,
605,
62,
39231,
11537,
628,
220,
220,
220,
825,
3487,
1096,
62,
27372,
7,
944,
8,
4613,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
41205,
5021,
12,
1370,
7021,
656,
3294,
530,
12,
1370,
7021,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
6001,
286,
262,
39279,
2685,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25925,
62,
45145,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
1351,
7,
7983,
46491,
7,
1370,
13,
35312,
10786,
59,
77,
11537,
329,
1627,
287,
2116,
13,
27372,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
27372,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
685,
7061,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
18896,
7,
944,
13,
27372,
8,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
6001,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7293,
1133,
262,
3084,
2685,
338,
6001,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2685,
338,
1459,
6001,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3509,
7,
16,
11,
18896,
7,
944,
13,
27372,
4008,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
9647,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7293,
1133,
262,
3084,
2685,
338,
9647,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2685,
338,
1459,
9647,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
10394,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10394,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3509,
19510,
11925,
7,
1370,
8,
329,
1627,
287,
6333,
46491,
7,
9967,
13,
35312,
10786,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
2512,
287,
2116,
13,
27372,
35514,
628,
220,
220,
220,
2488,
10394,
13,
2617,
353,
198,
220,
220,
220,
825,
9647,
7,
944,
11,
9647,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
262,
3084,
338,
9647,
290,
8991,
262,
2685,
338,
16021,
33313,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2685,
338,
2938,
9647,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3613,
262,
2656,
1627,
9647,
82,
878,
4975,
265,
889,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1370,
62,
10394,
796,
685,
11925,
7,
9967,
8,
329,
2512,
287,
2116,
13,
27372,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1700,
649,
9647,
290,
923,
4975,
265,
889,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10394,
796,
9647,
198,
220,
220,
220,
220,
220,
220,
220,
5794,
62,
16684,
796,
705,
27007,
29164,
31494,
18477,
10394,
42535,
4458,
18982,
7,
31494,
28,
944,
13,
31494,
13,
8367,
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,
9647,
28,
10394,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
685,
18982,
62,
16684,
13,
18982,
7,
65,
8,
329,
275,
287,
2116,
13,
27372,
60,
628,
220,
220,
220,
2488,
17015,
13,
2617,
353,
198,
220,
220,
220,
825,
6001,
7,
944,
11,
6001,
25,
493,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
262,
2685,
338,
6001,
284,
262,
1813,
1988,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11822,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23591,
319,
262,
6001,
290,
262,
2685,
338,
11723,
33313,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1244,
2421,
262,
9793,
286,
6565,
3951,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15274,
796,
18896,
7,
944,
13,
27372,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15274,
1279,
6001,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6565,
62,
1370,
796,
685,
7061,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
2100,
570,
6624,
38937,
2348,
16747,
13,
22487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1851,
605,
62,
39231,
796,
357,
17015,
532,
15274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
2116,
13,
1851,
605,
62,
39231,
1635,
6565,
62,
1370,
1343,
2116,
13,
27372,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2116,
13,
2100,
570,
6624,
38937,
2348,
16747,
13,
27171,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1851,
605,
62,
39231,
796,
357,
17015,
532,
15274,
8,
3373,
362,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
2116,
13,
1851,
605,
62,
39231,
1635,
6565,
62,
1370,
1343,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
1343,
14808,
17015,
532,
15274,
1343,
352,
8,
3373,
362,
1635,
6565,
62,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
2116,
13,
27372,
1343,
14808,
17015,
532,
15274,
8,
1635,
6565,
62,
1370,
8,
628,
220,
220,
220,
825,
651,
62,
34574,
602,
7,
944,
11,
4686,
87,
25,
493,
11,
5752,
62,
10394,
25,
493,
8,
4613,
7343,
58,
2025,
38983,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
257,
1351,
286,
477,
37647,
1626,
262,
8655,
28780,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
286,
37647,
326,
423,
587,
12328,
284,
262,
2685,
338,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2292,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14421,
62,
9967,
13,
312,
87,
796,
4686,
87,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
34574,
602,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
17635,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
2562,
1339,
532,
262,
2685,
468,
691,
530,
1627,
14373,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
944,
13,
27372,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37647,
796,
16021,
62,
30846,
7,
944,
13,
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,
2116,
13,
1370,
62,
10394,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
10394,
11,
2116,
13,
31494,
11,
4686,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1370,
62,
10394,
58,
15,
60,
796,
2116,
13,
10394,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
37647,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
517,
9389,
530,
532,
3294,
2685,
3951,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
9032,
62,
1930,
796,
1351,
7,
4134,
388,
5039,
7,
944,
13,
1370,
62,
10394,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
23025,
62,
6615,
796,
16410,
60,
329,
4808,
287,
2116,
13,
27372,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
8333,
37647,
284,
262,
11188,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
329,
257,
287,
2116,
13,
34574,
602,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
645,
11,
1627,
62,
9032,
287,
27056,
378,
7,
1370,
62,
9032,
62,
1930,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
257,
13,
9688,
19841,
357,
1370,
62,
9032,
1343,
645,
2599,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2074,
649,
1370,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23025,
62,
6615,
58,
3919,
1343,
2116,
13,
1851,
605,
62,
39231,
4083,
33295,
7,
64,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
24061,
262,
23025,
6376,
1912,
319,
663,
1627,
290,
25979,
14373,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
15853,
2116,
13,
1851,
605,
62,
39231,
220,
220,
1303,
649,
6615,
5495,
416,
262,
24511,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
62,
34574,
602,
11,
1627,
62,
11925,
287,
19974,
7,
1236,
14221,
62,
6615,
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,
1370,
62,
10394,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
2302,
437,
7,
17899,
38342,
62,
30846,
7,
1370,
62,
34574,
602,
11,
1627,
62,
11925,
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,
2116,
13,
10394,
11,
2116,
13,
31494,
11,
4686,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
15853,
5752,
62,
10394,
532,
1627,
62,
11925,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1370,
62,
10394,
796,
685,
944,
13,
10394,
329,
4808,
287,
2116,
13,
1370,
62,
10394,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
198,
4871,
8655,
25166,
25,
198,
220,
220,
220,
37227,
32,
2060,
5752,
1626,
257,
3084,
526,
15931,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
19203,
28665,
82,
3256,
705,
3846,
62,
25512,
1352,
11537,
628,
220,
220,
220,
825,
651,
62,
5239,
7,
944,
8,
4613,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
257,
2420,
10552,
286,
262,
8655,
25166,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5752,
62,
6615,
796,
685,
944,
13,
3846,
62,
25512,
1352,
13,
22179,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
19974,
46491,
58,
28665,
13,
27372,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
5721,
287,
2116,
13,
28665,
82,
12962,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
59,
77,
4458,
22179,
7,
808,
62,
6615,
8,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
9647,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7293,
1133,
290,
1441,
262,
9647,
286,
262,
1459,
5752,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
28665,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
657,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2160,
19510,
3846,
13,
10394,
329,
2685,
287,
2116,
13,
28665,
82,
4008,
1343,
18896,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3846,
62,
25512,
1352,
8,
1635,
357,
11925,
7,
944,
13,
28665,
82,
8,
532,
352,
8,
628,
198,
4871,
8655,
25,
198,
220,
220,
220,
37227,
2025,
11532,
3084,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15274,
25,
262,
3084,
338,
15274,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1364,
62,
36153,
62,
11925,
25,
4129,
286,
262,
1364,
10330,
878,
262,
3084,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
19203,
8516,
3256,
705,
9464,
62,
36153,
62,
11925,
11537,
628,
220,
220,
220,
825,
751,
62,
808,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4550,
281,
6565,
1058,
4871,
25,
63,
10962,
25166,
63,
284,
262,
3084,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8516,
13,
33295,
7,
10962,
25166,
28955,
628,
220,
220,
220,
825,
751,
62,
3846,
7,
944,
11,
3084,
62,
3846,
25,
8655,
28780,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4550,
220,
257,
649,
1058,
4871,
25,
63,
10962,
28780,
63,
284,
262,
3084,
338,
938,
5752,
13,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
3465,
3712,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
645,
5752,
7160,
1865,
11,
257,
649,
5752,
318,
2727,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
808,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8516,
58,
12,
16,
4083,
28665,
82,
13,
33295,
7,
11487,
62,
3846,
8,
628,
220,
220,
220,
825,
4808,
2617,
62,
808,
62,
17015,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
262,
2685,
6001,
329,
477,
1058,
4871,
25,
63,
10962,
28780,
63,
82,
287,
262,
3084,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
808,
62,
17015,
796,
3509,
19510,
3846,
13,
11265,
1096,
62,
27372,
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,
220,
220,
220,
220,
220,
329,
2685,
287,
5752,
13,
28665,
82,
4008,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5752,
13,
28665,
82,
2073,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2685,
287,
5752,
13,
28665,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2685,
13,
17015,
796,
3509,
62,
808,
62,
17015,
628,
220,
220,
220,
825,
4808,
2617,
62,
28665,
62,
10394,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7248,
262,
5721,
9647,
329,
477,
1058,
4871,
25,
63,
10962,
28780,
63,
82,
287,
262,
3084,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
5415,
1271,
286,
15180,
198,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
28665,
82,
796,
3509,
19510,
11925,
7,
808,
13,
28665,
82,
8,
329,
5752,
287,
2116,
13,
8516,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1090,
62,
28665,
62,
312,
87,
287,
2837,
7,
9806,
62,
28665,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5004,
262,
2672,
5721,
9647,
329,
262,
1459,
5721,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
28665,
62,
10394,
796,
3509,
19510,
808,
13,
28665,
82,
58,
22019,
62,
28665,
62,
312,
87,
4083,
10394,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
5752,
287,
2116,
13,
8516,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
18896,
7,
808,
8,
1875,
1090,
62,
28665,
62,
312,
87,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
900,
5721,
9647,
329,
477,
8655,
34,
19187,
287,
262,
1459,
5721,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
808,
8,
1875,
1090,
62,
28665,
62,
312,
87,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5752,
13,
28665,
82,
58,
22019,
62,
28665,
62,
312,
87,
4083,
10394,
796,
3509,
62,
28665,
62,
10394,
628,
220,
220,
220,
825,
651,
62,
5239,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
290,
8543,
262,
2420,
286,
262,
1813,
3084,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
59,
77,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2617,
62,
808,
62,
17015,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
2617,
62,
28665,
62,
10394,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
59,
77,
4458,
22179,
19510,
808,
13,
1136,
62,
5239,
3419,
329,
5752,
287,
2116,
13,
8516,
4008,
1343,
705,
59,
77,
6,
628,
220,
220,
220,
825,
651,
62,
34574,
602,
7,
944,
11,
4686,
87,
25,
493,
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,
1364,
62,
36153,
62,
11925,
25,
493,
8,
4613,
7343,
58,
2025,
38983,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
13615,
477,
37647,
287,
262,
1813,
3084,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
25,
262,
3084,
338,
923,
6376,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1364,
62,
36153,
62,
11925,
25,
18896,
286,
262,
1364,
10330,
357,
35827,
329,
35135,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
2292,
286,
37647,
737,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
286,
477,
1058,
4871,
25,
63,
93,
1040,
6519,
271,
13,
1236,
14221,
13,
2025,
38983,
63,
59,
82,
1944,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
262,
3084,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
17635,
628,
220,
220,
220,
220,
220,
220,
220,
37647,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
15853,
1364,
62,
36153,
62,
11925,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
2116,
13,
8516,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
5752,
13,
28665,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5752,
62,
10394,
796,
5752,
13,
10394,
1343,
1364,
62,
36153,
62,
11925,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2685,
62,
312,
87,
796,
4686,
87,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2685,
287,
5752,
13,
28665,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37647,
15853,
2685,
13,
1136,
62,
34574,
602,
7,
3846,
62,
312,
87,
11,
5752,
62,
10394,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2685,
62,
312,
87,
15853,
2685,
13,
10394,
1343,
18896,
7,
808,
13,
3846,
62,
25512,
1352,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
15853,
357,
808,
62,
10394,
1343,
352,
8,
1635,
2685,
13,
17015,
220,
220,
1303,
1627,
9032,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
37647,
198
] | 2.170582 | 4,086 |
from config import Config
from flask import Flask
| [
6738,
4566,
1330,
17056,
198,
6738,
42903,
1330,
46947,
628,
198
] | 4.727273 | 11 |
data_x, data_x_unseen = prepare_data_x(normalized_data_close_price, window_size=config["data"]["window_size"])
data_y = prepare_data_y(normalized_data_close_price, window_size=config["data"]["window_size"])
# split dataset
split_index = int(data_y.shape[0]*config["data"]["train_split_size"])
data_x_train = data_x[:split_index]
data_x_val = data_x[split_index:]
data_y_train = data_y[:split_index]
data_y_val = data_y[split_index:]
# prepare data for plotting
to_plot_data_y_train = np.zeros(num_data_points)
to_plot_data_y_val = np.zeros(num_data_points)
to_plot_data_y_train[config["data"]["window_size"]:split_index+config["data"]["window_size"]] = scaler.inverse_transform(data_y_train)
to_plot_data_y_val[split_index+config["data"]["window_size"]:] = scaler.inverse_transform(data_y_val)
to_plot_data_y_train = np.where(to_plot_data_y_train == 0, None, to_plot_data_y_train)
to_plot_data_y_val = np.where(to_plot_data_y_val == 0, None, to_plot_data_y_val)
## plots
fig = figure(figsize=(25, 5), dpi=80)
fig.patch.set_facecolor((1.0, 1.0, 1.0))
plt.plot(data_date, to_plot_data_y_train, label="Prices (train)", color=config["plots"]["color_train"])
plt.plot(data_date, to_plot_data_y_val, label="Prices (validation)", color=config["plots"]["color_val"])
xticks = [data_date[i] if ((i%config["plots"]["xticks_interval"]==0 and (num_data_points-i) > config["plots"]["xticks_interval"]) or i==num_data_points-1) else None for i in range(num_data_points)] # make x ticks nice
x = np.arange(0,len(xticks))
plt.xticks(x, xticks, rotation='vertical')
plt.title("Daily close prices for " + config["alpha_vantage"]["symbol"] + " - showing training and validation data")
plt.grid(b=None, which='major', axis='y', linestyle='--')
plt.legend()
plt.show()
| [
198,
198,
7890,
62,
87,
11,
1366,
62,
87,
62,
403,
15898,
796,
8335,
62,
7890,
62,
87,
7,
11265,
1143,
62,
7890,
62,
19836,
62,
20888,
11,
4324,
62,
7857,
28,
11250,
14692,
7890,
1,
7131,
1,
17497,
62,
7857,
8973,
8,
198,
7890,
62,
88,
796,
8335,
62,
7890,
62,
88,
7,
11265,
1143,
62,
7890,
62,
19836,
62,
20888,
11,
4324,
62,
7857,
28,
11250,
14692,
7890,
1,
7131,
1,
17497,
62,
7857,
8973,
8,
198,
198,
2,
6626,
27039,
198,
198,
35312,
62,
9630,
796,
493,
7,
7890,
62,
88,
13,
43358,
58,
15,
60,
9,
11250,
14692,
7890,
1,
7131,
1,
27432,
62,
35312,
62,
7857,
8973,
8,
198,
7890,
62,
87,
62,
27432,
796,
1366,
62,
87,
58,
25,
35312,
62,
9630,
60,
198,
7890,
62,
87,
62,
2100,
796,
1366,
62,
87,
58,
35312,
62,
9630,
47715,
198,
7890,
62,
88,
62,
27432,
796,
1366,
62,
88,
58,
25,
35312,
62,
9630,
60,
198,
7890,
62,
88,
62,
2100,
796,
1366,
62,
88,
58,
35312,
62,
9630,
47715,
198,
198,
2,
8335,
1366,
329,
29353,
198,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
27432,
796,
45941,
13,
9107,
418,
7,
22510,
62,
7890,
62,
13033,
8,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
2100,
796,
45941,
13,
9107,
418,
7,
22510,
62,
7890,
62,
13033,
8,
198,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
27432,
58,
11250,
14692,
7890,
1,
7131,
1,
17497,
62,
7857,
1,
5974,
35312,
62,
9630,
10,
11250,
14692,
7890,
1,
7131,
1,
17497,
62,
7857,
8973,
60,
796,
16578,
263,
13,
259,
4399,
62,
35636,
7,
7890,
62,
88,
62,
27432,
8,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
2100,
58,
35312,
62,
9630,
10,
11250,
14692,
7890,
1,
7131,
1,
17497,
62,
7857,
1,
5974,
60,
796,
16578,
263,
13,
259,
4399,
62,
35636,
7,
7890,
62,
88,
62,
2100,
8,
198,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
27432,
796,
45941,
13,
3003,
7,
1462,
62,
29487,
62,
7890,
62,
88,
62,
27432,
6624,
657,
11,
6045,
11,
284,
62,
29487,
62,
7890,
62,
88,
62,
27432,
8,
198,
1462,
62,
29487,
62,
7890,
62,
88,
62,
2100,
796,
45941,
13,
3003,
7,
1462,
62,
29487,
62,
7890,
62,
88,
62,
2100,
6624,
657,
11,
6045,
11,
284,
62,
29487,
62,
7890,
62,
88,
62,
2100,
8,
198,
198,
2235,
21528,
198,
198,
5647,
796,
3785,
7,
5647,
7857,
16193,
1495,
11,
642,
828,
288,
14415,
28,
1795,
8,
198,
5647,
13,
17147,
13,
2617,
62,
2550,
8043,
19510,
16,
13,
15,
11,
352,
13,
15,
11,
352,
13,
15,
4008,
198,
489,
83,
13,
29487,
7,
7890,
62,
4475,
11,
284,
62,
29487,
62,
7890,
62,
88,
62,
27432,
11,
6167,
2625,
6836,
1063,
357,
27432,
42501,
3124,
28,
11250,
14692,
489,
1747,
1,
7131,
1,
8043,
62,
27432,
8973,
8,
198,
489,
83,
13,
29487,
7,
7890,
62,
4475,
11,
284,
62,
29487,
62,
7890,
62,
88,
62,
2100,
11,
6167,
2625,
6836,
1063,
357,
12102,
341,
42501,
3124,
28,
11250,
14692,
489,
1747,
1,
7131,
1,
8043,
62,
2100,
8973,
8,
198,
742,
3378,
796,
685,
7890,
62,
4475,
58,
72,
60,
611,
14808,
72,
4,
11250,
14692,
489,
1747,
1,
7131,
1,
742,
3378,
62,
3849,
2100,
8973,
855,
15,
290,
357,
22510,
62,
7890,
62,
13033,
12,
72,
8,
1875,
4566,
14692,
489,
1747,
1,
7131,
1,
742,
3378,
62,
3849,
2100,
8973,
8,
393,
1312,
855,
22510,
62,
7890,
62,
13033,
12,
16,
8,
2073,
6045,
329,
1312,
287,
2837,
7,
22510,
62,
7890,
62,
13033,
15437,
1303,
787,
2124,
36066,
3621,
198,
87,
796,
45941,
13,
283,
858,
7,
15,
11,
11925,
7,
742,
3378,
4008,
198,
489,
83,
13,
742,
3378,
7,
87,
11,
220,
742,
3378,
11,
13179,
11639,
1851,
605,
11537,
198,
489,
83,
13,
7839,
7203,
28545,
1969,
4536,
329,
366,
1343,
4566,
14692,
26591,
62,
38815,
1,
7131,
1,
1837,
23650,
8973,
1343,
366,
532,
4478,
3047,
290,
21201,
1366,
4943,
198,
489,
83,
13,
25928,
7,
65,
28,
14202,
11,
543,
11639,
22478,
3256,
16488,
11639,
88,
3256,
9493,
10992,
11639,
438,
11537,
198,
489,
83,
13,
1455,
437,
3419,
198,
489,
83,
13,
12860,
3419,
198
] | 2.462185 | 714 |
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Third Party Apps
'widget_tweaks',
'django_cleanup',
'django_cool_paginator',
'django.contrib.sites',
'allauth',
'allauth.account',
# 'corsheaders',
# 'rest_framework',
# Local Apps
'accounts',
'system_data',
'suspicious',
'utils',
'contribution',
]
SITE_ID = 1
AUTHENTICATION_BACKENDS = (
# Needed to login by username in Django admin, regardless of `allauth`
# 'django.contrib.auth.backends.ModelBackend',
# `allauth` specific authentication methods, such as login by e-mail
'allauth.account.auth_backends.AuthenticationBackend',
)
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
# CorsHeader Middleware before CommonMiddleware
# 'corsheaders.middleware.CorsMiddleware',
# CorsHeader Middleware
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'magfetch.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
# 'loaders': [
# ('django.template.loaders.cached.Loader', [
# 'django.template.loaders.filesystem.Loader',
# 'django.template.loaders.app_directories.Loader',
# ]),
# ],
},
},
]
WSGI_APPLICATION = 'magfetch.wsgi.application'
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Dhaka'
USE_I18N = True
USE_L10N = True
USE_TZ = False
# LANGUAGE_CODE = 'en-us'
# TIME_ZONE = 'UTC'
# USE_I18N = True
# USE_L10N = True
# USE_TZ = True
# Allauth
LOGIN_URL = '/account/login/'
LOGOUT_URL = '/'
LOGIN_REDIRECT_URL = '/'
SITE_NAME = 'magFetch'
ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = 7
ACCOUNT_LOGIN_ATTEMPTS_LIMIT = 5
ACCOUNT_LOGIN_ATTEMPTS_TIMEOUT = 300
ACCOUNT_USERNAME_MIN_LENGTH = 1
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_USERNAME_REQUIRED = True
ACCOUNT_SIGNUP_PASSWORD_VERIFICATION = True
ACCOUNT_UNIQUE_EMAIL = True
ACCOUNT_LOGOUT_ON_PASSWORD_CHANGE = True
ACCOUNT_SIGNUP_PASSWORD_ENTER_TWICE = True
ACCOUNT_EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL = '/'
ACCOUNT_AUTHENTICATION_METHOD = 'email'
ACCOUNT_EMAIL_VERIFICATION = 'optional'
ACCOUNT_EMAIL_SUBJECT_PREFIX = 'magFetch'
ACCOUNT_USERNAME_BLACKLIST =['robot', 'hacker', 'virus', 'spam']
ACCOUNT_ADAPTER = 'magfetch.adapter.UsernameMaxAdapter'
# Cool Paginator
COOL_PAGINATOR_NEXT_NAME = "next"
COOL_PAGINATOR_PREVIOUS_NAME = "previous"
COOL_PAGINATOR_SIZE = "SMALL"
COOL_PAGINATOR_ELASTIC = "300px"
# File Validation Staffs
ALLOWED_FILE_TYPES = ['.doc', '.docx', '.jpg', '.jpeg', '.png',
'.svg', '.DOC', '.DOCX', '.JPG', '.JPEG', '.PNG', '.SVG']
FILE_TYPES = ['.doc', '.docx', '.jpg', '.jpeg', '.png', '.svg']
IMAGE_TYPES = ['.jpg', '.jpeg', '.png', '.svg']
DOCUMENT_TYPES = ['.doc', '.docx']
# 1.5MB - 1621440
# 2.5MB - 2621440
# 5MB - 5242880
# 10MB - 10485760
# 20MB - 20971520
# 50MB - 5242880
# 100MB 104857600
# 250MB - 214958080
# 500MB - 429916160
MAX_UPLOAD_SIZE = 2621440
# # Static Files
# STATIC_URL = '/static/'
# MEDIA_URL = '/media/'
# STATICFILES_DIRS = [
# os.path.join(BASE_DIR, 'static_proj'),
# ]
# STATIC_ROOT = os.path.join('static_cdn', 'static_root')
# MEDIA_ROOT = os.path.join('static_cdn', 'media_root')
# STATICFILES_FINDERS = [
# 'django.contrib.staticfiles.finders.FileSystemFinder',
# 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# ]
# Neededf for CorsHeader (accept connections from everywhere)
# CORS_ORIGIN_ALLOW_ALL = True
# CORS_ALLOW_HEADERS = (
# 'x-requested-with',
# 'content-type',
# 'accept',
# 'origin',
# 'authorization',
# 'x-csrftoken',
# 'token',
# 'x-device-id',
# 'x-device-type',
# 'x-push-id',
# 'dataserviceversion',
# 'maxdataserviceversion'
# )
# CORS_ALLOW_METHODS = (
# 'GET',
# 'POST',
# 'PUT',
# 'PATCH',
# 'DELETE',
# 'OPTIONS'
# )
| [
198,
11748,
28686,
198,
198,
33,
11159,
62,
34720,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
22305,
198,
198,
38604,
7036,
1961,
62,
2969,
3705,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
28482,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
11299,
19199,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
3256,
198,
220,
220,
220,
1303,
10467,
3615,
27710,
198,
220,
220,
220,
705,
42655,
62,
83,
732,
4730,
3256,
198,
220,
220,
220,
705,
28241,
14208,
62,
27773,
929,
3256,
198,
220,
220,
220,
705,
28241,
14208,
62,
24494,
62,
79,
363,
20900,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
49315,
3256,
198,
220,
220,
220,
705,
439,
18439,
3256,
198,
220,
220,
220,
705,
439,
18439,
13,
23317,
3256,
198,
220,
220,
220,
1303,
705,
66,
669,
50145,
3256,
198,
220,
220,
220,
1303,
705,
2118,
62,
30604,
3256,
198,
220,
220,
220,
1303,
10714,
27710,
198,
220,
220,
220,
705,
23317,
82,
3256,
198,
220,
220,
220,
705,
10057,
62,
7890,
3256,
198,
220,
220,
220,
705,
40409,
6243,
3256,
198,
220,
220,
220,
705,
26791,
3256,
198,
220,
220,
220,
705,
3642,
3890,
3256,
198,
60,
198,
198,
50,
12709,
62,
2389,
796,
352,
198,
198,
32,
24318,
3525,
2149,
6234,
62,
31098,
1677,
5258,
796,
357,
198,
220,
220,
220,
1303,
10664,
276,
284,
17594,
416,
20579,
287,
37770,
13169,
11,
7692,
286,
4600,
439,
18439,
63,
198,
220,
220,
220,
1303,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
1891,
2412,
13,
17633,
7282,
437,
3256,
628,
220,
220,
220,
1303,
4600,
439,
18439,
63,
2176,
18239,
5050,
11,
884,
355,
17594,
416,
304,
12,
4529,
198,
220,
220,
220,
705,
439,
18439,
13,
23317,
13,
18439,
62,
1891,
2412,
13,
47649,
3299,
7282,
437,
3256,
198,
8,
198,
198,
44,
2389,
35,
2538,
33746,
796,
685,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12961,
13,
24074,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
82,
6202,
13,
27171,
1574,
13,
36044,
34621,
1574,
3256,
198,
220,
220,
220,
1303,
26978,
39681,
6046,
1574,
878,
8070,
34621,
1574,
198,
220,
220,
220,
1303,
705,
66,
669,
50145,
13,
27171,
1574,
13,
34,
669,
34621,
1574,
3256,
198,
220,
220,
220,
1303,
26978,
39681,
6046,
1574,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
11321,
13,
17227,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
6359,
41871,
13,
34,
27891,
69,
7680,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
27171,
1574,
13,
47649,
3299,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
27171,
1574,
13,
12837,
34621,
1574,
3256,
198,
220,
220,
220,
705,
28241,
14208,
13,
27171,
1574,
13,
12976,
73,
5430,
13,
55,
19778,
29046,
34621,
1574,
3256,
198,
60,
198,
198,
13252,
2394,
62,
4261,
5639,
1340,
37,
796,
705,
19726,
69,
7569,
13,
6371,
82,
6,
198,
198,
51,
3620,
6489,
29462,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31098,
10619,
10354,
705,
28241,
14208,
13,
28243,
13,
1891,
2412,
13,
28241,
14208,
13,
35,
73,
14208,
12966,
17041,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34720,
50,
10354,
685,
418,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
11498,
17041,
11537,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24805,
62,
34720,
50,
10354,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3185,
51,
11053,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
62,
14681,
669,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
24442,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
22866,
62,
14681,
669,
13,
25927,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
22866,
62,
14681,
669,
13,
18439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
37348,
1095,
13,
22866,
62,
14681,
669,
13,
37348,
1095,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
705,
2220,
364,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
19203,
28241,
14208,
13,
28243,
13,
2220,
364,
13,
66,
2317,
13,
17401,
3256,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
2220,
364,
13,
16624,
6781,
13,
17401,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28241,
14208,
13,
28243,
13,
2220,
364,
13,
1324,
62,
12942,
1749,
13,
17401,
3256,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
2361,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
19416,
18878,
62,
2969,
31484,
6234,
796,
705,
19726,
69,
7569,
13,
18504,
12397,
13,
31438,
6,
628,
198,
32,
24318,
62,
47924,
54,
12532,
62,
23428,
2389,
1404,
20673,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
12982,
33682,
18925,
414,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
44046,
24539,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
17227,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20608,
10354,
705,
28241,
14208,
13,
3642,
822,
13,
18439,
13,
28712,
62,
12102,
341,
13,
45,
39223,
35215,
47139,
1352,
3256,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
2,
4037,
1634,
198,
43,
15567,
52,
11879,
62,
34,
16820,
220,
220,
796,
705,
268,
12,
385,
6,
198,
34694,
62,
57,
11651,
220,
220,
220,
220,
220,
220,
796,
705,
38555,
14,
35,
71,
8130,
6,
198,
19108,
62,
40,
1507,
45,
220,
220,
220,
220,
220,
220,
220,
796,
6407,
198,
19108,
62,
43,
940,
45,
220,
220,
220,
220,
220,
220,
220,
796,
6407,
198,
19108,
62,
51,
57,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
10352,
198,
198,
2,
406,
15567,
52,
11879,
62,
34,
16820,
796,
705,
268,
12,
385,
6,
198,
2,
20460,
62,
57,
11651,
796,
705,
17429,
6,
198,
2,
23210,
62,
40,
1507,
45,
796,
6407,
198,
2,
23210,
62,
43,
940,
45,
796,
6407,
198,
2,
23210,
62,
51,
57,
796,
6407,
198,
198,
2,
1439,
18439,
198,
25294,
1268,
62,
21886,
796,
31051,
23317,
14,
38235,
14,
6,
198,
25294,
12425,
62,
21886,
796,
31051,
6,
198,
25294,
1268,
62,
22083,
40,
23988,
62,
21886,
796,
31051,
6,
198,
50,
12709,
62,
20608,
796,
705,
19726,
37,
7569,
6,
198,
26861,
28270,
62,
27630,
4146,
62,
10943,
39776,
44,
6234,
62,
6369,
11901,
2200,
62,
26442,
50,
796,
767,
198,
26861,
28270,
62,
25294,
1268,
62,
17139,
39494,
4694,
62,
43,
3955,
2043,
796,
642,
198,
26861,
28270,
62,
25294,
1268,
62,
17139,
39494,
4694,
62,
34694,
12425,
796,
5867,
198,
26861,
28270,
62,
29904,
20608,
62,
23678,
62,
43,
49494,
796,
352,
198,
26861,
28270,
62,
27630,
4146,
62,
2200,
10917,
37819,
796,
6407,
198,
26861,
28270,
62,
29904,
20608,
62,
2200,
10917,
37819,
796,
6407,
198,
26861,
28270,
62,
46224,
8577,
62,
47924,
54,
12532,
62,
5959,
30643,
6234,
796,
6407,
198,
26861,
28270,
62,
4944,
33866,
8924,
62,
27630,
4146,
796,
6407,
198,
26861,
28270,
62,
25294,
12425,
62,
1340,
62,
47924,
54,
12532,
62,
3398,
27746,
796,
6407,
198,
26861,
28270,
62,
46224,
8577,
62,
47924,
54,
12532,
62,
3525,
1137,
62,
34551,
8476,
796,
6407,
198,
26861,
28270,
62,
27630,
4146,
62,
10943,
39776,
44,
6234,
62,
32,
24318,
3525,
2149,
11617,
62,
22083,
40,
23988,
62,
21886,
796,
31051,
6,
198,
26861,
28270,
62,
32,
24318,
3525,
2149,
6234,
62,
49273,
796,
705,
12888,
6,
198,
26861,
28270,
62,
27630,
4146,
62,
5959,
30643,
6234,
796,
705,
25968,
6,
198,
26861,
28270,
62,
27630,
4146,
62,
50,
10526,
23680,
62,
47,
31688,
10426,
796,
705,
19726,
37,
7569,
6,
198,
26861,
28270,
62,
29904,
20608,
62,
9148,
8120,
45849,
796,
17816,
305,
13645,
3256,
705,
71,
10735,
3256,
705,
85,
19397,
3256,
705,
2777,
321,
20520,
198,
26861,
28270,
62,
2885,
29485,
796,
705,
19726,
69,
7569,
13,
324,
3429,
13,
5842,
13292,
11518,
47307,
6,
628,
198,
2,
15226,
31525,
20900,
198,
8220,
3535,
62,
4537,
38,
1268,
25633,
62,
45,
13918,
62,
20608,
220,
220,
220,
220,
220,
220,
220,
796,
366,
19545,
1,
198,
8220,
3535,
62,
4537,
38,
1268,
25633,
62,
46437,
12861,
20958,
62,
20608,
220,
220,
220,
796,
366,
3866,
1442,
1,
198,
8220,
3535,
62,
4537,
38,
1268,
25633,
62,
33489,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
366,
12310,
7036,
1,
198,
8220,
3535,
62,
4537,
38,
1268,
25633,
62,
3698,
11262,
2149,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
366,
6200,
8416,
1,
198,
198,
2,
9220,
3254,
24765,
9983,
82,
198,
7036,
3913,
1961,
62,
25664,
62,
9936,
47,
1546,
796,
685,
4458,
15390,
3256,
45302,
15390,
87,
3256,
45302,
9479,
3256,
45302,
73,
22071,
3256,
45302,
11134,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45302,
21370,
70,
3256,
45302,
38715,
3256,
45302,
38715,
55,
3256,
45302,
41,
6968,
3256,
45302,
12889,
7156,
3256,
45302,
47,
10503,
3256,
45302,
50,
43490,
20520,
198,
25664,
62,
9936,
47,
1546,
796,
685,
4458,
15390,
3256,
45302,
15390,
87,
3256,
45302,
9479,
3256,
45302,
73,
22071,
3256,
45302,
11134,
3256,
45302,
21370,
70,
20520,
198,
198,
3955,
11879,
62,
9936,
47,
1546,
796,
685,
4458,
9479,
3256,
45302,
73,
22071,
3256,
45302,
11134,
3256,
45302,
21370,
70,
20520,
198,
38715,
5883,
3525,
62,
9936,
47,
1546,
796,
685,
4458,
15390,
3256,
45302,
15390,
87,
20520,
198,
198,
2,
352,
13,
20,
10744,
532,
1467,
22291,
1821,
198,
2,
362,
13,
20,
10744,
532,
2608,
22291,
1821,
198,
2,
642,
10744,
532,
642,
1731,
2078,
1795,
198,
2,
838,
10744,
532,
838,
2780,
3553,
1899,
198,
2,
1160,
10744,
532,
1160,
5607,
1314,
1238,
198,
2,
2026,
10744,
532,
642,
1731,
2078,
1795,
198,
2,
1802,
10744,
838,
2780,
3553,
8054,
198,
2,
8646,
10744,
532,
28277,
3865,
1795,
1795,
198,
2,
5323,
10744,
532,
604,
22579,
1433,
14198,
198,
22921,
62,
52,
6489,
41048,
62,
33489,
796,
2608,
22291,
1821,
628,
198,
2,
1303,
36125,
13283,
198,
2,
15486,
2149,
62,
21886,
796,
31051,
12708,
14,
6,
198,
2,
26112,
3539,
62,
21886,
796,
31051,
11431,
14,
6,
198,
198,
2,
15486,
2149,
46700,
1546,
62,
34720,
50,
796,
685,
198,
2,
220,
220,
220,
220,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
12708,
62,
1676,
73,
33809,
198,
2,
2361,
198,
2,
15486,
2149,
62,
13252,
2394,
796,
28686,
13,
6978,
13,
22179,
10786,
12708,
62,
32341,
3256,
705,
12708,
62,
15763,
11537,
198,
2,
26112,
3539,
62,
13252,
2394,
796,
28686,
13,
6978,
13,
22179,
10786,
12708,
62,
32341,
3256,
705,
11431,
62,
15763,
11537,
198,
198,
2,
15486,
2149,
46700,
1546,
62,
37,
12115,
4877,
796,
685,
198,
2,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
13,
19796,
364,
13,
8979,
11964,
37,
5540,
3256,
198,
2,
220,
220,
220,
220,
705,
28241,
14208,
13,
3642,
822,
13,
12708,
16624,
13,
19796,
364,
13,
4677,
13470,
1749,
37,
5540,
3256,
198,
2,
2361,
628,
198,
2,
10664,
276,
69,
329,
26978,
39681,
357,
13635,
8787,
422,
8347,
8,
198,
2,
327,
20673,
62,
1581,
3528,
1268,
62,
7036,
3913,
62,
7036,
796,
6407,
198,
198,
2,
327,
20673,
62,
7036,
3913,
62,
37682,
4877,
796,
357,
198,
2,
220,
220,
220,
220,
705,
87,
12,
25927,
276,
12,
4480,
3256,
198,
2,
220,
220,
220,
220,
705,
11299,
12,
4906,
3256,
198,
2,
220,
220,
220,
220,
705,
13635,
3256,
198,
2,
220,
220,
220,
220,
705,
47103,
3256,
198,
2,
220,
220,
220,
220,
705,
9800,
1634,
3256,
198,
2,
220,
220,
220,
220,
705,
87,
12,
6359,
81,
701,
4233,
3256,
198,
2,
220,
220,
220,
220,
705,
30001,
3256,
198,
2,
220,
220,
220,
220,
705,
87,
12,
25202,
12,
312,
3256,
198,
2,
220,
220,
220,
220,
705,
87,
12,
25202,
12,
4906,
3256,
198,
2,
220,
220,
220,
220,
705,
87,
12,
14689,
12,
312,
3256,
198,
2,
220,
220,
220,
220,
705,
19608,
292,
712,
501,
9641,
3256,
198,
2,
220,
220,
220,
220,
705,
9806,
19608,
292,
712,
501,
9641,
6,
198,
2,
1267,
198,
2,
327,
20673,
62,
7036,
3913,
62,
49273,
50,
796,
357,
198,
2,
220,
220,
220,
220,
705,
18851,
3256,
198,
2,
220,
220,
220,
220,
705,
32782,
3256,
198,
2,
220,
220,
220,
220,
705,
30076,
3256,
198,
2,
220,
220,
220,
220,
705,
47,
11417,
3256,
198,
2,
220,
220,
220,
220,
705,
7206,
2538,
9328,
3256,
198,
2,
220,
220,
220,
220,
705,
3185,
51,
11053,
6,
198,
2,
1267,
198
] | 2.17905 | 2,463 |
# TESS - ToastmastErs Simple Scheduler
# This simple script will create a shuffled list of suggested meeting roles for multiple meetings.
from random import shuffle
from os import linesep
import csv
import sys
if __name__ == "__main__":
main(sys.argv[1:]) | [
2,
309,
7597,
532,
46831,
47616,
36,
3808,
17427,
27774,
18173,
198,
2,
770,
2829,
4226,
481,
2251,
257,
32299,
992,
1351,
286,
5220,
3249,
9176,
329,
3294,
8292,
13,
220,
198,
198,
6738,
4738,
1330,
36273,
198,
6738,
28686,
1330,
3951,
538,
198,
11748,
269,
21370,
198,
11748,
25064,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
1388,
7,
17597,
13,
853,
85,
58,
16,
25,
12962
] | 3.48 | 75 |
# Copyright 2008-2018 Univa Corporation
#
# 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 subprocess
from tortuga.exceptions.commandFailed import CommandFailed
# Convenience function for executing command.
def executeCommand(command):
""" Create subprocess and run it, return subprocess object. """
p = TortugaSubprocess(command)
p.run()
return p
# Convenience function for executing command that may fail, and we do not
# care about the failure.
def executeCommandAndIgnoreFailure(command):
"""
Create subprocess, run it, ignore any failures, and return
subprocess object.
"""
p = TortugaSubprocess(command)
try:
p.run()
except CommandFailed:
pass
return p
| [
2,
15069,
3648,
12,
7908,
791,
12151,
10501,
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,
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,
850,
14681,
198,
198,
6738,
7619,
30302,
13,
1069,
11755,
13,
21812,
37,
6255,
1330,
9455,
37,
6255,
628,
198,
198,
2,
1482,
574,
1240,
2163,
329,
23710,
3141,
13,
198,
4299,
12260,
21575,
7,
21812,
2599,
198,
220,
220,
220,
37227,
13610,
850,
14681,
290,
1057,
340,
11,
1441,
850,
14681,
2134,
13,
37227,
628,
220,
220,
220,
279,
796,
28467,
30302,
7004,
14681,
7,
21812,
8,
628,
220,
220,
220,
279,
13,
5143,
3419,
628,
220,
220,
220,
1441,
279,
628,
198,
2,
1482,
574,
1240,
2163,
329,
23710,
3141,
326,
743,
2038,
11,
290,
356,
466,
407,
198,
2,
1337,
546,
262,
5287,
13,
198,
4299,
12260,
21575,
1870,
32916,
382,
50015,
7,
21812,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13610,
850,
14681,
11,
1057,
340,
11,
8856,
597,
15536,
11,
290,
1441,
198,
220,
220,
220,
850,
14681,
2134,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
279,
796,
28467,
30302,
7004,
14681,
7,
21812,
8,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
279,
13,
5143,
3419,
198,
220,
220,
220,
2845,
9455,
37,
6255,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
1441,
279,
198
] | 3.426593 | 361 |
import sshclient
from launch_db import get_constellation_data
from launch_db import log_msg
| [
11748,
26678,
16366,
198,
6738,
4219,
62,
9945,
1330,
651,
62,
9979,
28828,
62,
7890,
198,
6738,
4219,
62,
9945,
1330,
2604,
62,
19662,
628,
198
] | 3.615385 | 26 |
from .general import check_for_block_tag, check_for_comment, split_info_lines, read_face_column, dimension_reference
from typing import List, Union, Any
FORMAT: List[int] = [2, 1, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10]
# 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12, 13,14, 15
| [
6738,
764,
24622,
1330,
2198,
62,
1640,
62,
9967,
62,
12985,
11,
2198,
62,
1640,
62,
23893,
11,
6626,
62,
10951,
62,
6615,
11,
1100,
62,
2550,
62,
28665,
11,
15793,
62,
35790,
198,
6738,
19720,
1330,
7343,
11,
4479,
11,
4377,
198,
198,
21389,
1404,
25,
7343,
58,
600,
60,
796,
685,
17,
11,
352,
11,
352,
11,
838,
11,
352,
11,
838,
11,
352,
11,
838,
11,
352,
11,
838,
11,
352,
11,
838,
11,
352,
11,
838,
11,
352,
11,
838,
60,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
657,
11,
352,
11,
362,
11,
220,
513,
11,
604,
11,
220,
642,
11,
718,
11,
220,
767,
11,
807,
11,
220,
860,
11,
940,
11,
1367,
11,
1065,
11,
1511,
11,
1415,
11,
1315,
628,
198
] | 2.146853 | 143 |
# -*- coding: utf-8 -*-
#############################################################################
#
# Copyright © Dragon Dollar Limited
# contact: [email protected]
#
# This software is a collection of webservices designed to provide a secure
# and scalable framework to build e-commerce websites.
#
# This software is governed by the CeCILL-B license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/ or redistribute the software under the terms of the CeCILL-B
# license as circulated by CEA, CNRS and INRIA at the following URL
# " http://www.cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided only
# with a limited warranty and the software's author, the holder of the
# economic rights, and the successive licensors have only limited
# liability.
#
# In this respect, the user's attention is drawn to the risks associated
# with loading, using, modifying and/or developing or reproducing the
# software by the user in light of its specific status of free software,
# that may mean that it is complicated to manipulate, and that also
# therefore means that it is reserved for developers and experienced
# professionals having in-depth computer knowledge. Users are therefore
# encouraged to load and test the software's suitability as regards their
# requirements in conditions enabling the security of their systems and/or
# data to be ensured and, more generally, to use and operate it in the
# same conditions as regards security.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL-B license and that you accept its terms.
#
#############################################################################
import copy
from B2SUtils import db_utils
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
29113,
29113,
7804,
4242,
2,
198,
2,
198,
2,
15069,
10673,
2851,
29747,
15302,
198,
2,
2800,
25,
2800,
31,
7109,
363,
623,
13228,
13,
785,
198,
2,
198,
2,
770,
3788,
318,
257,
4947,
286,
2639,
712,
1063,
3562,
284,
2148,
257,
5713,
198,
2,
290,
43865,
9355,
284,
1382,
304,
12,
27061,
9293,
13,
198,
2,
198,
2,
770,
3788,
318,
21825,
416,
262,
20101,
34,
8267,
12,
33,
5964,
739,
4141,
1099,
290,
198,
2,
48637,
416,
262,
3173,
286,
6082,
286,
1479,
3788,
13,
921,
460,
779,
11,
198,
2,
13096,
290,
14,
393,
17678,
4163,
262,
3788,
739,
262,
2846,
286,
262,
20101,
34,
8267,
12,
33,
198,
2,
5964,
355,
26772,
416,
327,
16412,
11,
31171,
6998,
290,
3268,
49,
3539,
379,
262,
1708,
10289,
198,
2,
366,
2638,
1378,
2503,
13,
344,
20346,
13,
10951,
1911,
198,
2,
198,
2,
1081,
257,
11283,
284,
262,
1895,
284,
262,
2723,
2438,
290,
2489,
284,
4866,
11,
198,
2,
13096,
290,
17678,
4163,
7520,
416,
262,
5964,
11,
2985,
389,
2810,
691,
198,
2,
351,
257,
3614,
18215,
290,
262,
3788,
338,
1772,
11,
262,
15762,
286,
262,
198,
2,
3034,
2489,
11,
290,
262,
25175,
8240,
669,
423,
691,
3614,
198,
2,
12247,
13,
198,
2,
198,
2,
554,
428,
2461,
11,
262,
2836,
338,
3241,
318,
7428,
284,
262,
7476,
3917,
198,
2,
351,
11046,
11,
1262,
11,
30620,
290,
14,
273,
5922,
393,
8186,
2259,
262,
198,
2,
3788,
416,
262,
2836,
287,
1657,
286,
663,
2176,
3722,
286,
1479,
3788,
11,
198,
2,
326,
743,
1612,
326,
340,
318,
8253,
284,
18510,
11,
290,
326,
635,
198,
2,
4361,
1724,
326,
340,
318,
10395,
329,
6505,
290,
5924,
198,
2,
11153,
1719,
287,
12,
18053,
3644,
3725,
13,
18987,
389,
4361,
198,
2,
10085,
284,
3440,
290,
1332,
262,
3788,
338,
6050,
1799,
355,
13957,
511,
198,
2,
5359,
287,
3403,
15882,
262,
2324,
286,
511,
3341,
290,
14,
273,
198,
2,
1366,
284,
307,
30169,
290,
11,
517,
4143,
11,
284,
779,
290,
8076,
340,
287,
262,
198,
2,
976,
3403,
355,
13957,
2324,
13,
198,
2,
198,
2,
383,
1109,
326,
345,
389,
27606,
3555,
428,
1724,
326,
345,
423,
550,
198,
2,
3725,
286,
262,
20101,
34,
8267,
12,
33,
5964,
290,
326,
345,
2453,
663,
2846,
13,
198,
2,
198,
29113,
29113,
7804,
4242,
2,
628,
198,
11748,
4866,
198,
6738,
347,
17,
12564,
83,
4487,
1330,
20613,
62,
26791,
628
] | 4.37296 | 429 |
import mmcv
import numpy as np
import torch
from mmhuman3d.core.parametric_model.builder import build_registrant
from mmhuman3d.models.builder import build_body_model
body_model_load_dir = 'data/body_models'
batch_size = 2
| [
11748,
8085,
33967,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
198,
198,
6738,
8085,
10734,
18,
67,
13,
7295,
13,
17143,
19482,
62,
19849,
13,
38272,
1330,
1382,
62,
2301,
396,
5250,
198,
6738,
8085,
10734,
18,
67,
13,
27530,
13,
38272,
1330,
1382,
62,
2618,
62,
19849,
198,
198,
2618,
62,
19849,
62,
2220,
62,
15908,
796,
705,
7890,
14,
2618,
62,
27530,
6,
198,
43501,
62,
7857,
796,
362,
628,
198
] | 3.026667 | 75 |
"""
* Python program to open, display, and save an image.
*
"""
import skimage.io
import skimage.viewer
# read image
image = skimage.io.imread(fname="chair.jpg")
# display image and wait for keypress, using a resizable window
viewer = skimage.viewer.ImageViewer(image)
viewer.show()
# save a new version in .tif format
skimage.io.imsave(fname="chair.tif", arr=image)
| [
37811,
198,
1635,
11361,
1430,
284,
1280,
11,
3359,
11,
290,
3613,
281,
2939,
13,
198,
1635,
198,
37811,
198,
11748,
1341,
9060,
13,
952,
198,
11748,
1341,
9060,
13,
1177,
263,
198,
198,
2,
1100,
2939,
198,
9060,
796,
1341,
9060,
13,
952,
13,
320,
961,
7,
69,
3672,
2625,
16337,
13,
9479,
4943,
198,
198,
2,
3359,
2939,
290,
4043,
329,
1994,
8439,
11,
1262,
257,
581,
13821,
4324,
198,
1177,
263,
796,
1341,
9060,
13,
1177,
263,
13,
5159,
7680,
263,
7,
9060,
8,
198,
1177,
263,
13,
12860,
3419,
198,
198,
2,
3613,
257,
649,
2196,
287,
764,
49929,
5794,
198,
8135,
9060,
13,
952,
13,
12078,
1015,
7,
69,
3672,
2625,
16337,
13,
49929,
1600,
5240,
28,
9060,
8,
198
] | 2.976 | 125 |
import pandas as pd
import json
from sklearn.feature_extraction.text import CountVectorizer
import argparse
from functools import reduce
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-m', '--mode', help='What to do', required=True)
parser.add_argument('-d', '--data', help='Data file', required=False)
parser.add_argument('-o', '--out_file', help='Output file name prefix', required=False)
parser.add_argument('-c', '--col', help='Name of data column to use', required=False)
parser.add_argument('-k', '--k', help='Number of words to keep in vocabulary', required=False)
args = vars(parser.parse_args())
if args['mode'] == '1':
k = int(args['k'])
outname = '{}_top{}.txt'.format(args['out_file'], k)
prune_vocab_topk(args['data'], args['col'], outname, k=k)
else:
print("ERROR: doing nothing")
| [
11748,
19798,
292,
355,
279,
67,
198,
11748,
33918,
198,
6738,
1341,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
1330,
2764,
38469,
7509,
198,
11748,
1822,
29572,
198,
6738,
1257,
310,
10141,
1330,
4646,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
76,
3256,
705,
438,
14171,
3256,
1037,
11639,
2061,
284,
466,
3256,
2672,
28,
17821,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
67,
3256,
705,
438,
7890,
3256,
1037,
11639,
6601,
2393,
3256,
2672,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
78,
3256,
705,
438,
448,
62,
7753,
3256,
1037,
11639,
26410,
2393,
1438,
21231,
3256,
2672,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
66,
3256,
705,
438,
4033,
3256,
1037,
11639,
5376,
286,
1366,
5721,
284,
779,
3256,
2672,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
74,
3256,
705,
438,
74,
3256,
1037,
11639,
15057,
286,
2456,
284,
1394,
287,
25818,
3256,
2672,
28,
25101,
8,
198,
220,
220,
220,
26498,
796,
410,
945,
7,
48610,
13,
29572,
62,
22046,
28955,
628,
220,
220,
220,
611,
26498,
17816,
14171,
20520,
6624,
705,
16,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
479,
796,
493,
7,
22046,
17816,
74,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
503,
3672,
796,
705,
90,
92,
62,
4852,
90,
27422,
14116,
4458,
18982,
7,
22046,
17816,
448,
62,
7753,
6,
4357,
479,
8,
198,
220,
220,
220,
220,
220,
220,
220,
778,
1726,
62,
18893,
397,
62,
4852,
74,
7,
22046,
17816,
7890,
6,
4357,
26498,
17816,
4033,
6,
4357,
503,
3672,
11,
479,
28,
74,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
24908,
25,
1804,
2147,
4943,
628,
628,
628,
198
] | 2.678466 | 339 |
import torch
import torch.nn as nn
import torch.nn.functional as F
| [
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
628,
198
] | 3.285714 | 21 |
#!/usr/bin/env python3
import os
import time
import logging
import requests
from emoji import emojize
from functools import wraps
from pssh.clients import SSHClient
from pssh.exceptions import AuthenticationException
from requests.exceptions import RequestException
from telegram import ReplyKeyboardMarkup, ChatAction, ParseMode
from telegram.ext import (Updater, CommandHandler, MessageHandler, Filters,
ConversationHandler, DictPersistence)
#STATES
CONFIGURE, CHOOSE_SERVER, API_CALL, TYPING_REPLY, TYPING_CHOICE, TYPING_CONFIRMATION = range(6)
# TODO: proper logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO)
logger = logging.getLogger(__name__)
#keyboards
configure_keyboard = [['Done']]
configure_markup = ReplyKeyboardMarkup(configure_keyboard, one_time_keyboard=True)
confirmation_keyboard = [['Yes', 'No']]
confirmation_markup = ReplyKeyboardMarkup(confirmation_keyboard, one_time_keyboard=True)
# TODO: dynamic keyboard so that user instead of typing server name can simply tap on the button
choose_server_keyboard = [['Pick a server']]
choose_server_markup = ReplyKeyboardMarkup(choose_server_keyboard, one_time_keyboard=True)
api_calls_keyboard = [['Start all ACs', 'Stop all ACs', 'Get status'],
['Start KMD', 'Stop KMD', 'Available tickers'],
['Change server', 'Server info', 'Launch params']]
api_calls_markup = ReplyKeyboardMarkup(api_calls_keyboard, one_time_keyboard=True)
#typing action utility func
def send_typing_action(func):
"""Sends typing action while processing func command."""
@wraps(func)
return command_func
@send_typing_action
@send_typing_action
#TYPING_REPLY
# TODO: end-to-end test to check if the daemon is able to start.
# TODO: check if we are able to parse output and provide user with feedback on what is going on during the installation process
@send_typing_action
#TYPING_CHOICE
@send_typing_action
@send_typing_action
#### API CALLS
@send_typing_action
@send_typing_action
@send_typing_action
# STATUS
@send_typing_action
#START/STOP
@send_typing_action
@send_typing_action
@send_typing_action
@send_typing_action
@send_typing_action
@send_typing_action
#CLEANUP
@send_typing_action
@send_typing_action
@send_typing_action
@send_typing_action
def help(update, context):
"""Send a message when the command /help is issued."""
help_msg = 'This bot has 3 main states:\n'
help_msg += '-----> CONFIGURATION_STATE\n'
help_msg += '-----> PICK_SERVER_STATE\n'
help_msg += '-----> API_CALL_STATE\n'
help_msg += ' \n'
help_msg += 'Commands that are accessible throughout all states:\n'
help_msg += '/start - sets up a new server.\n'
help_msg += '/help - prints this message.\n'
help_msg += ' \n'
help_msg += 'CONFIGURE_STATE:\n'
help_msg += 'You can trigger that state with /start\n'
help_msg += 'After you have provided data in the following format (server_name,ip,rootpass), simply tap Done and bot will start installation on a new server.\n'
help_msg += 'It usually takes around 2-3 minutes for bot to install/download all dependencies and start API.\n'
help_msg += 'If you\'ve provided server ip with already running API, bot will skip installation and forward you to PICK_SERVER_STATE.\n'
help_msg += ' \n'
help_msg += 'PICK_SERVER_STATE:\n'
help_msg += 'In this state you can only pick a server that you\'ve previously added with /start command. Bot will forward you to API_CALL_STATE after you have successfully picked a server.\n'
help_msg += ' \n'
help_msg += 'API_CALL_STATE:\n'
help_msg += 'You will be able to see all available commands on the keyboard. Other than the keyboard commands there are few others:\n'
help_msg += '/start_sync AXO BET PANGEA - start tickers individually.\n'
help_msg += ' /stop_sync AXO BET PANGEA - stop tickers individually with optional cleanup.\n'
update.message.reply_text(help_msg)
def error(update, context):
"""Log Errors caused by Updates."""
logger.warning('Update "{}" caused error "{}"\n\n'.format(update, context.error))
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
11748,
28686,
198,
11748,
640,
198,
11748,
18931,
198,
11748,
7007,
198,
6738,
44805,
1330,
795,
13210,
1096,
198,
6738,
1257,
310,
10141,
1330,
27521,
198,
6738,
279,
45824,
13,
565,
2334,
1330,
33825,
11792,
198,
6738,
279,
45824,
13,
1069,
11755,
1330,
48191,
16922,
198,
6738,
7007,
13,
1069,
11755,
1330,
19390,
16922,
198,
6738,
573,
30536,
1330,
14883,
9218,
3526,
9704,
929,
11,
24101,
12502,
11,
2547,
325,
19076,
198,
6738,
573,
30536,
13,
2302,
1330,
357,
4933,
67,
729,
11,
9455,
25060,
11,
16000,
25060,
11,
7066,
1010,
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,
42427,
25060,
11,
360,
713,
30946,
13274,
8,
628,
198,
2,
2257,
29462,
198,
10943,
16254,
11335,
11,
49143,
14058,
62,
35009,
5959,
11,
7824,
62,
34,
7036,
11,
24412,
47,
2751,
62,
2200,
6489,
56,
11,
24412,
47,
2751,
62,
44899,
8476,
11,
24412,
47,
2751,
62,
10943,
39776,
44,
6234,
796,
2837,
7,
21,
8,
628,
198,
2,
16926,
46,
25,
1774,
18931,
198,
6404,
2667,
13,
35487,
16934,
7,
18982,
11639,
4,
7,
292,
310,
524,
8,
82,
532,
4064,
7,
3672,
8,
82,
532,
4064,
7,
5715,
3672,
8,
82,
532,
4064,
7,
20500,
8,
82,
3256,
1241,
28,
6404,
2667,
13,
10778,
8,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
2,
2539,
12821,
198,
11250,
495,
62,
2539,
3526,
796,
16410,
6,
45677,
6,
11907,
198,
11250,
495,
62,
4102,
929,
796,
14883,
9218,
3526,
9704,
929,
7,
11250,
495,
62,
2539,
3526,
11,
530,
62,
2435,
62,
2539,
3526,
28,
17821,
8,
198,
198,
10414,
36241,
62,
2539,
3526,
796,
16410,
6,
5297,
3256,
705,
2949,
6,
11907,
198,
10414,
36241,
62,
4102,
929,
796,
14883,
9218,
3526,
9704,
929,
7,
10414,
36241,
62,
2539,
3526,
11,
530,
62,
2435,
62,
2539,
3526,
28,
17821,
8,
198,
198,
2,
16926,
46,
25,
8925,
10586,
523,
326,
2836,
2427,
286,
19720,
4382,
1438,
460,
2391,
9814,
319,
262,
4936,
198,
6679,
577,
62,
15388,
62,
2539,
3526,
796,
16410,
6,
31686,
257,
4382,
6,
11907,
198,
6679,
577,
62,
15388,
62,
4102,
929,
796,
14883,
9218,
3526,
9704,
929,
7,
6679,
577,
62,
15388,
62,
2539,
3526,
11,
530,
62,
2435,
62,
2539,
3526,
28,
17821,
8,
198,
198,
15042,
62,
66,
5691,
62,
2539,
3526,
796,
16410,
6,
10434,
477,
7125,
82,
3256,
705,
19485,
477,
7125,
82,
3256,
705,
3855,
3722,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
10434,
509,
12740,
3256,
705,
19485,
509,
12740,
3256,
705,
10493,
4378,
364,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37250,
19400,
4382,
3256,
705,
10697,
7508,
3256,
705,
38296,
42287,
6,
11907,
198,
15042,
62,
66,
5691,
62,
4102,
929,
796,
14883,
9218,
3526,
9704,
929,
7,
15042,
62,
66,
5691,
62,
2539,
3526,
11,
530,
62,
2435,
62,
2539,
3526,
28,
17821,
8,
628,
198,
198,
2,
774,
13886,
2223,
10361,
25439,
198,
4299,
3758,
62,
774,
13886,
62,
2673,
7,
20786,
2599,
198,
220,
220,
220,
37227,
50,
2412,
19720,
2223,
981,
7587,
25439,
3141,
526,
15931,
628,
220,
220,
220,
2488,
29988,
862,
7,
20786,
8,
628,
220,
220,
220,
1441,
3141,
62,
20786,
628,
198,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
2,
9936,
47,
2751,
62,
2200,
6489,
56,
628,
198,
2,
16926,
46,
25,
886,
12,
1462,
12,
437,
1332,
284,
2198,
611,
262,
33386,
318,
1498,
284,
923,
13,
198,
2,
16926,
46,
25,
2198,
611,
356,
389,
1498,
284,
21136,
5072,
290,
2148,
2836,
351,
7538,
319,
644,
318,
1016,
319,
1141,
262,
9988,
1429,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
220,
220,
220,
220,
198,
198,
2,
9936,
47,
2751,
62,
44899,
8476,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
198,
4242,
7824,
33290,
6561,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
198,
2,
15486,
2937,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
628,
198,
2,
2257,
7227,
14,
2257,
3185,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
2,
29931,
1565,
8577,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
31,
21280,
62,
774,
13886,
62,
2673,
628,
198,
198,
31,
21280,
62,
774,
13886,
62,
2673,
198,
4299,
1037,
7,
19119,
11,
4732,
2599,
198,
220,
220,
220,
37227,
25206,
257,
3275,
618,
262,
3141,
1220,
16794,
318,
4884,
526,
15931,
198,
220,
220,
220,
1037,
62,
19662,
796,
220,
705,
1212,
10214,
468,
513,
1388,
2585,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
650,
3784,
25626,
4261,
6234,
62,
44724,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
650,
3784,
350,
11860,
62,
35009,
5959,
62,
44724,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
650,
3784,
7824,
62,
34,
7036,
62,
44724,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3467,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
6935,
1746,
326,
389,
9857,
3690,
477,
2585,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
31051,
9688,
532,
5621,
510,
257,
649,
4382,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
31051,
16794,
532,
20842,
428,
3275,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3467,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
10943,
16254,
11335,
62,
44724,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
1639,
460,
7616,
326,
1181,
351,
1220,
9688,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
3260,
345,
423,
2810,
1366,
287,
262,
1708,
5794,
357,
15388,
62,
3672,
11,
541,
11,
15763,
6603,
828,
2391,
9814,
24429,
290,
10214,
481,
923,
9988,
319,
257,
649,
4382,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
1026,
3221,
2753,
1088,
362,
12,
18,
2431,
329,
10214,
284,
2721,
14,
15002,
477,
20086,
290,
923,
7824,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
1532,
345,
43054,
303,
2810,
4382,
20966,
351,
1541,
2491,
7824,
11,
10214,
481,
14267,
9988,
290,
2651,
345,
284,
350,
11860,
62,
35009,
5959,
62,
44724,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3467,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
47,
11860,
62,
35009,
5959,
62,
44724,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
818,
428,
1181,
345,
460,
691,
2298,
257,
4382,
326,
345,
43054,
303,
4271,
2087,
351,
1220,
9688,
3141,
13,
18579,
481,
2651,
345,
284,
7824,
62,
34,
7036,
62,
44724,
706,
345,
423,
7675,
6497,
257,
4382,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3467,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
17614,
62,
34,
7036,
62,
44724,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
1639,
481,
307,
1498,
284,
766,
477,
1695,
9729,
319,
262,
10586,
13,
3819,
621,
262,
10586,
9729,
612,
389,
1178,
1854,
7479,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
31051,
9688,
62,
27261,
43051,
46,
38651,
350,
27746,
32,
532,
923,
4378,
364,
17033,
13,
59,
77,
6,
198,
220,
220,
220,
1037,
62,
19662,
15853,
705,
1220,
11338,
62,
27261,
43051,
46,
38651,
350,
27746,
32,
532,
2245,
4378,
364,
17033,
351,
11902,
27425,
13,
59,
77,
6,
628,
220,
220,
220,
4296,
13,
20500,
13,
47768,
62,
5239,
7,
16794,
62,
19662,
8,
628,
198,
4299,
4049,
7,
19119,
11,
4732,
2599,
198,
220,
220,
220,
37227,
11187,
44225,
4073,
416,
28090,
526,
15931,
198,
220,
220,
220,
49706,
13,
43917,
10786,
10260,
45144,
36786,
4073,
4049,
45144,
36786,
59,
77,
59,
77,
4458,
18982,
7,
19119,
11,
4732,
13,
18224,
4008,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.808871 | 1,533 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.