content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
from .exceptions import ConsumerUnhealthyException
from .exceptions import HandlerTaskCancelled
from .exceptions import StopConsumer
from .exceptions import UnhandledMessage
from .metrics import CONSUMED_MESSAGE_TIME
from .metrics import CONSUMED_MESSAGES
from .metrics import CONSUMED_MESSAGES_BATCH_SIZE
from .metrics import CONSUMER_HEALTH
from .metrics import CONSUMER_REBALANCED
from .metrics import CONSUMER_TOPIC_OFFSET
from .metrics import MESSAGE_LEAD_TIME
from .metrics import NOERROR
from kafka.structs import TopicPartition
import aiokafka
import asyncio
import fnmatch
import functools
import inspect
import logging
import opentracing
import orjson
import pydantic
import time
import typing
if typing.TYPE_CHECKING: # pragma: no cover
from .app import Application
else:
Application = None
logger = logging.getLogger(__name__)
def build_handler(
coro: typing.Callable, app: "Application", consumer: "BatchConsumer"
) -> typing.Callable:
"""Introspection on the coroutine signature to inject dependencies"""
sig = inspect.signature(coro)
param_name = [k for k in sig.parameters.keys()][0]
annotation = sig.parameters[param_name].annotation
handler = _raw_msg_handler
if annotation and annotation != sig.empty:
if annotation == bytes:
handler = _bytes_msg_handler # type: ignore
elif annotation == aiokafka.ConsumerRecord:
handler = _record_msg_handler # type: ignore
else:
handler = functools.partial(_pydantic_msg_handler, annotation) # type: ignore
it = iter(sig.parameters.items())
# first argument is required and its the payload
next(it)
kwargs: typing.Dict[str, typing.Any] = getattr(coro, "__extra_kwargs__", {})
for key, param in it:
if key == "schema":
kwargs["schema"] = None
elif key == "record":
kwargs["record"] = None
elif key == "app":
kwargs["app"] = app
elif key == "subscriber":
kwargs["subscriber"] = consumer
elif issubclass(param.annotation, opentracing.Span):
kwargs[key] = opentracing.Span
return inner
| [
6738,
764,
1069,
11755,
1330,
18110,
3118,
22796,
16922,
198,
6738,
764,
1069,
11755,
1330,
32412,
25714,
34,
590,
3353,
198,
6738,
764,
1069,
11755,
1330,
13707,
49106,
198,
6738,
764,
1069,
11755,
1330,
791,
38788,
12837,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1961,
62,
44,
1546,
4090,
8264,
62,
34694,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1961,
62,
44,
1546,
4090,
48075,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1961,
62,
44,
1546,
4090,
48075,
62,
33,
11417,
62,
33489,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1137,
62,
13909,
40818,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1137,
62,
2200,
33,
1847,
20940,
1961,
198,
6738,
764,
4164,
10466,
1330,
39537,
5883,
1137,
62,
35222,
2149,
62,
27977,
28480,
198,
6738,
764,
4164,
10466,
1330,
337,
1546,
4090,
8264,
62,
2538,
2885,
62,
34694,
198,
6738,
764,
4164,
10466,
1330,
8005,
24908,
198,
6738,
479,
1878,
4914,
13,
7249,
82,
1330,
47373,
7841,
653,
198,
198,
11748,
257,
72,
482,
1878,
4914,
198,
11748,
30351,
952,
198,
11748,
24714,
15699,
198,
11748,
1257,
310,
10141,
198,
11748,
10104,
198,
11748,
18931,
198,
11748,
1034,
298,
81,
4092,
198,
11748,
393,
17752,
198,
11748,
279,
5173,
5109,
198,
11748,
640,
198,
11748,
19720,
198,
198,
361,
19720,
13,
25216,
62,
50084,
2751,
25,
220,
1303,
23864,
2611,
25,
645,
3002,
198,
220,
220,
220,
422,
764,
1324,
1330,
15678,
198,
17772,
25,
198,
220,
220,
220,
15678,
796,
6045,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
628,
628,
198,
198,
4299,
1382,
62,
30281,
7,
198,
220,
220,
220,
1162,
78,
25,
19720,
13,
14134,
540,
11,
598,
25,
366,
23416,
1600,
7172,
25,
366,
33,
963,
49106,
1,
198,
8,
4613,
19720,
13,
14134,
540,
25,
198,
220,
220,
220,
37227,
5317,
305,
31308,
319,
262,
1162,
28399,
9877,
284,
8677,
20086,
37811,
198,
220,
220,
220,
43237,
796,
10104,
13,
12683,
1300,
7,
10215,
78,
8,
198,
220,
220,
220,
5772,
62,
3672,
796,
685,
74,
329,
479,
287,
43237,
13,
17143,
7307,
13,
13083,
3419,
7131,
15,
60,
198,
220,
220,
220,
23025,
796,
43237,
13,
17143,
7307,
58,
17143,
62,
3672,
4083,
1236,
14221,
198,
220,
220,
220,
21360,
796,
4808,
1831,
62,
19662,
62,
30281,
198,
220,
220,
220,
611,
23025,
290,
23025,
14512,
43237,
13,
28920,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
23025,
6624,
9881,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21360,
796,
4808,
33661,
62,
19662,
62,
30281,
220,
1303,
2099,
25,
8856,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
23025,
6624,
257,
72,
482,
1878,
4914,
13,
49106,
23739,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21360,
796,
4808,
22105,
62,
19662,
62,
30281,
220,
1303,
2099,
25,
8856,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21360,
796,
1257,
310,
10141,
13,
47172,
28264,
79,
5173,
5109,
62,
19662,
62,
30281,
11,
23025,
8,
220,
1303,
2099,
25,
8856,
628,
220,
220,
220,
340,
796,
11629,
7,
82,
328,
13,
17143,
7307,
13,
23814,
28955,
198,
220,
220,
220,
1303,
717,
4578,
318,
2672,
290,
663,
262,
21437,
198,
220,
220,
220,
1306,
7,
270,
8,
198,
220,
220,
220,
479,
86,
22046,
25,
19720,
13,
35,
713,
58,
2536,
11,
19720,
13,
7149,
60,
796,
651,
35226,
7,
10215,
78,
11,
366,
834,
26086,
62,
46265,
22046,
834,
1600,
23884,
8,
628,
220,
220,
220,
329,
1994,
11,
5772,
287,
340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1994,
6624,
366,
15952,
2611,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
15952,
2611,
8973,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1994,
6624,
366,
22105,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
22105,
8973,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1994,
6624,
366,
1324,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
1324,
8973,
796,
598,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1994,
6624,
366,
7266,
1416,
24735,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
7266,
1416,
24735,
8973,
796,
7172,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1189,
549,
4871,
7,
17143,
13,
1236,
14221,
11,
1034,
298,
81,
4092,
13,
4561,
272,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
58,
2539,
60,
796,
1034,
298,
81,
4092,
13,
4561,
272,
628,
220,
220,
220,
1441,
8434,
628
] | 2.660147 | 818 |
# Generated by Django 3.2.5 on 2021-09-26 23:32
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
17,
13,
20,
319,
33448,
12,
2931,
12,
2075,
2242,
25,
2624,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
import os, shutil
from unittest import mock
import swiftclient
from django.test import TestCase, tag
from django.contrib.auth.models import User
from django.conf import settings
from feeds.models import Feed, FeedFile
from plugins.models import Plugin, PluginParameter, PluginInstance
from plugins.models import ComputeResource
| [
198,
11748,
28686,
11,
4423,
346,
198,
6738,
555,
715,
395,
1330,
15290,
198,
198,
11748,
14622,
16366,
198,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
11,
7621,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
198,
6738,
21318,
13,
27530,
1330,
18272,
11,
18272,
8979,
198,
6738,
20652,
13,
27530,
1330,
42636,
11,
42636,
36301,
11,
42636,
33384,
198,
6738,
20652,
13,
27530,
1330,
3082,
1133,
26198,
628,
220,
220,
220,
220,
220,
220,
220,
220,
198
] | 3.638298 | 94 |
#!/usr/bin/python3
# -*- conding:utf-8 -*-
from . import config
from .thread_manager import ThreadManager
from .db import Db
from .db import BookInfo
import os
import re
import typer
import time
import requests
import logging
import rich
from urllib.parse import quote
from tomd import Tomd
from bs4 import BeautifulSoup
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
198,
2,
532,
9,
12,
1779,
278,
25,
40477,
12,
23,
532,
9,
12,
198,
198,
6738,
764,
1330,
4566,
198,
6738,
764,
16663,
62,
37153,
1330,
14122,
13511,
198,
6738,
764,
9945,
1330,
360,
65,
198,
6738,
764,
9945,
1330,
4897,
12360,
198,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
1259,
525,
198,
11748,
640,
198,
11748,
7007,
198,
11748,
18931,
198,
11748,
5527,
198,
6738,
2956,
297,
571,
13,
29572,
1330,
9577,
198,
6738,
284,
9132,
1330,
4186,
67,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198
] | 3.23 | 100 |
from abc import ABC
| [
6738,
450,
66,
1330,
9738,
628
] | 3.5 | 6 |
"""
py_proj
~~~~~~~
Пустой проект на питоне.
"""
__version__ = '0.0.0'
| [
37811,
628,
220,
220,
220,
12972,
62,
1676,
73,
198,
220,
220,
220,
220,
8728,
4907,
93,
628,
220,
220,
220,
12466,
253,
35072,
21727,
20375,
25443,
117,
12466,
123,
21169,
15166,
16843,
31583,
20375,
12466,
121,
16142,
12466,
123,
18849,
20375,
15166,
22177,
16843,
13,
198,
198,
37811,
198,
198,
834,
9641,
834,
796,
705,
15,
13,
15,
13,
15,
6,
198
] | 1.380952 | 63 |
import os
#import unittest
import pybbcsig
import binascii
def _is_windows():
"""
"""
return os.name == "nt"
sig = pybbcsig.PyBBcSigSecp256k1()
in_privkey = b'\xd6Y\xbc#I\xfe\xed\x00\xe1x\xaa\xb4V\xd0\x9c\x01\xe2\x9a\xfd\xd2a\xabf\xcb\x14\xacM\x8e\xca2=\xbb'
in_pubkey = b'\x04\x0fd(\xdd\x8fR\xf7@\x86\xe7\x04\x06\xc3K\xecu\xd9\xfe\xe9de\x95\x8c\x16\x0esJ\xe8\x12Q`\xad).\xbd\xfb\x1c\x80\x96p\x12\xb5o\xfdr;\xd8\xa6`\xec\x85i\xad\x14\xceks8\x17&\x7f\xee\xd0\xc1'
in_pubkey_compressed = b'\x03\x0fd(\xdd\x8fR\xf7@\x86\xe7\x04\x06\xc3K\xecu\xd9\xfe\xe9de\x95\x8c\x16\x0esJ\xe8\x12Q`\xad'
in_test_digest = binascii.a2b_hex("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
in_signature_nt = b'Dz\xe5\x84$\xf5_\x19\x9d\xda\x83\x00(O\x91\xec\x18MP\xbd\xef\xa2\x9b\x96\xb3\x9d\xea\xb5\xf9\x93;\xa4\xafB\xe9:\x9e\xa5G\xc79\xe1\xb7\xfaS)\xfd\x82\x0e\xa7\x13|\xe6\xc8\xebX\x91[\x8a$\xe3\xf0\xf4\r'
in_signature_posix = b'B)\n@\xe666\xb310z5\x8c\x99\x06u\xe7\xa9}\\\xdc\xa5\x93\x8a\xc6\xb2by\xe1`L\xe8\x95\x18\xd3?\x1f\x1d\x81\x96\xd6\x01\x96\xe2\x80y\x0fz3\xde\xd8\x18\xbd\xbc\xce\xc2\xf6\xdf\xde\x8c\xdd\xb8\xb0\xd5'
if _is_windows():
in_signature = in_signature_nt
else:
in_signature = in_signature_posix
in_der_nt = b'0\x82\x01\x13\x02\x01\x01\x04 \xd6Y\xbc#I\xfe\xed\x00\xe1x\xaa\xb4V\xd0\x9c\x01\xe2\x9a\xfd\xd2a\xabf\xcb\x14\xacM\x8e\xca2=\xbb\xa0\x81\xa50\x81\xa2\x02\x01\x010,\x06\x07*\x86H\xce=\x01\x01\x02!\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xfc/0\x06\x04\x01\x00\x04\x01\x07\x04A\x04y\xbef~\xf9\xdc\xbb\xacU\xa0b\x95\xce\x87\x0b\x07\x02\x9b\xfc\xdb-\xce(\xd9Y\xf2\x81[\x16\xf8\x17\x98H:\xdaw&\xa3\xc4e]\xa4\xfb\xfc\x0e\x11\x08\xa8\xfd\x17\xb4H\xa6\x85T\x19\x9cG\xd0\x8f\xfb\x10\xd4\xb8\x02!\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xba\xae\xdc\xe6\xafH\xa0;\xbf\xd2^\x8c\xd06AA\x02\x01\x01\xa1D\x03B\x00\x04\x0fd(\xdd\x8fR\xf7@\x86\xe7\x04\x06\xc3K\xecu\xd9\xfe\xe9de\x95\x8c\x16\x0esJ\xe8\x12Q`\xad).\xbd\xfb\x1c\x80\x96p\x12\xb5o\xfdr;\xd8\xa6`\xec\x85i\xad\x14\xceks8\x17&\x7f\xee\xd0\xc1'
in_der_posix = b'0t\x02\x01\x01\x04 \xd6Y\xbc#I\xfe\xed\x00\xe1x\xaa\xb4V\xd0\x9c\x01\xe2\x9a\xfd\xd2a\xabf\xcb\x14\xacM\x8e\xca2=\xbb\xa0\x07\x06\x05+\x81\x04\x00\n\xa1D\x03B\x00\x04\x0fd(\xdd\x8fR\xf7@\x86\xe7\x04\x06\xc3K\xecu\xd9\xfe\xe9de\x95\x8c\x16\x0esJ\xe8\x12Q`\xad).\xbd\xfb\x1c\x80\x96p\x12\xb5o\xfdr;\xd8\xa6`\xec\x85i\xad\x14\xceks8\x17&\x7f\xee\xd0\xc1'
if _is_windows():
in_der = in_der_nt
else:
in_der = in_der_posix
in_pem_nt = b'-----BEGIN EC PRIVATE KEY-----\nMIIBEwIBAQQg1lm8I0n+7QDheKq0VtCcAeKa/dJhq2bLFKxNjsoyPbuggaUwgaIC\nAQEwLAYHKoZIzj0BAQIhAP////////////////////////////////////7///wv\nMAYEAQAEAQcEQQR5vmZ++dy7rFWgYpXOhwsHApv82y3OKNlZ8oFbFvgXmEg62ncm\no8RlXaT7/A4RCKj9F7RIpoVUGZxH0I/7ENS4AiEA/////////////////////rqu\n3OavSKA7v9JejNA2QUECAQGhRANCAAQPZCjdj1L3QIbnBAbDS+x12f7pZGWVjBYO\nc0roElFgrSkuvfscgJZwErVv/XI72KZg7IVprRTOa3M4FyZ/7tDB\n-----END EC PRIVATE KEY-----\n\x00'
in_pem_posix = b'-----BEGIN EC PRIVATE KEY-----\nMHQCAQEEINZZvCNJ/u0A4XiqtFbQnAHimv3SYatmyxSsTY7KMj27oAcGBSuBBAAK\noUQDQgAED2Qo3Y9S90CG5wQGw0vsddn+6WRllYwWDnNK6BJRYK0pLr37HICWcBK1\nb/1yO9imYOyFaa0UzmtzOBcmf+7QwQ==\n-----END EC PRIVATE KEY-----\n\x00'
if _is_windows():
in_pem = in_pem_nt
else:
in_pem = in_pem_posix
def test_keypair():
"""
"""
pubkey, privkey = sig.generate_keypair(0)
# print("pubkey = {}".format(pubkey))
# print("privkey = {}".format(privkey))
assert (len(privkey) == 32)
assert (len(pubkey) == 65)
def test_sign():
"""
"""
assert (len(in_privkey) == 32)
signature = sig.sign(in_privkey, in_test_digest) # 毎回変わる
# print("signature = {}".format(signature))
assert (len(signature) == 64)
def test_der():
"""
"""
assert (len(in_privkey) == 32)
der = sig.output_der(in_privkey)
# print("der = {}".format(der))
# print("len(der) = {}".format(len(der)))
if _is_windows():
assert (len(der) == 279)
else:
assert (len(der) == 118)
assert (der == in_der)
def test_from_der():
"""
"""
pubkey, privkey = sig.convert_from_der(in_der, 0)
# print("pubkey = {}".format(pubkey))
# print("privkey = {}".format(privkey))
assert (len(privkey) == 32)
assert (len(pubkey) == 65)
assert (privkey == in_privkey)
assert (pubkey == in_pubkey)
def test_from_der2():
"""
"""
if _is_windows():
der = in_der_posix
else:
der = in_der_nt
pubkey, privkey = sig.convert_from_der(der, 0)
# print("pubkey = {}".format(pubkey))
# print("privkey = {}".format(privkey))
assert (len(privkey) == 32)
assert (len(pubkey) == 65)
assert (privkey == in_privkey)
assert (pubkey == in_pubkey)
def test_pubkey_compressed():
"""
"""
assert (len(in_privkey) == 32)
pubkey = sig.get_public_key_compressed(in_privkey)
# print("pubkey = {}".format(pubkey))
# print("len(pubkey) = {}".format(len(pubkey)))
assert (len(pubkey) == 33)
assert (pubkey == in_pubkey_compressed)
def test_pubkey_uncompressed():
"""
"""
assert (len(in_privkey) == 32)
pubkey = sig.get_public_key_uncompressed(in_privkey)
# print("pubkey = {}".format(pubkey))
# print("len(pubkey) = {}".format(len(pubkey)))
assert (len(pubkey) == 65)
assert (pubkey == in_pubkey)
def test_verify():
"""
"""
# print("len(in_signature) = {}".format(len(in_signature)))
assert (len(in_signature) == 64)
ret = sig.verify(in_pubkey, in_test_digest, in_signature)
# print("ret = {}".format(ret))
assert (ret > 0)
assert (ret == 1)
def test_verify2():
"""
"""
if _is_windows():
signature = in_signature_posix
else:
signature = in_signature_nt
# print("len(signature) = {}".format(len(signature)))
assert (len(signature) == 64)
ret = sig.verify(in_pubkey, in_test_digest, signature)
# print("ret = {}".format(ret))
assert (ret > 0)
assert (ret == 1)
def test_pem():
"""
"""
assert (len(in_privkey) == 32)
pem = sig.output_pem(in_privkey)
# print("pem = {}".format(pem))
# print("len(pem) = {}".format(len(pem)))
if _is_windows():
assert (len(pem) == (438 + 1))
else:
assert(len(pem) == (223 + 1))
assert (pem == in_pem)
def test_from_pem():
"""
"""
pubkey, privkey = sig.convert_from_pem(in_pem, 0)
# print("pubkey = {}".format(pubkey))
# print("privkey = {}".format(privkey))
assert (len(privkey) == 32)
assert (len(pubkey) == 65)
assert (privkey == in_privkey)
assert(pubkey == in_pubkey)
def test_from_pem2():
"""
"""
if _is_windows():
pem = in_pem_posix
else:
pem = in_pem_nt
pubkey, privkey = sig.convert_from_pem(pem, 0)
# print("pubkey = {}".format(pubkey))
# print("privkey = {}".format(privkey))
assert (len(privkey) == 32)
assert (len(pubkey) == 65)
assert (privkey == in_privkey)
assert (pubkey == in_pubkey)
| [
11748,
28686,
198,
2,
11748,
555,
715,
395,
198,
11748,
12972,
11848,
6359,
328,
198,
11748,
9874,
292,
979,
72,
628,
198,
4299,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
28686,
13,
3672,
6624,
366,
429,
1,
628,
198,
82,
328,
796,
12972,
11848,
6359,
328,
13,
20519,
15199,
66,
50,
328,
6558,
79,
11645,
74,
16,
3419,
198,
198,
259,
62,
13776,
2539,
796,
275,
6,
59,
24954,
21,
56,
59,
87,
15630,
2,
40,
59,
87,
5036,
59,
87,
276,
59,
87,
405,
59,
27705,
16,
87,
59,
87,
7252,
59,
30894,
19,
53,
59,
24954,
15,
59,
87,
24,
66,
59,
87,
486,
59,
27705,
17,
59,
87,
24,
64,
59,
87,
16344,
59,
24954,
17,
64,
59,
87,
397,
69,
59,
87,
21101,
59,
87,
1415,
59,
87,
330,
44,
59,
87,
23,
68,
59,
87,
6888,
17,
28,
59,
87,
11848,
6,
198,
259,
62,
12984,
2539,
796,
275,
6,
59,
87,
3023,
59,
87,
15,
16344,
38016,
87,
1860,
59,
87,
23,
69,
49,
59,
26152,
22,
31,
59,
87,
4521,
59,
27705,
22,
59,
87,
3023,
59,
87,
3312,
59,
25306,
18,
42,
59,
87,
721,
84,
59,
24954,
24,
59,
87,
5036,
59,
27705,
24,
2934,
59,
87,
3865,
59,
87,
23,
66,
59,
87,
1433,
59,
87,
15,
274,
41,
59,
27705,
23,
59,
87,
1065,
48,
63,
59,
87,
324,
737,
59,
87,
17457,
59,
87,
21855,
59,
87,
16,
66,
59,
87,
1795,
59,
87,
4846,
79,
59,
87,
1065,
59,
30894,
20,
78,
59,
26152,
7109,
26,
59,
24954,
23,
59,
27865,
21,
63,
59,
87,
721,
59,
87,
5332,
72,
59,
87,
324,
59,
87,
1415,
59,
87,
344,
591,
23,
59,
87,
1558,
5,
59,
87,
22,
69,
59,
87,
1453,
59,
24954,
15,
59,
25306,
16,
6,
198,
259,
62,
12984,
2539,
62,
5589,
2790,
796,
275,
6,
59,
87,
3070,
59,
87,
15,
16344,
38016,
87,
1860,
59,
87,
23,
69,
49,
59,
26152,
22,
31,
59,
87,
4521,
59,
27705,
22,
59,
87,
3023,
59,
87,
3312,
59,
25306,
18,
42,
59,
87,
721,
84,
59,
24954,
24,
59,
87,
5036,
59,
27705,
24,
2934,
59,
87,
3865,
59,
87,
23,
66,
59,
87,
1433,
59,
87,
15,
274,
41,
59,
27705,
23,
59,
87,
1065,
48,
63,
59,
87,
324,
6,
198,
198,
259,
62,
9288,
62,
12894,
395,
796,
9874,
292,
979,
72,
13,
64,
17,
65,
62,
33095,
7203,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
24794,
4943,
198,
198,
259,
62,
12683,
1300,
62,
429,
796,
275,
6,
35,
89,
59,
27705,
20,
59,
87,
5705,
3,
59,
26152,
20,
62,
59,
87,
1129,
59,
87,
24,
67,
59,
87,
6814,
59,
87,
5999,
59,
87,
405,
7,
46,
59,
87,
6420,
59,
87,
721,
59,
87,
1507,
7378,
59,
87,
17457,
59,
87,
891,
59,
27865,
17,
59,
87,
24,
65,
59,
87,
4846,
59,
30894,
18,
59,
87,
24,
67,
59,
87,
18213,
59,
30894,
20,
59,
26152,
24,
59,
87,
6052,
26,
59,
27865,
19,
59,
87,
1878,
33,
59,
27705,
24,
7479,
87,
24,
68,
59,
27865,
20,
38,
59,
25306,
3720,
59,
27705,
16,
59,
30894,
22,
59,
87,
13331,
50,
19415,
87,
16344,
59,
87,
6469,
59,
87,
15,
68,
59,
27865,
22,
59,
87,
1485,
91,
59,
27705,
21,
59,
25306,
23,
59,
87,
1765,
55,
59,
87,
6420,
58,
59,
87,
23,
64,
3,
59,
27705,
18,
59,
26152,
15,
59,
26152,
19,
59,
81,
6,
198,
198,
259,
62,
12683,
1300,
62,
1930,
844,
796,
275,
6,
33,
19415,
77,
31,
59,
27705,
27310,
59,
30894,
26717,
89,
20,
59,
87,
23,
66,
59,
87,
2079,
59,
87,
3312,
84,
59,
27705,
22,
59,
27865,
24,
92,
6852,
59,
87,
17896,
59,
27865,
20,
59,
87,
6052,
59,
87,
23,
64,
59,
25306,
21,
59,
30894,
17,
1525,
59,
27705,
16,
63,
43,
59,
27705,
23,
59,
87,
3865,
59,
87,
1507,
59,
24954,
18,
30,
59,
87,
16,
69,
59,
87,
16,
67,
59,
87,
6659,
59,
87,
4846,
59,
24954,
21,
59,
87,
486,
59,
87,
4846,
59,
27705,
17,
59,
87,
1795,
88,
59,
87,
15,
69,
89,
18,
59,
87,
2934,
59,
24954,
23,
59,
87,
1507,
59,
87,
17457,
59,
87,
15630,
59,
87,
344,
59,
25306,
17,
59,
26152,
21,
59,
87,
7568,
59,
87,
2934,
59,
87,
23,
66,
59,
87,
1860,
59,
30894,
23,
59,
30894,
15,
59,
24954,
20,
6,
198,
361,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
287,
62,
12683,
1300,
796,
287,
62,
12683,
1300,
62,
429,
198,
17772,
25,
198,
220,
220,
220,
287,
62,
12683,
1300,
796,
287,
62,
12683,
1300,
62,
1930,
844,
198,
198,
259,
62,
1082,
62,
429,
796,
275,
6,
15,
59,
87,
6469,
59,
87,
486,
59,
87,
1485,
59,
87,
2999,
59,
87,
486,
59,
87,
486,
59,
87,
3023,
3467,
24954,
21,
56,
59,
87,
15630,
2,
40,
59,
87,
5036,
59,
87,
276,
59,
87,
405,
59,
27705,
16,
87,
59,
87,
7252,
59,
30894,
19,
53,
59,
24954,
15,
59,
87,
24,
66,
59,
87,
486,
59,
27705,
17,
59,
87,
24,
64,
59,
87,
16344,
59,
24954,
17,
64,
59,
87,
397,
69,
59,
87,
21101,
59,
87,
1415,
59,
87,
330,
44,
59,
87,
23,
68,
59,
87,
6888,
17,
28,
59,
87,
11848,
59,
27865,
15,
59,
87,
6659,
59,
27865,
1120,
59,
87,
6659,
59,
27865,
17,
59,
87,
2999,
59,
87,
486,
59,
87,
20943,
11,
59,
87,
3312,
59,
87,
2998,
9,
59,
87,
4521,
39,
59,
87,
344,
28,
59,
87,
486,
59,
87,
486,
59,
87,
2999,
0,
59,
87,
405,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
87,
5036,
59,
47596,
59,
47596,
59,
87,
16072,
14,
15,
59,
87,
3312,
59,
87,
3023,
59,
87,
486,
59,
87,
405,
59,
87,
3023,
59,
87,
486,
59,
87,
2998,
59,
87,
3023,
32,
59,
87,
3023,
88,
59,
30894,
891,
93,
59,
26152,
24,
59,
87,
17896,
59,
87,
11848,
59,
87,
330,
52,
59,
27865,
15,
65,
59,
87,
3865,
59,
87,
344,
59,
87,
5774,
59,
87,
15,
65,
59,
87,
2998,
59,
87,
2999,
59,
87,
24,
65,
59,
87,
16072,
59,
87,
9945,
12,
59,
87,
344,
38016,
24954,
24,
56,
59,
26152,
17,
59,
87,
6659,
58,
59,
87,
1433,
59,
26152,
23,
59,
87,
1558,
59,
87,
4089,
39,
7479,
24954,
707,
5,
59,
27865,
18,
59,
25306,
19,
68,
60,
59,
27865,
19,
59,
87,
21855,
59,
87,
16072,
59,
87,
15,
68,
59,
87,
1157,
59,
87,
2919,
59,
27865,
23,
59,
87,
16344,
59,
87,
1558,
59,
30894,
19,
39,
59,
27865,
21,
59,
87,
5332,
51,
59,
87,
1129,
59,
87,
24,
66,
38,
59,
24954,
15,
59,
87,
23,
69,
59,
87,
21855,
59,
87,
940,
59,
24954,
19,
59,
30894,
23,
59,
87,
2999,
0,
59,
87,
405,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
47596,
59,
87,
5036,
59,
87,
7012,
59,
87,
3609,
59,
87,
17896,
59,
27705,
21,
59,
87,
1878,
39,
59,
27865,
15,
26,
59,
87,
19881,
59,
24954,
17,
61,
59,
87,
23,
66,
59,
24954,
3312,
3838,
59,
87,
2999,
59,
87,
486,
59,
87,
486,
59,
27865,
16,
35,
59,
87,
3070,
33,
59,
87,
405,
59,
87,
3023,
59,
87,
15,
16344,
38016,
87,
1860,
59,
87,
23,
69,
49,
59,
26152,
22,
31,
59,
87,
4521,
59,
27705,
22,
59,
87,
3023,
59,
87,
3312,
59,
25306,
18,
42,
59,
87,
721,
84,
59,
24954,
24,
59,
87,
5036,
59,
27705,
24,
2934,
59,
87,
3865,
59,
87,
23,
66,
59,
87,
1433,
59,
87,
15,
274,
41,
59,
27705,
23,
59,
87,
1065,
48,
63,
59,
87,
324,
737,
59,
87,
17457,
59,
87,
21855,
59,
87,
16,
66,
59,
87,
1795,
59,
87,
4846,
79,
59,
87,
1065,
59,
30894,
20,
78,
59,
26152,
7109,
26,
59,
24954,
23,
59,
27865,
21,
63,
59,
87,
721,
59,
87,
5332,
72,
59,
87,
324,
59,
87,
1415,
59,
87,
344,
591,
23,
59,
87,
1558,
5,
59,
87,
22,
69,
59,
87,
1453,
59,
24954,
15,
59,
25306,
16,
6,
198,
198,
259,
62,
1082,
62,
1930,
844,
796,
275,
6,
15,
83,
59,
87,
2999,
59,
87,
486,
59,
87,
486,
59,
87,
3023,
3467,
24954,
21,
56,
59,
87,
15630,
2,
40,
59,
87,
5036,
59,
87,
276,
59,
87,
405,
59,
27705,
16,
87,
59,
87,
7252,
59,
30894,
19,
53,
59,
24954,
15,
59,
87,
24,
66,
59,
87,
486,
59,
27705,
17,
59,
87,
24,
64,
59,
87,
16344,
59,
24954,
17,
64,
59,
87,
397,
69,
59,
87,
21101,
59,
87,
1415,
59,
87,
330,
44,
59,
87,
23,
68,
59,
87,
6888,
17,
28,
59,
87,
11848,
59,
27865,
15,
59,
87,
2998,
59,
87,
3312,
59,
87,
2713,
10,
59,
87,
6659,
59,
87,
3023,
59,
87,
405,
59,
77,
59,
27865,
16,
35,
59,
87,
3070,
33,
59,
87,
405,
59,
87,
3023,
59,
87,
15,
16344,
38016,
87,
1860,
59,
87,
23,
69,
49,
59,
26152,
22,
31,
59,
87,
4521,
59,
27705,
22,
59,
87,
3023,
59,
87,
3312,
59,
25306,
18,
42,
59,
87,
721,
84,
59,
24954,
24,
59,
87,
5036,
59,
27705,
24,
2934,
59,
87,
3865,
59,
87,
23,
66,
59,
87,
1433,
59,
87,
15,
274,
41,
59,
27705,
23,
59,
87,
1065,
48,
63,
59,
87,
324,
737,
59,
87,
17457,
59,
87,
21855,
59,
87,
16,
66,
59,
87,
1795,
59,
87,
4846,
79,
59,
87,
1065,
59,
30894,
20,
78,
59,
26152,
7109,
26,
59,
24954,
23,
59,
27865,
21,
63,
59,
87,
721,
59,
87,
5332,
72,
59,
87,
324,
59,
87,
1415,
59,
87,
344,
591,
23,
59,
87,
1558,
5,
59,
87,
22,
69,
59,
87,
1453,
59,
24954,
15,
59,
25306,
16,
6,
198,
361,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
287,
62,
1082,
796,
287,
62,
1082,
62,
429,
198,
17772,
25,
198,
220,
220,
220,
287,
62,
1082,
796,
287,
62,
1082,
62,
1930,
844,
198,
198,
259,
62,
79,
368,
62,
429,
796,
275,
6,
30934,
33,
43312,
13182,
4810,
3824,
6158,
35374,
30934,
59,
77,
44,
3978,
12473,
86,
40,
4339,
48,
48,
70,
16,
75,
76,
23,
40,
15,
77,
10,
22,
48,
35,
258,
42,
80,
15,
53,
83,
34,
66,
32,
68,
37281,
14,
67,
41,
71,
80,
17,
65,
43,
26236,
87,
45,
73,
568,
88,
47,
25456,
4908,
52,
86,
4908,
2149,
59,
77,
32,
48,
36,
86,
43,
4792,
38730,
78,
48926,
89,
73,
15,
4339,
48,
40,
71,
2969,
49704,
9705,
22,
20379,
86,
85,
59,
77,
44,
4792,
16412,
48,
14242,
32,
48,
66,
36,
48,
48,
49,
20,
14761,
57,
4880,
9892,
22,
81,
24160,
70,
56,
79,
55,
5812,
18504,
7801,
79,
85,
6469,
88,
18,
11380,
45,
75,
57,
23,
78,
37,
65,
37,
45119,
55,
76,
36,
70,
5237,
10782,
76,
59,
3919,
23,
49,
75,
55,
64,
51,
22,
14,
32,
19,
7397,
42,
73,
24,
37,
22,
7112,
7501,
53,
7340,
57,
87,
39,
15,
40,
14,
22,
16938,
19,
32,
72,
16412,
27246,
9705,
14,
81,
421,
59,
77,
18,
46,
615,
18831,
32,
22,
85,
24,
40932,
73,
4535,
17,
10917,
36600,
48,
41126,
49,
20940,
3838,
48,
47,
57,
34,
73,
28241,
16,
43,
18,
48,
40,
9374,
4339,
65,
5258,
10,
87,
1065,
69,
22,
79,
57,
33191,
53,
73,
17513,
46,
59,
10782,
15,
305,
9527,
37,
2164,
15739,
14795,
69,
1416,
70,
41,
57,
86,
9139,
53,
85,
14,
55,
40,
4761,
42,
57,
70,
22,
3824,
1050,
49,
10468,
64,
18,
44,
19,
37,
88,
57,
14,
22,
83,
11012,
59,
77,
30934,
10619,
13182,
4810,
3824,
6158,
35374,
30934,
59,
77,
59,
87,
405,
6,
198,
198,
259,
62,
79,
368,
62,
1930,
844,
796,
275,
6,
30934,
33,
43312,
13182,
4810,
3824,
6158,
35374,
30934,
59,
77,
36208,
48,
8141,
48,
6500,
1268,
30148,
85,
34,
41074,
14,
84,
15,
32,
19,
55,
25011,
83,
37,
65,
48,
77,
18429,
320,
85,
18,
23060,
265,
1820,
87,
50,
82,
9936,
22,
42,
44,
73,
1983,
78,
12832,
38,
4462,
84,
15199,
3838,
42,
59,
3919,
52,
48,
35,
48,
70,
32,
1961,
17,
48,
78,
18,
56,
24,
50,
3829,
39816,
20,
86,
48,
38,
86,
15,
14259,
1860,
77,
10,
21,
18564,
297,
56,
86,
22332,
77,
46888,
21,
33,
41,
18276,
42,
15,
79,
43,
81,
2718,
39,
2149,
54,
66,
33,
42,
16,
59,
46803,
14,
16,
88,
46,
24,
320,
56,
46,
88,
37,
7252,
15,
52,
89,
16762,
89,
9864,
11215,
69,
10,
22,
48,
86,
48,
855,
59,
77,
30934,
10619,
13182,
4810,
3824,
6158,
35374,
30934,
59,
77,
59,
87,
405,
6,
198,
361,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
287,
62,
79,
368,
796,
287,
62,
79,
368,
62,
429,
198,
17772,
25,
198,
220,
220,
220,
287,
62,
79,
368,
796,
287,
62,
79,
368,
62,
1930,
844,
628,
198,
4299,
1332,
62,
2539,
24874,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2240,
2539,
11,
1953,
2539,
796,
43237,
13,
8612,
378,
62,
2539,
24874,
7,
15,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
13776,
2539,
796,
23884,
1911,
18982,
7,
13776,
2539,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
13776,
2539,
8,
6624,
3933,
8,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
628,
198,
4299,
1332,
62,
12683,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
13776,
2539,
8,
6624,
3933,
8,
628,
220,
220,
220,
9877,
796,
43237,
13,
12683,
7,
259,
62,
13776,
2539,
11,
287,
62,
9288,
62,
12894,
395,
8,
220,
220,
220,
220,
1303,
10545,
107,
236,
32368,
252,
13783,
231,
1792,
237,
25748,
198,
220,
220,
220,
1303,
3601,
7203,
12683,
1300,
796,
23884,
1911,
18982,
7,
12683,
1300,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
12683,
1300,
8,
6624,
5598,
8,
628,
198,
4299,
1332,
62,
1082,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
13776,
2539,
8,
6624,
3933,
8,
628,
220,
220,
220,
4587,
796,
43237,
13,
22915,
62,
1082,
7,
259,
62,
13776,
2539,
8,
198,
220,
220,
220,
1303,
3601,
7203,
1082,
796,
23884,
1911,
18982,
7,
1082,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
1082,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
1082,
22305,
198,
220,
220,
220,
611,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
357,
11925,
7,
1082,
8,
6624,
39466,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
357,
11925,
7,
1082,
8,
6624,
19035,
8,
198,
220,
220,
220,
6818,
357,
1082,
6624,
287,
62,
1082,
8,
628,
198,
4299,
1332,
62,
6738,
62,
1082,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2240,
2539,
11,
1953,
2539,
796,
43237,
13,
1102,
1851,
62,
6738,
62,
1082,
7,
259,
62,
1082,
11,
657,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
13776,
2539,
796,
23884,
1911,
18982,
7,
13776,
2539,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
13776,
2539,
8,
6624,
3933,
8,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
198,
220,
220,
220,
6818,
357,
13776,
2539,
6624,
287,
62,
13776,
2539,
8,
198,
220,
220,
220,
6818,
357,
12984,
2539,
6624,
287,
62,
12984,
2539,
8,
628,
198,
4299,
1332,
62,
6738,
62,
1082,
17,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
4587,
796,
287,
62,
1082,
62,
1930,
844,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4587,
796,
287,
62,
1082,
62,
429,
628,
220,
220,
220,
2240,
2539,
11,
1953,
2539,
796,
43237,
13,
1102,
1851,
62,
6738,
62,
1082,
7,
1082,
11,
657,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
13776,
2539,
796,
23884,
1911,
18982,
7,
13776,
2539,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
13776,
2539,
8,
6624,
3933,
8,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
198,
220,
220,
220,
6818,
357,
13776,
2539,
6624,
287,
62,
13776,
2539,
8,
198,
220,
220,
220,
6818,
357,
12984,
2539,
6624,
287,
62,
12984,
2539,
8,
628,
198,
4299,
1332,
62,
12984,
2539,
62,
5589,
2790,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
13776,
2539,
8,
6624,
3933,
8,
628,
220,
220,
220,
2240,
2539,
796,
43237,
13,
1136,
62,
11377,
62,
2539,
62,
5589,
2790,
7,
259,
62,
13776,
2539,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
12984,
2539,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
12984,
2539,
22305,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
4747,
8,
198,
220,
220,
220,
6818,
357,
12984,
2539,
6624,
287,
62,
12984,
2539,
62,
5589,
2790,
8,
198,
198,
4299,
1332,
62,
12984,
2539,
62,
403,
5589,
2790,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
13776,
2539,
8,
6624,
3933,
8,
628,
220,
220,
220,
2240,
2539,
796,
43237,
13,
1136,
62,
11377,
62,
2539,
62,
403,
5589,
2790,
7,
259,
62,
13776,
2539,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
12984,
2539,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
12984,
2539,
22305,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
198,
220,
220,
220,
6818,
357,
12984,
2539,
6624,
287,
62,
12984,
2539,
8,
628,
198,
4299,
1332,
62,
332,
1958,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
259,
62,
12683,
1300,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
259,
62,
12683,
1300,
22305,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
12683,
1300,
8,
6624,
5598,
8,
628,
220,
220,
220,
1005,
796,
43237,
13,
332,
1958,
7,
259,
62,
12984,
2539,
11,
287,
62,
9288,
62,
12894,
395,
11,
287,
62,
12683,
1300,
8,
198,
220,
220,
220,
1303,
3601,
7203,
1186,
796,
23884,
1911,
18982,
7,
1186,
4008,
198,
220,
220,
220,
6818,
357,
1186,
1875,
657,
8,
198,
220,
220,
220,
6818,
357,
1186,
6624,
352,
8,
628,
198,
4299,
1332,
62,
332,
1958,
17,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
9877,
796,
287,
62,
12683,
1300,
62,
1930,
844,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9877,
796,
287,
62,
12683,
1300,
62,
429,
628,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
12683,
1300,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
12683,
1300,
22305,
198,
220,
220,
220,
6818,
357,
11925,
7,
12683,
1300,
8,
6624,
5598,
8,
628,
220,
220,
220,
1005,
796,
43237,
13,
332,
1958,
7,
259,
62,
12984,
2539,
11,
287,
62,
9288,
62,
12894,
395,
11,
9877,
8,
198,
220,
220,
220,
1303,
3601,
7203,
1186,
796,
23884,
1911,
18982,
7,
1186,
4008,
198,
220,
220,
220,
6818,
357,
1186,
1875,
657,
8,
198,
220,
220,
220,
6818,
357,
1186,
6624,
352,
8,
628,
198,
4299,
1332,
62,
79,
368,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
357,
11925,
7,
259,
62,
13776,
2539,
8,
6624,
3933,
8,
628,
220,
220,
220,
279,
368,
796,
43237,
13,
22915,
62,
79,
368,
7,
259,
62,
13776,
2539,
8,
198,
220,
220,
220,
1303,
3601,
7203,
79,
368,
796,
23884,
1911,
18982,
7,
79,
368,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
11925,
7,
79,
368,
8,
796,
23884,
1911,
18982,
7,
11925,
7,
79,
368,
22305,
198,
220,
220,
220,
611,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
357,
11925,
7,
79,
368,
8,
6624,
357,
43704,
1343,
352,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
7,
11925,
7,
79,
368,
8,
6624,
357,
22047,
1343,
352,
4008,
198,
220,
220,
220,
6818,
357,
79,
368,
6624,
287,
62,
79,
368,
8,
628,
198,
4299,
1332,
62,
6738,
62,
79,
368,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2240,
2539,
11,
1953,
2539,
796,
43237,
13,
1102,
1851,
62,
6738,
62,
79,
368,
7,
259,
62,
79,
368,
11,
657,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
13776,
2539,
796,
23884,
1911,
18982,
7,
13776,
2539,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
13776,
2539,
8,
6624,
3933,
8,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
198,
220,
220,
220,
6818,
357,
13776,
2539,
6624,
287,
62,
13776,
2539,
8,
198,
220,
220,
220,
6818,
7,
12984,
2539,
6624,
287,
62,
12984,
2539,
8,
628,
198,
4299,
1332,
62,
6738,
62,
79,
368,
17,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
4808,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
279,
368,
796,
287,
62,
79,
368,
62,
1930,
844,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
279,
368,
796,
287,
62,
79,
368,
62,
429,
628,
220,
220,
220,
2240,
2539,
11,
1953,
2539,
796,
43237,
13,
1102,
1851,
62,
6738,
62,
79,
368,
7,
79,
368,
11,
657,
8,
198,
220,
220,
220,
1303,
3601,
7203,
12984,
2539,
796,
23884,
1911,
18982,
7,
12984,
2539,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
13776,
2539,
796,
23884,
1911,
18982,
7,
13776,
2539,
4008,
198,
220,
220,
220,
6818,
357,
11925,
7,
13776,
2539,
8,
6624,
3933,
8,
198,
220,
220,
220,
6818,
357,
11925,
7,
12984,
2539,
8,
6624,
6135,
8,
198,
220,
220,
220,
6818,
357,
13776,
2539,
6624,
287,
62,
13776,
2539,
8,
198,
220,
220,
220,
6818,
357,
12984,
2539,
6624,
287,
62,
12984,
2539,
8,
198
] | 1.793129 | 3,988 |
__author__ = 'pruthvi kumar' | [
834,
9800,
834,
796,
705,
1050,
1071,
8903,
479,
44844,
6
] | 2.545455 | 11 |
#!/usr/bin/env python3
#
# MIT License
#
# (C) Copyright 2022 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
import ipaddress
import sys
import logging, datetime
'''
Simple script to ensure that the dhcp-range in the /etc/dnsmasq.d/{net}.conf files
are in the correct order. This error was encountered on surtur and caused problems
The location of the files is already known, as well as the file names. If that changes
this script will break. Because of the number of files in dnsmasq.d this is the only
way this check can be accomplished (Can't check all files in the directory)
Note: It's possible to get the filenames from GOSS variables, so if the names change,
which is a concern, they would only need to be changed in the variables file.
USAGE: pyTest-dhcp-reange-in-dnsmasq_d-in-correct-order.py
Goss will search the output for the word FAIL
'''
# In case we want to make this script more user-friendly and add argparse or configparser
# CRITICAL 50, ERROR 40, WARNING 30, INFO 20, DEBUG 10, NOTSET 0
l_lvl = logging.INFO
# Start the logger
logging.basicConfig(filename='/tmp/' + sys.argv[0].split('/')[-1] + '.log', level=l_lvl)
logging.info(now()+" Starting up")
fileDir = "/etc/dnsmasq.d/"
fileNames = ['CAN', 'NMN', 'HMN', 'mtl' ]
contents =[]
if __name__ == '__main__':
# Iterate over the list of filenames and try to open the file
for fileName in fileNames:
# clear the start and end strings
logging.info(now()+" Checking %s.", fileDir+fileName)
start = end = ''
try:
f = open(fileDir+fileName+".conf", 'r')
#contents = f.read().split('\n')
except:
logging.critical(now()+" Couldn't open %s.", fileDir+fileName+'.conf')
print("Unable to open file: "+fileName+".conf")
sys.exit(1)
# if the contents of the file !NULL - read the file line-by-line
# and check if the line contains 'dhcp-range'
# it's a really good bet that the format of that line will not change
line = f.readline()
while line:
logging.debug(now() + " line from %s: %s", fileName, line.strip())
# If the line continas 'dhcp-range' extract the start and end addresses
if 'dhcp-range' in line:
start = line.split(',')[1]
end = line.split(',')[2]
logging.debug("Start IP = %s, End IP = %s.", start, end)
line = f.readline()
# If we found the start IP, ensure that it is less than the end IP
if start:
# They really should be valid ip addresses, but using try/except just in case
try:
start_ip = ipaddress.ip_address(start)
end_ip = ipaddress.ip_address(end)
except:
logging.critical(now()+" Could not convert either start = %s or end = %s to IP addresses.", start, end)
print("FAIL: Conversion of strings to IP addresses failed")
sys.exit(2)
if start_ip < end_ip:
print("PASS")
else:
logging.error( now()+" The file %s failed. Start IP (%s) >= End IP (%s).", fileDir + fileName + ".conf", start, end)
print("FAIL for file:" + fileDir + fileName + ".conf")
else:
print("FAIL - no starting IP address found")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
198,
2,
17168,
13789,
198,
2,
198,
2,
357,
34,
8,
15069,
33160,
30446,
15503,
6400,
446,
14973,
7712,
18470,
198,
2,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
198,
2,
4866,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
366,
25423,
12340,
198,
2,
284,
1730,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
198,
2,
262,
2489,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
198,
2,
290,
14,
273,
3677,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
198,
2,
10442,
318,
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,
198,
2,
287,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
2,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
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,
198,
2,
3336,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
198,
2,
25401,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
198,
2,
5923,
1797,
2751,
16034,
11,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
198,
2,
25401,
5550,
1847,
20754,
3268,
3336,
47466,
13,
198,
2,
198,
11748,
20966,
21975,
198,
11748,
25064,
198,
11748,
18931,
11,
4818,
8079,
198,
198,
7061,
6,
198,
26437,
4226,
284,
4155,
326,
262,
34590,
13155,
12,
9521,
287,
262,
1220,
14784,
14,
67,
5907,
5356,
80,
13,
67,
14,
90,
3262,
27422,
10414,
3696,
198,
220,
389,
287,
262,
3376,
1502,
13,
770,
4049,
373,
12956,
319,
969,
36590,
290,
4073,
2761,
198,
464,
4067,
286,
262,
3696,
318,
1541,
1900,
11,
355,
880,
355,
262,
2393,
3891,
13,
1002,
326,
2458,
198,
220,
428,
4226,
481,
2270,
13,
4362,
286,
262,
1271,
286,
3696,
287,
288,
5907,
5356,
80,
13,
67,
428,
318,
262,
691,
198,
220,
835,
428,
2198,
460,
307,
13013,
357,
6090,
470,
2198,
477,
3696,
287,
262,
8619,
8,
198,
198,
6425,
25,
632,
338,
1744,
284,
651,
262,
1226,
268,
1047,
422,
402,
18420,
9633,
11,
523,
611,
262,
3891,
1487,
11,
198,
220,
543,
318,
257,
2328,
11,
484,
561,
691,
761,
284,
307,
3421,
287,
262,
9633,
2393,
13,
198,
198,
2937,
11879,
25,
12972,
14402,
12,
34985,
13155,
12,
260,
858,
12,
259,
12,
67,
5907,
5356,
80,
62,
67,
12,
259,
12,
30283,
12,
2875,
13,
9078,
198,
38,
793,
481,
2989,
262,
5072,
329,
262,
1573,
9677,
4146,
198,
198,
7061,
6,
198,
198,
2,
554,
1339,
356,
765,
284,
787,
428,
4226,
517,
2836,
12,
13120,
290,
751,
1822,
29572,
393,
4566,
48610,
198,
2,
8740,
2043,
20151,
2026,
11,
33854,
2319,
11,
39410,
1542,
11,
24890,
1160,
11,
16959,
838,
11,
5626,
28480,
657,
198,
75,
62,
47147,
796,
18931,
13,
10778,
198,
2,
7253,
262,
49706,
198,
6404,
2667,
13,
35487,
16934,
7,
34345,
11639,
14,
22065,
14,
6,
1343,
25064,
13,
853,
85,
58,
15,
4083,
35312,
10786,
14,
11537,
58,
12,
16,
60,
1343,
45302,
6404,
3256,
220,
1241,
28,
75,
62,
47147,
8,
198,
6404,
2667,
13,
10951,
7,
2197,
3419,
10,
1,
17962,
510,
4943,
198,
198,
7753,
35277,
796,
12813,
14784,
14,
67,
5907,
5356,
80,
13,
67,
30487,
198,
7753,
36690,
796,
37250,
44565,
3256,
705,
32755,
45,
3256,
705,
36905,
45,
3256,
705,
16762,
75,
6,
2361,
198,
3642,
658,
796,
21737,
220,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
40806,
378,
625,
262,
1351,
286,
1226,
268,
1047,
290,
1949,
284,
1280,
262,
2393,
198,
220,
220,
220,
329,
2393,
5376,
287,
2393,
36690,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1598,
262,
923,
290,
886,
13042,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
7,
2197,
3419,
10,
1,
39432,
4064,
82,
33283,
2393,
35277,
10,
7753,
5376,
8,
198,
220,
220,
220,
220,
220,
220,
220,
923,
796,
886,
796,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
796,
1280,
7,
7753,
35277,
10,
7753,
5376,
10,
1911,
10414,
1600,
705,
81,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3642,
658,
796,
277,
13,
961,
22446,
35312,
10786,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
34666,
7,
2197,
3419,
10,
1,
10347,
77,
470,
1280,
4064,
82,
33283,
2393,
35277,
10,
7753,
5376,
10,
4458,
10414,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
3118,
540,
284,
1280,
2393,
25,
43825,
7753,
5376,
10,
1911,
10414,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
262,
10154,
286,
262,
2393,
5145,
33991,
532,
1100,
262,
2393,
1627,
12,
1525,
12,
1370,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
2198,
611,
262,
1627,
4909,
705,
34985,
13155,
12,
9521,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
340,
338,
257,
1107,
922,
731,
326,
262,
5794,
286,
326,
1627,
481,
407,
1487,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
277,
13,
961,
1370,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
981,
1627,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
24442,
7,
2197,
3419,
1343,
366,
1627,
422,
4064,
82,
25,
4064,
82,
1600,
2393,
5376,
11,
1627,
13,
36311,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
262,
1627,
1261,
292,
705,
34985,
13155,
12,
9521,
6,
7925,
262,
923,
290,
886,
9405,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
34985,
13155,
12,
9521,
6,
287,
1627,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
796,
1627,
13,
35312,
7,
3256,
11537,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
796,
1627,
13,
35312,
7,
3256,
11537,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
24442,
7203,
10434,
6101,
796,
4064,
82,
11,
5268,
6101,
796,
4064,
82,
33283,
923,
11,
886,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
277,
13,
961,
1370,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
356,
1043,
262,
923,
6101,
11,
4155,
326,
340,
318,
1342,
621,
262,
886,
6101,
198,
220,
220,
220,
220,
220,
220,
220,
611,
923,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1119,
1107,
815,
307,
4938,
20966,
9405,
11,
475,
1262,
1949,
14,
16341,
655,
287,
1339,
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,
923,
62,
541,
796,
20966,
21975,
13,
541,
62,
21975,
7,
9688,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
541,
796,
20966,
21975,
13,
541,
62,
21975,
7,
437,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
34666,
7,
2197,
3419,
10,
1,
10347,
407,
10385,
2035,
923,
796,
4064,
82,
393,
886,
796,
4064,
82,
284,
6101,
9405,
33283,
923,
11,
886,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7708,
4146,
25,
44101,
286,
13042,
284,
6101,
9405,
4054,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
923,
62,
541,
1279,
886,
62,
541,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
47924,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
18224,
7,
783,
3419,
10,
1,
383,
2393,
4064,
82,
4054,
13,
7253,
6101,
37633,
82,
8,
18189,
5268,
6101,
37633,
82,
21387,
11,
2393,
35277,
1343,
2393,
5376,
1343,
27071,
10414,
1600,
923,
11,
886,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7708,
4146,
329,
2393,
11097,
1343,
2393,
35277,
1343,
2393,
5376,
1343,
27071,
10414,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7708,
4146,
532,
645,
3599,
6101,
2209,
1043,
4943,
198
] | 2.695679 | 1,643 |
from lingrex.copar import CoPaR, density
assert CoPaR and density
__version__ = "1.1.2.dev0"
| [
6738,
18459,
21510,
13,
22163,
283,
1330,
1766,
28875,
49,
11,
12109,
198,
198,
30493,
1766,
28875,
49,
290,
12109,
198,
834,
9641,
834,
796,
366,
16,
13,
16,
13,
17,
13,
7959,
15,
1,
198
] | 2.611111 | 36 |
import os
import numpy as np
from spherecluster import VonMisesFisherMixture, sample_vMF
np.random.seed(1234)
| [
11748,
28686,
198,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
16558,
565,
5819,
1330,
26985,
44,
2696,
37,
4828,
44,
9602,
11,
6291,
62,
85,
49800,
198,
198,
37659,
13,
25120,
13,
28826,
7,
1065,
2682,
8,
628,
628,
198
] | 2.829268 | 41 |
import shutil
import tempfile
import unittest
import queuelib
from scrapy.squeues import (
PickleFifoDiskQueue,
PickleLifoDiskQueue,
MarshalFifoDiskQueue,
MarshalLifoDiskQueue,
FifoMemoryQueue,
LifoMemoryQueue,
)
from scrapy.http import Request
from scrapy.spiders import Spider
from scrapy.utils.test import get_crawler
"""
Queues that handle requests
"""
| [
11748,
4423,
346,
198,
11748,
20218,
7753,
198,
11748,
555,
715,
395,
198,
198,
11748,
8358,
2731,
571,
198,
198,
6738,
15881,
88,
13,
82,
4188,
947,
1330,
357,
198,
220,
220,
220,
12346,
293,
44403,
78,
40961,
34991,
11,
198,
220,
220,
220,
12346,
293,
43,
361,
78,
40961,
34991,
11,
198,
220,
220,
220,
37899,
44403,
78,
40961,
34991,
11,
198,
220,
220,
220,
37899,
43,
361,
78,
40961,
34991,
11,
198,
220,
220,
220,
12830,
78,
30871,
34991,
11,
198,
220,
220,
220,
21073,
78,
30871,
34991,
11,
198,
8,
198,
6738,
15881,
88,
13,
4023,
1330,
19390,
198,
6738,
15881,
88,
13,
2777,
4157,
1330,
12648,
198,
6738,
15881,
88,
13,
26791,
13,
9288,
1330,
651,
62,
66,
39464,
628,
198,
37811,
198,
15681,
947,
326,
5412,
7007,
198,
37811,
628,
628,
628,
628,
628,
198
] | 2.821429 | 140 |
# -*- coding: utf-8 -*-
__author__ = 'Ramiro Gómez'
__email__ = '[email protected]'
__version__ = '5.0.0'
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
834,
9800,
834,
796,
705,
49,
6277,
305,
402,
10205,
1326,
89,
6,
198,
834,
12888,
834,
796,
705,
8189,
31,
859,
7058,
13,
2398,
6,
198,
834,
9641,
834,
796,
705,
20,
13,
15,
13,
15,
6,
198
] | 1.962264 | 53 |
import bteve as eve
gd = eve.Gameduino()
gd.init()
import pong
import fruit
import temperature
demos = (pong, fruit, temperature)
# demos[0].run(gd)
sel = 0
prev_touch = False
while True:
gd.finish()
c = gd.controllers()[0]
if not prev_touch:
if c['bdu']:
sel = (sel - 1)
if c['bdd']:
sel = (sel + 1)
sel %= len(demos)
prev_touch = any(c[b] for b in ['bdu', 'bdd'])
if c['ba']:
demos[sel].run(gd)
gd.cmd_romfont(30, 30)
gd.cmd_romfont(31, 31)
gd.Clear()
gd.cmd_text(640, 60, 31, eve.OPT_CENTER, "CircuitPython demos")
gd.cmd_text(640, 640, 30, eve.OPT_CENTER, "Press A to launch, HOME to return to this menu")
for i,d in enumerate(demos):
y = 180 + 120 * i
if i == sel:
gd.cmd_fgcolor(0xa06000)
else:
gd.cmd_fgcolor(0x003030)
gd.cmd_button(320, y, 640, 100, 31, eve.OPT_FLAT, d.__name__)
gd.swap()
| [
11748,
275,
660,
303,
355,
28001,
198,
198,
21287,
796,
28001,
13,
38,
2434,
84,
2879,
3419,
198,
21287,
13,
15003,
3419,
198,
198,
11748,
279,
506,
198,
11748,
8234,
198,
11748,
5951,
198,
198,
9536,
418,
796,
357,
79,
506,
11,
8234,
11,
5951,
8,
198,
2,
35551,
58,
15,
4083,
5143,
7,
21287,
8,
198,
741,
796,
657,
198,
47050,
62,
29332,
796,
10352,
198,
4514,
6407,
25,
198,
220,
220,
220,
308,
67,
13,
15643,
680,
3419,
198,
220,
220,
220,
269,
796,
308,
67,
13,
3642,
36667,
3419,
58,
15,
60,
198,
220,
220,
220,
611,
407,
8654,
62,
29332,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
269,
17816,
65,
646,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
75,
796,
357,
741,
532,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
269,
17816,
65,
1860,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
75,
796,
357,
741,
1343,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
384,
75,
4064,
28,
18896,
7,
9536,
418,
8,
198,
220,
220,
220,
8654,
62,
29332,
796,
597,
7,
66,
58,
65,
60,
329,
275,
287,
37250,
65,
646,
3256,
705,
65,
1860,
6,
12962,
628,
220,
220,
220,
611,
269,
17816,
7012,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
35551,
58,
741,
4083,
5143,
7,
21287,
8,
628,
220,
220,
220,
308,
67,
13,
28758,
62,
398,
10331,
7,
1270,
11,
1542,
8,
198,
220,
220,
220,
308,
67,
13,
28758,
62,
398,
10331,
7,
3132,
11,
3261,
8,
198,
220,
220,
220,
308,
67,
13,
19856,
3419,
628,
220,
220,
220,
308,
67,
13,
28758,
62,
5239,
7,
31102,
11,
220,
3126,
11,
3261,
11,
28001,
13,
3185,
51,
62,
43960,
1137,
11,
366,
31560,
5013,
37906,
35551,
4943,
198,
220,
220,
220,
308,
67,
13,
28758,
62,
5239,
7,
31102,
11,
33759,
11,
1542,
11,
28001,
13,
3185,
51,
62,
43960,
1137,
11,
366,
13800,
317,
284,
4219,
11,
41779,
284,
1441,
284,
428,
6859,
4943,
198,
220,
220,
220,
329,
1312,
11,
67,
287,
27056,
378,
7,
9536,
418,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
11546,
1343,
7982,
1635,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
6624,
384,
75,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
67,
13,
28758,
62,
40616,
8043,
7,
15,
27865,
3312,
830,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
67,
13,
28758,
62,
40616,
8043,
7,
15,
87,
405,
1270,
1270,
8,
198,
220,
220,
220,
220,
220,
220,
220,
308,
67,
13,
28758,
62,
16539,
7,
19504,
11,
331,
11,
33759,
11,
1802,
11,
3261,
11,
28001,
13,
3185,
51,
62,
3697,
1404,
11,
288,
13,
834,
3672,
834,
8,
628,
220,
220,
220,
308,
67,
13,
2032,
499,
3419,
198
] | 1.894118 | 510 |
#!/usr/bin/env python
import pyDNase, pyDNase.footprinting
import numpy as np
from clint.textui import progress
import multiprocessing as mp
import argparse
__version__ = "0.1.0"
parser = argparse.ArgumentParser(description='Scores Differential Footprints using Wellington-Bootstrap.')
parser.add_argument("-fp", "--footprint-sizes",
help="Range of footprint sizes to try in format \"from,to,step\" (default: 11,26,2)",
default="11,26,2",
type=str)
parser.add_argument("-fdr","--FDR_cutoff",
help="Detect footprints using the FDR selection method at a specific FDR (default: 0.01)",
default=0.01,
type=float)
parser.add_argument("-fdriter", "--FDR_iterations",
help="How many randomisations to use when performing FDR calculations (default: 100)",
default=100,
type=int)
parser.add_argument("-fdrlimit", "--FDR_limit",
help="Minimum p-value to be considered significant for FDR calculation (default: -20)",
default=-20,
type=int)
parser.add_argument("-p", "--processes", help="Number of processes to use (default: uses all CPUs)",
default=0,
type=int)
parser.add_argument("-A", action="store_true", help="ATAC-seq mode (default: False)", default=False)
parser.add_argument("treatment_bam", help="BAM file for treatment")
parser.add_argument("control_bam", help="BAM file for control")
parser.add_argument("bedsites", help="BED file of genomic locations to search in")
parser.add_argument("treatment_only_output", help="File to write treatment specific fooprints scores to")
parser.add_argument("control_only_output", help="File to write control specific footprint scores to")
args = parser.parse_args()
# Sanity check parameters from the user
try:
args.footprint_sizes = xrange_from_string(args.footprint_sizes)
except ValueError:
raise RuntimeError("Footprint sizes must be supplied as from,to,step")
assert 0 < args.FDR_cutoff < 1, "FDR must be between 0 and 1"
assert args.FDR_limit <= 0, "FDR limit must be less than or equal to 0 (to disable)"
# Treatment
reads2 = pyDNase.BAMHandler(args.treatment_bam, caching=0, ATAC=args.A)
# Control
reads1 = pyDNase.BAMHandler(args.control_bam, caching=0, ATAC=args.A)
# Regions of Interest
regions = pyDNase.GenomicIntervalSet(args.bedsites)
# Output
treatment_output = open(args.treatment_only_output, "w", buffering=1)
control_output = open(args.control_only_output, "w", buffering=1)
# Determine Number of CPUs to use
if args.processes:
CPUs = args.processes
else:
CPUs = mp.cpu_count()
# NOTE: This roughly scales at about 450mb per 300 regions held in memory
max_regions_cached_in_memory = 50 * CPUs
p = mp.Pool(CPUs)
print("Performing differential footprinting...")
for i in progress.bar(regions):
# Make sure the interval is actually big enough to footprint to begin with
if len(i) < 120:
i.startbp -= 60
i.endbp += 60
# Make the optional arguments
fp_args = {'footprint_sizes': args.footprint_sizes, 'FDR_cutoff': args.FDR_cutoff, 'FDR_iterations': args.FDR_iterations}
# Perform both comparisons - A against B and B against A
fp = Diffwell(reads2=reads1, min_score=args.FDR_limit, interval=i, reads=reads2, **fp_args)
fp2 = Diffwell(reads2=reads2, min_score=args.FDR_limit, interval=i, reads=reads1, **fp_args)
# Push these tasks to the queue
p.apply_async(fp, callback=write_treat_to_disk)
p.apply_async(fp2, callback=write_control_to_disk)
# Hold here while the queue is bigger than the number of reads we're happy to store in memory
while p._taskqueue.qsize() > max_regions_cached_in_memory:
pass
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
11748,
12972,
35504,
589,
11,
12972,
35504,
589,
13,
5898,
4798,
278,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
537,
600,
13,
5239,
9019,
1330,
4371,
198,
11748,
18540,
305,
919,
278,
355,
29034,
198,
11748,
1822,
29572,
198,
198,
834,
9641,
834,
796,
366,
15,
13,
16,
13,
15,
1,
628,
628,
628,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
3351,
2850,
20615,
498,
7870,
17190,
1262,
30597,
12,
36476,
26418,
2637,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
46428,
1600,
366,
438,
5898,
4798,
12,
82,
4340,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
17257,
286,
24713,
10620,
284,
1949,
287,
5794,
19990,
6738,
11,
1462,
11,
9662,
7879,
357,
12286,
25,
1367,
11,
2075,
11,
17,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
2625,
1157,
11,
2075,
11,
17,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
69,
7109,
2430,
438,
37,
7707,
62,
8968,
2364,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
47504,
48012,
1262,
262,
47700,
6356,
2446,
379,
257,
2176,
47700,
357,
12286,
25,
657,
13,
486,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
15,
13,
486,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
22468,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
16344,
43407,
1600,
366,
438,
37,
7707,
62,
2676,
602,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
2437,
867,
4738,
38189,
284,
779,
618,
9489,
47700,
16765,
357,
12286,
25,
1802,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
3064,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
69,
7109,
32374,
1600,
366,
438,
37,
7707,
62,
32374,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
44046,
279,
12,
8367,
284,
307,
3177,
2383,
329,
47700,
17952,
357,
12286,
25,
532,
1238,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
10779,
1238,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
79,
1600,
366,
438,
14681,
274,
1600,
1037,
2625,
15057,
286,
7767,
284,
779,
357,
12286,
25,
3544,
477,
32340,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
12,
32,
1600,
2223,
2625,
8095,
62,
7942,
1600,
1037,
2625,
1404,
2246,
12,
41068,
4235,
357,
12286,
25,
10352,
42501,
4277,
28,
25101,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
42487,
62,
65,
321,
1600,
1037,
2625,
33,
2390,
2393,
329,
3513,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
13716,
62,
65,
321,
1600,
1037,
2625,
33,
2390,
2393,
329,
1630,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
3077,
49315,
1600,
1037,
2625,
33,
1961,
2393,
286,
45752,
7064,
284,
2989,
287,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
42487,
62,
8807,
62,
22915,
1600,
1037,
2625,
8979,
284,
3551,
3513,
2176,
277,
11224,
22272,
82,
8198,
284,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
13716,
62,
8807,
62,
22915,
1600,
1037,
2625,
8979,
284,
3551,
1630,
2176,
24713,
8198,
284,
4943,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
2,
2986,
414,
2198,
10007,
422,
262,
2836,
198,
198,
28311,
25,
198,
220,
220,
220,
26498,
13,
5898,
4798,
62,
82,
4340,
796,
2124,
9521,
62,
6738,
62,
8841,
7,
22046,
13,
5898,
4798,
62,
82,
4340,
8,
198,
16341,
11052,
12331,
25,
198,
220,
220,
220,
5298,
43160,
12331,
7203,
17574,
4798,
10620,
1276,
307,
14275,
355,
422,
11,
1462,
11,
9662,
4943,
198,
198,
30493,
657,
1279,
26498,
13,
37,
7707,
62,
8968,
2364,
1279,
352,
11,
366,
37,
7707,
1276,
307,
1022,
657,
290,
352,
1,
198,
30493,
26498,
13,
37,
7707,
62,
32374,
19841,
657,
11,
366,
37,
7707,
4179,
1276,
307,
1342,
621,
393,
4961,
284,
657,
357,
1462,
15560,
16725,
198,
198,
2,
21415,
198,
40779,
17,
796,
12972,
35504,
589,
13,
33,
2390,
25060,
7,
22046,
13,
42487,
62,
65,
321,
11,
40918,
28,
15,
11,
5161,
2246,
28,
22046,
13,
32,
8,
198,
2,
6779,
198,
40779,
16,
796,
12972,
35504,
589,
13,
33,
2390,
25060,
7,
22046,
13,
13716,
62,
65,
321,
11,
40918,
28,
15,
11,
5161,
2246,
28,
22046,
13,
32,
8,
198,
2,
47089,
286,
12033,
198,
2301,
507,
796,
12972,
35504,
589,
13,
13746,
10179,
9492,
2100,
7248,
7,
22046,
13,
3077,
49315,
8,
198,
2,
25235,
198,
42487,
62,
22915,
796,
1280,
7,
22046,
13,
42487,
62,
8807,
62,
22915,
11,
366,
86,
1600,
6940,
1586,
28,
16,
8,
198,
13716,
62,
22915,
220,
220,
796,
1280,
7,
22046,
13,
13716,
62,
8807,
62,
22915,
11,
366,
86,
1600,
6940,
1586,
28,
16,
8,
198,
198,
2,
45559,
3810,
7913,
286,
32340,
284,
779,
198,
361,
26498,
13,
14681,
274,
25,
198,
220,
220,
220,
32340,
796,
26498,
13,
14681,
274,
198,
17772,
25,
198,
220,
220,
220,
32340,
796,
29034,
13,
36166,
62,
9127,
3419,
198,
2,
24550,
25,
770,
7323,
16252,
379,
546,
18523,
2022,
583,
5867,
7652,
2714,
287,
4088,
198,
9806,
62,
2301,
507,
62,
66,
2317,
62,
259,
62,
31673,
796,
2026,
1635,
32340,
198,
79,
796,
29034,
13,
27201,
7,
36037,
82,
8,
198,
198,
4798,
7203,
5990,
15464,
22577,
24713,
278,
9313,
8,
198,
198,
1640,
1312,
287,
4371,
13,
5657,
7,
2301,
507,
2599,
198,
220,
220,
220,
1303,
6889,
1654,
262,
16654,
318,
1682,
1263,
1576,
284,
24713,
284,
2221,
351,
198,
220,
220,
220,
611,
18896,
7,
72,
8,
1279,
7982,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
13,
9688,
46583,
48185,
3126,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
13,
437,
46583,
15853,
3126,
198,
220,
220,
220,
1303,
6889,
262,
11902,
7159,
198,
220,
220,
220,
277,
79,
62,
22046,
796,
1391,
6,
5898,
4798,
62,
82,
4340,
10354,
26498,
13,
5898,
4798,
62,
82,
4340,
11,
705,
37,
7707,
62,
8968,
2364,
10354,
26498,
13,
37,
7707,
62,
8968,
2364,
11,
705,
37,
7707,
62,
2676,
602,
10354,
26498,
13,
37,
7707,
62,
2676,
602,
92,
198,
220,
220,
220,
1303,
35006,
1111,
17909,
532,
317,
1028,
347,
290,
347,
1028,
317,
198,
220,
220,
220,
277,
79,
796,
10631,
4053,
7,
40779,
17,
28,
40779,
16,
11,
949,
62,
26675,
28,
22046,
13,
37,
7707,
62,
32374,
11,
16654,
28,
72,
11,
9743,
28,
40779,
17,
11,
12429,
46428,
62,
22046,
8,
198,
220,
220,
220,
277,
79,
17,
796,
10631,
4053,
7,
40779,
17,
28,
40779,
17,
11,
949,
62,
26675,
28,
22046,
13,
37,
7707,
62,
32374,
11,
16654,
28,
72,
11,
9743,
28,
40779,
16,
11,
12429,
46428,
62,
22046,
8,
198,
220,
220,
220,
1303,
23691,
777,
8861,
284,
262,
16834,
198,
220,
220,
220,
279,
13,
39014,
62,
292,
13361,
7,
46428,
11,
23838,
28,
13564,
62,
83,
630,
62,
1462,
62,
39531,
8,
198,
220,
220,
220,
279,
13,
39014,
62,
292,
13361,
7,
46428,
17,
11,
23838,
28,
13564,
62,
13716,
62,
1462,
62,
39531,
8,
198,
220,
220,
220,
1303,
9340,
994,
981,
262,
16834,
318,
5749,
621,
262,
1271,
286,
9743,
356,
821,
3772,
284,
3650,
287,
4088,
198,
220,
220,
220,
981,
279,
13557,
35943,
36560,
13,
80,
7857,
3419,
1875,
3509,
62,
2301,
507,
62,
66,
2317,
62,
259,
62,
31673,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
198
] | 2.623377 | 1,463 |
ms1 = MyShow()
ms1.showName() | [
201,
198,
201,
198,
201,
198,
201,
198,
907,
16,
796,
2011,
15307,
3419,
201,
198,
907,
16,
13,
12860,
5376,
3419
] | 1.727273 | 22 |
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import BoundaryNorm
from matplotlib.ticker import MaxNLocator
from matplotlib import ticker, cm
from playground.laiZhaoGui.goa.get_lai_manual_fitting_res import read_lai_manual_fitting_res, read_lai_test_coordinate, pack_lai_manual_fitting_res, wrap_lai_data_4_contour
from playground.laiZhaoGui.goa.get_GOAs_fitting_res import get_GOAs_best_fitting_res, pack_GOAs_fit_res, wrap_GOAs_data_4_contour
def two_vertical_contour_0(x1_list, y1_list, z1_list, x2_list, y2_list, z2_list):
"""
Function:
我用各种ECM上最优的前五种GOA拟合的Chi-Squared误差,与赖拟合的误差,分别画在上下两个等高图上
Requirement:
1- 各自 或 一起 拥有colorbar
2- colorbar 上的刻度是对数分布的
3- the range of x-axis is: 0 ~ 17 mm; the range of y-axis is: 0 ~ 2 mm.
:return:
"""
"""
Lai
Z: Min Max
0.0004402 0.04055
GOA
Z: Min Max(1st, too big and weird, delete it) Max(2nd, better and normal) Max(3rd)
0.0033192209598534358 13891082844.471136 54.41158700914487 27.29493804319961
1- Delete the huge abnormal data in z2_list (GOAs' R(RC)_IS_lin-kk_res.txt), (x=1.3,y=0.458,z=13891082844.471136,fn=2-3,ECM-Num=9)
2- Set the value range of colorbar as 1e-4 ~ 1e2, 6 margins
"""
# 将z_min ~ z_max等分成15份,每个数值区间用一个颜色表示
# z_min = min(min(z1_list), min(z2_list))
# z_max = max(max(z1_list), max(z2_list))
# print(z_min, z_max)
# levels = MaxNLocator(nbins=15).tick_values(z.min(), z.max())
# 1- Delete the huge abnormal data in z2_list (GOAs' R(RC)_IS_lin-kk_res.txt), (x=1.3,y=0.458,z=13891082844.471136,fn=2-3,ECM-Num=9)
abnormal_index = z2_list.index(max(z2_list))
del x2_list[abnormal_index]
del y2_list[abnormal_index]
del z2_list[abnormal_index]
"""
The data format of x, y and z has to be 2D np.array
laiZhaoGui has 125(Odd) pieces of data, in order to transfer them into 2D np.array, remove the last data(can not randomly add one piece of data).
So laiZhaoGui's data will be 124 ==> 62, 2
Goa has 126(even) pieces of data, in order to transfer them into 2D np.array.
So Goa's data will be 126 ==> 63, 2
"""
# x,y的数值要按照逐渐变大或变小的规律有序排列,不然图像会乱
xyz1_list = [[x,y,z] for x,y,z in zip(x1_list, y1_list, z1_list)]
# sort by y, then sort by x
xyz1_list.sort(key=lambda xyz:(xyz[1], xyz[0]), reverse=False)
x1_sorted_list = [xyz[0] for xyz in xyz1_list]
y1_sorted_list = [xyz[1] for xyz in xyz1_list]
z1_sorted_list = [xyz[2] for xyz in xyz1_list]
x1_2D_arr = np.array(x1_sorted_list[:len(x1_sorted_list)-1]).reshape((62, 2))
y1_2D_arr = np.array(y1_sorted_list[:len(y1_sorted_list)-1]).reshape((62, 2))
z1_2D_arr = np.array(z1_sorted_list[:len(z1_sorted_list)-1]).reshape((62, 2))
# x1_2D_arr = np.array(x1_list[:len(x1_list)-1]).reshape((62, 2))
# y1_2D_arr = np.array(y1_list[:len(y1_list)-1]).reshape((62, 2))
# z1_2D_arr = np.array(z1_list[:len(z1_list)-1]).reshape((62, 2))
xyz2_list = [[x,y,z] for x,y,z in zip(x2_list, y2_list, z2_list)]
xyz2_list.sort(key=lambda xyz:(xyz[1], xyz[0]), reverse=False)
x2_sorted_list = [xyz[0] for xyz in xyz2_list]
y2_sorted_list = [xyz[1] for xyz in xyz2_list]
z2_sorted_list = [xyz[2] for xyz in xyz2_list]
x2_2D_arr = np.array(x2_sorted_list).reshape((63, 2))
y2_2D_arr = np.array(y2_sorted_list).reshape((63, 2))
z2_2D_arr = np.array(z2_sorted_list).reshape((63, 2))
# x2_2D_arr = np.array(x2_list).reshape((63, 2))
# y2_2D_arr = np.array(y2_list).reshape((63, 2))
# z2_2D_arr = np.array(z2_list).reshape((63, 2))
# 将z_min ~ z_max等分成6份,每个数值区间用一个颜色表示
level_arr = np.array([10 ** i for i in range(-4, 3)])
# pick the desired colormap, sensible levels, and define a normalization
# instance which takes data values and translates those into levels.
# cmap = plt.get_cmap('PiYG')
cmap = plt.get_cmap('viridis')
norm = BoundaryNorm(level_arr, ncolors=cmap.N, clip=True)
fig, (ax1, ax2) = plt.subplots(nrows=2)
fig.suptitle('Title of two subplots')
# contours are *point* based plots, so convert our bound into point
# centers
# cf1 = ax1.contourf(x1_list, y1_list, z1_list, levels=level_arr, cmap=cmap)
# setting the log locator tells contourf to use a log scale:
# cf1 = ax1.contourf(x1_2D_arr, y1_2D_arr, z1_2D_arr, locator=ticker.LogLocator(), levels=level_arr, cmap=cmap)
# fig.colorbar(cf1, ax=ax1)
# ax1.set_title('1 Lai R(RC)_IS_lin-kk_res.txt')
# im = ax1.pcolormesh(x, y, z, cmap=cmap, norm=norm)
im = ax1.pcolormesh(x1_2D_arr, y1_2D_arr, z1_2D_arr, cmap=cmap, norm=norm)
fig.colorbar(im, ax=ax1)
ax1.set_title('pcolormesh with levels')
# cf2 = ax2.contourf(x2_list, y2_list, z2_list, levels=level_arr, cmap=cmap)
cf2 = ax2.contourf(x2_2D_arr, y2_2D_arr, z2_2D_arr, locator=ticker.LogLocator(), levels=level_arr, cmap=cmap)
fig.colorbar(cf2, ax=ax2)
# ax2.xlim(0,20) # AttributeError: 'AxesSubplot' object has no attribute 'xlim'
ax2.set_title('2 GOA R(RC)_IS_lin-kk_res.txt')
# ax1.plot(x1, y1, 'o-')
# ax1.set_ylabel('Damped oscillation')
# ax2.plot(x2, y2, '.-')
# ax2.set_xlabel('time (s)')
# ax2.set_ylabel('Undamped')
plt.xlim(0, 17)
plt.ylim(0, 2)
plt.show()
# 1- Get Lai's manual fitting R(RC)_IS_lin-kk_res.txt and GOAs R(RC)_IS_lin-kk_res.txt
# 1.1- Get Lai's manual fitting R(RC)_IS_lin-kk_res.txt
lai_manual_fit_res_dict_list = read_lai_manual_fitting_res(ex_fp='../../../datasets/experiement_data/laiZhaoGui/eis/2020-07-22-阻抗类型整理2006.xlsx',\
sheet_name='statistic')
coor_dict_list = read_lai_test_coordinate(ex_fp='../../../datasets/experiement_data/laiZhaoGui/eis/坐标.xlsx',\
sheet_name='Sheet1')
lai_manual_fit_res_dict_list = pack_lai_manual_fitting_res(lai_manual_fit_res_dict_list,\
coor_dict_list)
lai_x_list, lai_y_list, lai_z_list = wrap_lai_data_4_contour(lai_manual_fit_res_dict_list)
# 1.2- Get GOAs R(RC)_IS_lin-kk_res.txt
goa_fit_res_dict_list = get_GOAs_best_fitting_res(fp='../../playground/laiZhaoGui/goa/R(RC)_IS_lin-kk_res.txt/magNum=2_res')
goa_fit_res_dict_list = pack_GOAs_fit_res(goa_fit_res_dict_list, coor_dict_list)
goa_x_list, goa_y_list, goa_z_list = wrap_GOAs_data_4_contour(goa_fit_res_dict_list)
# 2- Plot contour
two_vertical_contour_0(x1_list=lai_x_list, y1_list=lai_y_list, z1_list=lai_z_list,\
x2_list=goa_x_list, y2_list=goa_y_list, z2_list=goa_z_list)
"""
我认为失败的原因
1- python 的contourf 要求横纵坐标都是网格状的二维数组,但是我的实际数据(测试点的坐标)不是每行元素个数一致,创建二维数组就意味着,有些位置
上的数字是瞎编的,没有意义,如果填写0,反而意味着拟合的效果非常好,这是错的
2- 之前工作(三元合金)的contour就是用origin画的,应该是可行的
""" | [
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2603,
29487,
8019,
13,
4033,
669,
1330,
30149,
560,
35393,
198,
6738,
2603,
29487,
8019,
13,
83,
15799,
1330,
5436,
32572,
420,
1352,
198,
6738,
2603,
29487,
8019,
1330,
4378,
263,
11,
12067,
198,
198,
6738,
24817,
13,
75,
1872,
57,
23778,
8205,
72,
13,
2188,
64,
13,
1136,
62,
75,
1872,
62,
805,
723,
62,
32232,
62,
411,
1330,
1100,
62,
75,
1872,
62,
805,
723,
62,
32232,
62,
411,
11,
1100,
62,
75,
1872,
62,
9288,
62,
37652,
4559,
11,
2353,
62,
75,
1872,
62,
805,
723,
62,
32232,
62,
411,
11,
14441,
62,
75,
1872,
62,
7890,
62,
19,
62,
3642,
454,
198,
6738,
24817,
13,
75,
1872,
57,
23778,
8205,
72,
13,
2188,
64,
13,
1136,
62,
11230,
1722,
62,
32232,
62,
411,
1330,
651,
62,
11230,
1722,
62,
13466,
62,
32232,
62,
411,
11,
2353,
62,
11230,
1722,
62,
11147,
62,
411,
11,
14441,
62,
11230,
1722,
62,
7890,
62,
19,
62,
3642,
454,
198,
198,
4299,
734,
62,
1851,
605,
62,
3642,
454,
62,
15,
7,
87,
16,
62,
4868,
11,
331,
16,
62,
4868,
11,
1976,
16,
62,
4868,
11,
2124,
17,
62,
4868,
11,
331,
17,
62,
4868,
11,
1976,
17,
62,
4868,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
15553,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10545,
230,
239,
18796,
101,
28938,
226,
163,
100,
235,
2943,
44,
41468,
17312,
222,
27670,
246,
21410,
30298,
235,
49390,
163,
100,
235,
11230,
32,
162,
233,
253,
28938,
230,
21410,
1925,
72,
12,
22266,
1144,
46237,
107,
32432,
106,
171,
120,
234,
10310,
236,
164,
113,
244,
162,
233,
253,
28938,
230,
21410,
46237,
107,
32432,
106,
171,
120,
234,
26344,
228,
26344,
104,
18796,
119,
28839,
101,
41468,
10310,
233,
10310,
97,
10310,
103,
163,
255,
231,
165,
45865,
32368,
122,
41468,
198,
220,
220,
220,
9394,
24615,
171,
120,
248,
198,
220,
220,
220,
220,
220,
220,
220,
352,
12,
10263,
238,
226,
164,
229,
103,
10545,
230,
244,
220,
31660,
164,
113,
115,
10545,
233,
98,
17312,
231,
8043,
5657,
198,
220,
220,
220,
220,
220,
220,
220,
362,
12,
3124,
5657,
220,
41468,
21410,
26344,
119,
41753,
99,
42468,
43380,
117,
46763,
108,
26344,
228,
30585,
225,
21410,
198,
220,
220,
220,
220,
220,
220,
220,
513,
12,
262,
2837,
286,
2124,
12,
22704,
318,
25,
657,
5299,
1596,
8085,
26,
262,
2837,
286,
331,
12,
22704,
318,
25,
657,
5299,
362,
8085,
13,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
406,
1872,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
25,
1855,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5436,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
657,
13,
830,
25644,
17,
220,
220,
220,
220,
220,
220,
657,
13,
36676,
2816,
198,
220,
220,
220,
10351,
32,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
25,
1855,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5436,
7,
16,
301,
11,
1165,
1263,
290,
7650,
11,
12233,
340,
8,
220,
220,
220,
220,
220,
220,
220,
220,
5436,
7,
17,
358,
11,
1365,
290,
3487,
8,
220,
220,
220,
220,
220,
220,
220,
220,
5436,
7,
18,
4372,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
657,
13,
405,
2091,
17477,
22567,
3270,
5332,
2682,
31128,
220,
220,
220,
220,
220,
220,
1511,
4531,
15711,
2078,
2598,
13,
2857,
1157,
2623,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7175,
13,
42224,
3365,
9879,
24,
1415,
35133,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2681,
13,
1959,
2920,
23734,
3559,
22288,
16,
198,
220,
220,
220,
352,
12,
23520,
262,
3236,
18801,
1366,
287,
1976,
17,
62,
4868,
357,
11230,
1722,
6,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
828,
357,
87,
28,
16,
13,
18,
11,
88,
28,
15,
13,
29334,
11,
89,
28,
1485,
4531,
15711,
2078,
2598,
13,
2857,
1157,
2623,
11,
22184,
28,
17,
12,
18,
11,
2943,
44,
12,
33111,
28,
24,
8,
198,
220,
220,
220,
362,
12,
5345,
262,
1988,
2837,
286,
3124,
5657,
355,
352,
68,
12,
19,
5299,
352,
68,
17,
11,
718,
20241,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
10263,
108,
228,
89,
62,
1084,
5299,
1976,
62,
9806,
163,
255,
231,
26344,
228,
22755,
238,
1314,
20015,
121,
171,
120,
234,
162,
107,
237,
10310,
103,
46763,
108,
161,
222,
120,
44293,
118,
29785,
112,
18796,
101,
31660,
10310,
103,
165,
95,
250,
164,
231,
110,
26193,
101,
163,
97,
118,
198,
220,
220,
220,
1303,
1976,
62,
1084,
796,
949,
7,
1084,
7,
89,
16,
62,
4868,
828,
949,
7,
89,
17,
62,
4868,
4008,
198,
220,
220,
220,
1303,
1976,
62,
9806,
796,
3509,
7,
9806,
7,
89,
16,
62,
4868,
828,
3509,
7,
89,
17,
62,
4868,
4008,
198,
220,
220,
220,
1303,
3601,
7,
89,
62,
1084,
11,
1976,
62,
9806,
8,
198,
220,
220,
220,
1303,
2974,
796,
5436,
32572,
420,
1352,
7,
46803,
1040,
28,
1314,
737,
42298,
62,
27160,
7,
89,
13,
1084,
22784,
1976,
13,
9806,
28955,
198,
220,
220,
220,
1303,
352,
12,
23520,
262,
3236,
18801,
1366,
287,
1976,
17,
62,
4868,
357,
11230,
1722,
6,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
828,
357,
87,
28,
16,
13,
18,
11,
88,
28,
15,
13,
29334,
11,
89,
28,
1485,
4531,
15711,
2078,
2598,
13,
2857,
1157,
2623,
11,
22184,
28,
17,
12,
18,
11,
2943,
44,
12,
33111,
28,
24,
8,
198,
220,
220,
220,
18801,
62,
9630,
796,
1976,
17,
62,
4868,
13,
9630,
7,
9806,
7,
89,
17,
62,
4868,
4008,
198,
220,
220,
220,
1619,
2124,
17,
62,
4868,
58,
397,
11265,
62,
9630,
60,
198,
220,
220,
220,
1619,
331,
17,
62,
4868,
58,
397,
11265,
62,
9630,
60,
198,
220,
220,
220,
1619,
1976,
17,
62,
4868,
58,
397,
11265,
62,
9630,
60,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
1366,
5794,
286,
2124,
11,
331,
290,
1976,
468,
284,
307,
362,
35,
45941,
13,
18747,
198,
220,
220,
220,
220,
220,
220,
220,
300,
1872,
57,
23778,
8205,
72,
468,
13151,
7,
46,
1860,
8,
5207,
286,
1366,
11,
287,
1502,
284,
4351,
606,
656,
362,
35,
45941,
13,
18747,
11,
4781,
262,
938,
1366,
7,
5171,
407,
15456,
751,
530,
3704,
286,
1366,
737,
198,
220,
220,
220,
220,
220,
220,
220,
1406,
300,
1872,
57,
23778,
8205,
72,
338,
1366,
481,
307,
19755,
6624,
29,
8190,
11,
362,
198,
220,
220,
220,
220,
220,
220,
220,
1514,
64,
468,
19710,
7,
10197,
8,
5207,
286,
1366,
11,
287,
1502,
284,
4351,
606,
656,
362,
35,
45941,
13,
18747,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1406,
1514,
64,
338,
1366,
481,
307,
19710,
6624,
29,
8093,
11,
362,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
2124,
11,
88,
21410,
46763,
108,
161,
222,
120,
17358,
223,
162,
234,
231,
163,
227,
100,
34460,
238,
162,
116,
238,
20998,
246,
32014,
22755,
244,
20998,
246,
22887,
237,
21410,
164,
100,
226,
36181,
233,
17312,
231,
41753,
237,
162,
236,
240,
26344,
245,
171,
120,
234,
38834,
47078,
114,
32368,
122,
161,
225,
237,
27670,
248,
20046,
109,
198,
220,
220,
220,
2124,
45579,
16,
62,
4868,
796,
16410,
87,
11,
88,
11,
89,
60,
329,
2124,
11,
88,
11,
89,
287,
19974,
7,
87,
16,
62,
4868,
11,
331,
16,
62,
4868,
11,
1976,
16,
62,
4868,
15437,
198,
220,
220,
220,
1303,
3297,
416,
331,
11,
788,
3297,
416,
2124,
198,
220,
220,
220,
2124,
45579,
16,
62,
4868,
13,
30619,
7,
2539,
28,
50033,
2124,
45579,
37498,
5431,
89,
58,
16,
4357,
2124,
45579,
58,
15,
46570,
9575,
28,
25101,
8,
198,
220,
220,
220,
2124,
16,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
15,
60,
329,
2124,
45579,
287,
2124,
45579,
16,
62,
4868,
60,
198,
220,
220,
220,
331,
16,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
16,
60,
329,
2124,
45579,
287,
2124,
45579,
16,
62,
4868,
60,
198,
220,
220,
220,
1976,
16,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
17,
60,
329,
2124,
45579,
287,
2124,
45579,
16,
62,
4868,
60,
628,
220,
220,
220,
2124,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
87,
16,
62,
82,
9741,
62,
4868,
58,
25,
11925,
7,
87,
16,
62,
82,
9741,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
198,
220,
220,
220,
331,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
88,
16,
62,
82,
9741,
62,
4868,
58,
25,
11925,
7,
88,
16,
62,
82,
9741,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
198,
220,
220,
220,
1976,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
89,
16,
62,
82,
9741,
62,
4868,
58,
25,
11925,
7,
89,
16,
62,
82,
9741,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
628,
220,
220,
220,
1303,
2124,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
87,
16,
62,
4868,
58,
25,
11925,
7,
87,
16,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
198,
220,
220,
220,
1303,
331,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
88,
16,
62,
4868,
58,
25,
11925,
7,
88,
16,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
198,
220,
220,
220,
1303,
1976,
16,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
89,
16,
62,
4868,
58,
25,
11925,
7,
89,
16,
62,
4868,
13219,
16,
35944,
3447,
1758,
19510,
5237,
11,
362,
4008,
628,
220,
220,
220,
2124,
45579,
17,
62,
4868,
796,
16410,
87,
11,
88,
11,
89,
60,
329,
2124,
11,
88,
11,
89,
287,
19974,
7,
87,
17,
62,
4868,
11,
331,
17,
62,
4868,
11,
1976,
17,
62,
4868,
15437,
198,
220,
220,
220,
2124,
45579,
17,
62,
4868,
13,
30619,
7,
2539,
28,
50033,
2124,
45579,
37498,
5431,
89,
58,
16,
4357,
2124,
45579,
58,
15,
46570,
9575,
28,
25101,
8,
198,
220,
220,
220,
2124,
17,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
15,
60,
329,
2124,
45579,
287,
2124,
45579,
17,
62,
4868,
60,
198,
220,
220,
220,
331,
17,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
16,
60,
329,
2124,
45579,
287,
2124,
45579,
17,
62,
4868,
60,
198,
220,
220,
220,
1976,
17,
62,
82,
9741,
62,
4868,
796,
685,
5431,
89,
58,
17,
60,
329,
2124,
45579,
287,
2124,
45579,
17,
62,
4868,
60,
198,
220,
220,
220,
2124,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
87,
17,
62,
82,
9741,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
198,
220,
220,
220,
331,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
88,
17,
62,
82,
9741,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
198,
220,
220,
220,
1976,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
89,
17,
62,
82,
9741,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
628,
220,
220,
220,
1303,
2124,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
87,
17,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
198,
220,
220,
220,
1303,
331,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
88,
17,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
198,
220,
220,
220,
1303,
1976,
17,
62,
17,
35,
62,
3258,
796,
45941,
13,
18747,
7,
89,
17,
62,
4868,
737,
3447,
1758,
19510,
5066,
11,
362,
4008,
628,
220,
220,
220,
1303,
10263,
108,
228,
89,
62,
1084,
5299,
1976,
62,
9806,
163,
255,
231,
26344,
228,
22755,
238,
21,
20015,
121,
171,
120,
234,
162,
107,
237,
10310,
103,
46763,
108,
161,
222,
120,
44293,
118,
29785,
112,
18796,
101,
31660,
10310,
103,
165,
95,
250,
164,
231,
110,
26193,
101,
163,
97,
118,
198,
220,
220,
220,
1241,
62,
3258,
796,
45941,
13,
18747,
26933,
940,
12429,
1312,
329,
1312,
287,
2837,
32590,
19,
11,
513,
8,
12962,
628,
220,
220,
220,
1303,
2298,
262,
10348,
951,
579,
499,
11,
20586,
2974,
11,
290,
8160,
257,
3487,
1634,
198,
220,
220,
220,
1303,
4554,
543,
2753,
1366,
3815,
290,
23677,
883,
656,
2974,
13,
198,
220,
220,
220,
1303,
269,
8899,
796,
458,
83,
13,
1136,
62,
66,
8899,
10786,
38729,
56,
38,
11537,
198,
220,
220,
220,
269,
8899,
796,
458,
83,
13,
1136,
62,
66,
8899,
10786,
37040,
29207,
11537,
198,
220,
220,
220,
2593,
796,
30149,
560,
35393,
7,
5715,
62,
3258,
11,
299,
4033,
669,
28,
66,
8899,
13,
45,
11,
10651,
28,
17821,
8,
628,
220,
220,
220,
2336,
11,
357,
897,
16,
11,
7877,
17,
8,
796,
458,
83,
13,
7266,
489,
1747,
7,
77,
8516,
28,
17,
8,
198,
220,
220,
220,
2336,
13,
2385,
457,
2578,
10786,
19160,
286,
734,
850,
489,
1747,
11537,
628,
220,
220,
220,
1303,
542,
4662,
389,
1635,
4122,
9,
1912,
21528,
11,
523,
10385,
674,
5421,
656,
966,
198,
220,
220,
220,
1303,
10399,
198,
220,
220,
220,
1303,
30218,
16,
796,
7877,
16,
13,
3642,
454,
69,
7,
87,
16,
62,
4868,
11,
331,
16,
62,
4868,
11,
1976,
16,
62,
4868,
11,
2974,
28,
5715,
62,
3258,
11,
269,
8899,
28,
66,
8899,
8,
198,
220,
220,
220,
1303,
4634,
262,
2604,
1179,
1352,
4952,
542,
454,
69,
284,
779,
257,
2604,
5046,
25,
628,
220,
220,
220,
1303,
30218,
16,
796,
7877,
16,
13,
3642,
454,
69,
7,
87,
16,
62,
17,
35,
62,
3258,
11,
331,
16,
62,
17,
35,
62,
3258,
11,
1976,
16,
62,
17,
35,
62,
3258,
11,
1179,
1352,
28,
83,
15799,
13,
11187,
33711,
1352,
22784,
2974,
28,
5715,
62,
3258,
11,
269,
8899,
28,
66,
8899,
8,
198,
220,
220,
220,
1303,
2336,
13,
8043,
5657,
7,
12993,
16,
11,
7877,
28,
897,
16,
8,
198,
220,
220,
220,
1303,
7877,
16,
13,
2617,
62,
7839,
10786,
16,
406,
1872,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
11537,
628,
220,
220,
220,
1303,
545,
796,
7877,
16,
13,
79,
4033,
579,
5069,
7,
87,
11,
331,
11,
1976,
11,
269,
8899,
28,
66,
8899,
11,
2593,
28,
27237,
8,
198,
220,
220,
220,
545,
796,
7877,
16,
13,
79,
4033,
579,
5069,
7,
87,
16,
62,
17,
35,
62,
3258,
11,
331,
16,
62,
17,
35,
62,
3258,
11,
1976,
16,
62,
17,
35,
62,
3258,
11,
269,
8899,
28,
66,
8899,
11,
2593,
28,
27237,
8,
198,
220,
220,
220,
2336,
13,
8043,
5657,
7,
320,
11,
7877,
28,
897,
16,
8,
198,
220,
220,
220,
7877,
16,
13,
2617,
62,
7839,
10786,
79,
4033,
579,
5069,
351,
2974,
11537,
628,
220,
220,
220,
1303,
30218,
17,
796,
7877,
17,
13,
3642,
454,
69,
7,
87,
17,
62,
4868,
11,
331,
17,
62,
4868,
11,
1976,
17,
62,
4868,
11,
2974,
28,
5715,
62,
3258,
11,
269,
8899,
28,
66,
8899,
8,
198,
220,
220,
220,
30218,
17,
796,
7877,
17,
13,
3642,
454,
69,
7,
87,
17,
62,
17,
35,
62,
3258,
11,
331,
17,
62,
17,
35,
62,
3258,
11,
1976,
17,
62,
17,
35,
62,
3258,
11,
1179,
1352,
28,
83,
15799,
13,
11187,
33711,
1352,
22784,
2974,
28,
5715,
62,
3258,
11,
269,
8899,
28,
66,
8899,
8,
198,
220,
220,
220,
2336,
13,
8043,
5657,
7,
12993,
17,
11,
7877,
28,
897,
17,
8,
198,
220,
220,
220,
1303,
7877,
17,
13,
87,
2475,
7,
15,
11,
1238,
8,
1303,
3460,
4163,
12331,
25,
705,
31554,
274,
7004,
29487,
6,
2134,
468,
645,
11688,
705,
87,
2475,
6,
198,
220,
220,
220,
7877,
17,
13,
2617,
62,
7839,
10786,
17,
10351,
32,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
11537,
198,
220,
220,
220,
1303,
7877,
16,
13,
29487,
7,
87,
16,
11,
331,
16,
11,
705,
78,
12,
11537,
198,
220,
220,
220,
1303,
7877,
16,
13,
2617,
62,
2645,
9608,
10786,
35,
13322,
24969,
341,
11537,
628,
220,
220,
220,
1303,
7877,
17,
13,
29487,
7,
87,
17,
11,
331,
17,
11,
705,
7874,
11537,
198,
220,
220,
220,
1303,
7877,
17,
13,
2617,
62,
87,
18242,
10786,
2435,
357,
82,
8,
11537,
198,
220,
220,
220,
1303,
7877,
17,
13,
2617,
62,
2645,
9608,
10786,
31319,
13322,
11537,
628,
220,
220,
220,
458,
83,
13,
87,
2475,
7,
15,
11,
1596,
8,
198,
220,
220,
220,
458,
83,
13,
88,
2475,
7,
15,
11,
362,
8,
198,
220,
220,
220,
458,
83,
13,
12860,
3419,
198,
198,
2,
352,
12,
3497,
406,
1872,
338,
10107,
15830,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
290,
10351,
1722,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
198,
2,
352,
13,
16,
12,
3497,
406,
1872,
338,
10107,
15830,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
198,
75,
1872,
62,
805,
723,
62,
11147,
62,
411,
62,
11600,
62,
4868,
796,
1100,
62,
75,
1872,
62,
805,
723,
62,
32232,
62,
411,
7,
1069,
62,
46428,
11639,
40720,
40720,
40720,
19608,
292,
1039,
14,
23100,
72,
972,
62,
7890,
14,
75,
1872,
57,
23778,
8205,
72,
14,
68,
271,
14,
42334,
12,
2998,
12,
1828,
12,
165,
246,
119,
162,
232,
245,
163,
109,
119,
161,
252,
233,
46763,
112,
49426,
228,
13330,
13,
87,
7278,
87,
3256,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9629,
62,
3672,
11639,
14269,
2569,
11537,
198,
1073,
273,
62,
11600,
62,
4868,
796,
1100,
62,
75,
1872,
62,
9288,
62,
37652,
4559,
7,
1069,
62,
46428,
11639,
40720,
40720,
40720,
19608,
292,
1039,
14,
23100,
72,
972,
62,
7890,
14,
75,
1872,
57,
23778,
8205,
72,
14,
68,
271,
14,
161,
251,
238,
43718,
229,
13,
87,
7278,
87,
3256,
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,
9629,
62,
3672,
11639,
3347,
316,
16,
11537,
198,
75,
1872,
62,
805,
723,
62,
11147,
62,
411,
62,
11600,
62,
4868,
796,
2353,
62,
75,
1872,
62,
805,
723,
62,
32232,
62,
411,
7,
75,
1872,
62,
805,
723,
62,
11147,
62,
411,
62,
11600,
62,
4868,
11,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
763,
273,
62,
11600,
62,
4868,
8,
198,
75,
1872,
62,
87,
62,
4868,
11,
300,
1872,
62,
88,
62,
4868,
11,
300,
1872,
62,
89,
62,
4868,
796,
14441,
62,
75,
1872,
62,
7890,
62,
19,
62,
3642,
454,
7,
75,
1872,
62,
805,
723,
62,
11147,
62,
411,
62,
11600,
62,
4868,
8,
198,
198,
2,
352,
13,
17,
12,
3497,
10351,
1722,
371,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
198,
2188,
64,
62,
11147,
62,
411,
62,
11600,
62,
4868,
796,
651,
62,
11230,
1722,
62,
13466,
62,
32232,
62,
411,
7,
46428,
11639,
40720,
40720,
1759,
2833,
14,
75,
1872,
57,
23778,
8205,
72,
14,
2188,
64,
14,
49,
7,
7397,
8,
62,
1797,
62,
2815,
12,
28747,
62,
411,
13,
14116,
14,
19726,
33111,
28,
17,
62,
411,
11537,
198,
2188,
64,
62,
11147,
62,
411,
62,
11600,
62,
4868,
796,
2353,
62,
11230,
1722,
62,
11147,
62,
411,
7,
2188,
64,
62,
11147,
62,
411,
62,
11600,
62,
4868,
11,
763,
273,
62,
11600,
62,
4868,
8,
198,
2188,
64,
62,
87,
62,
4868,
11,
467,
64,
62,
88,
62,
4868,
11,
467,
64,
62,
89,
62,
4868,
796,
14441,
62,
11230,
1722,
62,
7890,
62,
19,
62,
3642,
454,
7,
2188,
64,
62,
11147,
62,
411,
62,
11600,
62,
4868,
8,
198,
198,
2,
362,
12,
28114,
542,
454,
198,
11545,
62,
1851,
605,
62,
3642,
454,
62,
15,
7,
87,
16,
62,
4868,
28,
75,
1872,
62,
87,
62,
4868,
11,
331,
16,
62,
4868,
28,
75,
1872,
62,
88,
62,
4868,
11,
1976,
16,
62,
4868,
28,
75,
1872,
62,
89,
62,
4868,
11,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
17,
62,
4868,
28,
2188,
64,
62,
87,
62,
4868,
11,
331,
17,
62,
4868,
28,
2188,
64,
62,
88,
62,
4868,
11,
1976,
17,
62,
4868,
28,
2188,
64,
62,
89,
62,
4868,
8,
198,
37811,
198,
22755,
239,
164,
106,
97,
10310,
118,
13783,
109,
164,
112,
98,
21410,
43889,
253,
32368,
254,
198,
220,
220,
220,
352,
12,
21015,
13328,
248,
226,
3642,
454,
69,
5525,
99,
223,
162,
109,
224,
162,
101,
103,
163,
118,
113,
161,
251,
238,
43718,
229,
32849,
121,
42468,
163,
121,
239,
43718,
120,
163,
232,
114,
21410,
12859,
234,
163,
119,
112,
46763,
108,
163,
119,
226,
171,
120,
234,
19526,
228,
42468,
22755,
239,
21410,
22522,
252,
165,
247,
227,
46763,
108,
162,
235,
106,
171,
120,
230,
38184,
233,
46237,
243,
163,
224,
117,
21410,
161,
251,
238,
43718,
229,
171,
120,
231,
38834,
42468,
162,
107,
237,
26193,
234,
17739,
225,
163,
112,
254,
10310,
103,
46763,
108,
31660,
164,
229,
112,
171,
120,
234,
26344,
249,
161,
119,
118,
12859,
234,
163,
119,
112,
46763,
108,
163,
119,
226,
22887,
109,
35707,
237,
37772,
111,
163,
251,
222,
171,
120,
234,
17312,
231,
12859,
249,
19526,
235,
163,
121,
106,
198,
220,
220,
220,
220,
41468,
21410,
46763,
108,
27764,
245,
42468,
163,
252,
236,
163,
120,
244,
21410,
171,
120,
234,
162,
110,
94,
17312,
231,
35707,
237,
20046,
231,
171,
120,
234,
36685,
224,
162,
252,
250,
161,
94,
104,
37863,
247,
15,
171,
120,
234,
20998,
235,
32003,
234,
35707,
237,
37772,
111,
163,
251,
222,
162,
233,
253,
28938,
230,
21410,
46763,
230,
162,
252,
250,
165,
251,
252,
30585,
116,
25001,
121,
171,
120,
234,
32573,
247,
42468,
165,
242,
247,
21410,
198,
220,
220,
220,
362,
12,
220,
45298,
30298,
235,
32432,
98,
43291,
171,
120,
230,
49011,
17739,
225,
28938,
230,
34932,
239,
171,
120,
231,
21410,
3642,
454,
22887,
109,
42468,
18796,
101,
47103,
18796,
119,
21410,
171,
120,
234,
41753,
242,
46237,
98,
42468,
20998,
107,
26193,
234,
21410,
198,
37811
] | 1.745546 | 3,985 |
@SingleTon
test1 = TestClass()
test2 = TestClass()
print test1.a, test2.a
test1.a = 2
print test1.a, test2.a
print id(test1), id(test2) | [
198,
198,
31,
28008,
35416,
198,
198,
9288,
16,
796,
6208,
9487,
3419,
198,
9288,
17,
796,
6208,
9487,
3419,
198,
4798,
1332,
16,
13,
64,
11,
1332,
17,
13,
64,
198,
198,
9288,
16,
13,
64,
796,
362,
198,
4798,
1332,
16,
13,
64,
11,
1332,
17,
13,
64,
198,
4798,
4686,
7,
9288,
16,
828,
4686,
7,
9288,
17,
8
] | 2.241935 | 62 |
#!/usr/bin/env python3
"""Ransom note"""
import argparse
import os
import random
# --------------------------------------------------
def get_args():
"""Get command-line arguments"""
parser = argparse.ArgumentParser(
description='Ransom Note',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('text', metavar='str', help='Input text or file')
parser.add_argument('-s',
'--seed',
help='Random seed',
metavar='int',
type=int,
default=None)
args = parser.parse_args()
if os.path.isfile(args.text):
args.text = open(args.text).read().rstrip()
return args
# --------------------------------------------------
def choose(char):
"""Randomly choose an upper or lowercase letter to return"""
return char.upper() if random.choice([0, 1]) else char.lower()
# --------------------------------------------------
def test_choose():
"""Test choose"""
random.seed(1)
assert choose('a') == 'a'
assert choose('b') == 'b'
assert choose('c') == 'C'
assert choose('d') == 'd'
random.seed(None)
# --------------------------------------------------
def main():
"""Make a jazz noise here"""
args = get_args()
random.seed(args.seed)
# Method 2: Iterate each character, add to a list
ransom = []
for char in args.text:
ransom += choose(char)
print(''.join(ransom))
# --------------------------------------------------
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
37811,
49,
22011,
3465,
37811,
198,
198,
11748,
1822,
29572,
198,
11748,
28686,
198,
11748,
4738,
628,
198,
2,
20368,
1783,
438,
198,
4299,
651,
62,
22046,
33529,
198,
220,
220,
220,
37227,
3855,
3141,
12,
1370,
7159,
37811,
628,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
11639,
49,
22011,
5740,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1296,
1436,
62,
4871,
28,
853,
29572,
13,
28100,
1713,
7469,
13185,
22087,
8479,
1436,
8,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
5239,
3256,
1138,
615,
283,
11639,
2536,
3256,
1037,
11639,
20560,
2420,
393,
2393,
11537,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
28826,
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,
29531,
9403,
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,
600,
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,
600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
14202,
8,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
611,
28686,
13,
6978,
13,
4468,
576,
7,
22046,
13,
5239,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
5239,
796,
1280,
7,
22046,
13,
5239,
737,
961,
22446,
81,
36311,
3419,
628,
220,
220,
220,
1441,
26498,
628,
198,
2,
20368,
1783,
438,
198,
4299,
3853,
7,
10641,
2599,
198,
220,
220,
220,
37227,
29531,
306,
3853,
281,
6727,
393,
2793,
7442,
3850,
284,
1441,
37811,
628,
220,
220,
220,
1441,
1149,
13,
45828,
3419,
611,
4738,
13,
25541,
26933,
15,
11,
352,
12962,
2073,
1149,
13,
21037,
3419,
628,
198,
2,
20368,
1783,
438,
198,
4299,
1332,
62,
6679,
577,
33529,
198,
220,
220,
220,
37227,
14402,
3853,
37811,
628,
220,
220,
220,
4738,
13,
28826,
7,
16,
8,
198,
220,
220,
220,
6818,
3853,
10786,
64,
11537,
6624,
705,
64,
6,
198,
220,
220,
220,
6818,
3853,
10786,
65,
11537,
6624,
705,
65,
6,
198,
220,
220,
220,
6818,
3853,
10786,
66,
11537,
6624,
705,
34,
6,
198,
220,
220,
220,
6818,
3853,
10786,
67,
11537,
6624,
705,
67,
6,
198,
220,
220,
220,
4738,
13,
28826,
7,
14202,
8,
628,
198,
2,
20368,
1783,
438,
198,
4299,
1388,
33529,
198,
220,
220,
220,
37227,
12050,
257,
21274,
7838,
994,
37811,
628,
220,
220,
220,
26498,
796,
651,
62,
22046,
3419,
198,
220,
220,
220,
4738,
13,
28826,
7,
22046,
13,
28826,
8,
628,
220,
220,
220,
1303,
11789,
362,
25,
40806,
378,
1123,
2095,
11,
751,
284,
257,
1351,
198,
220,
220,
220,
26424,
796,
17635,
198,
220,
220,
220,
329,
1149,
287,
26498,
13,
5239,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26424,
15853,
3853,
7,
10641,
8,
628,
220,
220,
220,
3601,
10786,
4458,
22179,
7,
81,
22011,
4008,
628,
198,
2,
20368,
1783,
438,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.656301 | 611 |
import pytest
from yourcar import YourCarAPIClient, Place
LAT_ROSTOCK = 54.0833
LON_ROSTOCK = 12.1333
@pytest.fixture
@pytest.fixture
@pytest.fixture(scope="module", autouse=True)
@pytest.mark.vcr()
def test_places_successful(client):
"""Tests an API call to get places near a location in a given range"""
places = client.places(lat=LAT_ROSTOCK, lon=LON_ROSTOCK, distance=2000)
assert isinstance(places, list)
assert len(places) == 15
first = places[0]
assert isinstance(first, Place)
assert first.id == "4402"
assert first.name == "August-Bebel-Str. 71"
assert first.geo_position.latitude == 54.085047
assert first.geo_position.longitude == 12.133862
assert first.distance - 197.9 < 0.1
| [
11748,
12972,
9288,
198,
198,
6738,
534,
7718,
1330,
3406,
9914,
2969,
2149,
75,
1153,
11,
8474,
198,
198,
43,
1404,
62,
49,
10892,
11290,
796,
7175,
13,
2919,
2091,
198,
43,
1340,
62,
49,
10892,
11290,
796,
1105,
13,
1485,
2091,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
21412,
1600,
1960,
1076,
28,
17821,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
85,
6098,
3419,
198,
4299,
1332,
62,
23625,
62,
17212,
7,
16366,
2599,
198,
220,
220,
220,
37227,
51,
3558,
281,
7824,
869,
284,
651,
4113,
1474,
257,
4067,
287,
257,
1813,
2837,
37811,
198,
220,
220,
220,
4113,
796,
5456,
13,
23625,
7,
15460,
28,
43,
1404,
62,
49,
10892,
11290,
11,
300,
261,
28,
43,
1340,
62,
49,
10892,
11290,
11,
5253,
28,
11024,
8,
628,
220,
220,
220,
6818,
318,
39098,
7,
23625,
11,
1351,
8,
198,
220,
220,
220,
6818,
18896,
7,
23625,
8,
6624,
1315,
628,
220,
220,
220,
717,
796,
4113,
58,
15,
60,
198,
220,
220,
220,
6818,
318,
39098,
7,
11085,
11,
8474,
8,
198,
220,
220,
220,
6818,
717,
13,
312,
6624,
366,
25644,
17,
1,
198,
220,
220,
220,
6818,
717,
13,
3672,
6624,
366,
17908,
12,
33,
1765,
417,
12,
13290,
13,
9166,
1,
198,
220,
220,
220,
6818,
717,
13,
469,
78,
62,
9150,
13,
15460,
3984,
6624,
7175,
13,
2919,
1120,
2857,
198,
220,
220,
220,
6818,
717,
13,
469,
78,
62,
9150,
13,
6511,
3984,
6624,
1105,
13,
1485,
2548,
5237,
198,
220,
220,
220,
6818,
717,
13,
30246,
532,
29903,
13,
24,
1279,
657,
13,
16,
198
] | 2.601399 | 286 |
from typing import Optional
from pydantic import Field
from pystratis.api import Model
# noinspection PyUnresolvedReferences
class ExtPubKeyRequest(Model):
"""A request model for the wallet/extpubkey endpoint.
Args:
wallet_name (str): The wallet name.
account_name (str, optional): The account name. Default='account 0'.
"""
wallet_name: str = Field(alias='WalletName')
account_name: Optional[str] = Field(default='account 0', alias='AccountName')
| [
6738,
19720,
1330,
32233,
198,
6738,
279,
5173,
5109,
1330,
7663,
198,
6738,
12972,
2536,
37749,
13,
15042,
1330,
9104,
628,
198,
2,
645,
1040,
14978,
9485,
3118,
411,
5634,
19927,
198,
4871,
5683,
14876,
9218,
18453,
7,
17633,
2599,
198,
220,
220,
220,
37227,
32,
2581,
2746,
329,
262,
13008,
14,
2302,
12984,
2539,
36123,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13008,
62,
3672,
357,
2536,
2599,
383,
13008,
1438,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1848,
62,
3672,
357,
2536,
11,
11902,
2599,
383,
1848,
1438,
13,
15161,
11639,
23317,
657,
4458,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13008,
62,
3672,
25,
965,
796,
7663,
7,
26011,
11639,
47152,
5376,
11537,
198,
220,
220,
220,
1848,
62,
3672,
25,
32233,
58,
2536,
60,
796,
7663,
7,
12286,
11639,
23317,
657,
3256,
16144,
11639,
30116,
5376,
11537,
198
] | 3.141935 | 155 |
import pandas, hashlib, base64
from Crypto import Random
from Crypto.Cipher import AES
from util import DataSetting
DataFrame = pandas.DataFrame
class AES256(DataSetting):
"""
| 암호화 기술 중 양방향 암호화(AES-256)를 구현한 클래스
| 모든 메소드는 생성자에 원본 데이터를 인자 값으로 넣으면 원본 데이터를 수정한다.
Args:
datas (pandas.DataFrame) : 양방향 암호화 기술(AES-256 암호화)을 적용할 DataFrame 지정
key (str) : AES-256 암호화에 사용될 암호키 지정
"""
def encrypt(self, column: str):
"""
AES-256 암호화를 수행하는 메소드
Args:
column (str) : AES-256 암호화를 적용할 컬럼
Returns:
bool : 기술 적용 성공 시 True 리턴
"""
datas = self._toList(column)
result = []
for raw in datas:
raw = self._pad(raw)
iv = Random.new().read(AES.block_size)
cipher = AES.new(self.key, AES.MODE_CBC, iv)
cipherText = base64.b64encode(iv + cipher.encrypt(raw.encode()))
result.append(cipherText.decode())
self.datas.loc[:, column] = result
return True
def decrypt(self, column: str):
"""
AES-256 복호화를 수행하는 메소드
Args:
column (str) : AES-256 복호화를 적용할 컬럼
Returns:
bool : 기술 적용 성공 시 True 리턴
"""
datas = self._toList(column)
result = []
for enc in datas:
enc = base64.b64decode(enc.encode())
iv = enc[: AES.block_size]
cipher = AES.new(self.key, AES.MODE_CBC, iv)
plainText = self._unpad(cipher.decrypt(enc[AES.block_size :])).decode(
"utf-8"
)
result.append(plainText)
self.datas.loc[:, column] = result
return True
@staticmethod
| [
11748,
19798,
292,
11,
12234,
8019,
11,
2779,
2414,
198,
6738,
36579,
1330,
14534,
198,
6738,
36579,
13,
34,
10803,
1330,
34329,
198,
198,
6738,
7736,
1330,
6060,
34149,
198,
198,
6601,
19778,
796,
19798,
292,
13,
6601,
19778,
628,
198,
4871,
34329,
11645,
7,
6601,
34149,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
930,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
220,
166,
116,
108,
168,
230,
254,
23821,
97,
239,
23821,
244,
239,
167,
108,
102,
169,
244,
98,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
7,
32,
1546,
12,
11645,
8,
167,
98,
120,
220,
166,
113,
105,
169,
246,
226,
47991,
250,
220,
169,
223,
112,
167,
252,
246,
168,
232,
97,
198,
220,
220,
220,
930,
31619,
103,
101,
167,
241,
254,
31619,
102,
242,
168,
228,
234,
167,
241,
250,
167,
232,
242,
23821,
225,
251,
168,
226,
109,
168,
252,
238,
168,
245,
238,
23821,
249,
238,
167,
111,
116,
31619,
235,
108,
35975,
112,
169,
226,
108,
167,
98,
120,
23821,
251,
116,
168,
252,
238,
220,
166,
108,
240,
168,
250,
120,
167,
94,
250,
31619,
226,
96,
168,
250,
120,
167,
102,
112,
23821,
249,
238,
167,
111,
116,
31619,
235,
108,
35975,
112,
169,
226,
108,
167,
98,
120,
23821,
230,
246,
168,
254,
243,
47991,
250,
46695,
97,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
19395,
357,
79,
392,
292,
13,
6601,
19778,
8,
1058,
23821,
244,
239,
167,
108,
102,
169,
244,
98,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
220,
166,
116,
108,
168,
230,
254,
7,
32,
1546,
12,
11645,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
8,
35975,
226,
23821,
254,
223,
168,
248,
102,
47991,
254,
6060,
19778,
23821,
100,
222,
168,
254,
243,
198,
220,
220,
220,
220,
220,
220,
220,
1994,
357,
2536,
8,
1058,
34329,
12,
11645,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
168,
245,
238,
23821,
8955,
168,
248,
102,
167,
238,
254,
23821,
243,
242,
169,
246,
116,
169,
224,
97,
23821,
100,
222,
168,
254,
243,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
34117,
7,
944,
11,
5721,
25,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34329,
12,
11645,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
167,
98,
120,
23821,
230,
246,
169,
244,
231,
47991,
246,
167,
232,
242,
31619,
102,
242,
168,
228,
234,
167,
241,
250,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
357,
2536,
8,
1058,
34329,
12,
11645,
23821,
243,
242,
169,
246,
116,
169,
247,
242,
167,
98,
120,
23821,
254,
223,
168,
248,
102,
47991,
254,
23821,
119,
105,
167,
253,
120,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20512,
1058,
220,
166,
116,
108,
168,
230,
254,
23821,
254,
223,
168,
248,
102,
23821,
226,
109,
166,
111,
113,
23821,
233,
250,
6407,
31619,
99,
105,
169,
226,
112,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19395,
796,
2116,
13557,
1462,
8053,
7,
28665,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
8246,
287,
19395,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8246,
796,
2116,
13557,
15636,
7,
1831,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21628,
796,
14534,
13,
3605,
22446,
961,
7,
32,
1546,
13,
9967,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38012,
796,
34329,
13,
3605,
7,
944,
13,
2539,
11,
34329,
13,
49058,
62,
29208,
11,
21628,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38012,
8206,
796,
2779,
2414,
13,
65,
2414,
268,
8189,
7,
452,
1343,
38012,
13,
12685,
6012,
7,
1831,
13,
268,
8189,
3419,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
33295,
7,
66,
10803,
8206,
13,
12501,
1098,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19608,
292,
13,
17946,
58,
45299,
5721,
60,
796,
1255,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
220,
220,
220,
825,
42797,
7,
944,
11,
5721,
25,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34329,
12,
11645,
31619,
111,
113,
169,
246,
116,
169,
247,
242,
167,
98,
120,
23821,
230,
246,
169,
244,
231,
47991,
246,
167,
232,
242,
31619,
102,
242,
168,
228,
234,
167,
241,
250,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
357,
2536,
8,
1058,
34329,
12,
11645,
31619,
111,
113,
169,
246,
116,
169,
247,
242,
167,
98,
120,
23821,
254,
223,
168,
248,
102,
47991,
254,
23821,
119,
105,
167,
253,
120,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20512,
1058,
220,
166,
116,
108,
168,
230,
254,
23821,
254,
223,
168,
248,
102,
23821,
226,
109,
166,
111,
113,
23821,
233,
250,
6407,
31619,
99,
105,
169,
226,
112,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19395,
796,
2116,
13557,
1462,
8053,
7,
28665,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2207,
287,
19395,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2207,
796,
2779,
2414,
13,
65,
2414,
12501,
1098,
7,
12685,
13,
268,
8189,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21628,
796,
2207,
58,
25,
34329,
13,
9967,
62,
7857,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
38012,
796,
34329,
13,
3605,
7,
944,
13,
2539,
11,
34329,
13,
49058,
62,
29208,
11,
21628,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8631,
8206,
796,
2116,
13557,
403,
15636,
7,
66,
10803,
13,
12501,
6012,
7,
12685,
58,
32,
1546,
13,
9967,
62,
7857,
1058,
12962,
737,
12501,
1098,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40477,
12,
23,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
33295,
7,
25638,
8206,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19608,
292,
13,
17946,
58,
45299,
5721,
60,
796,
1255,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
220,
220,
220,
2488,
12708,
24396,
198
] | 1.442211 | 1,194 |
#!/usr/bin/python
import sys
import testmodule
config = int(sys.argv[1])
if config == 0:
not_debug()
not_windows()
elif config == 1:
not_debug()
windows()
elif config == 2:
debug()
not_windows()
elif config == 3:
debug()
windows()
else:
sys.exit('Invalid argument')
print 'checked', config
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
11748,
25064,
198,
11748,
1332,
21412,
628,
628,
628,
198,
11250,
796,
493,
7,
17597,
13,
853,
85,
58,
16,
12962,
198,
361,
4566,
6624,
657,
25,
198,
220,
220,
220,
407,
62,
24442,
3419,
198,
220,
220,
220,
407,
62,
28457,
3419,
198,
417,
361,
4566,
6624,
352,
25,
198,
220,
220,
220,
407,
62,
24442,
3419,
198,
220,
220,
220,
9168,
3419,
198,
417,
361,
4566,
6624,
362,
25,
198,
220,
220,
220,
14257,
3419,
198,
220,
220,
220,
407,
62,
28457,
3419,
198,
417,
361,
4566,
6624,
513,
25,
198,
220,
220,
220,
14257,
3419,
198,
220,
220,
220,
9168,
3419,
198,
17772,
25,
198,
220,
220,
220,
25064,
13,
37023,
10786,
44651,
4578,
11537,
198,
4798,
705,
26752,
3256,
4566,
198
] | 2.496241 | 133 |
# Copyright 2017-2021 Lawrence Livermore National Security, LLC and other
# Hatchet Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT
import pytest
from hatchet.node import Node, MultiplePathError
from hatchet.frame import Frame
from hatchet.graph import Graph
| [
2,
15069,
2177,
12,
1238,
2481,
13914,
45036,
3549,
2351,
4765,
11,
11419,
290,
584,
198,
2,
10983,
20043,
4935,
34152,
13,
4091,
262,
1353,
12,
5715,
38559,
24290,
2393,
329,
3307,
13,
198,
2,
198,
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
17168,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
6877,
20043,
13,
17440,
1330,
19081,
11,
20401,
15235,
12331,
198,
6738,
6877,
20043,
13,
14535,
1330,
25184,
198,
6738,
6877,
20043,
13,
34960,
1330,
29681,
628,
628,
628,
628,
628,
198
] | 3.72093 | 86 |
from __future__ import print_function, absolute_import, division #makes KratosMultiphysics backward compatible with python 2.6 and 2.7
from KratosMultiphysics import *
from KratosMultiphysics.mpi import *
from KratosMultiphysics.MetisApplication import *
from KratosMultiphysics.IncompressibleFluidApplication import *
from KratosMultiphysics.TrilinosApplication import *
from KratosMultiphysics.FluidDynamicsApplication import *
#
#
#
#
#
| [
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
11,
4112,
62,
11748,
11,
7297,
1303,
49123,
509,
10366,
418,
15205,
13323,
23154,
19528,
11670,
351,
21015,
362,
13,
21,
290,
362,
13,
22,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
1330,
1635,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
13,
3149,
72,
1330,
1635,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
13,
9171,
271,
23416,
1330,
1635,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
13,
818,
5589,
601,
856,
37,
2290,
312,
23416,
1330,
1635,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
13,
2898,
346,
11996,
23416,
1330,
1635,
198,
6738,
509,
10366,
418,
15205,
13323,
23154,
13,
37,
2290,
312,
35,
4989,
873,
23416,
1330,
1635,
628,
628,
220,
220,
220,
1303,
628,
220,
220,
220,
1303,
628,
220,
220,
220,
1303,
628,
220,
220,
220,
1303,
628,
220,
220,
220,
1303,
198
] | 3.134228 | 149 |
"""A test that is run only by Github Actions
This test makes real network requests, so environment variables
should be specified in Github Actions.
"""
import os
import pytest
from asyncpraw import Reddit
from asyncpraw.models import Submission
@pytest.mark.skipif(
not os.getenv("NETWORK_TEST_CLIENT_ID"),
reason="Not running from the NETWORK_TEST ci task on praw-dev/asyncpraw",
)
| [
37811,
32,
1332,
326,
318,
1057,
691,
416,
38994,
24439,
198,
198,
1212,
1332,
1838,
1103,
3127,
7007,
11,
523,
2858,
9633,
198,
21754,
307,
7368,
287,
38994,
24439,
13,
198,
37811,
198,
11748,
28686,
198,
198,
11748,
12972,
9288,
198,
198,
6738,
355,
2047,
13155,
1831,
1330,
10750,
198,
6738,
355,
2047,
13155,
1831,
13,
27530,
1330,
42641,
628,
198,
31,
9078,
9288,
13,
4102,
13,
48267,
361,
7,
198,
220,
220,
220,
407,
28686,
13,
1136,
24330,
7203,
12884,
33249,
62,
51,
6465,
62,
5097,
28495,
62,
2389,
12340,
198,
220,
220,
220,
1738,
2625,
3673,
2491,
422,
262,
49791,
62,
51,
6465,
269,
72,
4876,
319,
279,
1831,
12,
7959,
14,
292,
2047,
13155,
1831,
1600,
198,
8,
198
] | 3.245902 | 122 |
from pathlib import Path
DEFAULT_SEED = None
DEFAULT_REPETITIONS = 1
DEFAULT_MAX_DECODER_STEPS = 3000
DEFAULT_SAVE_MEL_INFO_COPY_PATH = Path("/tmp/mel_out.json")
# from paper
DEFAULT_MCD_NO_OF_COEFFS_PER_FRAME = 16
| [
6738,
3108,
8019,
1330,
10644,
198,
198,
7206,
38865,
62,
5188,
1961,
796,
6045,
198,
7206,
38865,
62,
35316,
2767,
2043,
11053,
796,
352,
198,
7206,
38865,
62,
22921,
62,
41374,
3727,
1137,
62,
30516,
3705,
796,
20343,
198,
7206,
38865,
62,
4090,
6089,
62,
44,
3698,
62,
10778,
62,
34,
3185,
56,
62,
34219,
796,
10644,
7203,
14,
22065,
14,
17694,
62,
448,
13,
17752,
4943,
198,
2,
422,
3348,
198,
7206,
38865,
62,
44,
8610,
62,
15285,
62,
19238,
62,
8220,
37267,
50,
62,
18973,
62,
10913,
10067,
796,
1467,
198
] | 2.322581 | 93 |
# coding:utf-8
import numpy as np
import json
import pandas as pd
pred_file = 'sort_hypo_glge_xsum_ck20_bsz1.txt.dedup'
sub_example = 'test_submission_example.jsonl'
save_file = 'submit.jsonl'
features = []
pred = []
example = []
with open(pred_file, 'r', encoding='utf-8') as infle:
for line in infle.readlines():
pred.append(line)
dict_pred = {"pred": pred}
pd_pred = pd.DataFrame(dict_pred)
pd_pred.drop_duplicates()
with open(sub_example, 'r', encoding='utf-8') as infle:
for line in infle.readlines():
line[pred_scene]
example.append(line)
with open(save_file, 'w', encoding="utf-8") as fout:
for feature in features:
fout.write(json.dumps(feature, ensure_ascii=False) + '\n') | [
2,
19617,
25,
40477,
12,
23,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
33918,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
28764,
62,
7753,
796,
705,
30619,
62,
36362,
78,
62,
4743,
469,
62,
87,
16345,
62,
694,
1238,
62,
1443,
89,
16,
13,
14116,
13,
9395,
929,
6,
198,
7266,
62,
20688,
796,
705,
9288,
62,
7266,
3411,
62,
20688,
13,
17752,
75,
6,
198,
21928,
62,
7753,
796,
705,
46002,
13,
17752,
75,
6,
198,
198,
40890,
796,
17635,
198,
28764,
796,
17635,
198,
20688,
796,
17635,
198,
4480,
1280,
7,
28764,
62,
7753,
11,
705,
81,
3256,
21004,
11639,
40477,
12,
23,
11537,
355,
1167,
293,
25,
198,
220,
220,
220,
329,
1627,
287,
1167,
293,
13,
961,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
2747,
13,
33295,
7,
1370,
8,
198,
198,
11600,
62,
28764,
796,
19779,
28764,
1298,
2747,
92,
198,
30094,
62,
28764,
796,
279,
67,
13,
6601,
19778,
7,
11600,
62,
28764,
8,
198,
30094,
62,
28764,
13,
14781,
62,
646,
489,
16856,
3419,
198,
198,
4480,
1280,
7,
7266,
62,
20688,
11,
705,
81,
3256,
21004,
11639,
40477,
12,
23,
11537,
355,
1167,
293,
25,
198,
220,
220,
220,
329,
1627,
287,
1167,
293,
13,
961,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
58,
28764,
62,
29734,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1672,
13,
33295,
7,
1370,
8,
198,
198,
4480,
1280,
7,
21928,
62,
7753,
11,
705,
86,
3256,
21004,
2625,
40477,
12,
23,
4943,
355,
277,
448,
25,
198,
220,
220,
220,
329,
3895,
287,
3033,
25,
198,
220,
220,
220,
220,
220,
220,
220,
277,
448,
13,
13564,
7,
17752,
13,
67,
8142,
7,
30053,
11,
4155,
62,
292,
979,
72,
28,
25101,
8,
1343,
705,
59,
77,
11537
] | 2.401316 | 304 |
import itertools
import operator
import random
import string
from fplib.ident import Id
from fplib.list import List
from fplib.maybe import (Just, Nothing)
from fplib.reader import Reader
from fplib.state import State
| [
11748,
340,
861,
10141,
198,
11748,
10088,
198,
11748,
4738,
198,
11748,
4731,
198,
198,
6738,
277,
489,
571,
13,
738,
1330,
5121,
198,
6738,
277,
489,
571,
13,
4868,
1330,
7343,
198,
6738,
277,
489,
571,
13,
25991,
1330,
357,
5703,
11,
10528,
8,
198,
6738,
277,
489,
571,
13,
46862,
1330,
25342,
198,
6738,
277,
489,
571,
13,
5219,
1330,
1812,
628,
628,
628,
628,
628,
628,
628,
628
] | 3.295775 | 71 |
"""Test cases for some parts of the settings.py file."""
from predicators.src import utils
from predicators.src.settings import get_allowed_query_type_names
def test_get_allowed_query_type_names():
"""Test the get_allowed_query_type_names method."""
utils.reset_config()
assert get_allowed_query_type_names() == set()
utils.reset_config({
"option_learner": "direct_bc",
})
assert get_allowed_query_type_names() == {"PathToStateQuery"}
utils.reset_config({
"option_learner": "no_learning",
"approach": "interactive_learning"
})
assert get_allowed_query_type_names() == {"GroundAtomsHoldQuery"}
utils.reset_config({
"option_learner": "no_learning",
"approach": "unittest"
})
assert get_allowed_query_type_names() == {
"GroundAtomsHoldQuery", "DemonstrationQuery", "PathToStateQuery",
"_MockQuery"
}
| [
37811,
14402,
2663,
329,
617,
3354,
286,
262,
6460,
13,
9078,
2393,
526,
15931,
198,
198,
6738,
41219,
2024,
13,
10677,
1330,
3384,
4487,
198,
6738,
41219,
2024,
13,
10677,
13,
33692,
1330,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
628,
198,
4299,
1332,
62,
1136,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
33529,
198,
220,
220,
220,
37227,
14402,
262,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
2446,
526,
15931,
198,
220,
220,
220,
3384,
4487,
13,
42503,
62,
11250,
3419,
198,
220,
220,
220,
6818,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
3419,
6624,
900,
3419,
198,
220,
220,
220,
3384,
4487,
13,
42503,
62,
11250,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18076,
62,
3238,
1008,
1298,
366,
12942,
62,
15630,
1600,
198,
220,
220,
220,
32092,
198,
220,
220,
220,
6818,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
3419,
6624,
19779,
15235,
2514,
9012,
20746,
20662,
198,
220,
220,
220,
3384,
4487,
13,
42503,
62,
11250,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18076,
62,
3238,
1008,
1298,
366,
3919,
62,
40684,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21064,
620,
1298,
366,
3849,
5275,
62,
40684,
1,
198,
220,
220,
220,
32092,
198,
220,
220,
220,
6818,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
3419,
6624,
19779,
35539,
2953,
3150,
26807,
20746,
20662,
198,
220,
220,
220,
3384,
4487,
13,
42503,
62,
11250,
15090,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18076,
62,
3238,
1008,
1298,
366,
3919,
62,
40684,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21064,
620,
1298,
366,
403,
715,
395,
1,
198,
220,
220,
220,
32092,
198,
220,
220,
220,
6818,
651,
62,
40845,
62,
22766,
62,
4906,
62,
14933,
3419,
6624,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
35539,
2953,
3150,
26807,
20746,
1600,
366,
35477,
12401,
20746,
1600,
366,
15235,
2514,
9012,
20746,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
45434,
44,
735,
20746,
1,
198,
220,
220,
220,
1782,
198
] | 2.579545 | 352 |
import numpy as np
import os
from PIL import Image
import torch
from torch.utils.data import Dataset
from data.base_dataset import get_posenet_transform
| [
11748,
299,
32152,
355,
45941,
198,
11748,
28686,
198,
6738,
350,
4146,
1330,
7412,
198,
198,
11748,
28034,
198,
6738,
28034,
13,
26791,
13,
7890,
1330,
16092,
292,
316,
198,
198,
6738,
1366,
13,
8692,
62,
19608,
292,
316,
1330,
651,
62,
1930,
268,
316,
62,
35636,
628
] | 3.25 | 48 |
from enum import Enum
import datetime
import base64
if __name__ == "__main__":
print("Welcome to imagebusutil module")
| [
6738,
33829,
1330,
2039,
388,
198,
11748,
4818,
8079,
198,
11748,
2779,
2414,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
3601,
7203,
14618,
284,
2939,
10885,
22602,
8265,
4943,
198
] | 3.175 | 40 |
# -----------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# -----------------------------------------------------------------------------
from ..rule_decorators import command_group_rule
from ..linter import RuleError
@command_group_rule
@command_group_rule
| [
2,
16529,
32501,
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,
16529,
32501,
198,
198,
6738,
11485,
25135,
62,
12501,
273,
2024,
1330,
3141,
62,
8094,
62,
25135,
198,
6738,
11485,
2815,
353,
1330,
14330,
12331,
628,
198,
31,
21812,
62,
8094,
62,
25135,
628,
198,
31,
21812,
62,
8094,
62,
25135,
198
] | 5.390244 | 82 |
# Процесс делегирования в Python
file = File()
instance = Upcase(file)
instance.write('test')
instance.open()
print(instance._outfile)
#print(instance.hello())
#print(instance.hello())
#print(instance.write('test'))
#print(instance._outfile)
#print(instance.write('asd'))
#print(instance._outfile)
#print(instance._outfile) | [
2,
12466,
253,
21169,
15166,
141,
228,
16843,
21727,
21727,
12466,
112,
16843,
30143,
16843,
140,
111,
18849,
21169,
25443,
110,
16142,
22177,
18849,
40623,
12466,
110,
11361,
628,
198,
198,
7753,
796,
9220,
3419,
198,
39098,
796,
3205,
7442,
7,
7753,
8,
198,
39098,
13,
13564,
10786,
9288,
11537,
198,
39098,
13,
9654,
3419,
198,
4798,
7,
39098,
13557,
448,
7753,
8,
198,
2,
4798,
7,
39098,
13,
31373,
28955,
198,
2,
4798,
7,
39098,
13,
31373,
28955,
198,
2,
4798,
7,
39098,
13,
13564,
10786,
9288,
6,
4008,
198,
2,
4798,
7,
39098,
13557,
448,
7753,
8,
198,
2,
4798,
7,
39098,
13,
13564,
10786,
292,
67,
6,
4008,
198,
2,
4798,
7,
39098,
13557,
448,
7753,
8,
198,
2,
4798,
7,
39098,
13557,
448,
7753,
8
] | 2.527132 | 129 |
import sys
from yamlSupport.YamlConfigurationSupport import YamlConfigurationSupport
from googleSheetSupport.GoogleSheetSupport import GoogleSheetSupport
from iosSupport.iOSLocalizationSettings import iOSLocalizationSettings
if __name__ == '__main__':
args = sys.argv
if len(args) < 2:
log_menu()
elif args[1] == "cnfg":
YamlConfigurationSupport.create_default()
elif args[1] == "fetch":
config = YamlConfigurationSupport.get_config()
localizations = GoogleSheetSupport.get_localizations()
iOSLocalizationSettings.create(localizations, config)
else:
log_menu()
| [
11748,
25064,
198,
6738,
331,
43695,
15514,
13,
56,
43695,
38149,
15514,
1330,
14063,
75,
38149,
15514,
198,
6738,
23645,
3347,
316,
15514,
13,
11708,
3347,
316,
15514,
1330,
3012,
3347,
316,
15514,
198,
6738,
1312,
418,
15514,
13,
35742,
14565,
1634,
26232,
1330,
8969,
14565,
1634,
26232,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
26498,
796,
25064,
13,
853,
85,
198,
220,
220,
220,
611,
18896,
7,
22046,
8,
1279,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
26272,
3419,
198,
220,
220,
220,
1288,
361,
26498,
58,
16,
60,
6624,
366,
31522,
40616,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
14063,
75,
38149,
15514,
13,
17953,
62,
12286,
3419,
198,
220,
220,
220,
1288,
361,
26498,
58,
16,
60,
6624,
366,
69,
7569,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
14063,
75,
38149,
15514,
13,
1136,
62,
11250,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
4582,
796,
3012,
3347,
316,
15514,
13,
1136,
62,
12001,
4582,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
8969,
14565,
1634,
26232,
13,
17953,
7,
12001,
4582,
11,
4566,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
26272,
3419,
198
] | 2.859729 | 221 |
data={'State': ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'Washington DC', 'West Virginia', 'Wisconsin', 'Wyoming'], 'AreaCode': [['205', '251', '256', '334', '938'], ['907'], ['480', '520', '602', '623', '928'], ['479', '501', '870'], ['209', '213', '279', '310', '323', '408', '415', '424', '442', '510', '530', '559', '562', '619', '626', '628', '650', '657', '661', '669', '707', '714', '747', '760', '805', '818', '820', '831', '858', '909', '916', '925', '949', '951'], ['303', '719', '720', '970'], ['203', '475', '860', '959'], ['302'], ['239', '305', '321', '352', '386', '407', '561', '727', '754', '772', '786', '813', '850', '863', '904', '941', '954'], ['229', '404', '470', '478', '678', '706', '762', '770', '912'], ['808'], ['208', '986'], ['217', '224', '309', '312', '331', '618', '630', '708', '773', '779', '815', '847', '872'], ['219', '260', '317', '463', '574', '765', '812', '930'], ['319', '515', '563', '641', '712'], ['316', '620', '785', '913'], ['270', '364', '502', '606', '859'], ['225', '318', '337', '504', '985'], ['207'], ['240', '301', '410', '443', '667'], ['339', '351', '413', '508', '617', '774', '781', '857', '978'], ['231', '248', '269', '313', '517', '586', '616', '734', '810', '906', '947', '989'], ['218', '320', '507', '612', '651', '763', '952'], ['228', '601', '662', '769'], ['314', '417', '573', '636', '660', '816'], ['406'], ['308', '402', '531'], ['702', '725', '775'], ['603'], ['201', '551', '609', '640', '732', '848', '856', '862', '908', '973'], ['505', '575'], ['212', '315', '332', '347', '516', '518', '585', '607', '631', '646', '680', '716', '718', '838', '845', '914', '917', '929', '934'], ['252', '336', '704', '743', '828', '910', '919', '980', '984'], ['701'], ['216', '220', '234', '330', '380', '419', '440', '513', '567', '614', '740', '937'], ['405', '539', '580', '918'], ['458', '503', '541', '971'], ['215', '223', '267', '272', '412', '445', '484', '570', '610', '717', '724', '814', '878'], ['401'], ['803', '843', '854', '864'], ['605'], ['423', '615', '629', '731', '865', '901', '931'], ['210', '214', '254', '281', '325', '346', '361', '409', '430', '432', '469', '512', '682', '713', '726', '737', '806', '817', '830', '832', '903', '915', '936', '940', '956', '972', '979'], ['385', '435', '801'], ['802'], ['276', '434', '540', '571', '703', '757', '804'], ['206', '253', '360', '425', '509', '564'], ['202'], ['304', '681'], ['262', '414', '534', '608', '715', '920'], ['307']]}
| [
7890,
34758,
6,
9012,
10354,
37250,
49177,
3256,
705,
2348,
8480,
3256,
705,
40732,
3256,
705,
42007,
6618,
3256,
705,
25284,
3256,
705,
41330,
3256,
705,
13313,
13554,
3256,
705,
13856,
9685,
3256,
705,
31135,
3256,
705,
41072,
3256,
705,
33055,
42648,
3256,
705,
7390,
17108,
3256,
705,
21478,
8981,
3256,
705,
49153,
3256,
705,
45186,
3256,
705,
43451,
3256,
705,
42265,
5309,
3256,
705,
32117,
7484,
3256,
705,
44,
5718,
3256,
705,
24119,
1044,
3256,
705,
20273,
9770,
3256,
705,
40610,
3256,
705,
45670,
3256,
705,
17140,
747,
12715,
3256,
705,
17140,
10300,
3256,
705,
26031,
2271,
3256,
705,
8199,
17088,
3256,
705,
43555,
4763,
3256,
705,
3791,
13910,
3256,
705,
3791,
8221,
3256,
705,
3791,
5828,
3256,
705,
3791,
1971,
3256,
705,
14157,
5913,
3256,
705,
14157,
13336,
3256,
705,
31274,
3256,
705,
18690,
9802,
3256,
705,
41243,
3256,
705,
39899,
9270,
3256,
705,
38576,
1098,
5451,
3256,
705,
14942,
5913,
3256,
705,
14942,
13336,
3256,
705,
43139,
10702,
3256,
705,
21607,
3256,
705,
44350,
3256,
705,
53,
7780,
756,
3256,
705,
41017,
3256,
705,
17402,
3256,
705,
17402,
6257,
3256,
705,
15045,
6025,
3256,
705,
49097,
3256,
705,
54,
88,
3383,
6,
4357,
705,
30547,
10669,
10354,
16410,
6,
21261,
3256,
705,
28072,
3256,
705,
11645,
3256,
705,
31380,
3256,
705,
24,
2548,
6,
4357,
37250,
24,
2998,
6,
4357,
37250,
22148,
3256,
705,
31211,
3256,
705,
31418,
3256,
705,
46872,
3256,
705,
24,
2078,
6,
4357,
37250,
31714,
3256,
705,
33548,
3256,
705,
46951,
6,
4357,
37250,
22567,
3256,
705,
26427,
3256,
705,
26050,
3256,
705,
26717,
3256,
705,
32637,
3256,
705,
26200,
3256,
705,
35038,
3256,
705,
40090,
3256,
705,
39506,
3256,
705,
33690,
3256,
705,
38612,
3256,
705,
38605,
3256,
705,
43918,
3256,
705,
21,
1129,
3256,
705,
45191,
3256,
705,
48200,
3256,
705,
17544,
3256,
705,
37680,
3256,
705,
47159,
3256,
705,
36657,
3256,
705,
24038,
3256,
705,
45722,
3256,
705,
48882,
3256,
705,
40761,
3256,
705,
28256,
3256,
705,
23,
1507,
3256,
705,
41739,
3256,
705,
23,
3132,
3256,
705,
23,
3365,
3256,
705,
44675,
3256,
705,
48894,
3256,
705,
46351,
3256,
705,
48581,
3256,
705,
50119,
6,
4357,
37250,
22572,
3256,
705,
22,
1129,
3256,
705,
23906,
3256,
705,
43587,
6,
4357,
37250,
22416,
3256,
705,
32576,
3256,
705,
45039,
3256,
705,
24,
3270,
6,
4357,
37250,
22709,
6,
4357,
37250,
23516,
3256,
705,
22515,
3256,
705,
36453,
3256,
705,
33394,
3256,
705,
21734,
3256,
705,
30120,
3256,
705,
47915,
3256,
705,
47760,
3256,
705,
41874,
3256,
705,
43571,
3256,
705,
46302,
3256,
705,
23,
1485,
3256,
705,
25764,
3256,
705,
4521,
18,
3256,
705,
24,
3023,
3256,
705,
24,
3901,
3256,
705,
48372,
6,
4357,
37250,
23539,
3256,
705,
26429,
3256,
705,
27790,
3256,
705,
29059,
3256,
705,
30924,
3256,
705,
35402,
3256,
705,
48194,
3256,
705,
41820,
3256,
705,
24,
1065,
6,
4357,
37250,
28362,
6,
4357,
37250,
21315,
3256,
705,
49087,
6,
4357,
37250,
24591,
3256,
705,
24137,
3256,
705,
26895,
3256,
705,
27970,
3256,
705,
31697,
3256,
705,
47448,
3256,
705,
30005,
3256,
705,
32583,
3256,
705,
46871,
3256,
705,
40393,
3256,
705,
49503,
3256,
705,
23,
2857,
3256,
705,
23,
4761,
6,
4357,
37250,
28896,
3256,
705,
21719,
3256,
705,
34125,
3256,
705,
38380,
3256,
705,
46900,
3256,
705,
29143,
3256,
705,
23,
1065,
3256,
705,
45418,
6,
4357,
37250,
35175,
3256,
705,
45969,
3256,
705,
46572,
3256,
705,
42759,
3256,
705,
49517,
6,
4357,
37250,
33400,
3256,
705,
38850,
3256,
705,
41172,
3256,
705,
24,
1485,
6,
4357,
37250,
20233,
3256,
705,
26780,
3256,
705,
35126,
3256,
705,
33206,
3256,
705,
23,
3270,
6,
4357,
37250,
18182,
3256,
705,
36042,
3256,
705,
31496,
3256,
705,
33580,
3256,
705,
42250,
6,
4357,
37250,
22745,
6,
4357,
37250,
16102,
3256,
705,
18938,
3256,
705,
33289,
3256,
705,
34938,
3256,
705,
28933,
6,
4357,
37250,
29626,
3256,
705,
35273,
3256,
705,
44103,
3256,
705,
33042,
3256,
705,
47941,
3256,
705,
47582,
3256,
705,
49703,
3256,
705,
23,
3553,
3256,
705,
32196,
6,
4357,
37250,
25667,
3256,
705,
23045,
3256,
705,
26276,
3256,
705,
25838,
3256,
705,
48170,
3256,
705,
29796,
3256,
705,
44214,
3256,
705,
22,
2682,
3256,
705,
40215,
3256,
705,
24,
3312,
3256,
705,
24,
2857,
3256,
705,
42520,
6,
4357,
37250,
28727,
3256,
705,
19504,
3256,
705,
35378,
3256,
705,
43610,
3256,
705,
40639,
3256,
705,
49641,
3256,
705,
49234,
6,
4357,
37250,
23815,
3256,
705,
41706,
3256,
705,
39380,
3256,
705,
22,
3388,
6,
4357,
37250,
33638,
3256,
705,
38547,
3256,
705,
48638,
3256,
705,
21,
2623,
3256,
705,
39885,
3256,
705,
23,
1433,
6,
4357,
37250,
29703,
6,
4357,
37250,
21495,
3256,
705,
32531,
3256,
705,
20,
3132,
6,
4357,
37250,
36680,
3256,
705,
45151,
3256,
705,
34483,
6,
4357,
37250,
35642,
6,
4357,
37250,
1264,
3256,
705,
43697,
3256,
705,
31751,
3256,
705,
31102,
3256,
705,
22,
2624,
3256,
705,
23,
2780,
3256,
705,
23,
3980,
3256,
705,
4521,
17,
3256,
705,
24,
2919,
3256,
705,
24,
4790,
6,
4357,
37250,
31654,
3256,
705,
36189,
6,
4357,
37250,
21777,
3256,
705,
27936,
3256,
705,
32148,
3256,
705,
30995,
3256,
705,
47493,
3256,
705,
44085,
3256,
705,
38905,
3256,
705,
31980,
3256,
705,
21,
3132,
3256,
705,
27720,
3256,
705,
37397,
3256,
705,
22,
1433,
3256,
705,
45720,
3256,
705,
23,
2548,
3256,
705,
23,
2231,
3256,
705,
24,
1415,
3256,
705,
24,
1558,
3256,
705,
24,
1959,
3256,
705,
24,
2682,
6,
4357,
37250,
22800,
3256,
705,
29211,
3256,
705,
32869,
3256,
705,
22,
3559,
3256,
705,
23,
2078,
3256,
705,
43234,
3256,
705,
24,
1129,
3256,
705,
40022,
3256,
705,
4089,
19,
6,
4357,
37250,
41583,
6,
4357,
37250,
20666,
3256,
705,
17572,
3256,
705,
24409,
3256,
705,
26073,
3256,
705,
23734,
3256,
705,
45068,
3256,
705,
25644,
3256,
705,
48645,
3256,
705,
20,
3134,
3256,
705,
46841,
3256,
705,
45598,
3256,
705,
24,
2718,
6,
4357,
37250,
26598,
3256,
705,
20,
2670,
3256,
705,
39322,
3256,
705,
24,
1507,
6,
4357,
37250,
29334,
3256,
705,
31938,
3256,
705,
20,
3901,
3256,
705,
24,
4869,
6,
4357,
37250,
23349,
3256,
705,
22047,
3256,
705,
25674,
3256,
705,
29807,
3256,
705,
39226,
3256,
705,
43489,
3256,
705,
34137,
3256,
705,
39254,
3256,
705,
39132,
3256,
705,
22,
1558,
3256,
705,
22,
1731,
3256,
705,
23,
1415,
3256,
705,
23,
3695,
6,
4357,
37250,
21844,
6,
4357,
37250,
43564,
3256,
705,
23,
3559,
3256,
705,
23,
4051,
3256,
705,
39570,
6,
4357,
37250,
32417,
6,
4357,
37250,
43356,
3256,
705,
47007,
3256,
705,
48602,
3256,
705,
22,
3132,
3256,
705,
23,
2996,
3256,
705,
46815,
3256,
705,
24,
3132,
6,
4357,
37250,
21536,
3256,
705,
22291,
3256,
705,
24970,
3256,
705,
30368,
3256,
705,
26582,
3256,
705,
30557,
3256,
705,
35195,
3256,
705,
29416,
3256,
705,
31794,
3256,
705,
45331,
3256,
705,
42947,
3256,
705,
25836,
3256,
705,
43950,
3256,
705,
50055,
3256,
705,
22,
2075,
3256,
705,
22,
2718,
3256,
705,
37988,
3256,
705,
23,
1558,
3256,
705,
48341,
3256,
705,
23,
2624,
3256,
705,
24,
3070,
3256,
705,
40248,
3256,
705,
24,
2623,
3256,
705,
46899,
3256,
705,
50148,
3256,
705,
24,
4761,
3256,
705,
24,
3720,
6,
4357,
37250,
27203,
3256,
705,
40064,
3256,
705,
41531,
6,
4357,
37250,
30863,
6,
4357,
37250,
27988,
3256,
705,
47101,
3256,
705,
35005,
3256,
705,
42875,
3256,
705,
36809,
3256,
705,
39251,
3256,
705,
36088,
6,
4357,
37250,
22136,
3256,
705,
28592,
3256,
705,
15277,
3256,
705,
32114,
3256,
705,
29022,
3256,
705,
20,
2414,
6,
4357,
37250,
19004,
6,
4357,
37250,
21288,
3256,
705,
48564,
6,
4357,
37250,
29119,
3256,
705,
37309,
3256,
705,
20,
2682,
3256,
705,
28688,
3256,
705,
22,
1314,
3256,
705,
37128,
6,
4357,
37250,
22996,
6,
11907,
92,
198
] | 2.343994 | 1,282 |
"""
swearWords Class
Author : Sorosh Safari @coci
created date : 7 October, 2021
updated date : 11 October, 2021
"""
# return string
# return boolean
# return nothing
# return nothing
# return boolean
# return boolean
# return string | [
37811,
198,
2032,
451,
37117,
5016,
198,
13838,
1058,
15423,
3768,
23298,
2488,
66,
1733,
198,
25598,
3128,
1058,
767,
3267,
11,
33448,
198,
43162,
3128,
1058,
1367,
3267,
11,
33448,
198,
37811,
628,
197,
2,
1441,
4731,
628,
197,
2,
1441,
25131,
628,
197,
2,
1441,
2147,
628,
197,
2,
1441,
2147,
628,
197,
2,
1441,
25131,
628,
197,
2,
1441,
25131,
628,
197,
2,
1441,
4731
] | 3.632353 | 68 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
CentralReport - Test script
Launchs CentralReport in debug mode, without installation.
Please verify CR is not installed on your host before launch this script.
https://github.com/miniche/CentralReport/
"""
import centralreport
import sys
import os
print '--- CentralReport debug mode. ---'
print 'This tool is only for debug purpose. For running CR in production env, use python centralreport.py start instead.'
print '---------------------------------'
print ''
cr = centralreport.CentralReport('/tmp/centralreport_debug.pid')
return_value = cr.debug()
print ''
print '---------------------------------'
print 'Ending debug mode'
print '---------------------------------'
# CentralReport is now stopped, we can kill current process
os.system('kill %d' % os.getpid())
sys.exit(0)
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
37811,
198,
220,
220,
220,
5694,
19100,
532,
6208,
4226,
198,
220,
220,
220,
220,
220,
220,
220,
21225,
82,
5694,
19100,
287,
14257,
4235,
11,
1231,
9988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
4222,
11767,
8740,
318,
407,
6589,
319,
534,
2583,
878,
4219,
428,
4226,
13,
628,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
1084,
14234,
14,
30645,
19100,
14,
198,
37811,
198,
198,
11748,
4318,
13116,
198,
11748,
25064,
198,
11748,
28686,
198,
198,
4798,
705,
6329,
5694,
19100,
14257,
4235,
13,
11420,
6,
198,
4798,
705,
1212,
2891,
318,
691,
329,
14257,
4007,
13,
1114,
2491,
8740,
287,
3227,
17365,
11,
779,
21015,
4318,
13116,
13,
9078,
923,
2427,
2637,
198,
4798,
705,
3880,
19355,
198,
4798,
10148,
198,
198,
6098,
796,
4318,
13116,
13,
30645,
19100,
10786,
14,
22065,
14,
31463,
13116,
62,
24442,
13,
35317,
11537,
198,
7783,
62,
8367,
796,
1067,
13,
24442,
3419,
198,
198,
4798,
10148,
198,
4798,
705,
3880,
19355,
198,
4798,
705,
12915,
278,
14257,
4235,
6,
198,
4798,
705,
3880,
19355,
198,
198,
2,
5694,
19100,
318,
783,
5025,
11,
356,
460,
1494,
1459,
1429,
198,
418,
13,
10057,
10786,
12728,
4064,
67,
6,
4064,
28686,
13,
1136,
35317,
28955,
198,
17597,
13,
37023,
7,
15,
8,
198
] | 3.605042 | 238 |
from __future__ import unicode_literals
import imaplib
import logging
import poplib
from django.core.exceptions import ValidationError
from django.core.files.base import ContentFile
from django.db import models
from django.utils.encoding import force_bytes
from django.utils.translation import ugettext_lazy as _
from mayan.apps.common.serialization import yaml_load
from mayan.apps.documents.models import Document
from mayan.apps.metadata.api import set_bulk_metadata
from mayan.apps.metadata.models import MetadataType
from ..exceptions import SourceException
from ..literals import (
DEFAULT_IMAP_MAILBOX, DEFAULT_IMAP_SEARCH_CRITERIA,
DEFAULT_IMAP_STORE_COMMANDS, DEFAULT_METADATA_ATTACHMENT_NAME,
DEFAULT_POP3_TIMEOUT, SOURCE_CHOICE_EMAIL_IMAP, SOURCE_CHOICE_EMAIL_POP3,
SOURCE_UNCOMPRESS_CHOICE_N, SOURCE_UNCOMPRESS_CHOICE_Y,
)
from .base import IntervalBaseModel
__all__ = ('IMAPEmail', 'POP3Email')
logger = logging.getLogger(__name__)
class EmailBaseModel(IntervalBaseModel):
"""
POP3 email and IMAP email sources are non-interactive sources that
periodically fetch emails from an email account using either the POP3 or
IMAP email protocol. These sources are useful when users need to scan
documents outside their office, they can photograph a paper document with
their phones and send the image to a designated email that is setup as a
Mayan POP3 or IMAP source. Mayan will periodically download the emails
and process them as Mayan documents.
"""
host = models.CharField(max_length=128, verbose_name=_('Host'))
ssl = models.BooleanField(default=True, verbose_name=_('SSL'))
port = models.PositiveIntegerField(blank=True, null=True, help_text=_(
'Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for '
'IMAP, 993 for IMAP over SSL.'), verbose_name=_('Port')
)
username = models.CharField(max_length=96, verbose_name=_('Username'))
password = models.CharField(max_length=96, verbose_name=_('Password'))
metadata_attachment_name = models.CharField(
default=DEFAULT_METADATA_ATTACHMENT_NAME,
help_text=_(
'Name of the attachment that will contains the metadata type '
'names and value pairs to be assigned to the rest of the '
'downloaded attachments.'
), max_length=128, verbose_name=_('Metadata attachment name')
)
subject_metadata_type = models.ForeignKey(
blank=True, help_text=_(
'Select a metadata type valid for the document type selected in '
'which to store the email\'s subject.'
), on_delete=models.CASCADE, null=True, related_name='email_subject',
to=MetadataType, verbose_name=_('Subject metadata type')
)
from_metadata_type = models.ForeignKey(
blank=True, help_text=_(
'Select a metadata type valid for the document type selected in '
'which to store the email\'s "from" value.'
), on_delete=models.CASCADE, null=True, related_name='email_from',
to=MetadataType, verbose_name=_('From metadata type')
)
store_body = models.BooleanField(
default=True, help_text=_(
'Store the body of the email as a text document.'
), verbose_name=_('Store email body')
)
objects = models.Manager()
@staticmethod
@staticmethod
| [
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
11748,
545,
64,
489,
571,
198,
11748,
18931,
198,
11748,
1461,
8019,
198,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
3254,
24765,
12331,
198,
6738,
42625,
14208,
13,
7295,
13,
16624,
13,
8692,
1330,
14041,
8979,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
26791,
13,
12685,
7656,
1330,
2700,
62,
33661,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
198,
198,
6738,
743,
272,
13,
18211,
13,
11321,
13,
46911,
1634,
1330,
331,
43695,
62,
2220,
198,
6738,
743,
272,
13,
18211,
13,
15390,
2886,
13,
27530,
1330,
16854,
198,
6738,
743,
272,
13,
18211,
13,
38993,
13,
15042,
1330,
900,
62,
65,
12171,
62,
38993,
198,
6738,
743,
272,
13,
18211,
13,
38993,
13,
27530,
1330,
3395,
14706,
6030,
198,
198,
6738,
11485,
1069,
11755,
1330,
8090,
16922,
198,
6738,
11485,
17201,
874,
1330,
357,
198,
220,
220,
220,
5550,
38865,
62,
3955,
2969,
62,
5673,
4146,
39758,
11,
5550,
38865,
62,
3955,
2969,
62,
5188,
31315,
62,
9419,
2043,
1137,
3539,
11,
198,
220,
220,
220,
5550,
38865,
62,
3955,
2969,
62,
2257,
6965,
62,
9858,
10725,
5258,
11,
5550,
38865,
62,
47123,
2885,
13563,
62,
17139,
16219,
10979,
62,
20608,
11,
198,
220,
220,
220,
5550,
38865,
62,
47,
3185,
18,
62,
34694,
12425,
11,
311,
31033,
62,
44899,
8476,
62,
27630,
4146,
62,
3955,
2969,
11,
311,
31033,
62,
44899,
8476,
62,
27630,
4146,
62,
47,
3185,
18,
11,
198,
220,
220,
220,
311,
31033,
62,
4944,
9858,
32761,
62,
44899,
8476,
62,
45,
11,
311,
31033,
62,
4944,
9858,
32761,
62,
44899,
8476,
62,
56,
11,
198,
8,
198,
198,
6738,
764,
8692,
1330,
4225,
2100,
14881,
17633,
198,
198,
834,
439,
834,
796,
19203,
3955,
2969,
15333,
3256,
705,
47,
3185,
18,
15333,
11537,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
9570,
14881,
17633,
7,
9492,
2100,
14881,
17633,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
37586,
18,
3053,
290,
8959,
2969,
3053,
4237,
389,
1729,
12,
3849,
5275,
4237,
326,
198,
220,
220,
220,
26034,
21207,
7237,
422,
281,
3053,
1848,
1262,
2035,
262,
37586,
18,
393,
198,
220,
220,
220,
8959,
2969,
3053,
8435,
13,
2312,
4237,
389,
4465,
618,
2985,
761,
284,
9367,
198,
220,
220,
220,
4963,
2354,
511,
2607,
11,
484,
460,
8408,
257,
3348,
3188,
351,
198,
220,
220,
220,
511,
9512,
290,
3758,
262,
2939,
284,
257,
11032,
3053,
326,
318,
9058,
355,
257,
198,
220,
220,
220,
1737,
272,
37586,
18,
393,
8959,
2969,
2723,
13,
1737,
272,
481,
26034,
4321,
262,
7237,
198,
220,
220,
220,
290,
1429,
606,
355,
1737,
272,
4963,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2583,
796,
4981,
13,
12441,
15878,
7,
9806,
62,
13664,
28,
12762,
11,
15942,
577,
62,
3672,
28,
62,
10786,
17932,
6,
4008,
198,
220,
220,
220,
264,
6649,
796,
4981,
13,
46120,
13087,
15878,
7,
12286,
28,
17821,
11,
15942,
577,
62,
3672,
28,
62,
10786,
31127,
6,
4008,
198,
220,
220,
220,
2493,
796,
4981,
13,
21604,
1800,
46541,
15878,
7,
27190,
28,
17821,
11,
9242,
28,
17821,
11,
1037,
62,
5239,
28,
41052,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31467,
605,
7747,
389,
9796,
329,
37586,
18,
11,
860,
3865,
329,
37586,
18,
625,
25952,
11,
24356,
329,
705,
198,
220,
220,
220,
220,
220,
220,
220,
705,
3955,
2969,
11,
860,
6052,
329,
8959,
2969,
625,
25952,
2637,
828,
15942,
577,
62,
3672,
28,
62,
10786,
13924,
11537,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
20579,
796,
4981,
13,
12441,
15878,
7,
9806,
62,
13664,
28,
4846,
11,
15942,
577,
62,
3672,
28,
62,
10786,
5842,
13292,
6,
4008,
198,
220,
220,
220,
9206,
796,
4981,
13,
12441,
15878,
7,
9806,
62,
13664,
28,
4846,
11,
15942,
577,
62,
3672,
28,
62,
10786,
35215,
6,
4008,
198,
220,
220,
220,
20150,
62,
1078,
15520,
62,
3672,
796,
4981,
13,
12441,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
7206,
38865,
62,
47123,
2885,
13563,
62,
17139,
16219,
10979,
62,
20608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
62,
5239,
28,
41052,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5376,
286,
262,
18231,
326,
481,
4909,
262,
20150,
2099,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14933,
290,
1988,
14729,
284,
307,
8686,
284,
262,
1334,
286,
262,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2902,
14578,
32161,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
3509,
62,
13664,
28,
12762,
11,
15942,
577,
62,
3672,
28,
62,
10786,
9171,
14706,
18231,
1438,
11537,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2426,
62,
38993,
62,
4906,
796,
4981,
13,
33616,
9218,
7,
198,
220,
220,
220,
220,
220,
220,
220,
9178,
28,
17821,
11,
1037,
62,
5239,
28,
41052,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17563,
257,
20150,
2099,
4938,
329,
262,
3188,
2099,
6163,
287,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4758,
284,
3650,
262,
3053,
43054,
82,
2426,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
319,
62,
33678,
28,
27530,
13,
34,
42643,
19266,
11,
9242,
28,
17821,
11,
3519,
62,
3672,
11639,
12888,
62,
32796,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
284,
28,
9171,
14706,
6030,
11,
15942,
577,
62,
3672,
28,
62,
10786,
19776,
20150,
2099,
11537,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
422,
62,
38993,
62,
4906,
796,
4981,
13,
33616,
9218,
7,
198,
220,
220,
220,
220,
220,
220,
220,
9178,
28,
17821,
11,
1037,
62,
5239,
28,
41052,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17563,
257,
20150,
2099,
4938,
329,
262,
3188,
2099,
6163,
287,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4758,
284,
3650,
262,
3053,
43054,
82,
366,
6738,
1,
1988,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
319,
62,
33678,
28,
27530,
13,
34,
42643,
19266,
11,
9242,
28,
17821,
11,
3519,
62,
3672,
11639,
12888,
62,
6738,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
284,
28,
9171,
14706,
6030,
11,
15942,
577,
62,
3672,
28,
62,
10786,
4863,
20150,
2099,
11537,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
3650,
62,
2618,
796,
4981,
13,
46120,
13087,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
17821,
11,
1037,
62,
5239,
28,
41052,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22658,
262,
1767,
286,
262,
3053,
355,
257,
2420,
3188,
2637,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
15942,
577,
62,
3672,
28,
62,
10786,
22658,
3053,
1767,
11537,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
5563,
796,
4981,
13,
13511,
3419,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
198
] | 2.776316 | 1,216 |
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from torch import nn
from torch.nn import functional as F
import torch
from ..box_head.roi_box_feature_extractors import ResNet50Conv5ROIFeatureExtractor
from maskrcnn_benchmark.modeling.poolers import Pooler
from maskrcnn_benchmark.layers import Conv2d
import pdb
class PRCNNFeatureExtractor(nn.Module):
'''
second stage extractor for paper: Cell Segmentation Proposal Network for Microscopy Image Analysis
'''
class MaskRCNNFPNFeatureExtractor(nn.Module):
"""
Heads for FPN for classification
"""
def __init__(self, cfg):
"""
Arguments:
num_classes (int): number of output classes
input_size (int): number of channels of the input once it's flattened
representation_size (int): size of the intermediate representation
"""
super(MaskRCNNFPNFeatureExtractor, self).__init__()
resolution = cfg.MODEL.ROI_MASK_HEAD.POOLER_RESOLUTION
scales = cfg.MODEL.ROI_MASK_HEAD.POOLER_SCALES
sampling_ratio = cfg.MODEL.ROI_MASK_HEAD.POOLER_SAMPLING_RATIO
pooler = Pooler(
output_size=(resolution, resolution),
scales=scales,
sampling_ratio=sampling_ratio,
)
input_size = cfg.MODEL.BACKBONE.OUT_CHANNELS
self.pooler = pooler
layers = cfg.MODEL.ROI_MASK_HEAD.CONV_LAYERS
next_feature = input_size
self.blocks = []
for layer_idx, layer_features in enumerate(layers, 1):
layer_name = "mask_fcn{}".format(layer_idx)
module = Conv2d(next_feature, layer_features, 3, stride=1, padding=1)
# Caffe2 implementation uses MSRAFill, which in fact
# corresponds to kaiming_normal_ in PyTorch
nn.init.kaiming_normal_(module.weight, mode="fan_out", nonlinearity="relu")
nn.init.constant_(module.bias, 0)
self.add_module(layer_name, module)
next_feature = layer_features
self.blocks.append(layer_name)
_ROI_MASK_FEATURE_EXTRACTORS = {
"ResNet50Conv5ROIFeatureExtractor": ResNet50Conv5ROIFeatureExtractor,
"MaskRCNNFPNFeatureExtractor": MaskRCNNFPNFeatureExtractor,
"PRCNNFeatureExtractor":PRCNNFeatureExtractor,
'DeeperExtractor':DeeperExtractor,
'MaskRCNNFPNAdaptor':MaskRCNNFPNAdaptor
}
| [
2,
15069,
357,
66,
8,
3203,
11,
3457,
13,
290,
663,
29116,
13,
1439,
6923,
33876,
13,
198,
6738,
28034,
1330,
299,
77,
198,
6738,
28034,
13,
20471,
1330,
10345,
355,
376,
198,
11748,
28034,
198,
6738,
11485,
3524,
62,
2256,
13,
305,
72,
62,
3524,
62,
30053,
62,
2302,
974,
669,
1330,
1874,
7934,
1120,
3103,
85,
20,
13252,
5064,
68,
1300,
11627,
40450,
198,
6738,
9335,
6015,
20471,
62,
26968,
4102,
13,
4666,
10809,
13,
7742,
364,
1330,
19850,
263,
198,
6738,
9335,
6015,
20471,
62,
26968,
4102,
13,
75,
6962,
1330,
34872,
17,
67,
198,
11748,
279,
9945,
198,
4871,
4810,
18474,
38816,
11627,
40450,
7,
20471,
13,
26796,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1218,
3800,
7925,
273,
329,
3348,
25,
12440,
1001,
5154,
341,
1041,
40007,
7311,
329,
4527,
1416,
11081,
7412,
14691,
198,
220,
220,
220,
705,
7061,
628,
198,
4871,
18007,
7397,
6144,
5837,
45,
38816,
11627,
40450,
7,
20471,
13,
26796,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
34838,
329,
376,
13137,
329,
17923,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
30218,
70,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
37724,
357,
600,
2599,
1271,
286,
5072,
6097,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
7857,
357,
600,
2599,
1271,
286,
9619,
286,
262,
5128,
1752,
340,
338,
45096,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10552,
62,
7857,
357,
600,
2599,
2546,
286,
262,
19898,
10552,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
45195,
7397,
6144,
5837,
45,
38816,
11627,
40450,
11,
2116,
737,
834,
15003,
834,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
6323,
796,
30218,
70,
13,
33365,
3698,
13,
13252,
40,
62,
31180,
42,
62,
37682,
13,
16402,
3535,
1137,
62,
19535,
3535,
35354,
198,
220,
220,
220,
220,
220,
220,
220,
16252,
796,
30218,
70,
13,
33365,
3698,
13,
13252,
40,
62,
31180,
42,
62,
37682,
13,
16402,
3535,
1137,
62,
6173,
1847,
1546,
198,
220,
220,
220,
220,
220,
220,
220,
19232,
62,
10366,
952,
796,
30218,
70,
13,
33365,
3698,
13,
13252,
40,
62,
31180,
42,
62,
37682,
13,
16402,
3535,
1137,
62,
49302,
6489,
2751,
62,
49,
1404,
9399,
198,
220,
220,
220,
220,
220,
220,
220,
5933,
263,
796,
19850,
263,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
7857,
16193,
29268,
11,
6323,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16252,
28,
1416,
2040,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19232,
62,
10366,
952,
28,
37687,
11347,
62,
10366,
952,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
7857,
796,
30218,
70,
13,
33365,
3698,
13,
31098,
33,
11651,
13,
12425,
62,
3398,
22846,
37142,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7742,
263,
796,
5933,
263,
628,
220,
220,
220,
220,
220,
220,
220,
11685,
796,
30218,
70,
13,
33365,
3698,
13,
13252,
40,
62,
31180,
42,
62,
37682,
13,
10943,
53,
62,
43,
4792,
4877,
628,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
30053,
796,
5128,
62,
7857,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
7679,
62,
312,
87,
11,
7679,
62,
40890,
287,
27056,
378,
7,
75,
6962,
11,
352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7679,
62,
3672,
796,
366,
27932,
62,
16072,
77,
90,
92,
1911,
18982,
7,
29289,
62,
312,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8265,
796,
34872,
17,
67,
7,
19545,
62,
30053,
11,
7679,
62,
40890,
11,
513,
11,
33769,
28,
16,
11,
24511,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
327,
21223,
17,
7822,
3544,
6579,
3861,
33762,
11,
543,
287,
1109,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
24866,
284,
479,
1385,
278,
62,
11265,
62,
287,
9485,
15884,
354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
77,
13,
15003,
13,
74,
1385,
278,
62,
11265,
41052,
21412,
13,
6551,
11,
4235,
2625,
24408,
62,
448,
1600,
1729,
29127,
414,
2625,
260,
2290,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
77,
13,
15003,
13,
9979,
415,
41052,
21412,
13,
65,
4448,
11,
657,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
21412,
7,
29289,
62,
3672,
11,
8265,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
30053,
796,
7679,
62,
40890,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27372,
13,
33295,
7,
29289,
62,
3672,
8,
628,
628,
198,
62,
13252,
40,
62,
31180,
42,
62,
15112,
40086,
62,
6369,
5446,
10659,
20673,
796,
1391,
198,
220,
220,
220,
366,
4965,
7934,
1120,
3103,
85,
20,
13252,
5064,
68,
1300,
11627,
40450,
1298,
1874,
7934,
1120,
3103,
85,
20,
13252,
5064,
68,
1300,
11627,
40450,
11,
198,
220,
220,
220,
366,
45195,
7397,
6144,
5837,
45,
38816,
11627,
40450,
1298,
18007,
7397,
6144,
5837,
45,
38816,
11627,
40450,
11,
198,
220,
220,
220,
366,
4805,
18474,
38816,
11627,
40450,
1298,
4805,
18474,
38816,
11627,
40450,
11,
198,
220,
220,
220,
705,
35,
41278,
11627,
40450,
10354,
35,
41278,
11627,
40450,
11,
198,
220,
220,
220,
705,
45195,
7397,
6144,
5837,
45,
48003,
273,
10354,
45195,
7397,
6144,
5837,
45,
48003,
273,
198,
92,
198
] | 2.359684 | 1,012 |
from auditing.db.Models import Packet
import datetime, json
import dateutil.parser as dp
| [
6738,
2709,
1780,
13,
9945,
13,
5841,
1424,
1330,
6400,
316,
198,
11748,
4818,
8079,
11,
33918,
198,
11748,
3128,
22602,
13,
48610,
355,
288,
79,
628,
628
] | 3.285714 | 28 |
# AUTOGENERATED BY NBDEV! DO NOT EDIT!
__all__ = ["index", "modules", "custom_doc_links", "git_url"]
index = {"instance_sort": "02_explore.ipynb",
"instance_dcmread": "02_explore.ipynb",
"instance_show": "02_explore.ipynb",
"get_dicom_image": "02_explore.ipynb"}
modules = ["one.py",
"explore.py"]
doc_url = "https://asvcode.github.io/test_fmi/"
git_url = "https://github.com/asvcode/test_fmi/tree/master/"
| [
2,
47044,
7730,
1677,
1137,
11617,
11050,
41354,
39345,
0,
8410,
5626,
48483,
0,
198,
198,
834,
439,
834,
796,
14631,
9630,
1600,
366,
18170,
1600,
366,
23144,
62,
15390,
62,
28751,
1600,
366,
18300,
62,
6371,
8973,
198,
198,
9630,
796,
19779,
39098,
62,
30619,
1298,
366,
2999,
62,
20676,
382,
13,
541,
2047,
65,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39098,
62,
67,
11215,
961,
1298,
366,
2999,
62,
20676,
382,
13,
541,
2047,
65,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39098,
62,
12860,
1298,
366,
2999,
62,
20676,
382,
13,
541,
2047,
65,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1136,
62,
67,
291,
296,
62,
9060,
1298,
366,
2999,
62,
20676,
382,
13,
541,
2047,
65,
20662,
198,
198,
18170,
796,
14631,
505,
13,
9078,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
20676,
382,
13,
9078,
8973,
198,
198,
15390,
62,
6371,
796,
366,
5450,
1378,
292,
85,
8189,
13,
12567,
13,
952,
14,
9288,
62,
69,
11632,
30487,
198,
198,
18300,
62,
6371,
796,
366,
5450,
1378,
12567,
13,
785,
14,
292,
85,
8189,
14,
9288,
62,
69,
11632,
14,
21048,
14,
9866,
30487,
198
] | 2.142857 | 210 |
f = open("Q3/inputs.txt","r")
z = f.readlines()
f.close()
a = ""
b = ""
for i in zip(*z):
lst = list(i)
if lst.count("1") > len(lst)//2:
a += "1"
b += "0"
else:
a += "0"
b += "1"
print(int(a,2)*int(b,2))
f = open("Q3/inputs.txt","r")
z = f.readlines()
f.close()
current_index = 0
while len(z) != 1:
lst = list(list(zip(*z))[current_index])
if lst.count("1") > lst.count("0"):
z = [i for i in z if i[current_index] == "1"]
elif lst.count("1") < lst.count("0"):
z = [i for i in z if i[current_index] == "0"]
else:
z = [i for i in z if i[current_index] == "1"]
current_index += 1
a = int(z[0],2)
f = open("Q3/inputs.txt","r")
z = f.readlines()
f.close()
current_index = 0
while len(z) != 1:
lst = list(list(zip(*z))[current_index])
if lst.count("1") > lst.count("0"):
z = [i for i in z if i[current_index] == "0"]
elif lst.count("1") < lst.count("0"):
z = [i for i in z if i[current_index] == "1"]
else:
z = [i for i in z if i[current_index] == "0"]
current_index += 1
b = int(z[0],2)
print(a*b) | [
69,
796,
1280,
7203,
48,
18,
14,
15414,
82,
13,
14116,
2430,
81,
4943,
198,
89,
796,
277,
13,
961,
6615,
3419,
198,
69,
13,
19836,
3419,
198,
198,
64,
796,
13538,
198,
65,
796,
13538,
198,
1640,
1312,
287,
19974,
46491,
89,
2599,
198,
220,
220,
220,
300,
301,
796,
1351,
7,
72,
8,
198,
220,
220,
220,
611,
300,
301,
13,
9127,
7203,
16,
4943,
1875,
18896,
7,
75,
301,
8,
1003,
17,
25,
198,
220,
220,
220,
220,
220,
220,
220,
257,
15853,
366,
16,
1,
198,
220,
220,
220,
220,
220,
220,
220,
275,
15853,
366,
15,
1,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
257,
15853,
366,
15,
1,
198,
220,
220,
220,
220,
220,
220,
220,
275,
15853,
366,
16,
1,
198,
4798,
7,
600,
7,
64,
11,
17,
27493,
600,
7,
65,
11,
17,
4008,
198,
198,
69,
796,
1280,
7203,
48,
18,
14,
15414,
82,
13,
14116,
2430,
81,
4943,
198,
89,
796,
277,
13,
961,
6615,
3419,
198,
69,
13,
19836,
3419,
198,
198,
14421,
62,
9630,
796,
657,
198,
4514,
18896,
7,
89,
8,
14512,
352,
25,
198,
220,
220,
220,
300,
301,
796,
1351,
7,
4868,
7,
13344,
46491,
89,
4008,
58,
14421,
62,
9630,
12962,
198,
220,
220,
220,
611,
300,
301,
13,
9127,
7203,
16,
4943,
1875,
300,
301,
13,
9127,
7203,
15,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
16,
8973,
198,
220,
220,
220,
1288,
361,
300,
301,
13,
9127,
7203,
16,
4943,
1279,
300,
301,
13,
9127,
7203,
15,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
15,
8973,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
16,
8973,
198,
220,
220,
220,
1459,
62,
9630,
15853,
352,
198,
198,
64,
796,
493,
7,
89,
58,
15,
4357,
17,
8,
198,
198,
69,
796,
1280,
7203,
48,
18,
14,
15414,
82,
13,
14116,
2430,
81,
4943,
198,
89,
796,
277,
13,
961,
6615,
3419,
198,
69,
13,
19836,
3419,
198,
198,
14421,
62,
9630,
796,
657,
198,
4514,
18896,
7,
89,
8,
14512,
352,
25,
198,
220,
220,
220,
300,
301,
796,
1351,
7,
4868,
7,
13344,
46491,
89,
4008,
58,
14421,
62,
9630,
12962,
198,
220,
220,
220,
611,
300,
301,
13,
9127,
7203,
16,
4943,
1875,
300,
301,
13,
9127,
7203,
15,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
15,
8973,
198,
220,
220,
220,
1288,
361,
300,
301,
13,
9127,
7203,
16,
4943,
1279,
300,
301,
13,
9127,
7203,
15,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
16,
8973,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
796,
685,
72,
329,
1312,
287,
1976,
611,
1312,
58,
14421,
62,
9630,
60,
6624,
366,
15,
8973,
198,
220,
220,
220,
1459,
62,
9630,
15853,
352,
198,
198,
65,
796,
493,
7,
89,
58,
15,
4357,
17,
8,
198,
4798,
7,
64,
9,
65,
8
] | 1.923469 | 588 |
#!/usr/bin/env python3
import librosa
import sys
import numpy as np
from os import path, listdir
import json
print('Content-Type: application/json\n\n')
print(wav2json('./test.wav'))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
11748,
9195,
4951,
64,
198,
11748,
25064,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
28686,
1330,
3108,
11,
1351,
15908,
198,
11748,
33918,
198,
4798,
10786,
19746,
12,
6030,
25,
3586,
14,
17752,
59,
77,
59,
77,
11537,
198,
4798,
7,
45137,
17,
17752,
7,
4458,
14,
9288,
13,
45137,
6,
4008,
198
] | 2.859375 | 64 |
import os
from mfactcheck.utils.log_helper import LogHelper
from mfactcheck.multi_retriever.sentences.data import SentProcessor
from .mbert import MBert
LogHelper.setup()
logger = LogHelper.get_logger(os.path.splitext(os.path.basename(__file__))[0])
| [
11748,
28686,
198,
198,
6738,
285,
22584,
9122,
13,
26791,
13,
6404,
62,
2978,
525,
1330,
5972,
47429,
198,
6738,
285,
22584,
9122,
13,
41684,
62,
1186,
380,
964,
13,
34086,
3007,
13,
7890,
1330,
11352,
18709,
273,
198,
6738,
764,
1916,
83,
1330,
10771,
861,
198,
198,
11187,
47429,
13,
40406,
3419,
198,
6404,
1362,
796,
5972,
47429,
13,
1136,
62,
6404,
1362,
7,
418,
13,
6978,
13,
22018,
578,
742,
7,
418,
13,
6978,
13,
12093,
12453,
7,
834,
7753,
834,
4008,
58,
15,
12962,
628
] | 2.875 | 88 |
import contextlib
import datetime
import os
import logging
import re
import time
from enum import Enum
import gmpy2
import sqlite3
class EcmServer:
"""ECM Server
Responsible for recording what curves have been run.
"""
SCHEMA_FILE = "schema.sql"
| [
11748,
4732,
8019,
198,
11748,
4818,
8079,
198,
11748,
28686,
198,
11748,
18931,
198,
11748,
302,
198,
11748,
640,
198,
198,
6738,
33829,
1330,
2039,
388,
198,
198,
11748,
308,
3149,
88,
17,
198,
11748,
44161,
578,
18,
198,
198,
4871,
412,
11215,
10697,
25,
198,
220,
220,
220,
37227,
2943,
44,
9652,
628,
220,
220,
220,
20549,
856,
329,
8296,
644,
23759,
423,
587,
1057,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
22374,
27630,
62,
25664,
796,
366,
15952,
2611,
13,
25410,
1,
628,
628,
628,
198
] | 3 | 91 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import logging
from CommonMark import DocParser
from CommonMark import HTMLRenderer
from django.template import TemplateDoesNotExist
from django.template.loader import render_to_string
from django.utils.encoding import python_2_unicode_compatible
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from django.db.models import CharField
from .utils import valid_md_file
from editregions.models import EditRegionChunk
logger = logging.getLogger(__name__)
@python_2_unicode_compatible
| [
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,
11748,
18931,
198,
6738,
8070,
9704,
1330,
14432,
46677,
198,
6738,
8070,
9704,
1330,
11532,
49,
437,
11882,
198,
6738,
42625,
14208,
13,
28243,
1330,
37350,
13921,
3673,
3109,
396,
198,
6738,
42625,
14208,
13,
28243,
13,
29356,
1330,
8543,
62,
1462,
62,
8841,
198,
6738,
42625,
14208,
13,
26791,
13,
12685,
7656,
1330,
21015,
62,
17,
62,
46903,
1098,
62,
38532,
198,
6738,
42625,
14208,
13,
26791,
13,
45124,
1330,
39986,
62,
26745,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
1330,
3178,
15878,
198,
6738,
764,
26791,
1330,
4938,
62,
9132,
62,
7753,
198,
6738,
4370,
2301,
507,
13,
27530,
1330,
5312,
47371,
1925,
2954,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
31,
29412,
62,
17,
62,
46903,
1098,
62,
38532,
198
] | 3.454545 | 176 |
from jmetal.core.problem import FloatProblem
from jmetal.core.solution import FloatSolution
import numpy as np
import math
import datameclpps260421v1
| [
6738,
474,
28469,
13,
7295,
13,
45573,
1330,
48436,
40781,
201,
198,
6738,
474,
28469,
13,
7295,
13,
82,
2122,
1330,
48436,
46344,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
11748,
10688,
201,
198,
11748,
4818,
480,
565,
41799,
21719,
46636,
85,
16,
201,
198,
201,
198,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
201
] | 2.588235 | 68 |
from .core import API | [
6738,
764,
7295,
1330,
7824
] | 4.2 | 5 |
# coding=utf-8
# Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
from __future__ import (absolute_import, division, generators, nested_scopes, print_function,
unicode_literals, with_statement)
from pants.backend.python.tasks.checkstyle.new_style_classes import NewStyleClasses
from pants_test.backend.python.tasks.checkstyle.plugin_test_base import CheckstylePluginTestBase
| [
2,
19617,
28,
40477,
12,
23,
198,
2,
15069,
1853,
41689,
1628,
20420,
357,
3826,
27342,
9865,
3843,
20673,
13,
9132,
737,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
3826,
38559,
24290,
737,
198,
198,
6738,
11593,
37443,
834,
1330,
357,
48546,
62,
11748,
11,
7297,
11,
27298,
11,
28376,
62,
1416,
13920,
11,
3601,
62,
8818,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
17201,
874,
11,
351,
62,
26090,
8,
198,
198,
6738,
12581,
13,
1891,
437,
13,
29412,
13,
83,
6791,
13,
9122,
7635,
13,
3605,
62,
7635,
62,
37724,
1330,
968,
21466,
9487,
274,
198,
6738,
12581,
62,
9288,
13,
1891,
437,
13,
29412,
13,
83,
6791,
13,
9122,
7635,
13,
33803,
62,
9288,
62,
8692,
1330,
6822,
7635,
37233,
14402,
14881,
628
] | 3.150327 | 153 |
import urllib.request
from pprint import pprint
from html_table_parser.parser import HTMLTableParser
import pandas as pd
import os
from parse import parse_taskmaster_csv
if __name__ == "__main__":
dir_path_to_temp_csvs="temp_csvs"
dir_path_final_csvs="final_season_csvs"
create_final_raw_csv(dir_path_to_temp_csvs, dir_path_final_csvs)
merge_final_dataset(inpath_final_individual_csvs=dir_path_final_csvs) | [
198,
11748,
2956,
297,
571,
13,
25927,
198,
6738,
279,
4798,
1330,
279,
4798,
198,
6738,
27711,
62,
11487,
62,
48610,
13,
48610,
1330,
11532,
10962,
46677,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
28686,
198,
6738,
21136,
1330,
21136,
62,
35943,
9866,
62,
40664,
198,
220,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
26672,
62,
6978,
62,
1462,
62,
29510,
62,
6359,
14259,
2625,
29510,
62,
6359,
14259,
1,
198,
220,
220,
220,
26672,
62,
6978,
62,
20311,
62,
6359,
14259,
2625,
20311,
62,
6230,
62,
6359,
14259,
1,
198,
220,
220,
220,
2251,
62,
20311,
62,
1831,
62,
40664,
7,
15908,
62,
6978,
62,
1462,
62,
29510,
62,
6359,
14259,
11,
26672,
62,
6978,
62,
20311,
62,
6359,
14259,
8,
198,
220,
220,
220,
20121,
62,
20311,
62,
19608,
292,
316,
7,
259,
6978,
62,
20311,
62,
43129,
62,
6359,
14259,
28,
15908,
62,
6978,
62,
20311,
62,
6359,
14259,
8
] | 2.591463 | 164 |
import math
import numpy as np
import cv2
import sys
# # Implement the functions below.
def extract_red(image):
""" Returns the red channel of the input image. It is highly recommended to make a copy of the
input image in order to avoid modifying the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input RGB (BGR in OpenCV) image.
Returns:
numpy.array: Output 2D array containing the red channel.
"""
# Since Red is last index, we want all rows, columns, and the last channel.
return np.copy(image[:, :, 2])
def extract_green(image):
""" Returns the green channel of the input image. It is highly recommended to make a copy of the
input image in order to avoid modifying the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input RGB (BGR in OpenCV) image.
Returns:
numpy.array: Output 2D array containing the green channel.
"""
# Return green channel, all rows, columns
return np.copy(image[:, :, 1])
def extract_blue(image):
""" Returns the blue channel of the input image. It is highly recommended to make a copy of the
input image in order to avoid modifying the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input RGB (BGR in OpenCV) image.
Returns:
numpy.array: Output 2D array containing the blue channel.
"""
# Since blue is the first index, get first channel.
return np.copy(image[:, :, 0])
def swap_green_blue(image):
""" Returns an image with the green and blue channels of the input image swapped. It is highly
recommended to make a copy of the input image in order to avoid modifying the original array.
You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input RGB (BGR in OpenCV) image.
Returns:
numpy.array: Output 3D array with the green and blue channels swapped.
"""
temp_image = np.copy(image)
temp_image[:, :, 0] = extract_green(image)
temp_image[:, :, 1] = extract_blue(image)
return temp_image
def copy_paste_middle(src, dst, shape):
""" Copies the middle region of size shape from src to the middle of dst. It is
highly recommended to make a copy of the input image in order to avoid modifying the
original array. You can do this by calling:
temp_image = np.copy(image)
Note: Assumes that src and dst are monochrome images, i.e. 2d arrays.
Note: Where 'middle' is ambiguous because of any difference in the oddness
or evenness of the size of the copied region and the image size, the function
rounds downwards. E.g. in copying a shape = (1,1) from a src image of size (2,2)
into an dst image of size (3,3), the function copies the range [0:1,0:1] of
the src into the range [1:2,1:2] of the dst.
Args:
src (numpy.array): 2D array where the rectangular shape will be copied from.
dst (numpy.array): 2D array where the rectangular shape will be copied to.
shape (tuple): Tuple containing the height (int) and width (int) of the section to be
copied.
Returns:
numpy.array: Output monochrome image (2D array)
"""
src = np.copy(src)
dst = np.copy(dst)
# height is rows, width is columns
src_rows, src_cols = src.shape
dst_rows, dst_cols = dst.shape
# shape size mid points.
shape_mid_rows = int(np.floor(shape[0] / 2))
shape_mid_cols = int(np.floor(shape[1] / 2))
# mid point of the "copy" image
copy_mid_row = int(np.floor(src_rows / 2))
copy_mid_col = int(np.floor(src_cols / 2))
# mid points of the paste image.
paste_mid_row = int(np.floor(dst_rows / 2))
paste_mid_col = int(np.floor(dst_cols / 2))
# calculate the shifts to make sure copy is correct.
r1_dst, r2_dst, c1_dst, c2_dst, r1_src, r2_src, c1_src, c2_src = [
paste_mid_row - shape_mid_rows,
paste_mid_row + shape_mid_rows,
paste_mid_col - shape_mid_cols,
paste_mid_col + shape_mid_cols,
copy_mid_row - shape_mid_rows,
copy_mid_row + shape_mid_rows,
copy_mid_col - shape_mid_cols,
copy_mid_col + shape_mid_cols
]
dst[r1_dst: r2_dst, c1_dst: c2_dst] = src[r1_src: r2_src, c1_src: c2_src]
return dst
def image_stats(image):
""" Returns the tuple (min,max,mean,stddev) of statistics for the input monochrome image.
In order to become more familiar with Numpy, you should look for pre-defined functions
that do these operations i.e. numpy.min.
It is highly recommended to make a copy of the input image in order to avoid modifying
the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input 2D image.
Returns:
tuple: Four-element tuple containing:
min (float): Input array minimum value.
max (float): Input array maximum value.
mean (float): Input array mean / average value.
stddev (float): Input array standard deviation.
"""
return 1.*np.min(image), 1.*np.max(image), 1.*np.mean(image), 1.*np.std(image)
def center_and_normalize(image, scale):
""" Returns an image with the same mean as the original but with values scaled about the
mean so as to have a standard deviation of "scale".
Note: This function makes no defense against the creation
of out-of-range pixel values. Consider converting the input image to
a float64 type before passing in an image.
It is highly recommended to make a copy of the input image in order to avoid modifying
the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input 2D image.
scale (int or float): scale factor.
Returns:
numpy.array: Output 2D image.
"""
i_min, i_max, i_mean, i_std = image_stats(image)
# take the mean from the image, then divide by the std deviation. We then scale by the
# scale factor and then add the mean back into the image.
normal_image = (((image-i_mean) / i_std) * scale) + i_mean
return normal_image
def shift_image_left(image, shift):
""" Outputs the input monochrome image shifted shift pixels to the left.
The returned image has the same shape as the original with
the BORDER_REPLICATE rule to fill-in missing values. See
http://docs.opencv.org/2.4/doc/tutorials/imgproc/imgtrans/copyMakeBorder/copyMakeBorder.html?highlight=copy
for further explanation.
It is highly recommended to make a copy of the input image in order to avoid modifying
the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): Input 2D image.
shift (int): Displacement value representing the number of pixels to shift the input image.
This parameter may be 0 representing zero displacement.
Returns:
numpy.array: Output shifted 2D image.
"""
temp_image = np.copy(image)
# take the temp image, all rows, from column defined in shift to end, move shift using border replicate.
return cv2.copyMakeBorder(temp_image[:, shift:], 0, 0, 0, shift, cv2.BORDER_REPLICATE)
def difference_image(img1, img2):
""" Returns the difference between the two input images (img1 - img2). The resulting array must be normalized
and scaled to fit [0, 255].
It is highly recommended to make a copy of the input image in order to avoid modifying
the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
img1 (numpy.array): Input 2D image.
img2 (numpy.array): Input 2D image.
Returns:
numpy.array: Output 2D image containing the result of subtracting img2 from img1.
"""
difference = img1.astype(np.float) - img2.astype(np.float)
output_image = np.zeros(difference.shape)
cv2.normalize(difference, output_image, alpha=0, beta=255, norm_type=cv2.NORM_MINMAX)
# print("Max Value is ", max(output_image.flatten()))
# print("Min Value is ", min(output_image.flatten()))
return output_image
def add_noise(image, channel, sigma):
""" Returns a copy of the input color image with Gaussian noise added to
channel (0-2). The Gaussian noise mean must be zero. The parameter sigma
controls the standard deviation of the noise.
The returned array values must not be clipped or normalized and scaled. This means that
there could be values that are not in [0, 255].
Note: This function makes no defense against the creation
of out-of-range pixel values. Consider converting the input image to
a float64 type before passing in an image.
It is highly recommended to make a copy of the input image in order to avoid modifying
the original array. You can do this by calling:
temp_image = np.copy(image)
Args:
image (numpy.array): input RGB (BGR in OpenCV) image.
channel (int): Channel index value.
sigma (float): Gaussian noise standard deviation.
Returns:
numpy.array: Output 3D array containing the result of adding Gaussian noise to the
specified channel.
"""
# generate random noise using the image.shape tuple as the dimensions.
gaussian_noise = np.random.randn(*image.shape) * sigma
temp_image = np.copy(image)
temp_image = (temp_image * 1.0) # make it a float
temp_image[:, :, channel] += gaussian_noise[:, :, channel]
return temp_image
| [
11748,
10688,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
269,
85,
17,
198,
11748,
25064,
198,
198,
2,
1303,
48282,
262,
5499,
2174,
13,
628,
198,
4299,
7925,
62,
445,
7,
9060,
2599,
198,
220,
220,
220,
37227,
16409,
262,
2266,
6518,
286,
262,
5128,
2939,
13,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
198,
220,
220,
220,
5128,
2939,
287,
1502,
284,
3368,
30620,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
25228,
357,
33,
10761,
287,
4946,
33538,
8,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
362,
35,
7177,
7268,
262,
2266,
6518,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
4619,
2297,
318,
938,
6376,
11,
356,
765,
477,
15274,
11,
15180,
11,
290,
262,
938,
6518,
13,
198,
220,
220,
220,
1441,
45941,
13,
30073,
7,
9060,
58,
45299,
1058,
11,
362,
12962,
628,
198,
4299,
7925,
62,
14809,
7,
9060,
2599,
198,
220,
220,
220,
37227,
16409,
262,
4077,
6518,
286,
262,
5128,
2939,
13,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
198,
220,
220,
220,
5128,
2939,
287,
1502,
284,
3368,
30620,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
25228,
357,
33,
10761,
287,
4946,
33538,
8,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
362,
35,
7177,
7268,
262,
4077,
6518,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
8229,
4077,
6518,
11,
477,
15274,
11,
15180,
198,
220,
220,
220,
1441,
45941,
13,
30073,
7,
9060,
58,
45299,
1058,
11,
352,
12962,
628,
198,
4299,
7925,
62,
17585,
7,
9060,
2599,
198,
220,
220,
220,
37227,
16409,
262,
4171,
6518,
286,
262,
5128,
2939,
13,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
198,
220,
220,
220,
5128,
2939,
287,
1502,
284,
3368,
30620,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
25228,
357,
33,
10761,
287,
4946,
33538,
8,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
362,
35,
7177,
7268,
262,
4171,
6518,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
4619,
4171,
318,
262,
717,
6376,
11,
651,
717,
6518,
13,
198,
220,
220,
220,
1441,
45941,
13,
30073,
7,
9060,
58,
45299,
1058,
11,
657,
12962,
628,
198,
4299,
16075,
62,
14809,
62,
17585,
7,
9060,
2599,
198,
220,
220,
220,
37227,
16409,
281,
2939,
351,
262,
4077,
290,
4171,
9619,
286,
262,
5128,
2939,
37245,
13,
632,
318,
4047,
198,
220,
220,
220,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
262,
2656,
7177,
13,
198,
220,
220,
220,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
25228,
357,
33,
10761,
287,
4946,
33538,
8,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
513,
35,
7177,
351,
262,
4077,
290,
4171,
9619,
37245,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
198,
220,
220,
220,
20218,
62,
9060,
58,
45299,
1058,
11,
657,
60,
796,
7925,
62,
14809,
7,
9060,
8,
198,
220,
220,
220,
20218,
62,
9060,
58,
45299,
1058,
11,
352,
60,
796,
7925,
62,
17585,
7,
9060,
8,
198,
220,
220,
220,
1441,
20218,
62,
9060,
198,
198,
4299,
4866,
62,
34274,
62,
27171,
7,
10677,
11,
29636,
11,
5485,
2599,
198,
220,
220,
220,
37227,
6955,
444,
262,
3504,
3814,
286,
2546,
5485,
422,
12351,
284,
262,
3504,
286,
29636,
13,
632,
318,
198,
220,
220,
220,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
262,
198,
220,
220,
220,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
220,
220,
220,
220,
5740,
25,
2195,
8139,
326,
12351,
290,
29636,
389,
937,
5374,
5998,
4263,
11,
1312,
13,
68,
13,
362,
67,
26515,
13,
628,
220,
220,
220,
220,
220,
220,
220,
5740,
25,
6350,
705,
27171,
6,
318,
27102,
780,
286,
597,
3580,
287,
262,
5629,
1108,
198,
220,
220,
220,
220,
220,
220,
220,
393,
772,
1108,
286,
262,
2546,
286,
262,
18984,
3814,
290,
262,
2939,
2546,
11,
262,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
9196,
44890,
13,
220,
412,
13,
70,
13,
287,
23345,
257,
5485,
796,
357,
16,
11,
16,
8,
422,
257,
12351,
2939,
286,
2546,
357,
17,
11,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
656,
281,
29636,
2939,
286,
2546,
357,
18,
11,
18,
828,
262,
2163,
9088,
262,
2837,
685,
15,
25,
16,
11,
15,
25,
16,
60,
286,
198,
220,
220,
220,
220,
220,
220,
220,
262,
12351,
656,
262,
2837,
685,
16,
25,
17,
11,
16,
25,
17,
60,
286,
262,
29636,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
12351,
357,
77,
32152,
13,
18747,
2599,
362,
35,
7177,
810,
262,
36954,
5485,
481,
307,
18984,
422,
13,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
357,
77,
32152,
13,
18747,
2599,
362,
35,
7177,
810,
262,
36954,
5485,
481,
307,
18984,
284,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5485,
357,
83,
29291,
2599,
309,
29291,
7268,
262,
6001,
357,
600,
8,
290,
9647,
357,
600,
8,
286,
262,
2665,
284,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18984,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
937,
5374,
5998,
2939,
357,
17,
35,
7177,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12351,
796,
45941,
13,
30073,
7,
10677,
8,
198,
220,
220,
220,
29636,
796,
45941,
13,
30073,
7,
67,
301,
8,
628,
220,
220,
220,
1303,
6001,
318,
15274,
11,
9647,
318,
15180,
198,
220,
220,
220,
12351,
62,
8516,
11,
12351,
62,
4033,
82,
796,
12351,
13,
43358,
198,
220,
220,
220,
29636,
62,
8516,
11,
29636,
62,
4033,
82,
796,
29636,
13,
43358,
628,
220,
220,
220,
1303,
5485,
2546,
3095,
2173,
13,
198,
220,
220,
220,
5485,
62,
13602,
62,
8516,
796,
493,
7,
37659,
13,
28300,
7,
43358,
58,
15,
60,
1220,
362,
4008,
198,
220,
220,
220,
5485,
62,
13602,
62,
4033,
82,
796,
493,
7,
37659,
13,
28300,
7,
43358,
58,
16,
60,
1220,
362,
4008,
628,
220,
220,
220,
1303,
3095,
966,
286,
262,
366,
30073,
1,
2939,
198,
220,
220,
220,
4866,
62,
13602,
62,
808,
796,
493,
7,
37659,
13,
28300,
7,
10677,
62,
8516,
1220,
362,
4008,
198,
220,
220,
220,
4866,
62,
13602,
62,
4033,
796,
493,
7,
37659,
13,
28300,
7,
10677,
62,
4033,
82,
1220,
362,
4008,
628,
220,
220,
220,
1303,
3095,
2173,
286,
262,
17008,
2939,
13,
198,
220,
220,
220,
17008,
62,
13602,
62,
808,
796,
493,
7,
37659,
13,
28300,
7,
67,
301,
62,
8516,
1220,
362,
4008,
198,
220,
220,
220,
17008,
62,
13602,
62,
4033,
796,
493,
7,
37659,
13,
28300,
7,
67,
301,
62,
4033,
82,
1220,
362,
4008,
628,
220,
220,
220,
1303,
15284,
262,
15381,
284,
787,
1654,
4866,
318,
3376,
13,
198,
220,
220,
220,
374,
16,
62,
67,
301,
11,
374,
17,
62,
67,
301,
11,
269,
16,
62,
67,
301,
11,
269,
17,
62,
67,
301,
11,
374,
16,
62,
10677,
11,
374,
17,
62,
10677,
11,
269,
16,
62,
10677,
11,
269,
17,
62,
10677,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
17008,
62,
13602,
62,
808,
532,
5485,
62,
13602,
62,
8516,
11,
198,
220,
220,
220,
220,
220,
220,
220,
17008,
62,
13602,
62,
808,
1343,
5485,
62,
13602,
62,
8516,
11,
198,
220,
220,
220,
220,
220,
220,
220,
17008,
62,
13602,
62,
4033,
532,
5485,
62,
13602,
62,
4033,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
17008,
62,
13602,
62,
4033,
1343,
5485,
62,
13602,
62,
4033,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
62,
13602,
62,
808,
532,
5485,
62,
13602,
62,
8516,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
62,
13602,
62,
808,
1343,
5485,
62,
13602,
62,
8516,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
62,
13602,
62,
4033,
532,
5485,
62,
13602,
62,
4033,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4866,
62,
13602,
62,
4033,
1343,
5485,
62,
13602,
62,
4033,
82,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
29636,
58,
81,
16,
62,
67,
301,
25,
374,
17,
62,
67,
301,
11,
269,
16,
62,
67,
301,
25,
269,
17,
62,
67,
301,
60,
796,
12351,
58,
81,
16,
62,
10677,
25,
374,
17,
62,
10677,
11,
269,
16,
62,
10677,
25,
269,
17,
62,
10677,
60,
198,
220,
220,
220,
1441,
29636,
628,
198,
4299,
2939,
62,
34242,
7,
9060,
2599,
198,
220,
220,
220,
37227,
16409,
262,
46545,
357,
1084,
11,
9806,
11,
32604,
11,
301,
1860,
1990,
8,
286,
7869,
329,
262,
5128,
937,
5374,
5998,
2939,
13,
198,
220,
220,
220,
554,
1502,
284,
1716,
517,
5385,
351,
399,
32152,
11,
345,
815,
804,
329,
662,
12,
23211,
5499,
198,
220,
220,
220,
326,
466,
777,
4560,
1312,
13,
68,
13,
299,
32152,
13,
1084,
13,
628,
220,
220,
220,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
198,
220,
220,
220,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
362,
35,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
46545,
25,
6675,
12,
30854,
46545,
7268,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
949,
357,
22468,
2599,
23412,
7177,
5288,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
357,
22468,
2599,
23412,
7177,
5415,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1612,
357,
22468,
2599,
23412,
7177,
1612,
1220,
2811,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
336,
1860,
1990,
357,
22468,
2599,
23412,
7177,
3210,
28833,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
352,
15885,
37659,
13,
1084,
7,
9060,
828,
352,
15885,
37659,
13,
9806,
7,
9060,
828,
352,
15885,
37659,
13,
32604,
7,
9060,
828,
352,
15885,
37659,
13,
19282,
7,
9060,
8,
628,
198,
4299,
3641,
62,
392,
62,
11265,
1096,
7,
9060,
11,
5046,
2599,
198,
220,
220,
220,
37227,
16409,
281,
2939,
351,
262,
976,
1612,
355,
262,
2656,
475,
351,
3815,
27464,
546,
262,
198,
220,
220,
220,
1612,
523,
355,
284,
423,
257,
3210,
28833,
286,
366,
9888,
1911,
628,
220,
220,
220,
5740,
25,
770,
2163,
1838,
645,
3761,
1028,
262,
6282,
198,
220,
220,
220,
286,
503,
12,
1659,
12,
9521,
17465,
3815,
13,
220,
12642,
23202,
262,
5128,
2939,
284,
198,
220,
220,
220,
257,
12178,
2414,
2099,
878,
6427,
287,
281,
2939,
13,
628,
220,
220,
220,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
198,
220,
220,
220,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
362,
35,
2939,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5046,
357,
600,
393,
12178,
2599,
5046,
5766,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
362,
35,
2939,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1312,
62,
1084,
11,
1312,
62,
9806,
11,
1312,
62,
32604,
11,
1312,
62,
19282,
796,
2939,
62,
34242,
7,
9060,
8,
198,
220,
220,
220,
1303,
1011,
262,
1612,
422,
262,
2939,
11,
788,
14083,
416,
262,
14367,
28833,
13,
775,
788,
5046,
416,
262,
198,
220,
220,
220,
1303,
5046,
5766,
290,
788,
751,
262,
1612,
736,
656,
262,
2939,
13,
198,
220,
220,
220,
3487,
62,
9060,
796,
14808,
7,
9060,
12,
72,
62,
32604,
8,
1220,
1312,
62,
19282,
8,
1635,
5046,
8,
1343,
1312,
62,
32604,
198,
220,
220,
220,
1441,
3487,
62,
9060,
628,
198,
4299,
6482,
62,
9060,
62,
9464,
7,
9060,
11,
6482,
2599,
198,
220,
220,
220,
37227,
25235,
82,
262,
5128,
937,
5374,
5998,
2939,
14869,
6482,
17848,
284,
262,
1364,
13,
628,
220,
220,
220,
383,
4504,
2939,
468,
262,
976,
5485,
355,
262,
2656,
351,
198,
220,
220,
220,
262,
347,
12532,
1137,
62,
2200,
31484,
6158,
3896,
284,
6070,
12,
259,
4814,
3815,
13,
220,
4091,
628,
220,
220,
220,
2638,
1378,
31628,
13,
9654,
33967,
13,
2398,
14,
17,
13,
19,
14,
15390,
14,
83,
44917,
82,
14,
9600,
36942,
14,
9600,
7645,
14,
30073,
12050,
34189,
14,
30073,
12050,
34189,
13,
6494,
30,
8929,
2971,
28,
30073,
628,
220,
220,
220,
329,
2252,
7468,
13,
628,
220,
220,
220,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
198,
220,
220,
220,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
23412,
362,
35,
2939,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6482,
357,
600,
2599,
3167,
489,
5592,
1988,
10200,
262,
1271,
286,
17848,
284,
6482,
262,
5128,
2939,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
11507,
743,
307,
657,
10200,
6632,
29358,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
14869,
362,
35,
2939,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
198,
220,
220,
220,
1303,
1011,
262,
20218,
2939,
11,
477,
15274,
11,
422,
5721,
5447,
287,
6482,
284,
886,
11,
1445,
6482,
1262,
4865,
24340,
13,
198,
220,
220,
220,
1441,
269,
85,
17,
13,
30073,
12050,
34189,
7,
29510,
62,
9060,
58,
45299,
6482,
25,
4357,
657,
11,
657,
11,
657,
11,
6482,
11,
269,
85,
17,
13,
33,
12532,
1137,
62,
2200,
31484,
6158,
8,
628,
198,
198,
4299,
3580,
62,
9060,
7,
9600,
16,
11,
33705,
17,
2599,
198,
220,
220,
220,
37227,
16409,
262,
3580,
1022,
262,
734,
5128,
4263,
357,
9600,
16,
532,
33705,
17,
737,
383,
7186,
7177,
1276,
307,
39279,
198,
220,
220,
220,
290,
27464,
284,
4197,
685,
15,
11,
14280,
4083,
628,
220,
220,
220,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
198,
220,
220,
220,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33705,
16,
357,
77,
32152,
13,
18747,
2599,
23412,
362,
35,
2939,
13,
198,
220,
220,
220,
220,
220,
220,
220,
33705,
17,
357,
77,
32152,
13,
18747,
2599,
23412,
362,
35,
2939,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
362,
35,
2939,
7268,
262,
1255,
286,
34128,
278,
33705,
17,
422,
33705,
16,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3580,
796,
33705,
16,
13,
459,
2981,
7,
37659,
13,
22468,
8,
532,
33705,
17,
13,
459,
2981,
7,
37659,
13,
22468,
8,
198,
220,
220,
220,
5072,
62,
9060,
796,
45941,
13,
9107,
418,
7,
26069,
1945,
13,
43358,
8,
198,
220,
220,
220,
269,
85,
17,
13,
11265,
1096,
7,
26069,
1945,
11,
5072,
62,
9060,
11,
17130,
28,
15,
11,
12159,
28,
13381,
11,
2593,
62,
4906,
28,
33967,
17,
13,
35510,
44,
62,
23678,
22921,
8,
198,
220,
220,
220,
1303,
3601,
7203,
11518,
11052,
318,
33172,
3509,
7,
22915,
62,
9060,
13,
2704,
41769,
3419,
4008,
198,
220,
220,
220,
1303,
3601,
7203,
9452,
11052,
318,
33172,
949,
7,
22915,
62,
9060,
13,
2704,
41769,
3419,
4008,
198,
220,
220,
220,
1441,
5072,
62,
9060,
628,
198,
4299,
751,
62,
3919,
786,
7,
9060,
11,
6518,
11,
264,
13495,
2599,
198,
220,
220,
220,
37227,
16409,
257,
4866,
286,
262,
5128,
3124,
2939,
351,
12822,
31562,
7838,
2087,
284,
198,
220,
220,
220,
6518,
357,
15,
12,
17,
737,
383,
12822,
31562,
7838,
1612,
1276,
307,
6632,
13,
383,
11507,
264,
13495,
198,
220,
220,
220,
6973,
262,
3210,
28833,
286,
262,
7838,
13,
628,
220,
220,
220,
383,
4504,
7177,
3815,
1276,
407,
307,
49305,
393,
39279,
290,
27464,
13,
770,
1724,
326,
198,
220,
220,
220,
612,
714,
307,
3815,
326,
389,
407,
287,
685,
15,
11,
14280,
4083,
628,
220,
220,
220,
5740,
25,
770,
2163,
1838,
645,
3761,
1028,
262,
6282,
198,
220,
220,
220,
286,
503,
12,
1659,
12,
9521,
17465,
3815,
13,
220,
12642,
23202,
262,
5128,
2939,
284,
198,
220,
220,
220,
257,
12178,
2414,
2099,
878,
6427,
287,
281,
2939,
13,
628,
220,
220,
220,
632,
318,
4047,
7151,
284,
787,
257,
4866,
286,
262,
5128,
2939,
287,
1502,
284,
3368,
30620,
198,
220,
220,
220,
262,
2656,
7177,
13,
921,
460,
466,
428,
416,
4585,
25,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
357,
77,
32152,
13,
18747,
2599,
5128,
25228,
357,
33,
10761,
287,
4946,
33538,
8,
2939,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6518,
357,
600,
2599,
11102,
6376,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13495,
357,
22468,
2599,
12822,
31562,
7838,
3210,
28833,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
299,
32152,
13,
18747,
25,
25235,
513,
35,
7177,
7268,
262,
1255,
286,
4375,
12822,
31562,
7838,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7368,
6518,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
7716,
4738,
7838,
1262,
262,
2939,
13,
43358,
46545,
355,
262,
15225,
13,
198,
220,
220,
220,
31986,
31562,
62,
3919,
786,
796,
45941,
13,
25120,
13,
25192,
77,
46491,
9060,
13,
43358,
8,
1635,
264,
13495,
198,
220,
220,
220,
20218,
62,
9060,
796,
45941,
13,
30073,
7,
9060,
8,
198,
220,
220,
220,
20218,
62,
9060,
796,
357,
29510,
62,
9060,
1635,
352,
13,
15,
8,
220,
1303,
787,
340,
257,
12178,
198,
220,
220,
220,
20218,
62,
9060,
58,
45299,
1058,
11,
6518,
60,
15853,
31986,
31562,
62,
3919,
786,
58,
45299,
1058,
11,
6518,
60,
198,
220,
220,
220,
1441,
20218,
62,
9060,
198
] | 2.812681 | 3,454 |
from collections import defaultdict
import re
from utils import open_file
from random import random, seed
class FixedProbCounter():
'''Reads file in chunks
counts the letters and stores the event
gets the dictionary with the number of occurrences of each letter
using a fixed probability of 1 / 8
'''
| [
6738,
17268,
1330,
4277,
11600,
198,
11748,
302,
198,
6738,
3384,
4487,
1330,
1280,
62,
7753,
198,
6738,
4738,
1330,
4738,
11,
9403,
628,
198,
4871,
10832,
2964,
65,
31694,
33529,
628,
628,
220,
220,
220,
705,
7061,
5569,
82,
2393,
287,
22716,
198,
220,
220,
220,
220,
220,
220,
9853,
262,
7475,
290,
7000,
262,
1785,
198,
220,
220,
220,
220,
220,
220,
3011,
262,
22155,
351,
262,
1271,
286,
40279,
286,
1123,
3850,
198,
220,
220,
220,
220,
220,
220,
1262,
257,
5969,
12867,
286,
352,
1220,
807,
198,
220,
220,
220,
705,
7061,
628
] | 3.463918 | 97 |
#!/usr/bin/python
import sys
import numpy as np
import matplotlib.pyplot as plt
from easypyplot import pdf, color
from easypyplot import format as fmt
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
198,
11748,
25064,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2562,
9078,
29487,
1330,
37124,
11,
3124,
198,
6738,
2562,
9078,
29487,
1330,
5794,
355,
46996,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.924242 | 66 |
# Generated by Django 2.2.6 on 2019-11-05 16:16
from django.db import migrations, models
import django.db.models.deletion
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
13,
21,
319,
13130,
12,
1157,
12,
2713,
1467,
25,
1433,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
198,
11748,
42625,
14208,
13,
9945,
13,
27530,
13,
2934,
1616,
295,
628
] | 2.818182 | 44 |
#
# Copyright (c) 2014-2015 Sylvain Peyrefitte
#
# This file is part of rdpy.
#
# rdpy is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
RDP Standard security layer
"""
import sha, md5
import lic, tpkt
from t125 import gcc, mcs
from rdpy.core.type import CompositeType, CallableValue, Stream, UInt32Le, UInt16Le, String, sizeof, UInt8
from rdpy.core.layer import LayerAutomata, IStreamSender
from rdpy.core.error import InvalidExpectedDataException
from rdpy.core import log
from rdpy.security import rc4
import rdpy.security.rsa_wrapper as rsa
class SecurityFlag(object):
"""
@summary: Microsoft security flags
@see: http://msdn.microsoft.com/en-us/library/cc240579.aspx
"""
SEC_EXCHANGE_PKT = 0x0001
SEC_TRANSPORT_REQ = 0x0002
RDP_SEC_TRANSPORT_RSP = 0x0004
SEC_ENCRYPT = 0x0008
SEC_RESET_SEQNO = 0x0010
SEC_IGNORE_SEQNO = 0x0020
SEC_INFO_PKT = 0x0040
SEC_LICENSE_PKT = 0x0080
SEC_LICENSE_ENCRYPT_CS = 0x0200
SEC_LICENSE_ENCRYPT_SC = 0x0200
SEC_REDIRECTION_PKT = 0x0400
SEC_SECURE_CHECKSUM = 0x0800
SEC_AUTODETECT_REQ = 0x1000
SEC_AUTODETECT_RSP = 0x2000
SEC_HEARTBEAT = 0x4000
SEC_FLAGSHI_VALID = 0x8000
class InfoFlag(object):
"""
Client capabilities informations
"""
INFO_MOUSE = 0x00000001
INFO_DISABLECTRLALTDEL = 0x00000002
INFO_AUTOLOGON = 0x00000008
INFO_UNICODE = 0x00000010
INFO_MAXIMIZESHELL = 0x00000020
INFO_LOGONNOTIFY = 0x00000040
INFO_COMPRESSION = 0x00000080
INFO_ENABLEWINDOWSKEY = 0x00000100
INFO_REMOTECONSOLEAUDIO = 0x00002000
INFO_FORCE_ENCRYPTED_CS_PDU = 0x00004000
INFO_RAIL = 0x00008000
INFO_LOGONERRORS = 0x00010000
INFO_MOUSE_HAS_WHEEL = 0x00020000
INFO_PASSWORD_IS_SC_PIN = 0x00040000
INFO_NOAUDIOPLAYBACK = 0x00080000
INFO_USING_SAVED_CREDS = 0x00100000
INFO_AUDIOCAPTURE = 0x00200000
INFO_VIDEO_DISABLE = 0x00400000
INFO_CompressionTypeMask = 0x00001E00
class PerfFlag(object):
"""
Network performances flag
"""
PERF_DISABLE_WALLPAPER = 0x00000001
PERF_DISABLE_FULLWINDOWDRAG = 0x00000002
PERF_DISABLE_MENUANIMATIONS = 0x00000004
PERF_DISABLE_THEMING = 0x00000008
PERF_DISABLE_CURSOR_SHADOW = 0x00000020
PERF_DISABLE_CURSORSETTINGS = 0x00000040
PERF_ENABLE_FONT_SMOOTHING = 0x00000080
PERF_ENABLE_DESKTOP_COMPOSITION = 0x00000100
class AfInet(object):
"""
IPv4 or IPv6 address style
"""
AF_INET = 0x00002
AF_INET6 = 0x0017
def saltedHash(inputData, salt, salt1, salt2):
"""
@summary: Generate particular signature from combination of sha1 and md5
@see: http://msdn.microsoft.com/en-us/library/cc241992.aspx
@param inputData: strange input (see doc)
@param salt: salt for context call
@param salt1: another salt (ex : client random)
@param salt2: another another salt (ex: server random)
@return : MD5(Salt + SHA1(Input + Salt + Salt1 + Salt2))
"""
sha1Digest = sha.new()
md5Digest = md5.new()
sha1Digest.update(inputData)
sha1Digest.update(salt[:48])
sha1Digest.update(salt1)
sha1Digest.update(salt2)
sha1Sig = sha1Digest.digest()
md5Digest.update(salt[:48])
md5Digest.update(sha1Sig)
return md5Digest.digest()
def finalHash(key, random1, random2):
"""
@summary: MD5(in0[:16] + in1[:32] + in2[:32])
@param key: in 16
@param random1: in 32
@param random2: in 32
@return MD5(in0[:16] + in1[:32] + in2[:32])
"""
md5Digest = md5.new()
md5Digest.update(key)
md5Digest.update(random1)
md5Digest.update(random2)
return md5Digest.digest()
def masterSecret(secret, random1, random2):
"""
@summary: Generate master secret
@param secret: {str} secret
@param clientRandom : {str} client random
@param serverRandom : {str} server random
@see: http://msdn.microsoft.com/en-us/library/cc241992.aspx
"""
return saltedHash("A", secret, random1, random2) + saltedHash("BB", secret, random1, random2) + saltedHash("CCC", secret, random1, random2)
def sessionKeyBlob(secret, random1, random2):
"""
@summary: Generate master secret
@param secret: secret
@param clientRandom : client random
@param serverRandom : server random
"""
return saltedHash("X", secret, random1, random2) + saltedHash("YY", secret, random1, random2) + saltedHash("ZZZ", secret, random1, random2)
def macData(macSaltKey, data):
"""
@see: http://msdn.microsoft.com/en-us/library/cc241995.aspx
@param macSaltKey: {str} mac key
@param data: {str} data to sign
@return: {str} signature
"""
sha1Digest = sha.new()
md5Digest = md5.new()
#encode length
dataLength = Stream()
dataLength.writeType(UInt32Le(len(data)))
sha1Digest.update(macSaltKey)
sha1Digest.update("\x36" * 40)
sha1Digest.update(dataLength.getvalue())
sha1Digest.update(data)
sha1Sig = sha1Digest.digest()
md5Digest.update(macSaltKey)
md5Digest.update("\x5c" * 48)
md5Digest.update(sha1Sig)
return md5Digest.digest()
def macSaltedData(macSaltKey, data, encryptionCount):
"""
@see: https://msdn.microsoft.com/en-us/library/cc240789.aspx
@param macSaltKey: {str} mac key
@param data: {str} data to sign
@param encryptionCount: nb encrypted packet
@return: {str} signature
"""
sha1Digest = sha.new()
md5Digest = md5.new()
#encode length
dataLengthS = Stream()
dataLengthS.writeType(UInt32Le(len(data)))
encryptionCountS = Stream()
encryptionCountS.writeType(UInt32Le(encryptionCount))
sha1Digest.update(macSaltKey)
sha1Digest.update("\x36" * 40)
sha1Digest.update(dataLengthS.getvalue())
sha1Digest.update(data)
sha1Digest.update(encryptionCountS.getvalue())
sha1Sig = sha1Digest.digest()
md5Digest.update(macSaltKey)
md5Digest.update("\x5c" * 48)
md5Digest.update(sha1Sig)
return md5Digest.digest()
def tempKey(initialKey, currentKey):
"""
@see: http://msdn.microsoft.com/en-us/library/cc240792.aspx
@param initialKey: {str} key computed first time
@param currentKey: {str} key actually used
@return: {str} temp key
"""
sha1Digest = sha.new()
md5Digest = md5.new()
sha1Digest.update(initialKey)
sha1Digest.update("\x36" * 40)
sha1Digest.update(currentKey)
sha1Sig = sha1Digest.digest()
md5Digest.update(initialKey)
md5Digest.update("\x5c" * 48)
md5Digest.update(sha1Sig)
return md5Digest.digest()
def gen40bits(data):
"""
@summary: generate 40 bits data from 128 bits data
@param data: {str} 128 bits data
@return: {str} 40 bits data
@see: http://msdn.microsoft.com/en-us/library/cc240785.aspx
"""
return "\xd1\x26\x9e" + data[:8][-5:]
def gen56bits(data):
"""
@summary: generate 56 bits data from 128 bits data
@param data: {str} 128 bits data
@return: {str} 56 bits data
@see: http://msdn.microsoft.com/en-us/library/cc240785.aspx
"""
return "\xd1" + data[:8][-7:]
def generateKeys(clientRandom, serverRandom, method):
"""
@param method: {gcc.Encryption}
@param clientRandom: {str[32]} client random
@param serverRandom: {str[32]} server random
@see: http://msdn.microsoft.com/en-us/library/cc240785.aspx
@return: MACKey, initialFirstKey128(ClientdecryptKey, serverEncryptKey), initialSecondKey128(ServerDecryptKey, ClientEncryptKey)
"""
preMasterHash = clientRandom[:24] + serverRandom[:24]
masterHash = masterSecret(preMasterHash, clientRandom, serverRandom)
sessionKey = sessionKeyBlob(masterHash, clientRandom, serverRandom)
macKey128 = sessionKey[:16]
initialFirstKey128 = finalHash(sessionKey[16:32], clientRandom, serverRandom)
initialSecondKey128 = finalHash(sessionKey[32:48], clientRandom, serverRandom)
#generate valid key
if method == gcc.EncryptionMethod.ENCRYPTION_FLAG_40BIT:
return gen40bits(macKey128), gen40bits(initialFirstKey128), gen40bits(initialSecondKey128)
elif method == gcc.EncryptionMethod.ENCRYPTION_FLAG_56BIT:
return gen56bits(macKey128), gen56bits(initialFirstKey128), gen56bits(initialSecondKey128)
elif method == gcc.EncryptionMethod.ENCRYPTION_FLAG_128BIT:
return macKey128, initialFirstKey128, initialSecondKey128
raise InvalidExpectedDataException("Bad encryption method")
def updateKey(initialKey, currentKey, method):
"""
@summary: update session key
@param initialKey: {str} Initial key
@param currentKey: {str} Current key
@return newKey: {str} key to use
@see: http://msdn.microsoft.com/en-us/library/cc240792.aspx
"""
#generate valid key
if method == gcc.EncryptionMethod.ENCRYPTION_FLAG_40BIT:
tempKey128 = tempKey(initialKey[:8], currentKey[:8])
return gen40bits(rc4.crypt(rc4.RC4Key(tempKey128[:8]), tempKey128[:8]))
elif method == gcc.EncryptionMethod.ENCRYPTION_FLAG_56BIT:
tempKey128 = tempKey(initialKey[:8], currentKey[:8])
return gen56bits(rc4.crypt(rc4.RC4Key(tempKey128[:8]), tempKey128[:8]))
elif method == gcc.EncryptionMethod.ENCRYPTION_FLAG_128BIT:
tempKey128 = tempKey(initialKey, currentKey)
return rc4.crypt(rc4.RC4Key(tempKey128), tempKey128)
class ClientSecurityExchangePDU(CompositeType):
"""
@summary: contain client random for basic security
@see: http://msdn.microsoft.com/en-us/library/cc240472.aspx
"""
class RDPInfo(CompositeType):
"""
@summary: Client informations
Contains credentials (very important packet)
@see: http://msdn.microsoft.com/en-us/library/cc240475.aspx
"""
class RDPExtendedInfo(CompositeType):
"""
@summary: Add more client informations
"""
class SecLayer(LayerAutomata, IStreamSender, tpkt.IFastPathListener, tpkt.IFastPathSender, mcs.IGCCConfig):
"""
@summary: Standard RDP security layer
This layer is Transparent as possible for upper layer
"""
def __init__(self, presentation):
"""
@param presentation: Layer (generally pdu layer)
"""
LayerAutomata.__init__(self, presentation)
#thios layer is like a fastpath proxy
self._fastPathTransport = None
self._fastPathPresentation = None
#credentials
self._info = RDPInfo(extendedInfoConditional = lambda:(self.getGCCServerSettings().SC_CORE.rdpVersion.value == gcc.Version.RDP_VERSION_5_PLUS))
#True if classic encryption is enable
self._enableEncryption = False
#Enable Secure Mac generation
self._enableSecureCheckSum = False
#initialise decrypt and encrypt keys
self._macKey = None
self._initialDecrytKey = None
self._initialEncryptKey = None
self._currentDecrytKey = None
self._currentEncryptKey = None
#counter before update
self._nbEncryptedPacket = 0
self._nbDecryptedPacket = 0
#current rc4 tab
self._decryptRc4 = None
self._encryptRc4 = None
def readEncryptedPayload(self, s, saltedMacGeneration):
"""
@summary: decrypt basic RDP security payload
@param s: {Stream} encrypted stream
@param saltedMacGeneration: {bool} use salted mac generation
@return: {Stream} decrypted
"""
#if update is needed
if self._nbDecryptedPacket == 4096:
log.debug("update decrypt key")
self._currentDecrytKey = updateKey( self._initialDecrytKey, self._currentDecrytKey,
self.getGCCServerSettings().SC_SECURITY.encryptionMethod.value)
self._decryptRc4 = rc4.RC4Key(self._currentDecrytKey)
self._nbDecryptedPacket = 0
signature = String(readLen = CallableValue(8))
encryptedPayload = String()
s.readType((signature, encryptedPayload))
decrypted = rc4.crypt(self._decryptRc4, encryptedPayload.value)
#ckeck signature
if not saltedMacGeneration and macData(self._macKey, decrypted)[:8] != signature.value:
raise InvalidExpectedDataException("bad signature")
if saltedMacGeneration and macSaltedData(self._macKey, decrypted, self._nbDecryptedPacket)[:8] != signature.value:
raise InvalidExpectedDataException("bad signature")
#count
self._nbDecryptedPacket += 1
return Stream(decrypted)
def writeEncryptedPayload(self, data, saltedMacGeneration):
"""
@summary: sign and crypt data
@param data: {Type} raw stream
@param saltedMacGeneration: {bool} use salted mac generation
@return: {Tuple} (signature, encryptedData)
"""
if self._nbEncryptedPacket == 4096:
log.debug("update encrypt key")
self._currentEncryptKey = updateKey( self._initialEncryptKey, self._currentEncryptKey,
self.getGCCServerSettings().SC_SECURITY.encryptionMethod.value)
self._encryptRc4 = rc4.RC4Key(self._currentEncryptKey)
self._nbEncryptedPacket = 0
self._nbEncryptedPacket += 1
s = Stream()
s.writeType(data)
if saltedMacGeneration:
return (String(macSaltedData(self._macKey, s.getvalue(), self._nbEncryptedPacket - 1)[:8]), String(rc4.crypt(self._encryptRc4, s.getvalue())))
else:
return (String(macData(self._macKey, s.getvalue())[:8]), String(rc4.crypt(self._encryptRc4, s.getvalue())))
def recv(self, data):
"""
@summary: if basic RDP security layer is activate decrypt
else pass to upper layer
@param data : {Stream} input Stream
"""
if not self._enableEncryption:
self._presentation.recv(data)
return
securityFlag = UInt16Le()
securityFlagHi = UInt16Le()
data.readType((securityFlag, securityFlagHi))
if securityFlag.value & SecurityFlag.SEC_ENCRYPT:
data = self.readEncryptedPayload(data, securityFlag.value & SecurityFlag.SEC_SECURE_CHECKSUM)
self._presentation.recv(data)
def send(self, data):
"""
@summary: if basic RDP security layer is activate encrypt
else pass to upper layer
@param data: {Type | Tuple}
"""
if not self._enableEncryption:
self._transport.send(data)
return
flag = SecurityFlag.SEC_ENCRYPT
if self._enableSecureCheckSum:
flag |= SecurityFlag.SEC_SECURE_CHECKSUM
self.sendFlagged(flag, data)
def sendFlagged(self, flag, data):
"""
@summary: explicit send flag method for particular packet
(info packet or license packet)
If encryption is enable apply it
@param flag: {integer} security flag
@param data: {Type | Tuple}
"""
if flag & SecurityFlag.SEC_ENCRYPT:
data = self.writeEncryptedPayload(data, flag & SecurityFlag.SEC_SECURE_CHECKSUM)
self._transport.send((UInt16Le(flag), UInt16Le(), data))
def recvFastPath(self, secFlag, fastPathS):
"""
@summary: Call when fast path packet is received
@param secFlag: {SecFlags}
@param fastPathS: {Stream}
"""
if self._enableEncryption and secFlag & tpkt.SecFlags.FASTPATH_OUTPUT_ENCRYPTED:
fastPathS = self.readEncryptedPayload(fastPathS, secFlag & tpkt.SecFlags.FASTPATH_OUTPUT_SECURE_CHECKSUM)
self._fastPathPresentation.recvFastPath(secFlag, fastPathS)
def setFastPathListener(self, fastPathListener):
"""
@param fastPathListener : {IFastPathListener}
"""
self._fastPathPresentation = fastPathListener
def sendFastPath(self, secFlag, fastPathS):
"""
@summary: Send fastPathS Type as fast path packet
@param secFlag: {SecFlags}
@param fastPathS: {Stream} type transform to stream and send as fastpath
"""
if self._enableEncryption:
secFlag |= tpkt.SecFlags.FASTPATH_OUTPUT_ENCRYPTED
if self._enableSecureCheckSum:
secFlag |= tpkt.SecFlags.FASTPATH_OUTPUT_SECURE_CHECKSUM
fastPathS = self.writeEncryptedPayload(fastPathS, self._enableSecureCheckSum)
self._fastPathTransport.sendFastPath(secFlag, fastPathS)
def setFastPathSender(self, fastPathSender):
"""
@param fastPathSender: {tpkt.FastPathSender}
"""
self._fastPathTransport = fastPathSender
def getUserId(self):
"""
@return: {integer} mcs user id
@see: mcs.IGCCConfig
"""
return self._transport.getUserId()
def getChannelId(self):
"""
@return: {integer} return channel id of proxy
@see: mcs.IGCCConfig
"""
return self._transport.getChannelId()
def getGCCClientSettings(self):
"""
@return: {gcc.Settings} mcs layer gcc client settings
@see: mcs.IGCCConfig
"""
return self._transport.getGCCClientSettings()
def getGCCServerSettings(self):
"""
@return: {gcc.Settings} mcs layer gcc server settings
@see: mcs.IGCCConfig
"""
return self._transport.getGCCServerSettings()
class Client(SecLayer):
"""
@summary: Client side of security layer
"""
def connect(self):
"""
@summary: send client random if needed and send info packet
"""
self._enableEncryption = self.getGCCClientSettings().CS_CORE.serverSelectedProtocol == 0
if self._enableEncryption:
self.sendClientRandom()
self.sendInfoPkt()
def sendInfoPkt(self):
"""
@summary: send information packet (with credentials)
next state -> recvLicenceInfo
"""
secFlag = SecurityFlag.SEC_INFO_PKT
if self._enableEncryption:
secFlag |= SecurityFlag.SEC_ENCRYPT
self.sendFlagged(secFlag, self._info)
self.setNextState(self.recvLicenceInfo)
def sendClientRandom(self):
"""
@summary: generate and send client random and init session keys
"""
#generate client random
clientRandom = rsa.random(256)
self._macKey, self._initialDecrytKey, self._initialEncryptKey = generateKeys( clientRandom,
self.getGCCServerSettings().SC_SECURITY.serverRandom.value,
self.getGCCServerSettings().SC_SECURITY.encryptionMethod.value)
#initialize keys
self._currentDecrytKey = self._initialDecrytKey
self._currentEncryptKey = self._initialEncryptKey
self._decryptRc4 = rc4.RC4Key(self._currentDecrytKey)
self._encryptRc4 = rc4.RC4Key(self._currentEncryptKey)
#verify certificate
if not self.getGCCServerSettings().SC_SECURITY.serverCertificate.certData.verify():
log.warning("cannot verify server identity")
#send client random encrypted with
serverPublicKey = self.getGCCServerSettings().SC_SECURITY.serverCertificate.certData.getPublicKey()
message = ClientSecurityExchangePDU()
#reverse because bignum in little endian
message.encryptedClientRandom.value = rsa.encrypt(clientRandom[::-1], serverPublicKey)[::-1]
self.sendFlagged(SecurityFlag.SEC_EXCHANGE_PKT, message)
def recvLicenceInfo(self, s):
"""
@summary: Read license info packet and check if is a valid client info
Wait Demand Active PDU
@param s: Stream
"""
#packet preambule
securityFlag = UInt16Le()
securityFlagHi = UInt16Le()
s.readType((securityFlag, securityFlagHi))
if not (securityFlag.value & SecurityFlag.SEC_LICENSE_PKT):
raise InvalidExpectedDataException("waiting license packet")
if self._licenceManager.recv(s):
self.setNextState()
#end of connection step of
self._presentation.connect()
class Server(SecLayer):
"""
@summary: Client side of security layer
"""
def __init__(self, presentation):
"""
@param presentation: {Layer}
"""
SecLayer.__init__(self, presentation)
self._rsaPublicKey, self._rsaPrivateKey = rsa.newkeys(512)
def connect(self):
"""
@summary: init automata to wait info packet
"""
self._enableEncryption = self.getGCCClientSettings().CS_CORE.serverSelectedProtocol == 0
if self._enableEncryption:
self.setNextState(self.recvClientRandom)
else:
self.setNextState(self.recvInfoPkt)
def getCertificate(self):
"""
@summary: generate proprietary certificate from rsa public key
"""
certificate = gcc.ProprietaryServerCertificate()
certificate.PublicKeyBlob.modulus.value = rsa.int2bytes(self._rsaPublicKey.n)[::-1]
certificate.PublicKeyBlob.pubExp.value = self._rsaPublicKey.e
certificate.sign()
return gcc.ServerCertificate(certificate)
def recvClientRandom(self, s):
"""
@summary: receive client random and generate session keys
@param s: {Stream}
"""
#packet preambule
securityFlag = UInt16Le()
securityFlagHi = UInt16Le()
s.readType((securityFlag, securityFlagHi))
if not (securityFlag.value & SecurityFlag.SEC_EXCHANGE_PKT):
raise InvalidExpectedDataException("waiting client random")
message = ClientSecurityExchangePDU()
s.readType(message)
clientRandom = rsa.decrypt(message.encryptedClientRandom.value[::-1], self._rsaPrivateKey)[::-1]
self._macKey, self._initialEncryptKey, self._initialDecrytKey = generateKeys( clientRandom,
self.getGCCServerSettings().SC_SECURITY.serverRandom.value,
self.getGCCServerSettings().SC_SECURITY.encryptionMethod.value)
#initialize keys
self._currentDecrytKey = self._initialDecrytKey
self._currentEncryptKey = self._initialEncryptKey
self._decryptRc4 = rc4.RC4Key(self._currentDecrytKey)
self._encryptRc4 = rc4.RC4Key(self._currentEncryptKey)
self.setNextState(self.recvInfoPkt)
def recvInfoPkt(self, s):
"""
@summary: receive info packet from client
Client credentials
Send License valid error message
Send Demand Active PDU
Wait Confirm Active PDU
@param s: {Stream}
"""
securityFlag = UInt16Le()
securityFlagHi = UInt16Le()
s.readType((securityFlag, securityFlagHi))
if not (securityFlag.value & SecurityFlag.SEC_INFO_PKT):
raise InvalidExpectedDataException("Waiting info packet")
if securityFlag.value & SecurityFlag.SEC_ENCRYPT:
s = self.readEncryptedPayload(s, securityFlag.value & SecurityFlag.SEC_SECURE_CHECKSUM)
s.readType(self._info)
#next state send error license
self.sendLicensingErrorMessage()
#reinit state
self.setNextState()
self._presentation.connect()
def sendLicensingErrorMessage(self):
"""
@summary: Send a licensing error data
"""
self.sendFlagged(SecurityFlag.SEC_LICENSE_PKT, lic.createValidClientLicensingErrorMessage()) | [
2,
198,
2,
15069,
357,
66,
8,
1946,
12,
4626,
24286,
391,
2631,
88,
5420,
2654,
198,
2,
198,
2,
770,
2393,
318,
636,
286,
374,
67,
9078,
13,
198,
2,
198,
2,
374,
67,
9078,
318,
1479,
3788,
25,
345,
460,
17678,
4163,
340,
290,
14,
273,
13096,
198,
2,
340,
739,
262,
2846,
286,
262,
22961,
3611,
5094,
13789,
355,
3199,
416,
198,
2,
262,
3232,
10442,
5693,
11,
2035,
2196,
513,
286,
262,
13789,
11,
393,
198,
2,
357,
265,
534,
3038,
8,
597,
1568,
2196,
13,
198,
2,
198,
2,
770,
1430,
318,
9387,
287,
262,
2911,
326,
340,
481,
307,
4465,
11,
198,
2,
475,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
198,
2,
34482,
3398,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
4091,
262,
198,
2,
22961,
3611,
5094,
13789,
329,
517,
3307,
13,
198,
2,
198,
2,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
3611,
5094,
13789,
198,
2,
1863,
351,
428,
1430,
13,
1002,
407,
11,
766,
1279,
4023,
1378,
2503,
13,
41791,
13,
2398,
14,
677,
4541,
15913,
13,
198,
2,
198,
198,
37811,
198,
49,
6322,
8997,
2324,
7679,
198,
37811,
198,
198,
11748,
427,
64,
11,
45243,
20,
198,
11748,
3476,
11,
256,
79,
21841,
198,
6738,
256,
11623,
1330,
49582,
11,
285,
6359,
198,
6738,
374,
67,
9078,
13,
7295,
13,
4906,
1330,
49355,
6030,
11,
4889,
540,
11395,
11,
13860,
11,
471,
5317,
2624,
3123,
11,
471,
5317,
1433,
3123,
11,
10903,
11,
39364,
11,
471,
5317,
23,
198,
6738,
374,
67,
9078,
13,
7295,
13,
29289,
1330,
34398,
38062,
1045,
11,
314,
12124,
50,
2194,
198,
6738,
374,
67,
9078,
13,
7295,
13,
18224,
1330,
17665,
3109,
7254,
6601,
16922,
198,
6738,
374,
67,
9078,
13,
7295,
1330,
2604,
198,
6738,
374,
67,
9078,
13,
12961,
1330,
48321,
19,
198,
11748,
374,
67,
9078,
13,
12961,
13,
3808,
64,
62,
48553,
355,
374,
11400,
198,
198,
4871,
4765,
34227,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
5413,
2324,
9701,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2713,
3720,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10729,
62,
6369,
3398,
27746,
62,
40492,
51,
796,
657,
87,
18005,
198,
220,
220,
220,
10729,
62,
5446,
1565,
4303,
9863,
62,
2200,
48,
796,
657,
87,
34215,
198,
220,
220,
220,
371,
6322,
62,
23683,
62,
5446,
1565,
4303,
9863,
62,
49,
4303,
796,
657,
87,
830,
19,
198,
220,
220,
220,
10729,
62,
1677,
9419,
56,
11571,
796,
657,
87,
830,
23,
198,
220,
220,
220,
10729,
62,
19535,
2767,
62,
5188,
48,
15285,
796,
657,
87,
37187,
198,
220,
220,
220,
10729,
62,
16284,
6965,
62,
5188,
48,
15285,
796,
657,
87,
405,
1238,
198,
220,
220,
220,
10729,
62,
10778,
62,
40492,
51,
796,
657,
87,
405,
1821,
198,
220,
220,
220,
10729,
62,
43,
2149,
24290,
62,
40492,
51,
796,
657,
87,
405,
1795,
198,
220,
220,
220,
10729,
62,
43,
2149,
24290,
62,
1677,
9419,
56,
11571,
62,
7902,
796,
657,
87,
44613,
198,
220,
220,
220,
10729,
62,
43,
2149,
24290,
62,
1677,
9419,
56,
11571,
62,
6173,
796,
657,
87,
44613,
198,
220,
220,
220,
10729,
62,
22083,
40,
23988,
2849,
62,
40492,
51,
796,
657,
87,
3023,
405,
198,
220,
220,
220,
10729,
62,
23683,
11335,
62,
50084,
50,
5883,
796,
657,
87,
2919,
405,
198,
220,
220,
220,
10729,
62,
39371,
3727,
2767,
9782,
62,
2200,
48,
796,
657,
87,
12825,
198,
220,
220,
220,
10729,
62,
39371,
3727,
2767,
9782,
62,
49,
4303,
796,
657,
87,
11024,
198,
220,
220,
220,
10729,
62,
13909,
7227,
12473,
1404,
796,
657,
87,
27559,
198,
220,
220,
220,
10729,
62,
38948,
9693,
40,
62,
23428,
2389,
796,
657,
87,
33942,
198,
220,
220,
220,
220,
198,
4871,
14151,
34227,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20985,
9889,
4175,
602,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
24890,
62,
44,
2606,
5188,
796,
657,
87,
10535,
486,
198,
220,
220,
220,
24890,
62,
26288,
6242,
16779,
7836,
1847,
21016,
3698,
796,
657,
87,
24598,
17,
198,
220,
220,
220,
24890,
62,
39371,
33462,
1340,
796,
657,
87,
24598,
23,
198,
220,
220,
220,
24890,
62,
4944,
2149,
16820,
796,
657,
87,
10535,
940,
198,
220,
220,
220,
24890,
62,
22921,
3955,
14887,
1546,
13909,
3069,
796,
657,
87,
10535,
1238,
198,
220,
220,
220,
24890,
62,
25294,
1340,
11929,
5064,
56,
796,
657,
87,
10535,
1821,
198,
220,
220,
220,
24890,
62,
9858,
32761,
2849,
796,
657,
87,
10535,
1795,
198,
220,
220,
220,
24890,
62,
1677,
17534,
33207,
20373,
796,
657,
87,
2388,
39103,
198,
220,
220,
220,
24890,
62,
40726,
2394,
2943,
1340,
15821,
2538,
48877,
9399,
796,
657,
87,
2388,
11024,
198,
220,
220,
220,
24890,
62,
13775,
5222,
62,
1677,
9419,
56,
11571,
1961,
62,
7902,
62,
5760,
52,
796,
657,
87,
2388,
27559,
198,
220,
220,
220,
24890,
62,
3861,
4146,
796,
657,
87,
2388,
33942,
198,
220,
220,
220,
24890,
62,
25294,
1340,
24908,
50,
796,
657,
87,
18005,
2388,
198,
220,
220,
220,
24890,
62,
44,
2606,
5188,
62,
39,
1921,
62,
12418,
36,
3698,
796,
657,
87,
830,
2167,
405,
198,
220,
220,
220,
24890,
62,
47924,
54,
12532,
62,
1797,
62,
6173,
62,
44032,
796,
657,
87,
830,
19,
2388,
198,
220,
220,
220,
24890,
62,
15285,
48877,
40,
3185,
43,
4792,
31098,
796,
657,
87,
830,
23,
2388,
198,
220,
220,
220,
24890,
62,
2937,
2751,
62,
4090,
53,
1961,
62,
9419,
1961,
50,
796,
657,
87,
405,
3064,
830,
198,
220,
220,
220,
24890,
62,
48877,
40,
4503,
2969,
51,
11335,
796,
657,
87,
36490,
198,
220,
220,
220,
24890,
62,
42937,
62,
26288,
17534,
796,
657,
87,
405,
7029,
830,
198,
220,
220,
220,
24890,
62,
7293,
2234,
6030,
45195,
796,
657,
87,
2388,
16,
36,
405,
198,
198,
4871,
2448,
69,
34227,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7311,
13289,
6056,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
54,
7036,
47,
2969,
1137,
796,
657,
87,
10535,
486,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
37,
9994,
28929,
3913,
35,
33202,
796,
657,
87,
24598,
17,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
49275,
52,
1565,
3955,
18421,
796,
657,
87,
24598,
19,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
4221,
3620,
2751,
796,
657,
87,
24598,
23,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
34,
4261,
50,
1581,
62,
9693,
2885,
3913,
796,
657,
87,
10535,
1238,
198,
220,
220,
220,
19878,
37,
62,
26288,
17534,
62,
34,
4261,
50,
20673,
2767,
51,
20754,
796,
657,
87,
10535,
1821,
198,
220,
220,
220,
19878,
37,
62,
1677,
17534,
62,
37,
35830,
62,
50,
11770,
26946,
2751,
796,
657,
87,
10535,
1795,
198,
220,
220,
220,
19878,
37,
62,
1677,
17534,
62,
30910,
42,
35222,
62,
9858,
37997,
17941,
796,
657,
87,
2388,
39103,
198,
220,
220,
220,
220,
198,
4871,
2483,
818,
316,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
25961,
19,
393,
25961,
21,
2209,
3918,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12341,
62,
1268,
2767,
796,
657,
87,
2388,
17,
198,
220,
220,
220,
12341,
62,
1268,
2767,
21,
796,
657,
87,
405,
1558,
198,
220,
220,
220,
220,
220,
220,
220,
198,
4299,
3664,
1513,
26257,
7,
15414,
6601,
11,
8268,
11,
8268,
16,
11,
8268,
17,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
2980,
378,
1948,
9877,
422,
6087,
286,
427,
64,
16,
290,
45243,
20,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
23847,
13,
31740,
198,
220,
220,
220,
2488,
17143,
5128,
6601,
25,
6283,
5128,
357,
3826,
2205,
8,
198,
220,
220,
220,
2488,
17143,
8268,
25,
8268,
329,
4732,
869,
198,
220,
220,
220,
2488,
17143,
8268,
16,
25,
1194,
8268,
357,
1069,
1058,
5456,
4738,
8,
198,
220,
220,
220,
2488,
17143,
8268,
17,
25,
1194,
1194,
8268,
357,
1069,
25,
4382,
4738,
8,
198,
220,
220,
220,
2488,
7783,
1058,
10670,
20,
7,
43061,
1343,
25630,
16,
7,
20560,
1343,
13754,
1343,
13754,
16,
1343,
13754,
17,
4008,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
796,
427,
64,
13,
3605,
3419,
198,
220,
220,
220,
45243,
20,
19511,
395,
796,
45243,
20,
13,
3605,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
15414,
6601,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
82,
2501,
58,
25,
2780,
12962,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
82,
2501,
16,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
82,
2501,
17,
8,
198,
220,
220,
220,
427,
64,
16,
50,
328,
796,
427,
64,
16,
19511,
395,
13,
12894,
395,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
82,
2501,
58,
25,
2780,
12962,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
26270,
16,
50,
328,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
45243,
20,
19511,
395,
13,
12894,
395,
3419,
198,
198,
4299,
2457,
26257,
7,
2539,
11,
4738,
16,
11,
4738,
17,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
10670,
20,
7,
259,
15,
58,
25,
1433,
60,
1343,
287,
16,
58,
25,
2624,
60,
1343,
287,
17,
58,
25,
2624,
12962,
198,
220,
220,
220,
2488,
17143,
1994,
25,
287,
1467,
198,
220,
220,
220,
2488,
17143,
4738,
16,
25,
287,
3933,
198,
220,
220,
220,
2488,
17143,
4738,
17,
25,
287,
3933,
198,
220,
220,
220,
2488,
7783,
10670,
20,
7,
259,
15,
58,
25,
1433,
60,
1343,
287,
16,
58,
25,
2624,
60,
1343,
287,
17,
58,
25,
2624,
12962,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
45243,
20,
19511,
395,
796,
45243,
20,
13,
3605,
3419,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
2539,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
25120,
16,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
25120,
17,
8,
198,
220,
220,
220,
1441,
45243,
20,
19511,
395,
13,
12894,
395,
3419,
198,
198,
4299,
4958,
23725,
7,
21078,
11,
4738,
16,
11,
4738,
17,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
2980,
378,
4958,
3200,
198,
220,
220,
220,
2488,
17143,
3200,
25,
1391,
2536,
92,
3200,
198,
220,
220,
220,
2488,
17143,
5456,
29531,
1058,
1391,
2536,
92,
5456,
4738,
198,
220,
220,
220,
2488,
17143,
4382,
29531,
1058,
1391,
2536,
92,
4382,
4738,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
23847,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
3664,
1513,
26257,
7203,
32,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
1343,
3664,
1513,
26257,
7203,
15199,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
1343,
3664,
1513,
26257,
7203,
46361,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
198,
198,
4299,
6246,
9218,
3629,
672,
7,
21078,
11,
4738,
16,
11,
4738,
17,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
2980,
378,
4958,
3200,
198,
220,
220,
220,
2488,
17143,
3200,
25,
3200,
198,
220,
220,
220,
2488,
17143,
5456,
29531,
1058,
5456,
4738,
198,
220,
220,
220,
2488,
17143,
4382,
29531,
1058,
4382,
4738,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
3664,
1513,
26257,
7203,
55,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
1343,
3664,
1513,
26257,
7203,
26314,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
1343,
3664,
1513,
26257,
7203,
30148,
57,
1600,
3200,
11,
4738,
16,
11,
4738,
17,
8,
198,
198,
4299,
8352,
6601,
7,
20285,
43061,
9218,
11,
1366,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
21908,
13,
31740,
198,
220,
220,
220,
2488,
17143,
8352,
43061,
9218,
25,
1391,
2536,
92,
8352,
1994,
198,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
2536,
92,
1366,
284,
1051,
198,
220,
220,
220,
2488,
7783,
25,
1391,
2536,
92,
9877,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
796,
427,
64,
13,
3605,
3419,
198,
220,
220,
220,
45243,
20,
19511,
395,
796,
45243,
20,
13,
3605,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
268,
8189,
4129,
198,
220,
220,
220,
1366,
24539,
796,
13860,
3419,
198,
220,
220,
220,
1366,
24539,
13,
13564,
6030,
7,
52,
5317,
2624,
3123,
7,
11925,
7,
7890,
22305,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
20285,
43061,
9218,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7203,
59,
87,
2623,
1,
1635,
2319,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
7890,
24539,
13,
1136,
8367,
28955,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
7890,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
50,
328,
796,
427,
64,
16,
19511,
395,
13,
12894,
395,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
20285,
43061,
9218,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7203,
59,
87,
20,
66,
1,
1635,
4764,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
26270,
16,
50,
328,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
45243,
20,
19511,
395,
13,
12894,
395,
3419,
198,
198,
4299,
8352,
19221,
1513,
6601,
7,
20285,
43061,
9218,
11,
1366,
11,
15835,
12332,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
3826,
25,
3740,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
4531,
13,
31740,
198,
220,
220,
220,
2488,
17143,
8352,
43061,
9218,
25,
1391,
2536,
92,
8352,
1994,
198,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
2536,
92,
1366,
284,
1051,
198,
220,
220,
220,
2488,
17143,
15835,
12332,
25,
299,
65,
19365,
19638,
198,
220,
220,
220,
2488,
7783,
25,
1391,
2536,
92,
9877,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
796,
427,
64,
13,
3605,
3419,
198,
220,
220,
220,
45243,
20,
19511,
395,
796,
45243,
20,
13,
3605,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
268,
8189,
4129,
198,
220,
220,
220,
1366,
24539,
50,
796,
13860,
3419,
198,
220,
220,
220,
1366,
24539,
50,
13,
13564,
6030,
7,
52,
5317,
2624,
3123,
7,
11925,
7,
7890,
22305,
198,
220,
220,
220,
220,
198,
220,
220,
220,
15835,
12332,
50,
796,
13860,
3419,
198,
220,
220,
220,
15835,
12332,
50,
13,
13564,
6030,
7,
52,
5317,
2624,
3123,
7,
12685,
13168,
12332,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
20285,
43061,
9218,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7203,
59,
87,
2623,
1,
1635,
2319,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
7890,
24539,
50,
13,
1136,
8367,
28955,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
7890,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
12685,
13168,
12332,
50,
13,
1136,
8367,
28955,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
50,
328,
796,
427,
64,
16,
19511,
395,
13,
12894,
395,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
20285,
43061,
9218,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7203,
59,
87,
20,
66,
1,
1635,
4764,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
26270,
16,
50,
328,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
45243,
20,
19511,
395,
13,
12894,
395,
3419,
198,
198,
4299,
20218,
9218,
7,
36733,
9218,
11,
1459,
9218,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
5892,
13,
31740,
198,
220,
220,
220,
2488,
17143,
4238,
9218,
25,
1391,
2536,
92,
1994,
29231,
717,
640,
198,
220,
220,
220,
2488,
17143,
1459,
9218,
25,
1391,
2536,
92,
1994,
1682,
973,
198,
220,
220,
220,
2488,
7783,
25,
1391,
2536,
92,
20218,
1994,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
796,
427,
64,
13,
3605,
3419,
198,
220,
220,
220,
45243,
20,
19511,
395,
796,
45243,
20,
13,
3605,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
36733,
9218,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7203,
59,
87,
2623,
1,
1635,
2319,
8,
198,
220,
220,
220,
427,
64,
16,
19511,
395,
13,
19119,
7,
14421,
9218,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
427,
64,
16,
50,
328,
796,
427,
64,
16,
19511,
395,
13,
12894,
395,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
36733,
9218,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7203,
59,
87,
20,
66,
1,
1635,
4764,
8,
198,
220,
220,
220,
45243,
20,
19511,
395,
13,
19119,
7,
26270,
16,
50,
328,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1441,
45243,
20,
19511,
395,
13,
12894,
395,
3419,
198,
198,
4299,
2429,
1821,
9895,
7,
7890,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
7716,
2319,
10340,
1366,
422,
13108,
10340,
1366,
198,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
2536,
92,
13108,
10340,
1366,
198,
220,
220,
220,
2488,
7783,
25,
1391,
2536,
92,
2319,
10340,
1366,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
5332,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
37082,
24954,
16,
59,
87,
2075,
59,
87,
24,
68,
1,
1343,
1366,
58,
25,
23,
7131,
12,
20,
47715,
198,
198,
4299,
2429,
3980,
9895,
7,
7890,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
7716,
7265,
10340,
1366,
422,
13108,
10340,
1366,
198,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
2536,
92,
13108,
10340,
1366,
198,
220,
220,
220,
2488,
7783,
25,
1391,
2536,
92,
7265,
10340,
1366,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
5332,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
37082,
24954,
16,
1,
1343,
1366,
58,
25,
23,
7131,
12,
22,
47715,
198,
198,
4299,
7716,
40729,
7,
16366,
29531,
11,
4382,
29531,
11,
2446,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
17143,
2446,
25,
1391,
70,
535,
13,
27195,
13168,
92,
198,
220,
220,
220,
2488,
17143,
5456,
29531,
25,
1391,
2536,
58,
2624,
48999,
5456,
4738,
198,
220,
220,
220,
2488,
17143,
4382,
29531,
25,
1391,
2536,
58,
2624,
48999,
4382,
4738,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
5332,
13,
31740,
198,
220,
220,
220,
2488,
7783,
25,
337,
8120,
2959,
11,
4238,
5962,
9218,
12762,
7,
11792,
12501,
6012,
9218,
11,
4382,
27195,
6012,
9218,
828,
4238,
12211,
9218,
12762,
7,
10697,
10707,
6012,
9218,
11,
20985,
27195,
6012,
9218,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
662,
18254,
26257,
796,
5456,
29531,
58,
25,
1731,
60,
1343,
4382,
29531,
58,
25,
1731,
60,
198,
220,
220,
220,
4958,
26257,
796,
4958,
23725,
7,
3866,
18254,
26257,
11,
5456,
29531,
11,
4382,
29531,
8,
198,
220,
220,
220,
6246,
9218,
796,
6246,
9218,
3629,
672,
7,
9866,
26257,
11,
5456,
29531,
11,
4382,
29531,
8,
198,
220,
220,
220,
8352,
9218,
12762,
796,
6246,
9218,
58,
25,
1433,
60,
198,
220,
220,
220,
4238,
5962,
9218,
12762,
796,
2457,
26257,
7,
29891,
9218,
58,
1433,
25,
2624,
4357,
5456,
29531,
11,
4382,
29531,
8,
198,
220,
220,
220,
4238,
12211,
9218,
12762,
796,
2457,
26257,
7,
29891,
9218,
58,
2624,
25,
2780,
4357,
5456,
29531,
11,
4382,
29531,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8612,
378,
4938,
1994,
198,
220,
220,
220,
611,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
1821,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2429,
1821,
9895,
7,
20285,
9218,
12762,
828,
2429,
1821,
9895,
7,
36733,
5962,
9218,
12762,
828,
2429,
1821,
9895,
7,
36733,
12211,
9218,
12762,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1288,
361,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
3980,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2429,
3980,
9895,
7,
20285,
9218,
12762,
828,
2429,
3980,
9895,
7,
36733,
5962,
9218,
12762,
828,
2429,
3980,
9895,
7,
36733,
12211,
9218,
12762,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1288,
361,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
12762,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
8352,
9218,
12762,
11,
4238,
5962,
9218,
12762,
11,
4238,
12211,
9218,
12762,
198,
220,
220,
220,
220,
198,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
22069,
15835,
2446,
4943,
198,
198,
4299,
4296,
9218,
7,
36733,
9218,
11,
1459,
9218,
11,
2446,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
4296,
6246,
1994,
198,
220,
220,
220,
2488,
17143,
4238,
9218,
25,
1391,
2536,
92,
20768,
1994,
198,
220,
220,
220,
2488,
17143,
1459,
9218,
25,
1391,
2536,
92,
9236,
1994,
198,
220,
220,
220,
2488,
7783,
649,
9218,
25,
1391,
2536,
92,
1994,
284,
779,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
2998,
5892,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
8612,
378,
4938,
1994,
198,
220,
220,
220,
611,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
1821,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20218,
9218,
12762,
796,
20218,
9218,
7,
36733,
9218,
58,
25,
23,
4357,
1459,
9218,
58,
25,
23,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2429,
1821,
9895,
7,
6015,
19,
13,
29609,
7,
6015,
19,
13,
7397,
19,
9218,
7,
29510,
9218,
12762,
58,
25,
23,
46570,
20218,
9218,
12762,
58,
25,
23,
60,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1288,
361,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
3980,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20218,
9218,
12762,
796,
20218,
9218,
7,
36733,
9218,
58,
25,
23,
4357,
1459,
9218,
58,
25,
23,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2429,
3980,
9895,
7,
6015,
19,
13,
29609,
7,
6015,
19,
13,
7397,
19,
9218,
7,
29510,
9218,
12762,
58,
25,
23,
46570,
20218,
9218,
12762,
58,
25,
23,
60,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1288,
361,
2446,
6624,
49582,
13,
27195,
13168,
17410,
13,
1677,
9419,
56,
11571,
2849,
62,
38948,
62,
12762,
26094,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20218,
9218,
12762,
796,
20218,
9218,
7,
36733,
9218,
11,
1459,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
48321,
19,
13,
29609,
7,
6015,
19,
13,
7397,
19,
9218,
7,
29510,
9218,
12762,
828,
20218,
9218,
12762,
8,
198,
220,
220,
220,
220,
198,
4871,
20985,
24074,
3109,
3803,
5760,
52,
7,
5377,
1930,
578,
6030,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
3994,
5456,
4738,
329,
4096,
2324,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
16102,
37856,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
4871,
371,
6322,
12360,
7,
5377,
1930,
578,
6030,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
20985,
4175,
602,
198,
220,
220,
220,
49850,
18031,
357,
548,
1593,
19638,
8,
198,
220,
220,
220,
2488,
3826,
25,
2638,
1378,
907,
32656,
13,
40485,
13,
785,
14,
268,
12,
385,
14,
32016,
14,
535,
1731,
3023,
2425,
13,
31740,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
4871,
371,
6322,
11627,
1631,
12360,
7,
5377,
1930,
578,
6030,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
3060,
517,
5456,
4175,
602,
198,
220,
220,
220,
37227,
198,
198,
4871,
1882,
49925,
7,
49925,
38062,
1045,
11,
314,
12124,
50,
2194,
11,
256,
79,
21841,
13,
5064,
459,
15235,
33252,
11,
256,
79,
21841,
13,
5064,
459,
15235,
50,
2194,
11,
285,
6359,
13,
3528,
4093,
16934,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
8997,
371,
6322,
2324,
7679,
198,
220,
220,
220,
770,
7679,
318,
3602,
8000,
355,
1744,
329,
6727,
7679,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
10470,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
10470,
25,
34398,
357,
8612,
453,
279,
646,
7679,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
34398,
38062,
1045,
13,
834,
15003,
834,
7,
944,
11,
10470,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
400,
4267,
7679,
318,
588,
257,
3049,
6978,
15741,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
8291,
634,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
34695,
341,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
66,
445,
14817,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10951,
796,
371,
6322,
12360,
7,
2302,
1631,
12360,
25559,
1859,
796,
37456,
37498,
944,
13,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
34,
6965,
13,
4372,
79,
14815,
13,
8367,
6624,
49582,
13,
14815,
13,
49,
6322,
62,
43717,
62,
20,
62,
6489,
2937,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17821,
611,
6833,
15835,
318,
7139,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21633,
27195,
13168,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36695,
26707,
4100,
5270,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21633,
49793,
9787,
13065,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36733,
786,
42797,
290,
34117,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
20285,
9218,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
36733,
10707,
563,
83,
9218,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
36733,
27195,
6012,
9218,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
10707,
563,
83,
9218,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
27195,
6012,
9218,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
24588,
878,
4296,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
27195,
15109,
47,
8317,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
10707,
15109,
47,
8317,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
14421,
48321,
19,
7400,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12501,
6012,
49,
66,
19,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12685,
6012,
49,
66,
19,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
1100,
27195,
15109,
19197,
2220,
7,
944,
11,
264,
11,
3664,
1513,
14155,
8645,
341,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
42797,
4096,
371,
6322,
2324,
21437,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
264,
25,
1391,
12124,
92,
19365,
4269,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3664,
1513,
14155,
8645,
341,
25,
1391,
30388,
92,
779,
3664,
1513,
8352,
5270,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
12124,
92,
875,
15109,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
361,
4296,
318,
2622,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
46803,
10707,
15109,
47,
8317,
6624,
42479,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
24442,
7203,
19119,
42797,
1994,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
10707,
563,
83,
9218,
796,
4296,
9218,
7,
2116,
13557,
36733,
10707,
563,
83,
9218,
11,
2116,
13557,
14421,
10707,
563,
83,
9218,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
12685,
13168,
17410,
13,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12501,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
10707,
563,
83,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
10707,
15109,
47,
8317,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
9877,
796,
10903,
7,
961,
30659,
796,
4889,
540,
11395,
7,
23,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
19365,
19197,
2220,
796,
10903,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
19510,
12683,
1300,
11,
19365,
19197,
2220,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
875,
15109,
796,
48321,
19,
13,
29609,
7,
944,
13557,
12501,
6012,
49,
66,
19,
11,
19365,
19197,
2220,
13,
8367,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
66,
365,
694,
9877,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
3664,
1513,
14155,
8645,
341,
290,
8352,
6601,
7,
944,
13557,
20285,
9218,
11,
875,
15109,
38381,
25,
23,
60,
14512,
9877,
13,
8367,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
14774,
9877,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3664,
1513,
14155,
8645,
341,
290,
8352,
19221,
1513,
6601,
7,
944,
13557,
20285,
9218,
11,
875,
15109,
11,
2116,
13557,
46803,
10707,
15109,
47,
8317,
38381,
25,
23,
60,
14512,
9877,
13,
8367,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
14774,
9877,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9127,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
10707,
15109,
47,
8317,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
13860,
7,
12501,
15109,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3551,
27195,
15109,
19197,
2220,
7,
944,
11,
1366,
11,
3664,
1513,
14155,
8645,
341,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
1051,
290,
8194,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
6030,
92,
8246,
4269,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3664,
1513,
14155,
8645,
341,
25,
1391,
30388,
92,
779,
3664,
1513,
8352,
5270,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
51,
29291,
92,
357,
12683,
1300,
11,
19365,
6601,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
46803,
27195,
15109,
47,
8317,
6624,
42479,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
24442,
7203,
19119,
34117,
1994,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
27195,
6012,
9218,
796,
4296,
9218,
7,
220,
220,
220,
2116,
13557,
36733,
27195,
6012,
9218,
11,
2116,
13557,
14421,
27195,
6012,
9218,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
12685,
13168,
17410,
13,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12685,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
27195,
6012,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
27195,
15109,
47,
8317,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
46803,
27195,
15109,
47,
8317,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
13860,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
13564,
6030,
7,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3664,
1513,
14155,
8645,
341,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
10100,
7,
20285,
19221,
1513,
6601,
7,
944,
13557,
20285,
9218,
11,
264,
13,
1136,
8367,
22784,
2116,
13557,
46803,
27195,
15109,
47,
8317,
532,
352,
38381,
25,
23,
46570,
10903,
7,
6015,
19,
13,
29609,
7,
944,
13557,
12685,
6012,
49,
66,
19,
11,
264,
13,
1136,
8367,
3419,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
10100,
7,
20285,
6601,
7,
944,
13557,
20285,
9218,
11,
264,
13,
1136,
8367,
28955,
58,
25,
23,
46570,
10903,
7,
6015,
19,
13,
29609,
7,
944,
13557,
12685,
6012,
49,
66,
19,
11,
264,
13,
1136,
8367,
3419,
22305,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
664,
85,
7,
944,
11,
1366,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
611,
4096,
371,
6322,
2324,
7679,
318,
15155,
42797,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
1208,
284,
6727,
7679,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
1366,
1058,
1391,
12124,
92,
5128,
13860,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25579,
341,
13,
8344,
85,
7,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
17250,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
13,
961,
6030,
19510,
12961,
34227,
11,
2324,
34227,
17250,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2324,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
1677,
9419,
56,
11571,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
2116,
13,
961,
27195,
15109,
19197,
2220,
7,
7890,
11,
2324,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
23683,
11335,
62,
50084,
50,
5883,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25579,
341,
13,
8344,
85,
7,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
7,
944,
11,
1366,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
611,
4096,
371,
6322,
2324,
7679,
318,
15155,
34117,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
1208,
284,
6727,
7679,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
6030,
930,
309,
29291,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7645,
634,
13,
21280,
7,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
6056,
796,
4765,
34227,
13,
23683,
62,
1677,
9419,
56,
11571,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
49793,
9787,
13065,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6056,
930,
28,
4765,
34227,
13,
23683,
62,
23683,
11335,
62,
50084,
50,
5883,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
7414,
14655,
7,
32109,
11,
1366,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
7414,
14655,
7,
944,
11,
6056,
11,
1366,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
7952,
3758,
6056,
2446,
329,
1948,
19638,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
10951,
19638,
393,
5964,
19638,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1002,
15835,
318,
7139,
4174,
340,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
6056,
25,
1391,
41433,
92,
2324,
6056,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
1366,
25,
1391,
6030,
930,
309,
29291,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6056,
1222,
4765,
34227,
13,
23683,
62,
1677,
9419,
56,
11571,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
2116,
13,
13564,
27195,
15109,
19197,
2220,
7,
7890,
11,
6056,
1222,
4765,
34227,
13,
23683,
62,
23683,
11335,
62,
50084,
50,
5883,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7645,
634,
13,
21280,
19510,
52,
5317,
1433,
3123,
7,
32109,
828,
471,
5317,
1433,
3123,
22784,
1366,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
664,
85,
22968,
15235,
7,
944,
11,
792,
34227,
11,
3049,
15235,
50,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
4889,
618,
3049,
3108,
19638,
318,
2722,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
792,
34227,
25,
1391,
6558,
40053,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3049,
15235,
50,
25,
1391,
12124,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
27195,
13168,
290,
792,
34227,
1222,
256,
79,
21841,
13,
6558,
40053,
13,
37,
1921,
7250,
12599,
62,
2606,
7250,
3843,
62,
1677,
9419,
56,
11571,
1961,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3049,
15235,
50,
796,
2116,
13,
961,
27195,
15109,
19197,
2220,
7,
7217,
15235,
50,
11,
792,
34227,
1222,
256,
79,
21841,
13,
6558,
40053,
13,
37,
1921,
7250,
12599,
62,
2606,
7250,
3843,
62,
23683,
11335,
62,
50084,
50,
5883,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
34695,
341,
13,
8344,
85,
22968,
15235,
7,
2363,
34227,
11,
3049,
15235,
50,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
22968,
15235,
33252,
7,
944,
11,
3049,
15235,
33252,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3049,
15235,
33252,
1058,
1391,
5064,
459,
15235,
33252,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
34695,
341,
796,
3049,
15235,
33252,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
22968,
15235,
7,
944,
11,
792,
34227,
11,
3049,
15235,
50,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
16290,
3049,
15235,
50,
5994,
355,
3049,
3108,
19638,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
792,
34227,
25,
1391,
6558,
40053,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3049,
15235,
50,
25,
1391,
12124,
92,
2099,
6121,
284,
4269,
290,
3758,
355,
3049,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
792,
34227,
930,
28,
256,
79,
21841,
13,
6558,
40053,
13,
37,
1921,
7250,
12599,
62,
2606,
7250,
3843,
62,
1677,
9419,
56,
11571,
1961,
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,
2116,
13557,
21633,
49793,
9787,
13065,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
792,
34227,
930,
28,
256,
79,
21841,
13,
6558,
40053,
13,
37,
1921,
7250,
12599,
62,
2606,
7250,
3843,
62,
23683,
11335,
62,
50084,
50,
5883,
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,
3049,
15235,
50,
796,
2116,
13,
13564,
27195,
15109,
19197,
2220,
7,
7217,
15235,
50,
11,
2116,
13557,
21633,
49793,
9787,
13065,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
8291,
634,
13,
21280,
22968,
15235,
7,
2363,
34227,
11,
3049,
15235,
50,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
22968,
15235,
50,
2194,
7,
944,
11,
3049,
15235,
50,
2194,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
3049,
15235,
50,
2194,
25,
1391,
34788,
21841,
13,
22968,
15235,
50,
2194,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
7217,
15235,
8291,
634,
796,
3049,
15235,
50,
2194,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
651,
12982,
7390,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
41433,
92,
285,
6359,
2836,
4686,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
3826,
25,
285,
6359,
13,
3528,
4093,
16934,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
7645,
634,
13,
1136,
12982,
7390,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
651,
29239,
7390,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
41433,
92,
1441,
6518,
4686,
286,
15741,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
3826,
25,
285,
6359,
13,
3528,
4093,
16934,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
7645,
634,
13,
1136,
29239,
7390,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
651,
38,
4093,
11792,
26232,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
70,
535,
13,
26232,
92,
285,
6359,
7679,
49582,
5456,
6460,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
3826,
25,
285,
6359,
13,
3528,
4093,
16934,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
7645,
634,
13,
1136,
38,
4093,
11792,
26232,
3419,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
651,
38,
4093,
10697,
26232,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
25,
1391,
70,
535,
13,
26232,
92,
285,
6359,
7679,
49582,
4382,
6460,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
3826,
25,
285,
6359,
13,
3528,
4093,
16934,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
7645,
634,
13,
1136,
38,
4093,
10697,
26232,
3419,
198,
220,
220,
220,
220,
198,
4871,
20985,
7,
6558,
49925,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
20985,
1735,
286,
2324,
7679,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
2018,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
3758,
5456,
4738,
611,
2622,
290,
3758,
7508,
19638,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21633,
27195,
13168,
796,
2116,
13,
1136,
38,
4093,
11792,
26232,
22446,
7902,
62,
34,
6965,
13,
15388,
4653,
12609,
19703,
4668,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
11792,
29531,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
12360,
47,
21841,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
12360,
47,
21841,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
3758,
1321,
19638,
357,
4480,
18031,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
1181,
4613,
664,
85,
26656,
594,
12360,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
792,
34227,
796,
4765,
34227,
13,
23683,
62,
10778,
62,
40492,
51,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
792,
34227,
930,
28,
4765,
34227,
13,
23683,
62,
1677,
9419,
56,
11571,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
7414,
14655,
7,
2363,
34227,
11,
2116,
13557,
10951,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
7,
944,
13,
8344,
85,
26656,
594,
12360,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
11792,
29531,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
7716,
290,
3758,
5456,
4738,
290,
2315,
6246,
8251,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8612,
378,
5456,
4738,
198,
220,
220,
220,
220,
220,
220,
220,
5456,
29531,
796,
374,
11400,
13,
25120,
7,
11645,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
20285,
9218,
11,
2116,
13557,
36733,
10707,
563,
83,
9218,
11,
2116,
13557,
36733,
27195,
6012,
9218,
796,
7716,
40729,
7,
220,
220,
5456,
29531,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
15388,
29531,
13,
8367,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
12685,
13168,
17410,
13,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36733,
1096,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
10707,
563,
83,
9218,
796,
2116,
13557,
36733,
10707,
563,
83,
9218,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
27195,
6012,
9218,
796,
2116,
13557,
36733,
27195,
6012,
9218,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12501,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
10707,
563,
83,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12685,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
27195,
6012,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
332,
1958,
10703,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
15388,
37608,
22460,
13,
22583,
6601,
13,
332,
1958,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
43917,
7203,
66,
34574,
11767,
4382,
5369,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
21280,
5456,
4738,
19365,
351,
198,
220,
220,
220,
220,
220,
220,
220,
4382,
15202,
9218,
796,
2116,
13,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
15388,
37608,
22460,
13,
22583,
6601,
13,
1136,
15202,
9218,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
20985,
24074,
3109,
3803,
5760,
52,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
50188,
780,
275,
570,
388,
287,
1310,
886,
666,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
13,
43628,
11792,
29531,
13,
8367,
796,
374,
11400,
13,
12685,
6012,
7,
16366,
29531,
58,
3712,
12,
16,
4357,
4382,
15202,
9218,
38381,
3712,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
7414,
14655,
7,
24074,
34227,
13,
23683,
62,
6369,
3398,
27746,
62,
40492,
51,
11,
3275,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
664,
85,
26656,
594,
12360,
7,
944,
11,
264,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
4149,
5964,
7508,
19638,
290,
2198,
611,
318,
257,
4938,
5456,
7508,
198,
220,
220,
220,
220,
220,
220,
220,
16314,
34479,
14199,
14340,
52,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
264,
25,
13860,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8002,
316,
662,
4131,
2261,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
17250,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
19510,
12961,
34227,
11,
2324,
34227,
17250,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
357,
12961,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
43,
2149,
24290,
62,
40492,
51,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
10247,
1780,
5964,
19638,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
677,
594,
13511,
13,
8344,
85,
7,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
437,
286,
4637,
2239,
286,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25579,
341,
13,
8443,
3419,
198,
198,
4871,
9652,
7,
6558,
49925,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2488,
49736,
25,
20985,
1735,
286,
2324,
7679,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
10470,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
10470,
25,
1391,
49925,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1882,
49925,
13,
834,
15003,
834,
7,
944,
11,
10470,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
3808,
64,
15202,
9218,
11,
2116,
13557,
3808,
64,
29067,
9218,
796,
374,
11400,
13,
3605,
13083,
7,
25836,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
2018,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
2315,
3557,
1045,
284,
4043,
7508,
19638,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
21633,
27195,
13168,
796,
2116,
13,
1136,
38,
4093,
11792,
26232,
22446,
7902,
62,
34,
6965,
13,
15388,
4653,
12609,
19703,
4668,
6624,
657,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13557,
21633,
27195,
13168,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
7,
944,
13,
8344,
85,
11792,
29531,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
7,
944,
13,
8344,
85,
12360,
47,
21841,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
651,
37608,
22460,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
7716,
20622,
10703,
422,
374,
11400,
1171,
1994,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10703,
796,
49582,
13,
47,
9219,
8527,
10697,
37608,
22460,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
10703,
13,
15202,
9218,
3629,
672,
13,
4666,
23515,
13,
8367,
796,
374,
11400,
13,
600,
17,
33661,
7,
944,
13557,
3808,
64,
15202,
9218,
13,
77,
38381,
3712,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
10703,
13,
15202,
9218,
3629,
672,
13,
12984,
16870,
13,
8367,
796,
2116,
13557,
3808,
64,
15202,
9218,
13,
68,
198,
220,
220,
220,
220,
220,
220,
220,
10703,
13,
12683,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
49582,
13,
10697,
37608,
22460,
7,
22583,
22460,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
664,
85,
11792,
29531,
7,
944,
11,
264,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
3328,
5456,
4738,
290,
7716,
6246,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
264,
25,
1391,
12124,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8002,
316,
662,
4131,
2261,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
17250,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
19510,
12961,
34227,
11,
2324,
34227,
17250,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
357,
12961,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
6369,
3398,
27746,
62,
40492,
51,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
10247,
1780,
5456,
4738,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
796,
20985,
24074,
3109,
3803,
5760,
52,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
7,
20500,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5456,
29531,
796,
374,
11400,
13,
12501,
6012,
7,
20500,
13,
43628,
11792,
29531,
13,
8367,
58,
3712,
12,
16,
4357,
2116,
13557,
3808,
64,
29067,
9218,
38381,
3712,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
20285,
9218,
11,
2116,
13557,
36733,
27195,
6012,
9218,
11,
2116,
13557,
36733,
10707,
563,
83,
9218,
796,
7716,
40729,
7,
220,
220,
5456,
29531,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
15388,
29531,
13,
8367,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1136,
38,
4093,
10697,
26232,
22446,
6173,
62,
23683,
4261,
9050,
13,
12685,
13168,
17410,
13,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
36733,
1096,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
10707,
563,
83,
9218,
796,
2116,
13557,
36733,
10707,
563,
83,
9218,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
14421,
27195,
6012,
9218,
796,
2116,
13557,
36733,
27195,
6012,
9218,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12501,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
10707,
563,
83,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
12685,
6012,
49,
66,
19,
796,
48321,
19,
13,
7397,
19,
9218,
7,
944,
13557,
14421,
27195,
6012,
9218,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
7,
944,
13,
8344,
85,
12360,
47,
21841,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
664,
85,
12360,
47,
21841,
7,
944,
11,
264,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
3328,
7508,
19638,
422,
5456,
198,
220,
220,
220,
220,
220,
220,
220,
20985,
18031,
198,
220,
220,
220,
220,
220,
220,
220,
16290,
13789,
4938,
4049,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
16290,
34479,
14199,
14340,
52,
198,
220,
220,
220,
220,
220,
220,
220,
16314,
7326,
2533,
14199,
14340,
52,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
17143,
264,
25,
1391,
12124,
92,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2324,
34227,
17250,
796,
471,
5317,
1433,
3123,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
19510,
12961,
34227,
11,
2324,
34227,
17250,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
357,
12961,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
10778,
62,
40492,
51,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
17665,
3109,
7254,
6601,
16922,
7203,
33484,
1780,
7508,
19638,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2324,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
1677,
9419,
56,
11571,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
796,
2116,
13,
961,
27195,
15109,
19197,
2220,
7,
82,
11,
2324,
34227,
13,
8367,
1222,
4765,
34227,
13,
23683,
62,
23683,
11335,
62,
50084,
50,
5883,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
264,
13,
961,
6030,
7,
944,
13557,
10951,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
19545,
1181,
3758,
4049,
5964,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
26656,
26426,
12331,
12837,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
260,
15003,
1181,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
10019,
9012,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
25579,
341,
13,
8443,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
3758,
26656,
26426,
12331,
12837,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
49736,
25,
16290,
257,
15665,
4049,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
21280,
7414,
14655,
7,
24074,
34227,
13,
23683,
62,
43,
2149,
24290,
62,
40492,
51,
11,
3476,
13,
17953,
47139,
11792,
26656,
26426,
12331,
12837,
28955
] | 2.260582 | 11,033 |
import pymongo
from django.conf import settings
from sqlalchemy import create_engine, inspect
from sqlalchemy import MetaData
from pymongo_schema.extract import extract_pymongo_client_schema
from pymongo_schema.tosql import mongo_schema_to_mapping
from apps.schema.models import Database, Table, Column, Index
if __name__ == '__main__':
run()
| [
11748,
279,
4948,
25162,
198,
6738,
42625,
14208,
13,
10414,
1330,
6460,
198,
6738,
44161,
282,
26599,
1330,
2251,
62,
18392,
11,
10104,
198,
6738,
44161,
282,
26599,
1330,
30277,
6601,
198,
6738,
279,
4948,
25162,
62,
15952,
2611,
13,
2302,
974,
1330,
7925,
62,
79,
4948,
25162,
62,
16366,
62,
15952,
2611,
198,
6738,
279,
4948,
25162,
62,
15952,
2611,
13,
83,
418,
13976,
1330,
285,
25162,
62,
15952,
2611,
62,
1462,
62,
76,
5912,
198,
198,
6738,
6725,
13,
15952,
2611,
13,
27530,
1330,
24047,
11,
8655,
11,
29201,
11,
12901,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1057,
3419,
198
] | 3.105263 | 114 |
#!/usr/bin/python3
import sys
sys.path.append('../ry')
from libry import *
K = Config()
D = K.view()
K.addFile('../test/kitchen.g')
K.addFile('../rai-robotModels/pr2/pr2.g')
K.addFrame('item1', 'sink1', 'type:ssBox Q:<t(-.1 -.1 .52)> size:[.1 .1 .25 .02] color:[1. 0. 0.], contact' )
K.addFrame('item2', 'sink1', 'type:ssBox Q:<t(.1 .1 .52)> size:[.1 .1 .25 .02] color:[1. 1. 0.], contact' )
K.addFrame("tray", "stove1", "type:ssBox Q:<t(.0 .0 .42)> size:[.2 .2 .05 .02] color:[0. 1. 0.], contact" )
obj1 = 'item2'
obj2 = 'item1'
arm='pr2L'
tray = "tray";
table='_12'
T = 6
komo = K.komo_CGO(T)
#komo.makeObjectsFree([obj1, obj2])
komo.addObjective(confs=[3], type=OT.ineq, feature=FS.distance, frames=[obj1, obj2], target=[-.05]) # distance between objects!
komo.addObjective(type=OT.eq, feature=FS.accumulatedCollisions)
komo.addObjective(type=OT.ineq, feature=FS.jointLimits)
komo.add_StableRelativePose(confs=[0, 1], gripper=arm, object=obj1)
komo.add_StableRelativePose(confs=[2, 3], gripper=arm, object=obj2)
komo.add_StableRelativePose(confs=[4, 5], gripper=arm, object=tray)
komo.add_StableRelativePose(confs=[1,2,3,4,5], gripper=tray, object=obj1)
komo.add_StableRelativePose(confs=[3,4,5], gripper=tray, object=obj2)
komo.add_StablePose(confs=[-1, 0], object=obj1)
komo.add_StablePose(confs=[-1, 0, 1, 2], object=obj2)
komo.add_StablePose(confs=[-1, 0, 1, 2, 3, 4], object=tray)
komo.add_grasp(0, arm, obj1)
komo.add_place(1, obj1, tray)
komo.add_grasp(2, arm, obj2)
komo.add_place(3, obj2, tray)
komo.add_grasp(4, arm, tray)
komo.add_place(5, tray, table)
# komo.add_resting(-1, 0, obj1)
# komo.add_restingRelative(0, 1 , obj1, arm)
# komo.add_resting(1, 2, obj1)
# komo.add_resting(2, 3, obj1)
# komo.add_resting(-1, 0, obj2)
# komo.add_resting(0, 1, obj2)
# komo.add_resting(1, 2, obj2)
# komo.add_restingRelative(2, 3 , obj2, arm)
komo.optimize()
for t in range(-1, T):
komo.getConfiguration(t)
input("Press Enter to continue...")
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
198,
198,
11748,
25064,
198,
17597,
13,
6978,
13,
33295,
10786,
40720,
563,
11537,
198,
6738,
9195,
563,
1330,
1635,
198,
198,
42,
796,
17056,
3419,
198,
35,
796,
509,
13,
1177,
3419,
198,
42,
13,
2860,
8979,
10786,
40720,
9288,
14,
15813,
6607,
13,
70,
11537,
198,
42,
13,
2860,
8979,
10786,
40720,
430,
72,
12,
305,
13645,
5841,
1424,
14,
1050,
17,
14,
1050,
17,
13,
70,
11537,
198,
198,
42,
13,
2860,
19778,
10786,
9186,
16,
3256,
705,
82,
676,
16,
3256,
705,
4906,
25,
824,
14253,
1195,
25,
27,
83,
32590,
13,
16,
532,
13,
16,
764,
4309,
8,
29,
2546,
33250,
13,
16,
764,
16,
764,
1495,
764,
2999,
60,
3124,
33250,
16,
13,
657,
13,
657,
13,
4357,
2800,
6,
1267,
198,
42,
13,
2860,
19778,
10786,
9186,
17,
3256,
705,
82,
676,
16,
3256,
705,
4906,
25,
824,
14253,
1195,
25,
27,
83,
7,
13,
16,
764,
16,
764,
4309,
8,
29,
2546,
33250,
13,
16,
764,
16,
764,
1495,
764,
2999,
60,
3124,
33250,
16,
13,
352,
13,
657,
13,
4357,
2800,
6,
1267,
198,
42,
13,
2860,
19778,
7203,
2213,
323,
1600,
366,
301,
659,
16,
1600,
366,
4906,
25,
824,
14253,
1195,
25,
27,
83,
7,
13,
15,
764,
15,
764,
3682,
8,
29,
2546,
33250,
13,
17,
764,
17,
764,
2713,
764,
2999,
60,
3124,
33250,
15,
13,
352,
13,
657,
13,
4357,
2800,
1,
1267,
198,
198,
26801,
16,
796,
705,
9186,
17,
6,
198,
26801,
17,
796,
705,
9186,
16,
6,
198,
1670,
11639,
1050,
17,
43,
6,
198,
2213,
323,
796,
366,
2213,
323,
8172,
198,
11487,
11639,
62,
1065,
6,
198,
198,
51,
796,
718,
198,
74,
17902,
796,
509,
13,
74,
17902,
62,
34,
11230,
7,
51,
8,
198,
2,
74,
17902,
13,
15883,
10267,
82,
11146,
26933,
26801,
16,
11,
26181,
17,
12962,
198,
198,
74,
17902,
13,
2860,
10267,
425,
7,
1102,
9501,
41888,
18,
4357,
2099,
28,
2394,
13,
500,
80,
11,
3895,
28,
10652,
13,
30246,
11,
13431,
41888,
26801,
16,
11,
26181,
17,
4357,
2496,
41888,
34507,
2713,
12962,
1303,
5253,
1022,
5563,
0,
198,
74,
17902,
13,
2860,
10267,
425,
7,
4906,
28,
2394,
13,
27363,
11,
3895,
28,
10652,
13,
4134,
388,
4817,
22667,
3279,
8,
198,
74,
17902,
13,
2860,
10267,
425,
7,
4906,
28,
2394,
13,
500,
80,
11,
3895,
28,
10652,
13,
73,
1563,
19352,
896,
8,
198,
198,
74,
17902,
13,
2860,
62,
1273,
540,
6892,
876,
47,
577,
7,
1102,
9501,
41888,
15,
11,
352,
4357,
11120,
2848,
28,
1670,
11,
2134,
28,
26801,
16,
8,
198,
74,
17902,
13,
2860,
62,
1273,
540,
6892,
876,
47,
577,
7,
1102,
9501,
41888,
17,
11,
513,
4357,
11120,
2848,
28,
1670,
11,
2134,
28,
26801,
17,
8,
198,
74,
17902,
13,
2860,
62,
1273,
540,
6892,
876,
47,
577,
7,
1102,
9501,
41888,
19,
11,
642,
4357,
11120,
2848,
28,
1670,
11,
2134,
28,
2213,
323,
8,
198,
198,
74,
17902,
13,
2860,
62,
1273,
540,
6892,
876,
47,
577,
7,
1102,
9501,
41888,
16,
11,
17,
11,
18,
11,
19,
11,
20,
4357,
11120,
2848,
28,
2213,
323,
11,
2134,
28,
26801,
16,
8,
198,
74,
17902,
13,
2860,
62,
1273,
540,
6892,
876,
47,
577,
7,
1102,
9501,
41888,
18,
11,
19,
11,
20,
4357,
11120,
2848,
28,
2213,
323,
11,
2134,
28,
26801,
17,
8,
198,
198,
74,
17902,
13,
2860,
62,
1273,
540,
47,
577,
7,
1102,
9501,
41888,
12,
16,
11,
657,
4357,
2134,
28,
26801,
16,
8,
198,
74,
17902,
13,
2860,
62,
1273,
540,
47,
577,
7,
1102,
9501,
41888,
12,
16,
11,
657,
11,
352,
11,
362,
4357,
2134,
28,
26801,
17,
8,
198,
74,
17902,
13,
2860,
62,
1273,
540,
47,
577,
7,
1102,
9501,
41888,
12,
16,
11,
657,
11,
352,
11,
362,
11,
513,
11,
604,
4357,
2134,
28,
2213,
323,
8,
198,
198,
74,
17902,
13,
2860,
62,
2164,
5126,
7,
15,
11,
3211,
11,
26181,
16,
8,
198,
74,
17902,
13,
2860,
62,
5372,
7,
16,
11,
26181,
16,
11,
26473,
8,
198,
198,
74,
17902,
13,
2860,
62,
2164,
5126,
7,
17,
11,
3211,
11,
26181,
17,
8,
198,
74,
17902,
13,
2860,
62,
5372,
7,
18,
11,
26181,
17,
11,
26473,
8,
198,
198,
74,
17902,
13,
2860,
62,
2164,
5126,
7,
19,
11,
3211,
11,
26473,
8,
198,
74,
17902,
13,
2860,
62,
5372,
7,
20,
11,
26473,
11,
3084,
8,
198,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
32590,
16,
11,
657,
11,
26181,
16,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
6892,
876,
7,
15,
11,
352,
837,
26181,
16,
11,
3211,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
7,
16,
11,
362,
11,
26181,
16,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
7,
17,
11,
513,
11,
26181,
16,
8,
198,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
32590,
16,
11,
657,
11,
26181,
17,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
7,
15,
11,
352,
11,
26181,
17,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
7,
16,
11,
362,
11,
26181,
17,
8,
198,
2,
479,
17902,
13,
2860,
62,
2118,
278,
6892,
876,
7,
17,
11,
513,
837,
26181,
17,
11,
3211,
8,
198,
198,
74,
17902,
13,
40085,
1096,
3419,
198,
198,
1640,
256,
287,
2837,
32590,
16,
11,
309,
2599,
198,
220,
220,
220,
479,
17902,
13,
1136,
38149,
7,
83,
8,
198,
220,
220,
220,
5128,
7203,
13800,
6062,
284,
2555,
9313,
8,
198
] | 2.090234 | 942 |
import pytest
@pytest.fixture
| [
11748,
12972,
9288,
628,
198,
31,
9078,
9288,
13,
69,
9602,
198
] | 2.666667 | 12 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
@ Author : pengj
@ date : 2019/11/25 21:07
@ IDE : PyCharm
@ GitHub : https://github.com/JackyPJB
@ Contact : [email protected]
-------------------------------------------------
Description :
-------------------------------------------------
"""
import base64
import io
from flask import Flask, request, g, send_file
from flask_cors import CORS
from app import jsonReturn
from app.utils.jwt import JWT
from app.models.User import User, Role, Permission
from config import load_config
__author__ = 'Max_Pengjb'
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
47232,
12,
628,
220,
220,
220,
2488,
220,
220,
6434,
220,
1058,
220,
220,
220,
220,
220,
220,
279,
1516,
73,
198,
220,
220,
220,
2488,
220,
220,
3128,
220,
220,
220,
1058,
220,
220,
220,
220,
220,
220,
13130,
14,
1157,
14,
1495,
2310,
25,
2998,
198,
220,
220,
220,
2488,
220,
220,
33497,
220,
220,
220,
220,
1058,
220,
220,
220,
220,
220,
220,
9485,
1925,
1670,
198,
220,
220,
220,
2488,
220,
220,
21722,
220,
1058,
220,
220,
220,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
14295,
88,
47,
47858,
198,
220,
220,
220,
2488,
220,
220,
14039,
1058,
220,
220,
220,
220,
220,
220,
279,
1516,
73,
666,
65,
13481,
31,
8940,
4529,
13,
785,
198,
47232,
12,
198,
220,
220,
220,
12489,
1058,
220,
220,
220,
220,
220,
220,
220,
198,
47232,
12,
198,
37811,
198,
11748,
2779,
2414,
198,
11748,
33245,
198,
198,
6738,
42903,
1330,
46947,
11,
2581,
11,
308,
11,
3758,
62,
7753,
198,
6738,
42903,
62,
66,
669,
1330,
327,
20673,
198,
198,
6738,
598,
1330,
33918,
13615,
198,
6738,
598,
13,
26791,
13,
73,
46569,
1330,
449,
39386,
198,
6738,
598,
13,
27530,
13,
12982,
1330,
11787,
11,
20934,
11,
2448,
3411,
198,
6738,
4566,
1330,
3440,
62,
11250,
198,
198,
834,
9800,
834,
796,
705,
11518,
62,
47,
1516,
73,
65,
6,
628
] | 2.796813 | 251 |
import invoke
#import minchin.releaser
try:
from minchin.releaser import make_release, vendorize
except ImportError:
print("[WARN] minchin.releaser not installed")
| [
11748,
26342,
198,
198,
2,
11748,
949,
24658,
13,
260,
293,
6005,
198,
28311,
25,
198,
220,
220,
220,
422,
949,
24658,
13,
260,
293,
6005,
1330,
787,
62,
20979,
11,
18371,
1096,
198,
16341,
17267,
12331,
25,
198,
220,
220,
220,
3601,
7203,
58,
37771,
60,
949,
24658,
13,
260,
293,
6005,
407,
6589,
4943,
198
] | 3.035088 | 57 |
#-*- coding: utf-8 -*-
from __future__ import unicode_literals
import Image
import ImageDraw
import time
import ImageFont
from rgbmatrix import Adafruit_RGBmatrix
# Rows and chain length are both required parameters:
matrix = Adafruit_RGBmatrix(32, 4)
font=ImageFont.load_default()
font=ImageFont.truetype("DejaVuSerif.ttf",size=11)
img=Image.new('RGB',(128,32))
text1="Fååm fååm"
text2="Fååm fååm"
text3="Fåm vi lite upp i kosi"
text4="Jengan gå jengan gå jengan gå jengan teee"
for n in range(1,3,1):
time.sleep(0.5)
img=Image.new('RGB',(128,32))
d=ImageDraw.Draw(img)
d.text((-1,0),text1,fill=(0,200,200),font=font)
matrix.SetImage(img.im.id, 0, 0)
time.sleep(3)
img=Image.new('RGB',(128,32))
d=ImageDraw.Draw(img)
d.text((-1,0),text2,fill=(200,200,0),font=font)
matrix.SetImage(img.im.id, 65, 0)
time.sleep(3)
img=Image.new('RGB',(128,32))
d=ImageDraw.Draw(img)
d.text((-1,0),text3,fill=(0,200,0),font=font)
matrix.SetImage(img.im.id, 0, 15)
time.sleep(5.5)
matrix.Clear()
font=ImageFont.truetype("DejaVuSerif.ttf",size=14)
img=Image.new('RGB',(300,32))
d=ImageDraw.Draw(img)
d.text((1,0),text4,fill=(200,0,200),font=font)
for n in range(128, -img.size[0], -1): # Scroll R to L
matrix.SetImage(img.im.id, n, 8)
time.sleep(0.018)
# //: Fåm, fåm, fåm, fåm, fåm vi lite opp i kosa ://
# Jen gang och jen gang och jen gang och jen gang te
# Jen gang och jen gang och jen gang och jen gang te
| [
2,
12,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
11748,
7412,
198,
11748,
7412,
25302,
198,
11748,
640,
198,
11748,
7412,
23252,
198,
6738,
46140,
6759,
8609,
1330,
1215,
1878,
4872,
62,
36982,
6759,
8609,
198,
198,
2,
371,
1666,
290,
6333,
4129,
389,
1111,
2672,
10007,
25,
198,
6759,
8609,
796,
1215,
1878,
4872,
62,
36982,
6759,
8609,
7,
2624,
11,
604,
8,
198,
10331,
28,
5159,
23252,
13,
2220,
62,
12286,
3419,
198,
10331,
28,
5159,
23252,
13,
83,
622,
2963,
431,
7203,
5005,
6592,
53,
84,
7089,
361,
13,
926,
69,
1600,
7857,
28,
1157,
8,
198,
198,
9600,
28,
5159,
13,
3605,
10786,
36982,
3256,
7,
12762,
11,
2624,
4008,
198,
5239,
16,
2625,
37,
29090,
29090,
76,
277,
29090,
29090,
76,
1,
198,
5239,
17,
2625,
37,
29090,
29090,
76,
277,
29090,
29090,
76,
1,
198,
5239,
18,
2625,
37,
29090,
76,
25357,
300,
578,
334,
381,
1312,
479,
21707,
1,
198,
5239,
19,
2625,
44875,
1030,
308,
29090,
474,
268,
1030,
308,
29090,
474,
268,
1030,
308,
29090,
474,
268,
1030,
573,
1453,
1,
198,
1640,
299,
287,
2837,
7,
16,
11,
18,
11,
16,
2599,
198,
197,
2435,
13,
42832,
7,
15,
13,
20,
8,
198,
197,
9600,
28,
5159,
13,
3605,
10786,
36982,
3256,
7,
12762,
11,
2624,
4008,
198,
197,
67,
28,
5159,
25302,
13,
25302,
7,
9600,
8,
198,
197,
67,
13,
5239,
19510,
12,
16,
11,
15,
828,
5239,
16,
11,
20797,
16193,
15,
11,
2167,
11,
2167,
828,
10331,
28,
10331,
8,
198,
197,
6759,
8609,
13,
7248,
5159,
7,
9600,
13,
320,
13,
312,
11,
657,
11,
657,
8,
198,
197,
2435,
13,
42832,
7,
18,
8,
628,
197,
9600,
28,
5159,
13,
3605,
10786,
36982,
3256,
7,
12762,
11,
2624,
4008,
198,
197,
67,
28,
5159,
25302,
13,
25302,
7,
9600,
8,
198,
197,
67,
13,
5239,
19510,
12,
16,
11,
15,
828,
5239,
17,
11,
20797,
16193,
2167,
11,
2167,
11,
15,
828,
10331,
28,
10331,
8,
198,
197,
6759,
8609,
13,
7248,
5159,
7,
9600,
13,
320,
13,
312,
11,
6135,
11,
657,
8,
198,
197,
2435,
13,
42832,
7,
18,
8,
628,
197,
9600,
28,
5159,
13,
3605,
10786,
36982,
3256,
7,
12762,
11,
2624,
4008,
198,
197,
67,
28,
5159,
25302,
13,
25302,
7,
9600,
8,
198,
197,
67,
13,
5239,
19510,
12,
16,
11,
15,
828,
5239,
18,
11,
20797,
16193,
15,
11,
2167,
11,
15,
828,
10331,
28,
10331,
8,
198,
197,
6759,
8609,
13,
7248,
5159,
7,
9600,
13,
320,
13,
312,
11,
657,
11,
1315,
8,
198,
197,
2435,
13,
42832,
7,
20,
13,
20,
8,
628,
197,
6759,
8609,
13,
19856,
3419,
198,
198,
10331,
28,
5159,
23252,
13,
83,
622,
2963,
431,
7203,
5005,
6592,
53,
84,
7089,
361,
13,
926,
69,
1600,
7857,
28,
1415,
8,
198,
9600,
28,
5159,
13,
3605,
10786,
36982,
3256,
7,
6200,
11,
2624,
4008,
198,
67,
28,
5159,
25302,
13,
25302,
7,
9600,
8,
198,
67,
13,
5239,
19510,
16,
11,
15,
828,
5239,
19,
11,
20797,
16193,
2167,
11,
15,
11,
2167,
828,
10331,
28,
10331,
8,
198,
1640,
299,
287,
2837,
7,
12762,
11,
532,
9600,
13,
7857,
58,
15,
4357,
532,
16,
2599,
1303,
17428,
371,
284,
406,
198,
197,
6759,
8609,
13,
7248,
5159,
7,
9600,
13,
320,
13,
312,
11,
299,
11,
807,
8,
198,
197,
2435,
13,
42832,
7,
15,
13,
29159,
8,
628,
198,
2,
3373,
25,
376,
29090,
76,
11,
277,
29090,
76,
11,
277,
29090,
76,
11,
277,
29090,
76,
11,
277,
29090,
76,
25357,
300,
578,
1269,
1312,
479,
8546,
1058,
1003,
220,
198,
2,
13364,
7706,
267,
354,
474,
268,
7706,
267,
354,
474,
268,
7706,
267,
354,
474,
268,
7706,
573,
220,
198,
2,
13364,
7706,
267,
354,
474,
268,
7706,
267,
354,
474,
268,
7706,
267,
354,
474,
268,
7706,
573,
198
] | 2.146526 | 662 |
# coding: utf-8
# In[17]:
import datetime
from kafka import KafkaConsumer
import boto3
import json
import base64
# Fire up the Kafka Consumer
topic = "testpico"
brokers = ["35.189.130.4:9092"]
# Initialising Kafka consumer(Lambda) with topic
consumer = KafkaConsumer(
topic,
bootstrap_servers=brokers,
value_deserializer=lambda m: json.loads(m.decode('utf-8')))
# In[18]:
# Initialising AWS session using Secrey Keys
session = boto3.session.Session(aws_access_key_id='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
aws_secret_access_key='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
region_name='us-west-2')
# Reading every message in the consumer topic(queue) followed by decoding at the producer
for msg in consumer:
img_bytes = base64.b64decode(msg.value['image_bytes'])
# Initializing the AWS Rekognition System
rekog_client = session.client('rekognition')
# Sending the Image byte array to the AWS Rekognition System to detect the text in the image
response = rekog_client.detect_text(Image={'Bytes':img_bytes})
# Capturing the text detections from the AWS Rekognition System response
textDetections=response['TextDetections']
for text in textDetections:
print ('Detected text:' + text['DetectedText'])
print ('Confidence: ' + "{:.2f}".format(text['Confidence']) + "%")
print("#"*50)
# In[ ]:
| [
198,
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
2,
554,
58,
1558,
5974,
628,
198,
11748,
4818,
8079,
198,
6738,
479,
1878,
4914,
1330,
46906,
49106,
198,
11748,
275,
2069,
18,
198,
11748,
33918,
198,
11748,
2779,
2414,
220,
198,
198,
2,
3764,
510,
262,
46906,
18110,
198,
26652,
796,
366,
9288,
79,
3713,
1,
198,
7957,
15949,
796,
14631,
2327,
13,
23362,
13,
12952,
13,
19,
25,
44675,
17,
8973,
198,
198,
2,
20768,
1710,
46906,
7172,
7,
43,
4131,
6814,
8,
351,
7243,
220,
198,
49827,
796,
46906,
49106,
7,
198,
220,
220,
220,
7243,
11,
220,
198,
220,
220,
220,
6297,
26418,
62,
2655,
690,
28,
7957,
15949,
11,
198,
220,
220,
220,
1988,
62,
8906,
48499,
7509,
28,
50033,
285,
25,
33918,
13,
46030,
7,
76,
13,
12501,
1098,
10786,
40477,
12,
23,
6,
22305,
628,
198,
2,
554,
58,
1507,
5974,
198,
198,
2,
20768,
1710,
30865,
6246,
1262,
1882,
4364,
26363,
198,
29891,
796,
275,
2069,
18,
13,
29891,
13,
36044,
7,
8356,
62,
15526,
62,
2539,
62,
312,
11639,
24376,
24376,
24376,
24376,
24376,
24376,
24376,
24376,
43145,
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,
3253,
82,
62,
21078,
62,
15526,
62,
2539,
11639,
24376,
24376,
24376,
24376,
24376,
24376,
24376,
24376,
43145,
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,
3814,
62,
3672,
11639,
385,
12,
7038,
12,
17,
11537,
198,
198,
2,
11725,
790,
3275,
287,
262,
7172,
7243,
7,
36560,
8,
3940,
416,
39938,
379,
262,
9920,
198,
1640,
31456,
287,
7172,
25,
198,
220,
220,
220,
220,
198,
220,
220,
220,
33705,
62,
33661,
796,
2779,
2414,
13,
65,
2414,
12501,
1098,
7,
19662,
13,
8367,
17816,
9060,
62,
33661,
6,
12962,
628,
220,
220,
220,
220,
198,
1303,
20768,
2890,
262,
30865,
797,
74,
2360,
653,
4482,
198,
220,
220,
220,
302,
74,
519,
62,
16366,
796,
6246,
13,
16366,
10786,
37818,
2360,
653,
11537,
198,
220,
198,
1303,
32038,
262,
7412,
18022,
7177,
284,
262,
30865,
797,
74,
2360,
653,
4482,
284,
4886,
262,
2420,
287,
262,
2939,
628,
220,
220,
220,
2882,
796,
302,
74,
519,
62,
16366,
13,
15255,
478,
62,
5239,
7,
5159,
34758,
6,
45992,
10354,
9600,
62,
33661,
30072,
220,
220,
198,
220,
220,
220,
220,
198,
1303,
6790,
870,
262,
2420,
4886,
507,
422,
262,
30865,
797,
74,
2360,
653,
4482,
2882,
198,
220,
628,
220,
220,
220,
2420,
47504,
507,
28,
26209,
17816,
8206,
47504,
507,
20520,
628,
220,
220,
220,
329,
2420,
287,
2420,
47504,
507,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
19203,
11242,
11197,
2420,
32105,
1343,
2420,
17816,
11242,
11197,
8206,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
19203,
18546,
1704,
25,
705,
1343,
45144,
25,
13,
17,
69,
92,
1911,
18982,
7,
5239,
17816,
18546,
1704,
6,
12962,
1343,
36521,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
3601,
7203,
2,
1,
9,
1120,
8,
628,
198,
2,
554,
58,
2361,
25,
628,
628,
198
] | 2.548276 | 580 |
import json
import pathlib
from substratools import algo, exceptions
from substratools.workspace import CompositeAlgoWorkspace
import pytest
@pytest.fixture(autouse=True)
@pytest.fixture
@pytest.fixture
@pytest.fixture
@pytest.mark.parametrize("fake_data,n_fake_samples,expected_pred", [
(False, 0, []),
(True, 1, []),
])
@pytest.mark.parametrize('algo_class', (
NoSavedTrunkModelAggregateAlgo,
NoSavedHeadModelAggregateAlgo,
WrongSavedTrunkModelAggregateAlgo,
WrongSavedHeadModelAggregateAlgo
))
| [
11748,
33918,
198,
11748,
3108,
8019,
198,
198,
6738,
47294,
265,
10141,
1330,
435,
2188,
11,
13269,
198,
6738,
47294,
265,
10141,
13,
5225,
10223,
1330,
49355,
2348,
2188,
23044,
10223,
198,
198,
11748,
12972,
9288,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
2306,
1076,
28,
17821,
8,
628,
628,
628,
198,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
628,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7203,
30706,
62,
7890,
11,
77,
62,
30706,
62,
82,
12629,
11,
40319,
62,
28764,
1600,
685,
198,
220,
220,
220,
357,
25101,
11,
657,
11,
17635,
828,
198,
220,
220,
220,
357,
17821,
11,
352,
11,
17635,
828,
198,
12962,
628,
628,
198,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
10786,
282,
2188,
62,
4871,
3256,
357,
198,
220,
220,
220,
1400,
50,
9586,
2898,
2954,
17633,
46384,
49373,
2348,
2188,
11,
198,
220,
220,
220,
1400,
50,
9586,
13847,
17633,
46384,
49373,
2348,
2188,
11,
198,
220,
220,
220,
28843,
50,
9586,
2898,
2954,
17633,
46384,
49373,
2348,
2188,
11,
198,
220,
220,
220,
28843,
50,
9586,
13847,
17633,
46384,
49373,
2348,
2188,
198,
4008,
198
] | 2.568075 | 213 |
# --------------------------------------------------------------------------
# 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.
# --------------------------------------------------------------------------
# pylint: disable=protected-access
# pylint: disable=no-self-use
import argparse
from collections import defaultdict
from knack.util import CLIError
| [
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,
628,
198,
2,
279,
2645,
600,
25,
15560,
28,
24326,
12,
15526,
198,
198,
2,
279,
2645,
600,
25,
15560,
28,
3919,
12,
944,
12,
1904,
628,
198,
11748,
1822,
29572,
198,
6738,
17268,
1330,
4277,
11600,
198,
6738,
47868,
13,
22602,
1330,
43749,
12331,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198
] | 4.618705 | 139 |
"""
Defining Class of custom environment for V-Rep
@author: hussein
"""
import vrep_env
from vrep_env import vrep
import os
vrep_scenes_path = os.environ['/home/hussein/Desktop/Multi-agent-path-planning/Reinforcement Learning/examples/scenes']
import rclpy
from rclpy.node import Node
from tf2_msgs.msg import TFMessage
from std_msgs.msg import Float32
import sim
import math
import gym
from gym import spaces
from gym.utils import seeding
import numpy as np
import time
L = 1 # Parameter of robot
d = 0.5 # Parameter of robot
A = np.ones(6) - np.identity(6) # Adjancency Matrix fully connected case 6x6
ux = np.zeros((6,1)) # 6x1
uy = np.zeros((6,1)) # 6x1
" Connecting to V-Rep "
sim.simxFinish(-1) # just in case, close all opened connections
clientID=sim.simxStart('127.0.0.1',19997,True,True,-500000,5) # Connect to CoppeliaSim
N_SCENES = 80
scenes = np.hstack(( np.random.uniform(-2,2,size=(N_SCENES,2)), np.random.uniform(0,np.pi,size=(N_SCENES,1)), np.random.uniform(-2,2,(N_SCENES,2)), np.random.uniform(0,np.pi,size=(N_SCENES,1)) ))
"""
Description:
Consensus environment of 6 robots, where each episode they converge towards each other. DQN applied to robot 1 and rest are controlled with the consensus algorithm.
Source:
This environment corresponds to V-Rep simulator, integrated with ROS to publish actions & subscribe to observations.
Observation:
Type: Box(4)
Num Observation Min Max
0 Mx -4.8 4.8
1 My -4.8 4.8
2 Phix -4.8 4.8
3 Phiy -4.8 4.8
Actions:
Type: Discrete(4)
Num Action
0 Move the robot upwards
1 Move the robot downwards
2 Move the robot to the left
3 Move the robot to the right
""" | [
37811,
198,
198,
7469,
3191,
5016,
286,
2183,
2858,
329,
569,
12,
6207,
198,
198,
31,
9800,
25,
4791,
20719,
198,
37811,
198,
198,
11748,
410,
7856,
62,
24330,
198,
6738,
410,
7856,
62,
24330,
1330,
410,
7856,
198,
198,
11748,
28686,
198,
85,
7856,
62,
28123,
62,
6978,
796,
28686,
13,
268,
2268,
17816,
14,
11195,
14,
7537,
20719,
14,
36881,
14,
29800,
12,
25781,
12,
6978,
12,
11578,
768,
14,
3041,
259,
13442,
18252,
14,
1069,
12629,
14,
28123,
20520,
198,
198,
11748,
374,
565,
9078,
198,
6738,
374,
565,
9078,
13,
17440,
1330,
19081,
198,
6738,
48700,
17,
62,
907,
14542,
13,
19662,
1330,
24958,
12837,
198,
6738,
14367,
62,
907,
14542,
13,
19662,
1330,
48436,
2624,
198,
11748,
985,
198,
198,
11748,
10688,
198,
11748,
11550,
198,
6738,
11550,
1330,
9029,
198,
6738,
11550,
13,
26791,
1330,
384,
8228,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
640,
198,
198,
43,
796,
352,
1303,
25139,
2357,
286,
9379,
198,
67,
796,
657,
13,
20,
1303,
25139,
2357,
286,
9379,
198,
32,
796,
45941,
13,
1952,
7,
21,
8,
532,
45941,
13,
738,
414,
7,
21,
8,
1303,
1215,
73,
1192,
1387,
24936,
3938,
5884,
1339,
718,
87,
21,
198,
198,
2821,
796,
45941,
13,
9107,
418,
19510,
21,
11,
16,
4008,
1303,
718,
87,
16,
198,
4669,
796,
45941,
13,
9107,
418,
19510,
21,
11,
16,
4008,
1303,
718,
87,
16,
198,
198,
1,
8113,
278,
284,
569,
12,
6207,
366,
198,
14323,
13,
14323,
87,
48658,
32590,
16,
8,
1303,
655,
287,
1339,
11,
1969,
477,
4721,
8787,
198,
16366,
2389,
28,
14323,
13,
14323,
87,
10434,
10786,
16799,
13,
15,
13,
15,
13,
16,
3256,
18946,
22,
11,
17821,
11,
17821,
12095,
4059,
830,
11,
20,
8,
1303,
8113,
284,
1766,
381,
25418,
8890,
198,
45,
62,
6173,
1677,
1546,
796,
4019,
198,
28123,
796,
45941,
13,
71,
25558,
19510,
45941,
13,
25120,
13,
403,
6933,
32590,
17,
11,
17,
11,
7857,
16193,
45,
62,
6173,
1677,
1546,
11,
17,
36911,
45941,
13,
25120,
13,
403,
6933,
7,
15,
11,
37659,
13,
14415,
11,
7857,
16193,
45,
62,
6173,
1677,
1546,
11,
16,
36911,
45941,
13,
25120,
13,
403,
6933,
32590,
17,
11,
17,
11,
7,
45,
62,
6173,
1677,
1546,
11,
17,
36911,
45941,
13,
25120,
13,
403,
6933,
7,
15,
11,
37659,
13,
14415,
11,
7857,
16193,
45,
62,
6173,
1677,
1546,
11,
16,
4008,
15306,
198,
220,
220,
220,
220,
220,
198,
37811,
198,
11828,
25,
198,
220,
220,
220,
3515,
7314,
2858,
286,
718,
14193,
11,
810,
1123,
4471,
484,
47873,
3371,
1123,
584,
13,
360,
48,
45,
5625,
284,
9379,
352,
290,
1334,
389,
6856,
351,
262,
11529,
11862,
13,
198,
220,
220,
220,
220,
198,
7416,
25,
198,
220,
220,
220,
770,
2858,
24866,
284,
569,
12,
6207,
35375,
11,
11521,
351,
48263,
284,
7715,
4028,
1222,
12383,
284,
13050,
13,
198,
31310,
13208,
25,
198,
220,
220,
220,
5994,
25,
8315,
7,
19,
8,
220,
198,
220,
220,
220,
31835,
220,
220,
220,
220,
11086,
13208,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1855,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5436,
198,
220,
220,
220,
657,
220,
220,
220,
220,
220,
220,
337,
87,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
19,
13,
23,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
13,
23,
198,
220,
220,
220,
352,
220,
220,
220,
220,
220,
220,
2011,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
19,
13,
23,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
13,
23,
198,
220,
220,
220,
362,
220,
220,
220,
220,
220,
220,
1380,
844,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
19,
13,
23,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
13,
23,
198,
220,
220,
220,
513,
220,
220,
220,
220,
220,
220,
1380,
7745,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
19,
13,
23,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
13,
23,
198,
198,
32,
2733,
25,
220,
198,
220,
220,
220,
5994,
25,
8444,
8374,
7,
19,
8,
220,
198,
220,
220,
220,
31835,
220,
220,
7561,
220,
198,
220,
220,
220,
657,
220,
220,
220,
220,
10028,
262,
9379,
21032,
198,
220,
220,
220,
352,
220,
220,
220,
220,
10028,
262,
9379,
44890,
198,
220,
220,
220,
362,
220,
220,
220,
220,
10028,
262,
9379,
284,
262,
1364,
198,
220,
220,
220,
513,
220,
220,
220,
220,
10028,
262,
9379,
284,
262,
826,
220,
220,
220,
198,
220,
220,
220,
220,
198,
37811
] | 2.207719 | 881 |
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: mixer/v1/config/client/service.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
from gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='mixer/v1/config/client/service.proto',
package='istio.mixer.v1.config.client',
syntax='proto3',
serialized_options=_b('Z#istio.io/api/mixer/v1/config/client\310\341\036\000\250\342\036\000\360\341\036\000\330\342\036\001'),
serialized_pb=_b('\n$mixer/v1/config/client/service.proto\x12\x1cistio.mixer.v1.config.client\x1a\x14gogoproto/gogo.proto\"\xc7\x01\n\x0cIstioService\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tnamespace\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\x0f\n\x07service\x18\x04 \x01(\t\x12\x46\n\x06labels\x18\x05 \x03(\x0b\x32\x36.istio.mixer.v1.config.client.IstioService.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x35Z#istio.io/api/mixer/v1/config/client\xc8\xe1\x1e\x00\xa8\xe2\x1e\x00\xf0\xe1\x1e\x00\xd8\xe2\x1e\x01\x62\x06proto3')
,
dependencies=[gogoproto_dot_gogo__pb2.DESCRIPTOR,])
_ISTIOSERVICE_LABELSENTRY = _descriptor.Descriptor(
name='LabelsEntry',
full_name='istio.mixer.v1.config.client.IstioService.LabelsEntry',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='key', full_name='istio.mixer.v1.config.client.IstioService.LabelsEntry.key', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='value', full_name='istio.mixer.v1.config.client.IstioService.LabelsEntry.value', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=_b('8\001'),
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=247,
serialized_end=292,
)
_ISTIOSERVICE = _descriptor.Descriptor(
name='IstioService',
full_name='istio.mixer.v1.config.client.IstioService',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='name', full_name='istio.mixer.v1.config.client.IstioService.name', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='namespace', full_name='istio.mixer.v1.config.client.IstioService.namespace', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='domain', full_name='istio.mixer.v1.config.client.IstioService.domain', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='service', full_name='istio.mixer.v1.config.client.IstioService.service', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='labels', full_name='istio.mixer.v1.config.client.IstioService.labels', index=4,
number=5, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[_ISTIOSERVICE_LABELSENTRY, ],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=93,
serialized_end=292,
)
_ISTIOSERVICE_LABELSENTRY.containing_type = _ISTIOSERVICE
_ISTIOSERVICE.fields_by_name['labels'].message_type = _ISTIOSERVICE_LABELSENTRY
DESCRIPTOR.message_types_by_name['IstioService'] = _ISTIOSERVICE
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
IstioService = _reflection.GeneratedProtocolMessageType('IstioService', (_message.Message,), {
'LabelsEntry' : _reflection.GeneratedProtocolMessageType('LabelsEntry', (_message.Message,), {
'DESCRIPTOR' : _ISTIOSERVICE_LABELSENTRY,
'__module__' : 'mixer.v1.config.client.service_pb2'
# @@protoc_insertion_point(class_scope:istio.mixer.v1.config.client.IstioService.LabelsEntry)
})
,
'DESCRIPTOR' : _ISTIOSERVICE,
'__module__' : 'mixer.v1.config.client.service_pb2'
# @@protoc_insertion_point(class_scope:istio.mixer.v1.config.client.IstioService)
})
_sym_db.RegisterMessage(IstioService)
_sym_db.RegisterMessage(IstioService.LabelsEntry)
DESCRIPTOR._options = None
_ISTIOSERVICE_LABELSENTRY._options = None
# @@protoc_insertion_point(module_scope)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
2980,
515,
416,
262,
8435,
11876,
17050,
13,
220,
8410,
5626,
48483,
0,
198,
2,
2723,
25,
33938,
14,
85,
16,
14,
11250,
14,
16366,
14,
15271,
13,
1676,
1462,
198,
198,
11748,
25064,
198,
62,
65,
28,
17597,
13,
9641,
62,
10951,
58,
15,
60,
27,
18,
290,
357,
50033,
2124,
25,
87,
8,
393,
357,
50033,
2124,
25,
87,
13,
268,
8189,
10786,
75,
10680,
16,
6,
4008,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
43087,
355,
4808,
20147,
1968,
273,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
3275,
355,
4808,
20500,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
14580,
355,
4808,
5420,
1564,
198,
6738,
23645,
13,
11235,
672,
3046,
1330,
6194,
62,
48806,
355,
4808,
1837,
23650,
62,
48806,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
320,
3742,
8,
198,
198,
62,
37047,
62,
9945,
796,
4808,
1837,
23650,
62,
48806,
13,
19463,
3419,
628,
198,
6738,
467,
70,
404,
305,
1462,
1330,
467,
2188,
62,
40842,
17,
355,
467,
70,
404,
305,
1462,
62,
26518,
62,
70,
24076,
834,
40842,
17,
628,
198,
30910,
36584,
32961,
796,
4808,
20147,
1968,
273,
13,
8979,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
19816,
263,
14,
85,
16,
14,
11250,
14,
16366,
14,
15271,
13,
1676,
1462,
3256,
198,
220,
5301,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
3256,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
11389,
1143,
62,
25811,
28,
62,
65,
10786,
57,
2,
396,
952,
13,
952,
14,
15042,
14,
19816,
263,
14,
85,
16,
14,
11250,
14,
16366,
59,
26717,
59,
33660,
59,
48597,
59,
830,
59,
9031,
59,
31575,
59,
48597,
59,
830,
59,
15277,
59,
33660,
59,
48597,
59,
830,
59,
26073,
59,
31575,
59,
48597,
59,
8298,
33809,
198,
220,
11389,
1143,
62,
40842,
28,
62,
65,
10786,
59,
77,
3,
19816,
263,
14,
85,
16,
14,
11250,
14,
16366,
14,
15271,
13,
1676,
1462,
59,
87,
1065,
59,
87,
16,
66,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
59,
87,
16,
64,
59,
87,
1415,
70,
519,
404,
305,
1462,
14,
70,
24076,
13,
1676,
1462,
7879,
59,
25306,
22,
59,
87,
486,
59,
77,
59,
87,
15,
66,
40,
301,
952,
16177,
59,
87,
1065,
59,
87,
15,
66,
59,
77,
59,
87,
3023,
3672,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
1157,
59,
77,
59,
83,
14933,
10223,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
15,
68,
59,
77,
59,
87,
3312,
59,
87,
2414,
296,
391,
59,
87,
1507,
59,
87,
3070,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
15,
69,
59,
77,
59,
87,
2998,
15271,
59,
87,
1507,
59,
87,
3023,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
87,
3510,
59,
77,
59,
87,
3312,
23912,
1424,
59,
87,
1507,
59,
87,
2713,
3467,
87,
3070,
38016,
87,
15,
65,
59,
87,
2624,
59,
87,
2623,
13,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
59,
87,
16,
64,
12,
59,
77,
59,
87,
15,
65,
17822,
1424,
30150,
59,
87,
1065,
59,
87,
15,
65,
59,
77,
59,
87,
3070,
2539,
59,
87,
1507,
59,
87,
486,
3467,
87,
486,
38016,
83,
59,
87,
1065,
59,
81,
59,
77,
59,
87,
2713,
8367,
59,
87,
1507,
59,
87,
2999,
3467,
87,
486,
38016,
83,
7479,
87,
2999,
59,
87,
2548,
59,
87,
486,
59,
87,
3682,
59,
87,
2327,
57,
2,
396,
952,
13,
952,
14,
15042,
14,
19816,
263,
14,
85,
16,
14,
11250,
14,
16366,
59,
25306,
23,
59,
27705,
16,
59,
87,
16,
68,
59,
87,
405,
59,
27865,
23,
59,
27705,
17,
59,
87,
16,
68,
59,
87,
405,
59,
26152,
15,
59,
27705,
16,
59,
87,
16,
68,
59,
87,
405,
59,
24954,
23,
59,
27705,
17,
59,
87,
16,
68,
59,
87,
486,
59,
87,
5237,
59,
87,
3312,
1676,
1462,
18,
11537,
198,
220,
837,
198,
220,
20086,
41888,
70,
519,
404,
305,
1462,
62,
26518,
62,
70,
24076,
834,
40842,
17,
13,
30910,
36584,
32961,
11,
12962,
628,
628,
198,
62,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
17822,
1424,
30150,
3256,
198,
220,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
2539,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
13,
2539,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
8367,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
13,
8367,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
41888,
4357,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
62,
65,
10786,
23,
59,
8298,
33809,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
23753,
11,
198,
220,
11389,
1143,
62,
437,
28,
32759,
11,
198,
8,
198,
198,
62,
8808,
40,
2640,
1137,
27389,
796,
4808,
20147,
1968,
273,
13,
24564,
1968,
273,
7,
198,
220,
1438,
11639,
40,
301,
952,
16177,
3256,
198,
220,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
3256,
198,
220,
29472,
28,
14202,
11,
198,
220,
2393,
28,
30910,
36584,
32961,
11,
198,
220,
7268,
62,
4906,
28,
14202,
11,
198,
220,
7032,
41888,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
3672,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
3672,
3256,
6376,
28,
15,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
14933,
10223,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
14933,
10223,
3256,
6376,
28,
16,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
27830,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
27830,
3256,
6376,
28,
17,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
15271,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
15271,
3256,
6376,
28,
18,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
19,
11,
2099,
28,
24,
11,
269,
381,
62,
4906,
28,
24,
11,
6167,
28,
16,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
28,
62,
65,
7203,
11074,
12501,
1098,
10786,
40477,
12,
23,
33809,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
220,
220,
4808,
20147,
1968,
273,
13,
15878,
24564,
1968,
273,
7,
198,
220,
220,
220,
220,
220,
1438,
11639,
23912,
1424,
3256,
1336,
62,
3672,
11639,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
23912,
1424,
3256,
6376,
28,
19,
11,
198,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
2099,
28,
1157,
11,
269,
381,
62,
4906,
28,
940,
11,
6167,
28,
18,
11,
198,
220,
220,
220,
220,
220,
468,
62,
12286,
62,
8367,
28,
25101,
11,
4277,
62,
8367,
41888,
4357,
198,
220,
220,
220,
220,
220,
3275,
62,
4906,
28,
14202,
11,
33829,
62,
4906,
28,
14202,
11,
7268,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
318,
62,
2302,
3004,
28,
25101,
11,
7552,
62,
29982,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
2393,
28,
30910,
36584,
32961,
828,
198,
220,
16589,
198,
220,
18366,
41888,
198,
220,
16589,
198,
220,
28376,
62,
19199,
28,
29795,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
11,
16589,
198,
220,
33829,
62,
19199,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
25811,
28,
14202,
11,
198,
220,
318,
62,
2302,
437,
540,
28,
25101,
11,
198,
220,
15582,
11639,
1676,
1462,
18,
3256,
198,
220,
7552,
62,
81,
6231,
41888,
4357,
198,
220,
530,
1659,
82,
41888,
198,
220,
16589,
198,
220,
11389,
1143,
62,
9688,
28,
6052,
11,
198,
220,
11389,
1143,
62,
437,
28,
32759,
11,
198,
8,
198,
198,
62,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
13,
38301,
62,
4906,
796,
4808,
8808,
40,
2640,
1137,
27389,
198,
62,
8808,
40,
2640,
1137,
27389,
13,
25747,
62,
1525,
62,
3672,
17816,
23912,
1424,
6,
4083,
20500,
62,
4906,
796,
4808,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
198,
30910,
36584,
32961,
13,
20500,
62,
19199,
62,
1525,
62,
3672,
17816,
40,
301,
952,
16177,
20520,
796,
4808,
8808,
40,
2640,
1137,
27389,
198,
62,
37047,
62,
9945,
13,
38804,
8979,
24564,
1968,
273,
7,
30910,
36584,
32961,
8,
198,
198,
40,
301,
952,
16177,
796,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
40,
301,
952,
16177,
3256,
44104,
20500,
13,
12837,
11,
828,
1391,
628,
220,
705,
17822,
1424,
30150,
6,
1058,
4808,
5420,
1564,
13,
8645,
515,
19703,
4668,
12837,
6030,
10786,
17822,
1424,
30150,
3256,
44104,
20500,
13,
12837,
11,
828,
1391,
198,
220,
220,
220,
705,
30910,
36584,
32961,
6,
1058,
4808,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
11,
198,
220,
220,
220,
705,
834,
21412,
834,
6,
1058,
705,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
15271,
62,
40842,
17,
6,
198,
220,
220,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
8,
198,
220,
220,
220,
32092,
198,
220,
837,
198,
220,
705,
30910,
36584,
32961,
6,
1058,
4808,
8808,
40,
2640,
1137,
27389,
11,
198,
220,
705,
834,
21412,
834,
6,
1058,
705,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
15271,
62,
40842,
17,
6,
198,
220,
1303,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
4871,
62,
29982,
25,
396,
952,
13,
19816,
263,
13,
85,
16,
13,
11250,
13,
16366,
13,
40,
301,
952,
16177,
8,
198,
220,
32092,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
40,
301,
952,
16177,
8,
198,
62,
37047,
62,
9945,
13,
38804,
12837,
7,
40,
301,
952,
16177,
13,
17822,
1424,
30150,
8,
628,
198,
30910,
36584,
32961,
13557,
25811,
796,
6045,
198,
62,
8808,
40,
2640,
1137,
27389,
62,
48780,
37142,
3525,
18276,
13557,
25811,
796,
6045,
198,
2,
25248,
11235,
420,
62,
28463,
295,
62,
4122,
7,
21412,
62,
29982,
8,
198
] | 2.33271 | 2,675 |
from typing import List
from src.types.header_block import HeaderBlock
def verify_weight(
tip: HeaderBlock, proof_blocks: List[HeaderBlock], fork_point: HeaderBlock
) -> bool:
"""
Verifies whether the weight of the tip is valid or not. Naively, looks at every block
from genesis, verifying proof of space, proof of time, and difficulty resets.
# TODO: implement
"""
for height, block in enumerate(proof_blocks):
if not block.height == height + fork_point.height + 1:
return False
return True
| [
6738,
19720,
1330,
7343,
198,
198,
6738,
12351,
13,
19199,
13,
25677,
62,
9967,
1330,
48900,
12235,
628,
198,
4299,
11767,
62,
6551,
7,
198,
220,
220,
220,
8171,
25,
48900,
12235,
11,
6617,
62,
27372,
25,
7343,
58,
39681,
12235,
4357,
15563,
62,
4122,
25,
48900,
12235,
198,
8,
4613,
20512,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4643,
6945,
1771,
262,
3463,
286,
262,
8171,
318,
4938,
393,
407,
13,
11013,
2280,
11,
3073,
379,
790,
2512,
198,
220,
220,
220,
422,
48861,
11,
45505,
6617,
286,
2272,
11,
6617,
286,
640,
11,
290,
8722,
581,
1039,
13,
198,
220,
220,
220,
1303,
16926,
46,
25,
3494,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
329,
6001,
11,
2512,
287,
27056,
378,
7,
13288,
62,
27372,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2512,
13,
17015,
6624,
6001,
1343,
15563,
62,
4122,
13,
17015,
1343,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
1441,
6407,
198
] | 3.078652 | 178 |
"""
__author__: Jamin Becker ([email protected])
"""
import os
import sys
import time
import socket
import logging
import pathlib
import warnings
from hashlib import md5
import psutil
import pyshark
import progressbar
from magic import from_buffer
from terminaltables import AsciiTable
from packettotal_sdk.packettotal_api import PacketTotalApi
from honeybot.lib import const
def capture_on_interface(interface, name, timeout=60):
"""
:param interface: The name of the interface on which to capture traffic
:param name: The name of the capture file
:param timeout: A limit in seconds specifying how long to capture traffic
"""
if timeout < 15:
logger.error("Timeout must be over 15 seconds.")
return
if not sys.warnoptions:
warnings.simplefilter("ignore")
start = time.time()
widgets = [
progressbar.Bar(marker=progressbar.RotatingMarker()),
' ',
progressbar.FormatLabel('Packets Captured: %(value)d'),
' ',
progressbar.Timer(),
]
progress = progressbar.ProgressBar(widgets=widgets)
capture = pyshark.LiveCapture(interface=interface, output_file=os.path.join('tmp', name))
pcap_size = 0
for i, packet in enumerate(capture.sniff_continuously()):
progress.update(i)
if os.path.getsize(os.path.join('tmp', name)) != pcap_size:
pcap_size = os.path.getsize(os.path.join('tmp', name))
if not isinstance(packet, pyshark.packet.packet.Packet):
continue
if time.time() - start > timeout:
break
if pcap_size > const.PT_MAX_BYTES:
break
capture.clear()
capture.close()
return pcap_size
def get_filepath_md5_hash(file_path):
"""
:param file_path: path to the file being hashed
:return: the md5 hash of a file
"""
with open(file_path, 'rb') as afile:
return get_file_md5_hash(afile)
def get_mac_address_of_interface(interface):
"""
:param interface: The friendly name of a network interface
:return: the MAC address associated with that interface
"""
for k,v in psutil.net_if_addrs().items():
if interface == k:
for item in v:
try:
if item.family == socket.AF_LINK:
return item.address
except AttributeError:
# Linux
if item.family == socket.AF_PACKET:
return item.address
return None
def gen_unique_id(interface):
"""
Generates a unique ID based on your MAC address that will be used to tag all PCAPs uploaded to PacketTotal.com
This ID can be used to search and view PCAPs you have uploaded.
:param interface: The friendly name of a network interface
:return: A unique id
"""
mac_address = get_mac_address_of_interface(interface)
if mac_address:
return get_str_md5_hash(get_str_md5_hash(mac_address))[0:15]
return None
def get_file_md5_hash(fh):
"""
:param fh: file handle
:return: the md5 hash of the file
"""
block_size = 65536
md5_hasher = md5()
buf = fh.read(block_size)
while len(buf) > 0:
md5_hasher.update(buf)
buf = fh.read(block_size)
return md5_hasher.hexdigest()
def get_network_interfaces():
"""
:return: A list of valid interfaces and their addresses
"""
return psutil.net_if_addrs().items()
def is_packet_capture(bytes):
"""
:param bytes: raw bytes
:return: True is valid pcap or pcapng file
"""
result = from_buffer(bytes)
valid = "pcap-ng" in result or "tcpdump" in result or "NetMon" in result or 'pcap capture file' in result
return valid
def mkdir_p(path):
"""
:param path: Path to the new directory to create
"""
pathlib.Path(path).mkdir(parents=True, exist_ok=True)
def listen_on_interface(interface, timeout=60):
"""
:param interface: The name of the interface on which to capture traffic
:return: generator containing live packets
"""
start = time.time()
capture = pyshark.LiveCapture(interface=interface)
for item in capture.sniff_continuously():
if timeout and time.time() - start > timeout:
break
yield item
def print_network_interaces():
"""
:return: Prints a human readable representation of the available network interfaces
"""
for intf, items in get_network_interfaces():
table = [["family", "address", "netmask", "broadcast", "ptp"]]
for item in items:
family, address, netmask, broadcast, ptp = item
table.append([str(family), str(address), str(netmask), str(broadcast), str(ptp)])
print(AsciiTable(table_data=table, title=intf).table)
print('\n')
def print_pt_ascii_logo():
"""
:return: Prints a PacketTotal.com (visit https://PacketTotal.com!)
"""
logo = """
,,*****, ,****,
****/**, / ,*//*,
****/**, ,,**********,. ******
.. .,*****, .. ******** ************,. .
. .,,***, ,******, .,***,,.. *****////***, ,***,
... ,******, ,******, .,******** *****////***,. ****,
.,,****, ,******, ,******, ,******** ************, .///
/////* // ////// /( ////// /( *///// ************
****,. ,,******. ,******. ,******, .******,,.,******,. *
*****, ********, ,******, ,******, .,********.,******** ,*******,
*****, ********, ,******, ,******, .,********.,******** ****//**,
*****, /*******, ,******* *//////* ********/ ,******** ****//**,
////* / .////// ((.(((((( ## (((((( (& /((((( % ////// ,******** .
,,,,,. ,,,,,,,,. ,,*****, ,******, ,*****,,,..,,,,,,,. .,,,,,,
*****, /*******, *//////* *//////* .*//////*/.*********,,*****,
*****, /*******, *//////* (. ( *////////.*********,,******
*****, /******** */////(* ..,,,,,,.. (/////// ********* *******
////* / ,/((((/ #@,####*..,**********,. /####. & /(((((. @ *////
,,,,,. ..,,,,*,, ,**, ,*****////*****,./***,. ,,,,,,,.. .,,,,,
,***, /*****//* */// .,***//(##((/****, /////,*//******,,***,
****, /*****//* *//* ,****/(%&&%(//**,, ////(,*//******,,****
****, /*****//* *//* ,***//(##(//***** *///( *//******.***,
*** ( **///// #@//((. ******////****** /(((* @ //////* **,
,,. ..,,,,,,, ,****,. ************ .,****,. ,,,,,,,.. ,,*
*, /******** *//////, ,****, ,////////.*********,,*
* /*******, *//////* ,******, .*////////.*********,,
/******** *//////* *//////* *//////*/ *********
*******,# ////////# ////////# //////* /******
,,,,,..((.,,,,,,.(#.,,,,,,.(#.,,,,,,..(..,,,,,
* *****, ,******, *//////* .,*******/.,*****
***, ,******, ,******, .,********.,*** /
* ,*, ,******, ,******, ,********.,* .
*******/ *******/ ,******* ,
,,,,,..// .,,,,..// .,,,,,
/ .****, ,******, .,****, /
/ *** ,******, ***
******** #
- honeybot: Capture and analyze network traffic; powered by PacketTotal.com
: VERSION: {}
""".format(const.VERSION)
print(logo)
# Setup Logging
mkdir_p('logs/')
mkdir_p('tmp/')
logger = logging.getLogger('honeybot.utils')
logger.setLevel(logging.DEBUG)
fh = logging.FileHandler('logs/honeybot.log')
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
fh.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh.setFormatter(formatter)
ch.setFormatter(formatter)
logger.addHandler(fh)
logger.addHandler(ch) | [
37811,
198,
834,
9800,
834,
25,
449,
5669,
40765,
357,
13337,
31,
8002,
3087,
4997,
13,
785,
8,
198,
37811,
198,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
640,
198,
11748,
17802,
198,
11748,
18931,
198,
11748,
3108,
8019,
198,
11748,
14601,
198,
6738,
12234,
8019,
1330,
45243,
20,
628,
198,
11748,
26692,
22602,
198,
11748,
279,
893,
71,
668,
198,
11748,
4371,
5657,
198,
6738,
5536,
1330,
422,
62,
22252,
198,
6738,
5651,
2501,
2977,
1330,
1081,
979,
72,
10962,
198,
6738,
2353,
3087,
4997,
62,
21282,
74,
13,
8002,
3087,
4997,
62,
15042,
1330,
6400,
316,
14957,
32,
14415,
628,
198,
6738,
12498,
13645,
13,
8019,
1330,
1500,
628,
198,
4299,
8006,
62,
261,
62,
39994,
7,
39994,
11,
1438,
11,
26827,
28,
1899,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
7071,
25,
383,
1438,
286,
262,
7071,
319,
543,
284,
8006,
4979,
198,
220,
220,
220,
1058,
17143,
1438,
25,
383,
1438,
286,
262,
8006,
2393,
198,
220,
220,
220,
1058,
17143,
26827,
25,
317,
4179,
287,
4201,
31577,
703,
890,
284,
8006,
4979,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
26827,
1279,
1315,
25,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7203,
48031,
1276,
307,
625,
1315,
4201,
19570,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
611,
407,
25064,
13,
40539,
25811,
25,
198,
220,
220,
220,
220,
220,
220,
220,
14601,
13,
36439,
24455,
7203,
46430,
4943,
198,
220,
220,
220,
923,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
40803,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
5657,
13,
10374,
7,
4102,
263,
28,
33723,
5657,
13,
24864,
803,
9704,
263,
3419,
828,
198,
220,
220,
220,
220,
220,
220,
220,
705,
46083,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
5657,
13,
26227,
33986,
10786,
11869,
1039,
6790,
1522,
25,
4064,
7,
8367,
8,
67,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
705,
46083,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
5657,
13,
48801,
22784,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
4371,
796,
4371,
5657,
13,
32577,
10374,
7,
28029,
11407,
28,
28029,
11407,
8,
198,
220,
220,
220,
8006,
796,
279,
893,
71,
668,
13,
18947,
49630,
7,
39994,
28,
39994,
11,
5072,
62,
7753,
28,
418,
13,
6978,
13,
22179,
10786,
22065,
3256,
1438,
4008,
198,
220,
220,
220,
279,
11128,
62,
7857,
796,
657,
198,
220,
220,
220,
329,
1312,
11,
19638,
287,
27056,
378,
7,
27144,
495,
13,
16184,
733,
62,
18487,
24987,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4371,
13,
19119,
7,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
11407,
1096,
7,
418,
13,
6978,
13,
22179,
10786,
22065,
3256,
1438,
4008,
14512,
279,
11128,
62,
7857,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
11128,
62,
7857,
796,
28686,
13,
6978,
13,
11407,
1096,
7,
418,
13,
6978,
13,
22179,
10786,
22065,
3256,
1438,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
8002,
316,
11,
279,
893,
71,
668,
13,
8002,
316,
13,
8002,
316,
13,
47,
8317,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
611,
640,
13,
2435,
3419,
532,
923,
1875,
26827,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
611,
279,
11128,
62,
7857,
1875,
1500,
13,
11571,
62,
22921,
62,
17513,
51,
1546,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
8006,
13,
20063,
3419,
198,
220,
220,
220,
8006,
13,
19836,
3419,
198,
220,
220,
220,
1441,
279,
11128,
62,
7857,
628,
198,
198,
4299,
651,
62,
7753,
6978,
62,
9132,
20,
62,
17831,
7,
7753,
62,
6978,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
2393,
62,
6978,
25,
3108,
284,
262,
2393,
852,
468,
704,
198,
220,
220,
220,
1058,
7783,
25,
262,
45243,
20,
12234,
286,
257,
2393,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
1280,
7,
7753,
62,
6978,
11,
705,
26145,
11537,
355,
6580,
576,
25,
198,
220,
220,
220,
220,
220,
220,
1441,
651,
62,
7753,
62,
9132,
20,
62,
17831,
7,
1878,
576,
8,
628,
198,
198,
4299,
651,
62,
20285,
62,
21975,
62,
1659,
62,
39994,
7,
39994,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
7071,
25,
383,
8030,
1438,
286,
257,
3127,
7071,
198,
220,
220,
220,
1058,
7783,
25,
262,
20582,
2209,
3917,
351,
326,
7071,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
329,
479,
11,
85,
287,
26692,
22602,
13,
3262,
62,
361,
62,
2860,
3808,
22446,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7071,
6624,
479,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2378,
287,
410,
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,
611,
2378,
13,
17989,
6624,
17802,
13,
8579,
62,
43,
17248,
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,
1441,
2378,
13,
21975,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7020,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2378,
13,
17989,
6624,
17802,
13,
8579,
62,
47,
8120,
2767,
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,
1441,
2378,
13,
21975,
198,
220,
220,
220,
1441,
6045,
628,
198,
4299,
2429,
62,
34642,
62,
312,
7,
39994,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2980,
689,
257,
3748,
4522,
1912,
319,
534,
20582,
2209,
326,
481,
307,
973,
284,
7621,
477,
4217,
2969,
82,
19144,
284,
6400,
316,
14957,
13,
785,
198,
220,
220,
220,
770,
4522,
460,
307,
973,
284,
2989,
290,
1570,
4217,
2969,
82,
345,
423,
19144,
13,
628,
220,
220,
220,
1058,
17143,
7071,
25,
383,
8030,
1438,
286,
257,
3127,
7071,
198,
220,
220,
220,
1058,
7783,
25,
317,
3748,
4686,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8352,
62,
21975,
796,
651,
62,
20285,
62,
21975,
62,
1659,
62,
39994,
7,
39994,
8,
198,
220,
220,
220,
611,
8352,
62,
21975,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
651,
62,
2536,
62,
9132,
20,
62,
17831,
7,
1136,
62,
2536,
62,
9132,
20,
62,
17831,
7,
20285,
62,
21975,
4008,
58,
15,
25,
1314,
60,
198,
220,
220,
220,
1441,
6045,
628,
198,
4299,
651,
62,
7753,
62,
9132,
20,
62,
17831,
7,
69,
71,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
277,
71,
25,
2393,
5412,
198,
220,
220,
220,
1058,
7783,
25,
262,
45243,
20,
12234,
286,
262,
2393,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2512,
62,
7857,
796,
45021,
2623,
198,
220,
220,
220,
45243,
20,
62,
10134,
372,
796,
45243,
20,
3419,
198,
220,
220,
220,
42684,
796,
277,
71,
13,
961,
7,
9967,
62,
7857,
8,
198,
220,
220,
220,
981,
18896,
7,
29325,
8,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
45243,
20,
62,
10134,
372,
13,
19119,
7,
29325,
8,
198,
220,
220,
220,
220,
220,
220,
220,
42684,
796,
277,
71,
13,
961,
7,
9967,
62,
7857,
8,
198,
220,
220,
220,
1441,
45243,
20,
62,
10134,
372,
13,
33095,
12894,
395,
3419,
628,
198,
4299,
651,
62,
27349,
62,
3849,
32186,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
7783,
25,
317,
1351,
286,
4938,
20314,
290,
511,
9405,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
26692,
22602,
13,
3262,
62,
361,
62,
2860,
3808,
22446,
23814,
3419,
628,
198,
4299,
318,
62,
8002,
316,
62,
27144,
495,
7,
33661,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
9881,
25,
8246,
9881,
198,
220,
220,
220,
1058,
7783,
25,
6407,
318,
4938,
279,
11128,
393,
279,
11128,
782,
2393,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1255,
796,
422,
62,
22252,
7,
33661,
8,
198,
220,
220,
220,
4938,
796,
366,
79,
11128,
12,
782,
1,
287,
1255,
393,
366,
83,
13155,
39455,
1,
287,
1255,
393,
366,
7934,
9069,
1,
287,
1255,
393,
705,
79,
11128,
8006,
2393,
6,
287,
1255,
198,
220,
220,
220,
1441,
4938,
628,
198,
4299,
33480,
15908,
62,
79,
7,
6978,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
3108,
25,
10644,
284,
262,
649,
8619,
284,
2251,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
3108,
8019,
13,
15235,
7,
6978,
737,
28015,
15908,
7,
23743,
28,
17821,
11,
2152,
62,
482,
28,
17821,
8,
628,
198,
4299,
6004,
62,
261,
62,
39994,
7,
39994,
11,
26827,
28,
1899,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
7071,
25,
383,
1438,
286,
262,
7071,
319,
543,
284,
8006,
4979,
198,
220,
220,
220,
1058,
7783,
25,
17301,
7268,
2107,
24624,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
923,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
8006,
796,
279,
893,
71,
668,
13,
18947,
49630,
7,
39994,
28,
39994,
8,
628,
220,
220,
220,
329,
2378,
287,
8006,
13,
16184,
733,
62,
18487,
24987,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
26827,
290,
640,
13,
2435,
3419,
532,
923,
1875,
26827,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
2378,
628,
198,
4299,
3601,
62,
27349,
62,
3849,
2114,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
7783,
25,
12578,
82,
257,
1692,
31744,
10552,
286,
262,
1695,
3127,
20314,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
329,
493,
69,
11,
3709,
287,
651,
62,
27349,
62,
3849,
32186,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
3084,
796,
685,
14692,
17989,
1600,
366,
21975,
1600,
366,
3262,
27932,
1600,
366,
36654,
2701,
1600,
366,
457,
79,
8973,
60,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2378,
287,
3709,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1641,
11,
2209,
11,
2010,
27932,
11,
7025,
11,
279,
34788,
796,
2378,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3084,
13,
33295,
26933,
2536,
7,
17989,
828,
965,
7,
21975,
828,
965,
7,
3262,
27932,
828,
965,
7,
36654,
2701,
828,
965,
7,
457,
79,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
1722,
979,
72,
10962,
7,
11487,
62,
7890,
28,
11487,
11,
3670,
28,
600,
69,
737,
11487,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
77,
11537,
628,
198,
198,
4299,
3601,
62,
457,
62,
292,
979,
72,
62,
6404,
78,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
7783,
25,
12578,
82,
257,
6400,
316,
14957,
13,
785,
357,
4703,
270,
3740,
1378,
47,
8317,
14957,
13,
785,
8133,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
11112,
796,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
11,
2466,
25666,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
2466,
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,
25998,
35343,
11,
220,
1220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
9,
1003,
25666,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25998,
35343,
11,
220,
837,
11,
4557,
1174,
38508,
25998,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11485,
220,
764,
11,
2466,
25666,
220,
11485,
220,
220,
220,
220,
220,
220,
220,
4557,
220,
220,
46068,
38508,
220,
220,
764,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
220,
764,
9832,
8162,
11,
220,
837,
2466,
1174,
11,
764,
11,
8162,
9832,
492,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25998,
9,
9705,
8162,
11,
220,
837,
8162,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2644,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
764,
11,
4557,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25998,
9,
9705,
8162,
38508,
25998,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
9832,
2466,
11,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
220,
837,
4557,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46068,
11,
220,
764,
20379,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3373,
1003,
15211,
3373,
3373,
9705,
1220,
7,
3373,
9705,
1220,
7,
1635,
9705,
14,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46068,
198,
220,
220,
220,
25998,
38508,
837,
11,
2466,
1174,
13,
220,
837,
2466,
1174,
13,
220,
837,
2466,
1174,
11,
220,
764,
2466,
1174,
9832,
1539,
2466,
1174,
38508,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
198,
220,
220,
220,
25998,
25666,
220,
4557,
11,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
764,
11,
4557,
1539,
4557,
220,
220,
220,
220,
220,
837,
2466,
8162,
11,
198,
220,
220,
220,
25998,
25666,
220,
4557,
11,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
764,
11,
4557,
1539,
4557,
220,
220,
220,
220,
220,
25998,
1003,
1174,
11,
198,
220,
220,
220,
25998,
25666,
1220,
2466,
8162,
11,
220,
837,
2466,
8162,
220,
1635,
9705,
1003,
9,
220,
220,
4557,
14,
837,
4557,
220,
220,
220,
220,
220,
25998,
1003,
1174,
11,
198,
220,
220,
220,
3373,
1003,
9,
1220,
764,
9705,
1003,
14808,
12195,
19510,
19510,
7,
22492,
14808,
19510,
19510,
35494,
1220,
19510,
19510,
7,
220,
4064,
3373,
9705,
220,
220,
220,
220,
220,
220,
220,
837,
4557,
764,
198,
220,
220,
220,
837,
23846,
13,
837,
23846,
9832,
38508,
220,
837,
11,
2466,
25666,
220,
837,
2466,
1174,
11,
220,
837,
35625,
9832,
11,
492,
23846,
9832,
38508,
764,
23846,
9832,
198,
220,
220,
220,
25998,
25666,
1220,
2466,
8162,
11,
220,
1635,
9705,
1003,
9,
220,
1635,
9705,
1003,
9,
764,
9,
9705,
1003,
9,
11757,
4557,
9,
9832,
2466,
25666,
198,
220,
220,
220,
25998,
25666,
1220,
2466,
8162,
11,
220,
1635,
9705,
1003,
9,
220,
20262,
220,
220,
220,
220,
357,
220,
1635,
16150,
13,
4557,
9,
9832,
2466,
1174,
198,
220,
220,
220,
25998,
25666,
1220,
4557,
220,
1635,
9705,
29006,
9,
11485,
23846,
9832,
492,
220,
357,
9705,
20379,
220,
4557,
9,
25998,
8162,
198,
220,
220,
220,
3373,
1003,
9,
1220,
837,
14,
19510,
19510,
14,
1303,
31,
11,
4242,
9,
492,
11,
4557,
1174,
38508,
1220,
4242,
13,
1222,
1220,
19510,
19510,
7,
13,
2488,
1635,
9705,
198,
220,
220,
220,
837,
23846,
13,
11485,
23846,
9,
9832,
220,
837,
1174,
11,
220,
837,
35625,
9705,
2466,
25666,
19571,
8162,
38508,
837,
23846,
9832,
492,
764,
23846,
11,
198,
220,
220,
220,
220,
837,
8162,
11,
1220,
35625,
1003,
9,
220,
1635,
20379,
764,
11,
8162,
1003,
7,
2235,
19510,
14,
2466,
11,
3373,
20379,
11,
9,
1003,
2466,
1174,
9832,
8162,
11,
198,
220,
220,
220,
220,
25998,
11,
1220,
35625,
1003,
9,
220,
1635,
1003,
9,
837,
2466,
29006,
4,
25226,
4,
7,
1003,
1174,
9832,
3373,
1003,
7,
11,
9,
1003,
2466,
1174,
9832,
2466,
198,
220,
220,
220,
220,
25998,
11,
1220,
35625,
1003,
9,
220,
1635,
1003,
9,
220,
837,
8162,
1003,
7,
2235,
7,
1003,
35625,
1635,
20379,
7,
1635,
1003,
2466,
1174,
13,
8162,
11,
198,
220,
220,
220,
220,
220,
17202,
357,
12429,
9705,
14,
1303,
31,
1003,
19510,
13,
25998,
1174,
9705,
2466,
1174,
1220,
19510,
46491,
2488,
3373,
9705,
9,
220,
220,
12429,
11,
198,
220,
220,
220,
220,
220,
220,
837,
38508,
11485,
23846,
9832,
11,
220,
837,
2466,
38508,
220,
46068,
764,
11,
2466,
38508,
837,
23846,
9832,
492,
837,
11,
9,
198,
220,
220,
220,
220,
220,
220,
220,
1635,
11,
1220,
4557,
220,
1635,
9705,
1003,
11,
220,
220,
837,
2466,
11,
220,
220,
837,
16150,
13,
4557,
9,
9832,
9,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
1220,
2466,
8162,
11,
220,
1635,
9705,
1003,
9,
220,
837,
2466,
1174,
11,
764,
9,
16150,
13,
4557,
9,
9832,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1220,
4557,
220,
1635,
9705,
1003,
9,
220,
1635,
9705,
1003,
9,
220,
1635,
9705,
1003,
16208,
220,
4557,
9,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25998,
8162,
11,
2,
3373,
9705,
1003,
2,
3373,
9705,
1003,
2,
220,
3373,
9705,
9,
220,
220,
1220,
2466,
1174,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
23846,
492,
19510,
1539,
23846,
11,
12195,
2,
1539,
23846,
11,
12195,
2,
1539,
23846,
11,
492,
7,
492,
23846,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
25998,
25666,
220,
837,
2466,
1174,
11,
220,
1635,
9705,
1003,
9,
764,
11,
2466,
8162,
14,
1539,
35625,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17202,
11,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
764,
11,
4557,
1539,
8162,
1220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1635,
837,
25666,
220,
837,
2466,
1174,
11,
220,
837,
2466,
1174,
11,
220,
837,
4557,
1539,
9,
220,
764,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25998,
8162,
14,
220,
25998,
8162,
14,
220,
837,
2466,
8162,
220,
220,
220,
837,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
837,
23846,
492,
1003,
764,
23846,
492,
1003,
764,
23846,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1220,
764,
2466,
11,
220,
837,
2466,
1174,
11,
764,
11,
2466,
11,
1220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1220,
17202,
220,
837,
2466,
1174,
11,
220,
17202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4557,
220,
220,
1303,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
12498,
13645,
25,
31793,
290,
16602,
3127,
4979,
26,
13232,
416,
6400,
316,
14957,
13,
785,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
44156,
2849,
25,
23884,
198,
220,
220,
220,
13538,
1911,
18982,
7,
9979,
13,
43717,
8,
198,
220,
220,
220,
3601,
7,
6404,
78,
8,
628,
198,
198,
2,
31122,
5972,
2667,
198,
198,
28015,
15908,
62,
79,
10786,
6404,
82,
14,
11537,
198,
28015,
15908,
62,
79,
10786,
22065,
14,
11537,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
71,
1419,
13645,
13,
26791,
11537,
198,
6404,
1362,
13,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
198,
69,
71,
796,
18931,
13,
8979,
25060,
10786,
6404,
82,
14,
71,
1419,
13645,
13,
6404,
11537,
198,
354,
796,
18931,
13,
12124,
25060,
3419,
198,
354,
13,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
198,
69,
71,
13,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
198,
687,
1436,
796,
18931,
13,
8479,
1436,
10786,
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,
11537,
198,
69,
71,
13,
2617,
8479,
1436,
7,
687,
1436,
8,
198,
354,
13,
2617,
8479,
1436,
7,
687,
1436,
8,
198,
6404,
1362,
13,
2860,
25060,
7,
69,
71,
8,
198,
6404,
1362,
13,
2860,
25060,
7,
354,
8
] | 2.187232 | 3,728 |
import unittest
from shexer.shaper import Shaper
from test.const import G1, BASE_FILES, default_namespaces
from shexer.consts import JSON, FIXED_SHAPE_MAP
from test.t_utils import file_vs_str_tunned_comparison
import os.path as pth
from shexer.consts import TURTLE
_BASE_DIR = BASE_FILES + "shape_map" + pth.sep
| [
11748,
555,
715,
395,
198,
6738,
673,
87,
263,
13,
1477,
2136,
1330,
911,
2136,
198,
6738,
1332,
13,
9979,
1330,
402,
16,
11,
49688,
62,
46700,
1546,
11,
4277,
62,
14933,
43076,
198,
6738,
673,
87,
263,
13,
1102,
6448,
1330,
19449,
11,
44855,
1961,
62,
9693,
45721,
62,
33767,
198,
6738,
1332,
13,
83,
62,
26791,
1330,
2393,
62,
14259,
62,
2536,
62,
28286,
2817,
62,
785,
1845,
1653,
198,
11748,
28686,
13,
6978,
355,
279,
400,
198,
6738,
673,
87,
263,
13,
1102,
6448,
1330,
309,
4261,
51,
2538,
198,
198,
62,
33,
11159,
62,
34720,
796,
49688,
62,
46700,
1546,
1343,
366,
43358,
62,
8899,
1,
1343,
279,
400,
13,
325,
79,
628
] | 2.683761 | 117 |
from django.contrib import admin
from .models import *
admin.site.register(Product)
admin.site.register(Category)
admin.site.register(Review)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
6738,
764,
27530,
1330,
1635,
198,
198,
28482,
13,
15654,
13,
30238,
7,
15667,
8,
198,
28482,
13,
15654,
13,
30238,
7,
27313,
8,
198,
28482,
13,
15654,
13,
30238,
7,
14832,
8,
198
] | 3.325581 | 43 |
# -*- coding: utf-8 -*-
import logging
from collections import namedtuple
import aesara_theano_fallback.tensor as tt
import numpy as np
import pymc3 as pm
import pytest
from pymc3.tests.test_distributions import R, Unit, Vector
from pymc3.tests.test_transforms import check_transform, get_values
from scipy.stats import beta, halfnorm, kstest, rayleigh
from exoplanet.distributions import transforms as tr
from exoplanet.distributions.eccentricity import kipping13, vaneylen19
from exoplanet.distributions.physical import ImpactParameter, QuadLimbDark
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
11748,
18931,
198,
6738,
17268,
1330,
3706,
83,
29291,
198,
198,
11748,
257,
274,
3301,
62,
1169,
5733,
62,
7207,
1891,
13,
83,
22854,
355,
256,
83,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
279,
4948,
66,
18,
355,
9114,
198,
11748,
12972,
9288,
198,
6738,
279,
4948,
66,
18,
13,
41989,
13,
9288,
62,
17080,
2455,
507,
1330,
371,
11,
11801,
11,
20650,
198,
6738,
279,
4948,
66,
18,
13,
41989,
13,
9288,
62,
7645,
23914,
1330,
2198,
62,
35636,
11,
651,
62,
27160,
198,
6738,
629,
541,
88,
13,
34242,
1330,
12159,
11,
2063,
27237,
11,
479,
301,
395,
11,
26842,
42342,
198,
198,
6738,
409,
46853,
316,
13,
17080,
2455,
507,
1330,
31408,
355,
491,
198,
6738,
409,
46853,
316,
13,
17080,
2455,
507,
13,
68,
535,
22317,
414,
1330,
479,
4501,
1485,
11,
410,
1531,
2645,
268,
1129,
198,
6738,
409,
46853,
316,
13,
17080,
2455,
507,
13,
42854,
1330,
17677,
36301,
11,
20648,
43,
14107,
17367,
628,
628,
628
] | 3.111111 | 180 |
from django import forms
from django.core.validators import URLValidator
from django.core.exceptions import ValidationError
from bambu_webhooks.models import Receiver
from bambu_webhooks import site | [
6738,
42625,
14208,
1330,
5107,
198,
6738,
42625,
14208,
13,
7295,
13,
12102,
2024,
1330,
10289,
47139,
1352,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
3254,
24765,
12331,
198,
6738,
275,
4131,
84,
62,
12384,
25480,
82,
13,
27530,
1330,
39106,
198,
6738,
275,
4131,
84,
62,
12384,
25480,
82,
1330,
2524
] | 3.6 | 55 |
"""
Ansible module for determining if an installed version of Open vSwitch is incompatible with the
currently installed version of OpenShift.
"""
from openshift_checks import OpenShiftCheck, OpenShiftCheckException, get_var
from openshift_checks.mixins import NotContainerizedMixin
class OvsVersion(NotContainerizedMixin, OpenShiftCheck):
"""Check that packages in a package_list are installed on the host
and are the correct version as determined by an OpenShift installation.
"""
name = "ovs_version"
tags = ["health"]
openshift_to_ovs_version = {
"3.6": "2.6",
"3.5": "2.6",
"3.4": "2.4",
}
# map major release versions across releases
# to a common major version
openshift_major_release_version = {
"1": "3",
}
@classmethod
def is_active(cls, task_vars):
"""Skip hosts that do not have package requirements."""
group_names = get_var(task_vars, "group_names", default=[])
master_or_node = 'masters' in group_names or 'nodes' in group_names
return super(OvsVersion, cls).is_active(task_vars) and master_or_node
def get_required_ovs_version(self, task_vars):
"""Return the correct Open vSwitch version for the current OpenShift version"""
openshift_version = self._get_openshift_version(task_vars)
if float(openshift_version) < 3.5:
return self.openshift_to_ovs_version["3.4"]
ovs_version = self.openshift_to_ovs_version.get(str(openshift_version))
if ovs_version:
return self.openshift_to_ovs_version[str(openshift_version)]
msg = "There is no recommended version of Open vSwitch for the current version of OpenShift: {}"
raise OpenShiftCheckException(msg.format(openshift_version))
| [
37811,
198,
2025,
82,
856,
8265,
329,
13213,
611,
281,
6589,
2196,
286,
4946,
410,
38978,
318,
27294,
351,
262,
198,
41745,
6589,
2196,
286,
4946,
33377,
13,
198,
37811,
198,
198,
6738,
9808,
29323,
62,
42116,
1330,
4946,
33377,
9787,
11,
4946,
33377,
9787,
16922,
11,
651,
62,
7785,
198,
6738,
9808,
29323,
62,
42116,
13,
19816,
1040,
1330,
1892,
29869,
1143,
35608,
259,
628,
198,
4871,
440,
14259,
14815,
7,
3673,
29869,
1143,
35608,
259,
11,
4946,
33377,
9787,
2599,
198,
220,
220,
220,
37227,
9787,
326,
10392,
287,
257,
5301,
62,
4868,
389,
6589,
319,
262,
2583,
198,
220,
220,
220,
290,
389,
262,
3376,
2196,
355,
5295,
416,
281,
4946,
33377,
9988,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1438,
796,
366,
709,
82,
62,
9641,
1,
198,
220,
220,
220,
15940,
796,
14631,
13948,
8973,
628,
220,
220,
220,
9808,
29323,
62,
1462,
62,
709,
82,
62,
9641,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18,
13,
21,
1298,
366,
17,
13,
21,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18,
13,
20,
1298,
366,
17,
13,
21,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18,
13,
19,
1298,
366,
17,
13,
19,
1600,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
1303,
3975,
1688,
2650,
6300,
1973,
10050,
198,
220,
220,
220,
1303,
284,
257,
2219,
1688,
2196,
198,
220,
220,
220,
9808,
29323,
62,
22478,
62,
20979,
62,
9641,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
16,
1298,
366,
18,
1600,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
318,
62,
5275,
7,
565,
82,
11,
4876,
62,
85,
945,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50232,
11453,
326,
466,
407,
423,
5301,
5359,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
14933,
796,
651,
62,
7785,
7,
35943,
62,
85,
945,
11,
366,
8094,
62,
14933,
1600,
4277,
41888,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
4958,
62,
273,
62,
17440,
796,
705,
40706,
6,
287,
1448,
62,
14933,
393,
705,
77,
4147,
6,
287,
1448,
62,
14933,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2208,
7,
46,
14259,
14815,
11,
537,
82,
737,
271,
62,
5275,
7,
35943,
62,
85,
945,
8,
290,
4958,
62,
273,
62,
17440,
628,
220,
220,
220,
825,
651,
62,
35827,
62,
709,
82,
62,
9641,
7,
944,
11,
4876,
62,
85,
945,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
3376,
4946,
410,
38978,
2196,
329,
262,
1459,
4946,
33377,
2196,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
9808,
29323,
62,
9641,
796,
2116,
13557,
1136,
62,
44813,
29323,
62,
9641,
7,
35943,
62,
85,
945,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
12178,
7,
44813,
29323,
62,
9641,
8,
1279,
513,
13,
20,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
44813,
29323,
62,
1462,
62,
709,
82,
62,
9641,
14692,
18,
13,
19,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
267,
14259,
62,
9641,
796,
2116,
13,
44813,
29323,
62,
1462,
62,
709,
82,
62,
9641,
13,
1136,
7,
2536,
7,
44813,
29323,
62,
9641,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
611,
267,
14259,
62,
9641,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
44813,
29323,
62,
1462,
62,
709,
82,
62,
9641,
58,
2536,
7,
44813,
29323,
62,
9641,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
1858,
318,
645,
7151,
2196,
286,
4946,
410,
38978,
329,
262,
1459,
2196,
286,
4946,
33377,
25,
23884,
1,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
4946,
33377,
9787,
16922,
7,
19662,
13,
18982,
7,
44813,
29323,
62,
9641,
4008,
198
] | 2.717095 | 661 |
from .filealchemy import FileAlchemy, LoadError # NOQA
from .common import ColumnMapping
| [
6738,
764,
7753,
282,
26599,
1330,
9220,
2348,
26599,
11,
8778,
12331,
220,
1303,
8005,
48,
32,
198,
6738,
764,
11321,
1330,
29201,
44,
5912,
198
] | 3.461538 | 26 |
from punting.twodim.twodimensions import to_flat_exacta,from_flat_exacta,to_flat_quinella, from_flat_quinella
from punting.onedim.onenormalization import to_normalized_dividends, to_normalized_probabilities
def to_normalized_quinella_probabilities(q,scr=-1):
"""
:param q: 2-d representation
:param scr:
:return: 2-d representation
"""
fq = to_normalized_probabilities( to_flat_quinella(q), scr=scr )
return from_flat_quinella(fq, diag_val=0)
def to_normalized_quinella_dividends(q,scr=-1):
""" Convert 2-d representation of probabilities to dividends
:param q:
:param scr:
:return:
"""
fd = to_normalized_dividends( to_flat_quinella(q), scr=scr )
return from_flat_quinella(fd, diag_val=-1)
def to_normalized_exacta_probabilities(x,scr=-1):
"""
:param x: 2-d representation
:param scr:
:return: 2-d representation
"""
fx = to_normalized_probabilities( to_flat_exacta(x), scr=scr )
return from_flat_exacta(fx, diag_value=0)
def to_normalized_exacta_dividends(x,scr=-1):
""" Convert 2-d representation of probabilities to dividends
:param x:
:param scr:
:return:
"""
fx = to_normalized_dividends( to_flat_exacta(x), scr=scr )
return from_flat_exacta(fx, diag_value=scr)
| [
6738,
4000,
889,
13,
4246,
375,
320,
13,
4246,
375,
320,
5736,
1330,
284,
62,
38568,
62,
1069,
529,
64,
11,
6738,
62,
38568,
62,
1069,
529,
64,
11,
1462,
62,
38568,
62,
421,
500,
8466,
11,
422,
62,
38568,
62,
421,
500,
8466,
198,
6738,
4000,
889,
13,
12004,
320,
13,
34481,
6636,
1634,
1330,
284,
62,
11265,
1143,
62,
67,
1699,
2412,
11,
284,
62,
11265,
1143,
62,
1676,
65,
5738,
628,
198,
4299,
284,
62,
11265,
1143,
62,
421,
500,
8466,
62,
1676,
65,
5738,
7,
80,
11,
1416,
81,
10779,
16,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
10662,
25,
362,
12,
67,
10552,
198,
220,
220,
220,
1058,
17143,
6040,
25,
198,
220,
220,
220,
1058,
7783,
25,
362,
12,
67,
10552,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
277,
80,
796,
284,
62,
11265,
1143,
62,
1676,
65,
5738,
7,
284,
62,
38568,
62,
421,
500,
8466,
7,
80,
828,
6040,
28,
1416,
81,
1267,
198,
220,
220,
220,
1441,
422,
62,
38568,
62,
421,
500,
8466,
7,
69,
80,
11,
2566,
363,
62,
2100,
28,
15,
8,
628,
198,
4299,
284,
62,
11265,
1143,
62,
421,
500,
8466,
62,
67,
1699,
2412,
7,
80,
11,
1416,
81,
10779,
16,
2599,
198,
220,
220,
220,
37227,
38240,
362,
12,
67,
10552,
286,
39522,
284,
26360,
198,
220,
220,
220,
1058,
17143,
10662,
25,
198,
220,
220,
220,
1058,
17143,
6040,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
277,
67,
796,
284,
62,
11265,
1143,
62,
67,
1699,
2412,
7,
284,
62,
38568,
62,
421,
500,
8466,
7,
80,
828,
6040,
28,
1416,
81,
1267,
198,
220,
220,
220,
1441,
422,
62,
38568,
62,
421,
500,
8466,
7,
16344,
11,
2566,
363,
62,
2100,
10779,
16,
8,
628,
198,
4299,
284,
62,
11265,
1143,
62,
1069,
529,
64,
62,
1676,
65,
5738,
7,
87,
11,
1416,
81,
10779,
16,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1058,
17143,
2124,
25,
362,
12,
67,
10552,
198,
220,
220,
220,
1058,
17143,
6040,
25,
198,
220,
220,
220,
1058,
7783,
25,
362,
12,
67,
10552,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
277,
87,
796,
284,
62,
11265,
1143,
62,
1676,
65,
5738,
7,
284,
62,
38568,
62,
1069,
529,
64,
7,
87,
828,
6040,
28,
1416,
81,
1267,
198,
220,
220,
220,
1441,
422,
62,
38568,
62,
1069,
529,
64,
7,
21373,
11,
2566,
363,
62,
8367,
28,
15,
8,
628,
198,
4299,
284,
62,
11265,
1143,
62,
1069,
529,
64,
62,
67,
1699,
2412,
7,
87,
11,
1416,
81,
10779,
16,
2599,
198,
220,
220,
220,
37227,
38240,
362,
12,
67,
10552,
286,
39522,
284,
26360,
198,
220,
220,
220,
1058,
17143,
2124,
25,
198,
220,
220,
220,
1058,
17143,
6040,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
277,
87,
796,
284,
62,
11265,
1143,
62,
67,
1699,
2412,
7,
284,
62,
38568,
62,
1069,
529,
64,
7,
87,
828,
6040,
28,
1416,
81,
1267,
198,
220,
220,
220,
1441,
422,
62,
38568,
62,
1069,
529,
64,
7,
21373,
11,
2566,
363,
62,
8367,
28,
1416,
81,
8,
628,
628,
628
] | 2.359489 | 548 |
#!/usr/bin/env python
from ctypes import *
from dwfconstants import *
import time,sys
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
6738,
269,
19199,
1330,
1635,
198,
6738,
43756,
69,
9979,
1187,
1330,
1635,
198,
198,
11748,
640,
11,
17597,
628
] | 2.966667 | 30 |
MINUTE_TIME_UNIT_MULTIPLIER = {
"hours": 60,
"minutes": 1
} | [
23678,
37780,
62,
34694,
62,
4944,
2043,
62,
44,
16724,
4061,
31271,
1137,
796,
1391,
198,
220,
220,
220,
366,
24425,
1298,
3126,
11,
198,
220,
220,
220,
366,
1084,
1769,
1298,
352,
198,
92
] | 1.914286 | 35 |
import math
import torch
import torch.nn as nn
from torch.nn import init
from torch.nn import functional as F
from torch.nn import Parameter
import numpy as np
import cv2
from models.resnet import resnet50
from utils.calc_acc import calc_acc
from layers import TripletLoss
from layers import CenterTripletLoss
from layers import CenterLoss
from layers import cbam
from layers import NonLocalBlockND
| [
11748,
10688,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
6738,
28034,
13,
20471,
1330,
2315,
198,
6738,
28034,
13,
20471,
1330,
10345,
355,
376,
198,
6738,
28034,
13,
20471,
1330,
25139,
2357,
198,
11748,
299,
32152,
355,
45941,
198,
198,
11748,
269,
85,
17,
198,
198,
6738,
4981,
13,
411,
3262,
1330,
581,
3262,
1120,
198,
6738,
3384,
4487,
13,
9948,
66,
62,
4134,
1330,
42302,
62,
4134,
198,
198,
6738,
11685,
1330,
19817,
83,
43,
793,
198,
6738,
11685,
1330,
3337,
14824,
37069,
43,
793,
198,
6738,
11685,
1330,
3337,
43,
793,
198,
6738,
11685,
1330,
269,
65,
321,
198,
6738,
11685,
1330,
8504,
14565,
12235,
8575,
198
] | 3.526316 | 114 |
#!/usr/bin/env python
# coding: utf-8
if __name__ == '__main__':
sol = Solution()
print(sol.findErrorNums([1, 2, 2, 4]))
print(sol.findErrorNums([2, 2]))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
25,
3384,
69,
12,
23,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1540,
796,
28186,
3419,
198,
220,
220,
220,
3601,
7,
34453,
13,
19796,
12331,
45,
5700,
26933,
16,
11,
362,
11,
362,
11,
604,
60,
4008,
198,
220,
220,
220,
3601,
7,
34453,
13,
19796,
12331,
45,
5700,
26933,
17,
11,
362,
60,
4008,
198
] | 2.166667 | 78 |
# Copyright 2010 New Relic, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from graphql import (
GraphQLArgument,
GraphQLField,
GraphQLInt,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLSchema,
GraphQLString,
GraphQLUnionType,
)
authors = [
{
"first_name": "New",
"last_name": "Relic",
},
{
"first_name": "Bob",
"last_name": "Smith",
},
{
"first_name": "Leslie",
"last_name": "Jones",
},
]
books = [
{
"id": 1,
"name": "Python Agent: The Book",
"isbn": "a-fake-isbn",
"author": authors[0],
"branch": "riverside",
},
{
"id": 2,
"name": "Ollies for O11y: A Sk8er's Guide to Observability",
"isbn": "a-second-fake-isbn",
"author": authors[1],
"branch": "downtown",
},
{
"id": 3,
"name": "[Redacted]",
"isbn": "a-third-fake-isbn",
"author": authors[2],
"branch": "riverside",
},
]
magazines = [
{"id": 1, "name": "Reli Updates Weekly", "issue": 1, "branch": "riverside"},
{"id": 2, "name": "Reli Updates Weekly", "issue": 2, "branch": "downtown"},
{"id": 3, "name": "Node Weekly", "issue": 1, "branch": "riverside"},
]
libraries = ["riverside", "downtown"]
libraries = [
{
"id": i + 1,
"branch": branch,
"magazine": [m for m in magazines if m["branch"] == branch],
"book": [b for b in books if b["branch"] == branch],
}
for i, branch in enumerate(libraries)
]
storage = []
Author = GraphQLObjectType(
"Author",
{
"first_name": GraphQLField(GraphQLString),
"last_name": GraphQLField(GraphQLString),
},
)
Book = GraphQLObjectType(
"Book",
{
"id": GraphQLField(GraphQLInt),
"name": GraphQLField(GraphQLString),
"isbn": GraphQLField(GraphQLString),
"author": GraphQLField(GraphQLList(Author)),
"branch": GraphQLField(GraphQLString),
},
)
Magazine = GraphQLObjectType(
"Magazine",
{
"id": GraphQLField(GraphQLInt),
"name": GraphQLField(GraphQLString),
"issue": GraphQLField(GraphQLInt),
"branch": GraphQLField(GraphQLString),
},
)
Library = GraphQLObjectType(
"Library",
{
"id": GraphQLField(GraphQLInt),
"branch": GraphQLField(GraphQLString),
"book": GraphQLField(GraphQLList(Book)),
"magazine": GraphQLField(GraphQLList(Magazine)),
},
)
Storage = GraphQLList(GraphQLString)
try:
hello_field = GraphQLField(GraphQLString, resolver=resolve_hello)
library_field = GraphQLField(
Library,
resolver=resolve_library,
args={"index": GraphQLArgument(GraphQLNonNull(GraphQLInt))},
)
search_field = GraphQLField(
GraphQLList(
GraphQLUnionType("Item", (Book, Magazine), resolve_type=resolve_search)
),
args={"contains": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
echo_field = GraphQLField(
GraphQLString,
resolver=resolve_echo,
args={"echo": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
storage_field = GraphQLField(
Storage,
resolver=resolve_storage,
)
storage_add_field = GraphQLField(
Storage,
resolver=resolve_storage_add,
args={"string": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
error_field = GraphQLField(GraphQLString, resolver=resolve_error)
error_non_null_field = GraphQLField(
GraphQLNonNull(GraphQLString), resolver=resolve_error
)
except TypeError:
hello_field = GraphQLField(GraphQLString, resolve=resolve_hello)
library_field = GraphQLField(
Library,
resolve=resolve_library,
args={"index": GraphQLArgument(GraphQLNonNull(GraphQLInt))},
)
search_field = GraphQLField(
GraphQLList(
GraphQLUnionType("Item", (Book, Magazine), resolve_type=resolve_search)
),
args={"contains": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
echo_field = GraphQLField(
GraphQLString,
resolve=resolve_echo,
args={"echo": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
storage_field = GraphQLField(
Storage,
resolve=resolve_storage,
)
storage_add_field = GraphQLField(
GraphQLString,
resolve=resolve_storage_add,
args={"string": GraphQLArgument(GraphQLNonNull(GraphQLString))},
)
error_field = GraphQLField(GraphQLString, resolve=resolve_error)
error_non_null_field = GraphQLField(
GraphQLNonNull(GraphQLString), resolve=resolve_error
)
query = GraphQLObjectType(
name="Query",
fields={
"hello": hello_field,
"library": library_field,
"search": search_field,
"echo": echo_field,
"storage": storage_field,
"error": error_field,
"error_non_null": error_non_null_field,
},
)
mutation = GraphQLObjectType(
name="Mutation",
fields={
"storage_add": storage_add_field,
},
)
_target_application = GraphQLSchema(query=query, mutation=mutation)
| [
2,
15069,
3050,
968,
43437,
11,
3457,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
6738,
4823,
13976,
1330,
357,
198,
220,
220,
220,
29681,
9711,
28100,
1713,
11,
198,
220,
220,
220,
29681,
9711,
15878,
11,
198,
220,
220,
220,
29681,
9711,
5317,
11,
198,
220,
220,
220,
29681,
48,
3069,
396,
11,
198,
220,
220,
220,
29681,
9711,
15419,
35067,
11,
198,
220,
220,
220,
29681,
9711,
10267,
6030,
11,
198,
220,
220,
220,
29681,
48,
6561,
2395,
2611,
11,
198,
220,
220,
220,
29681,
9711,
10100,
11,
198,
220,
220,
220,
29681,
9711,
38176,
6030,
11,
198,
8,
198,
198,
41617,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11085,
62,
3672,
1298,
366,
3791,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12957,
62,
3672,
1298,
366,
6892,
291,
1600,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11085,
62,
3672,
1298,
366,
18861,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12957,
62,
3672,
1298,
366,
17919,
1600,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11085,
62,
3672,
1298,
366,
35882,
14485,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12957,
62,
3672,
1298,
366,
25784,
1600,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
12106,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
366,
37906,
15906,
25,
383,
4897,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
9374,
1298,
366,
64,
12,
30706,
12,
271,
9374,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9800,
1298,
7035,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
366,
380,
690,
485,
1600,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
366,
46,
297,
444,
329,
440,
1157,
88,
25,
317,
3661,
23,
263,
338,
10005,
284,
19243,
1799,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
9374,
1298,
366,
64,
12,
12227,
12,
30706,
12,
271,
9374,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9800,
1298,
7035,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
366,
67,
22748,
1600,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
12878,
7738,
23800,
60,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
9374,
1298,
366,
64,
12,
17089,
12,
30706,
12,
271,
9374,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9800,
1298,
7035,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
366,
380,
690,
485,
1600,
198,
220,
220,
220,
8964,
198,
60,
198,
198,
19726,
15742,
796,
685,
198,
220,
220,
220,
19779,
312,
1298,
352,
11,
366,
3672,
1298,
366,
6892,
72,
28090,
18168,
1600,
366,
21949,
1298,
352,
11,
366,
1671,
3702,
1298,
366,
380,
690,
485,
25719,
198,
220,
220,
220,
19779,
312,
1298,
362,
11,
366,
3672,
1298,
366,
6892,
72,
28090,
18168,
1600,
366,
21949,
1298,
362,
11,
366,
1671,
3702,
1298,
366,
67,
22748,
25719,
198,
220,
220,
220,
19779,
312,
1298,
513,
11,
366,
3672,
1298,
366,
19667,
18168,
1600,
366,
21949,
1298,
352,
11,
366,
1671,
3702,
1298,
366,
380,
690,
485,
25719,
198,
60,
628,
198,
75,
11127,
796,
14631,
380,
690,
485,
1600,
366,
67,
22748,
8973,
198,
75,
11127,
796,
685,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
1312,
1343,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
8478,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19726,
4994,
1298,
685,
76,
329,
285,
287,
16695,
611,
285,
14692,
1671,
3702,
8973,
6624,
8478,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2070,
1298,
685,
65,
329,
275,
287,
3835,
611,
275,
14692,
1671,
3702,
8973,
6624,
8478,
4357,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
329,
1312,
11,
8478,
287,
27056,
378,
7,
75,
11127,
8,
198,
60,
198,
198,
35350,
796,
17635,
628,
628,
628,
198,
13838,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
366,
13838,
1600,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11085,
62,
3672,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12957,
62,
3672,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
8964,
198,
8,
198,
198,
10482,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
366,
10482,
1600,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
29681,
9711,
15878,
7,
37065,
9711,
5317,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
9374,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9800,
1298,
29681,
9711,
15878,
7,
37065,
48,
3069,
396,
7,
13838,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
8964,
198,
8,
198,
198,
36028,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
366,
36028,
1600,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
29681,
9711,
15878,
7,
37065,
9711,
5317,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21949,
1298,
29681,
9711,
15878,
7,
37065,
9711,
5317,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
8964,
198,
8,
628,
198,
23377,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
366,
23377,
1600,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
312,
1298,
29681,
9711,
15878,
7,
37065,
9711,
5317,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1671,
3702,
1298,
29681,
9711,
15878,
7,
37065,
9711,
10100,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2070,
1298,
29681,
9711,
15878,
7,
37065,
48,
3069,
396,
7,
10482,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19726,
4994,
1298,
29681,
9711,
15878,
7,
37065,
48,
3069,
396,
7,
36028,
36911,
198,
220,
220,
220,
8964,
198,
8,
198,
198,
31425,
796,
29681,
48,
3069,
396,
7,
37065,
9711,
10100,
8,
628,
628,
198,
198,
28311,
25,
198,
220,
220,
220,
23748,
62,
3245,
796,
29681,
9711,
15878,
7,
37065,
9711,
10100,
11,
581,
14375,
28,
411,
6442,
62,
31373,
8,
198,
220,
220,
220,
5888,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
10074,
11,
198,
220,
220,
220,
220,
220,
220,
220,
581,
14375,
28,
411,
6442,
62,
32016,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
9630,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
5317,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2989,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
48,
3069,
396,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
38176,
6030,
7203,
7449,
1600,
357,
10482,
11,
11175,
828,
10568,
62,
4906,
28,
411,
6442,
62,
12947,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
3642,
1299,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
9809,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
10100,
11,
198,
220,
220,
220,
220,
220,
220,
220,
581,
14375,
28,
411,
6442,
62,
30328,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
30328,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6143,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20514,
11,
198,
220,
220,
220,
220,
220,
220,
220,
581,
14375,
28,
411,
6442,
62,
35350,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6143,
62,
2860,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20514,
11,
198,
220,
220,
220,
220,
220,
220,
220,
581,
14375,
28,
411,
6442,
62,
35350,
62,
2860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
8841,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4049,
62,
3245,
796,
29681,
9711,
15878,
7,
37065,
9711,
10100,
11,
581,
14375,
28,
411,
6442,
62,
18224,
8,
198,
220,
220,
220,
4049,
62,
13159,
62,
8423,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
15419,
35067,
7,
37065,
9711,
10100,
828,
581,
14375,
28,
411,
6442,
62,
18224,
198,
220,
220,
220,
1267,
198,
16341,
5994,
12331,
25,
198,
220,
220,
220,
23748,
62,
3245,
796,
29681,
9711,
15878,
7,
37065,
9711,
10100,
11,
10568,
28,
411,
6442,
62,
31373,
8,
198,
220,
220,
220,
5888,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
10074,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10568,
28,
411,
6442,
62,
32016,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
9630,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
5317,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2989,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
48,
3069,
396,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
38176,
6030,
7203,
7449,
1600,
357,
10482,
11,
11175,
828,
10568,
62,
4906,
28,
411,
6442,
62,
12947,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
3642,
1299,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
9809,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
10100,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10568,
28,
411,
6442,
62,
30328,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
30328,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6143,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20514,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10568,
28,
411,
6442,
62,
35350,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6143,
62,
2860,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
10100,
11,
198,
220,
220,
220,
220,
220,
220,
220,
10568,
28,
411,
6442,
62,
35350,
62,
2860,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
4895,
8841,
1298,
29681,
9711,
28100,
1713,
7,
37065,
9711,
15419,
35067,
7,
37065,
9711,
10100,
4008,
5512,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4049,
62,
3245,
796,
29681,
9711,
15878,
7,
37065,
9711,
10100,
11,
10568,
28,
411,
6442,
62,
18224,
8,
198,
220,
220,
220,
4049,
62,
13159,
62,
8423,
62,
3245,
796,
29681,
9711,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29681,
9711,
15419,
35067,
7,
37065,
9711,
10100,
828,
10568,
28,
411,
6442,
62,
18224,
198,
220,
220,
220,
1267,
198,
198,
22766,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
1438,
2625,
20746,
1600,
198,
220,
220,
220,
7032,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
366,
31373,
1298,
23748,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32016,
1298,
5888,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12947,
1298,
2989,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30328,
1298,
9809,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
35350,
1298,
6143,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18224,
1298,
4049,
62,
3245,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
18224,
62,
13159,
62,
8423,
1298,
4049,
62,
13159,
62,
8423,
62,
3245,
11,
198,
220,
220,
220,
8964,
198,
8,
198,
198,
76,
7094,
796,
29681,
9711,
10267,
6030,
7,
198,
220,
220,
220,
1438,
2625,
44,
7094,
1600,
198,
220,
220,
220,
7032,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
366,
35350,
62,
2860,
1298,
6143,
62,
2860,
62,
3245,
11,
198,
220,
220,
220,
8964,
198,
8,
198,
198,
62,
16793,
62,
31438,
796,
29681,
48,
6561,
2395,
2611,
7,
22766,
28,
22766,
11,
15148,
28,
76,
7094,
8,
198
] | 2.313511 | 2,472 |
from django.db import models
from django.contrib.postgres.fields import JSONField
from django.core.exceptions import ValidationError
from django.utils.translation import gettext_lazy as _
from templatestore import app_settings as ts_settings
import re
| [
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
7353,
34239,
13,
25747,
1330,
19449,
15878,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
3254,
24765,
12331,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
651,
5239,
62,
75,
12582,
355,
4808,
198,
6738,
2169,
489,
265,
395,
382,
1330,
598,
62,
33692,
355,
40379,
62,
33692,
198,
11748,
302,
628,
628,
198
] | 3.555556 | 72 |
import argparse
import json
import copy
import torch
import razdel
from tqdm import tqdm
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
from rudetox.util.io import read_jsonl, write_jsonl
from rudetox.util.dl import gen_batch, set_random_seed
from rudetox.ranker import Ranker
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--input-file", type=str, required=True)
parser.add_argument("--output-file", type=str, required=True)
parser.add_argument("--model-name", type=str, required=True)
parser.add_argument("--sample-rate", type=float, default=1.0)
parser.add_argument("--batch-size", type=int, default=1)
parser.add_argument("--seed", type=int, default=42)
parser.add_argument("--max-source-tokens-count", type=int, default=600)
parser.add_argument("--max-target-tokens-count", type=int, default=200)
parser.add_argument("--repetition-penalty", type=float, default=1.0)
parser.add_argument("--length-penalty", type=float, default=1.0)
parser.add_argument("--no-repeat-ngram-size", type=int, default=4)
parser.add_argument("--num-beams", type=int, default=5)
parser.add_argument("--num-return-sequences", type=int, default=1)
parser.add_argument("--early-stopping", action="store_true", default=False)
parser.add_argument("--style-token", type=str, default=None)
parser.add_argument("--source-field", type=str, default="source")
parser.add_argument("--ranker-config", type=str, default=None)
args = parser.parse_args()
predict(**vars(args))
| [
11748,
1822,
29572,
198,
11748,
33918,
198,
11748,
4866,
198,
198,
11748,
28034,
198,
11748,
374,
1031,
12381,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
6738,
6121,
364,
1330,
11160,
30642,
7509,
11,
11160,
17633,
1890,
4653,
80,
17,
4653,
80,
31288,
198,
198,
6738,
28906,
316,
1140,
13,
22602,
13,
952,
1330,
1100,
62,
17752,
75,
11,
3551,
62,
17752,
75,
198,
6738,
28906,
316,
1140,
13,
22602,
13,
25404,
1330,
2429,
62,
43501,
11,
900,
62,
25120,
62,
28826,
198,
6738,
28906,
316,
1140,
13,
43027,
263,
1330,
10916,
263,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
15414,
12,
7753,
1600,
2099,
28,
2536,
11,
2672,
28,
17821,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
22915,
12,
7753,
1600,
2099,
28,
2536,
11,
2672,
28,
17821,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
19849,
12,
3672,
1600,
2099,
28,
2536,
11,
2672,
28,
17821,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
39873,
12,
4873,
1600,
2099,
28,
22468,
11,
4277,
28,
16,
13,
15,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
43501,
12,
7857,
1600,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
28826,
1600,
2099,
28,
600,
11,
4277,
28,
3682,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
9806,
12,
10459,
12,
83,
482,
641,
12,
9127,
1600,
2099,
28,
600,
11,
4277,
28,
8054,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
9806,
12,
16793,
12,
83,
482,
641,
12,
9127,
1600,
2099,
28,
600,
11,
4277,
28,
2167,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
260,
6449,
653,
12,
3617,
6017,
1600,
2099,
28,
22468,
11,
4277,
28,
16,
13,
15,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
13664,
12,
3617,
6017,
1600,
2099,
28,
22468,
11,
4277,
28,
16,
13,
15,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
3919,
12,
44754,
12,
782,
859,
12,
7857,
1600,
2099,
28,
600,
11,
4277,
28,
19,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
22510,
12,
1350,
4105,
1600,
2099,
28,
600,
11,
4277,
28,
20,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
22510,
12,
7783,
12,
3107,
3007,
1600,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
11458,
12,
301,
33307,
1600,
2223,
2625,
8095,
62,
7942,
1600,
4277,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
7635,
12,
30001,
1600,
2099,
28,
2536,
11,
4277,
28,
14202,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
10459,
12,
3245,
1600,
2099,
28,
2536,
11,
4277,
2625,
10459,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
438,
43027,
263,
12,
11250,
1600,
2099,
28,
2536,
11,
4277,
28,
14202,
8,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
4331,
7,
1174,
85,
945,
7,
22046,
4008,
198
] | 2.766667 | 570 |
from bamboo.core.parser import Parser
from bamboo.core.calculator import calculate_columns
from bamboo.lib.datetools import now, recognize_dates
from bamboo.models.calculation import Calculation
from bamboo.models.dataset import Dataset
from bamboo.tests.test_base import TestBase
| [
6738,
37252,
13,
7295,
13,
48610,
1330,
23042,
263,
198,
6738,
37252,
13,
7295,
13,
9948,
3129,
1352,
1330,
15284,
62,
28665,
82,
198,
6738,
37252,
13,
8019,
13,
19608,
316,
10141,
1330,
783,
11,
7564,
62,
19581,
198,
6738,
37252,
13,
27530,
13,
9948,
14902,
1330,
2199,
14902,
198,
6738,
37252,
13,
27530,
13,
19608,
292,
316,
1330,
16092,
292,
316,
198,
6738,
37252,
13,
41989,
13,
9288,
62,
8692,
1330,
6208,
14881,
628
] | 3.76 | 75 |
from django.urls import path
from . import views
urlpatterns = [
path("registration/", views.registration, name="registration"),
path("login/", views.login, name="login"),
path("valid_registry", views.valid_registry, name="valid_registry"),
path("valid_login", views.valid_login, name="valid_login"),
path("logout/", views.logout, name="logout"),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
6738,
764,
1330,
5009,
628,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
7203,
2301,
33397,
14,
1600,
5009,
13,
2301,
33397,
11,
1438,
2625,
2301,
33397,
12340,
198,
220,
220,
220,
3108,
7203,
38235,
14,
1600,
5009,
13,
38235,
11,
1438,
2625,
38235,
12340,
198,
220,
220,
220,
3108,
7203,
12102,
62,
2301,
4592,
1600,
5009,
13,
12102,
62,
2301,
4592,
11,
1438,
2625,
12102,
62,
2301,
4592,
12340,
198,
220,
220,
220,
3108,
7203,
12102,
62,
38235,
1600,
5009,
13,
12102,
62,
38235,
11,
1438,
2625,
12102,
62,
38235,
12340,
198,
220,
220,
220,
3108,
7203,
6404,
448,
14,
1600,
5009,
13,
6404,
448,
11,
1438,
2625,
6404,
448,
12340,
198,
60,
198
] | 2.92126 | 127 |
from hashlib import sha3_256
from typing import Union, BinaryIO
from pathlib import Path
from importlib_metadata import pathlib
def ensure_path(
path: Union[str, Path], must_exist: bool = False
) -> Path:
"""
ensures that given path is of type Path
and that HOME directory is resolved
"""
path = (
path
if isinstance(path, Path) else
Path(path)
).expanduser()
if must_exist and not path.exists():
# path does not exist
raise ValueError(
f"The directory '{path}' does not exist!"
)
return path
def hash_file(
filename: Union[str, Path],
hash_func: callable = sha3_256
) -> bytes:
"""
obtain the hash of the file with given hash function
:param filename: file object on which hash is computed
:type filename: Path
:param hash_func: hash function that is used, defaults to sha3_256
:type hash_func: callable, optional
:return: hash digest
:rtype: bytes
"""
assert isinstance(filename, (str, Path))
assert callable(hash_func)
# ensure that filename does exist
filename = ensure_path(filename, must_exist=True)
# initialize hash function
h = hash_func()
# read file chunkwise and update hash function
with filename.open("rb") as f:
while True:
chunk = f.read(h.block_size)
if not chunk:
break
h.update(chunk)
return h.digest()
def hash_directory(
directory: Union[str, Path],
glob: str = "**/*",
exclude_suffixes: list = [],
exclude_filenames: list = [],
hash_func: callable = sha3_256
) -> bytes:
"""
obtain the XORed hash of all files in the given directory
with given hash function
:param directory: directory from which all files are hashed
:type directory: Path
:param glob: glob to obtain files from directory, defaults to **/*
:type glob: str, optional
:param exclude_suffixes: suffixes that are ignored
:type exclude_suffixes: list
:param exclude_filenames: filenames that are ignored
:type exclude_filenames: list
:param hash_func: hash function that is used, defaults to sha3_256
:type hash_func: callable, optional
:return: hash digest
:rtype: bytes
"""
assert isinstance(directory, (str, Path))
assert isinstance(glob, str)
assert callable(hash_func)
# ensure that filename does exist
directory = ensure_path(directory, must_exist=True)
assert directory.is_dir()
h = hash_func()
digest = b"\0" * h.digest_size
for fn in directory.glob(glob):
if (
fn.suffix in exclude_suffixes or
fn.name in exclude_filenames
):
# skip excluded files
continue
# XOR digest with file's digest
digest = bytes([
a ^ b
for a, b in zip(digest, hash_file(fn, hash_func))
])
return h.digest()
| [
6738,
12234,
8019,
1330,
427,
64,
18,
62,
11645,
198,
6738,
19720,
1330,
4479,
11,
45755,
9399,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
6738,
1330,
8019,
62,
38993,
1330,
3108,
8019,
628,
198,
4299,
4155,
62,
6978,
7,
198,
220,
220,
220,
3108,
25,
4479,
58,
2536,
11,
10644,
4357,
1276,
62,
38476,
25,
20512,
796,
10352,
198,
8,
4613,
10644,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
19047,
326,
1813,
3108,
318,
286,
2099,
10644,
198,
220,
220,
220,
290,
326,
41779,
8619,
318,
12939,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3108,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
3108,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
6978,
11,
10644,
8,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
7,
6978,
8,
198,
220,
220,
220,
6739,
11201,
392,
7220,
3419,
628,
220,
220,
220,
611,
1276,
62,
38476,
290,
407,
3108,
13,
1069,
1023,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3108,
857,
407,
2152,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
464,
8619,
705,
90,
6978,
92,
6,
857,
407,
2152,
2474,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
3108,
628,
198,
4299,
12234,
62,
7753,
7,
198,
220,
220,
220,
29472,
25,
4479,
58,
2536,
11,
10644,
4357,
198,
220,
220,
220,
12234,
62,
20786,
25,
869,
540,
796,
427,
64,
18,
62,
11645,
198,
8,
4613,
9881,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7330,
262,
12234,
286,
262,
2393,
351,
1813,
12234,
2163,
628,
220,
220,
220,
1058,
17143,
29472,
25,
2393,
2134,
319,
543,
12234,
318,
29231,
198,
220,
220,
220,
1058,
4906,
29472,
25,
10644,
198,
220,
220,
220,
1058,
17143,
12234,
62,
20786,
25,
12234,
2163,
326,
318,
973,
11,
26235,
284,
427,
64,
18,
62,
11645,
198,
220,
220,
220,
1058,
4906,
12234,
62,
20786,
25,
869,
540,
11,
11902,
198,
220,
220,
220,
1058,
7783,
25,
12234,
16274,
198,
220,
220,
220,
1058,
81,
4906,
25,
9881,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
318,
39098,
7,
34345,
11,
357,
2536,
11,
10644,
4008,
198,
220,
220,
220,
6818,
869,
540,
7,
17831,
62,
20786,
8,
628,
220,
220,
220,
1303,
4155,
326,
29472,
857,
2152,
198,
220,
220,
220,
29472,
796,
4155,
62,
6978,
7,
34345,
11,
1276,
62,
38476,
28,
17821,
8,
628,
220,
220,
220,
1303,
41216,
12234,
2163,
198,
220,
220,
220,
289,
796,
12234,
62,
20786,
3419,
628,
220,
220,
220,
1303,
1100,
2393,
16058,
3083,
290,
4296,
12234,
2163,
198,
220,
220,
220,
351,
29472,
13,
9654,
7203,
26145,
4943,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
981,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16058,
796,
277,
13,
961,
7,
71,
13,
9967,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
16058,
25,
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,
220,
220,
220,
220,
289,
13,
19119,
7,
354,
2954,
8,
628,
220,
220,
220,
1441,
289,
13,
12894,
395,
3419,
628,
198,
4299,
12234,
62,
34945,
7,
198,
220,
220,
220,
8619,
25,
4479,
58,
2536,
11,
10644,
4357,
198,
220,
220,
220,
15095,
25,
965,
796,
366,
1174,
15211,
1600,
198,
220,
220,
220,
19607,
62,
37333,
844,
274,
25,
1351,
796,
685,
4357,
198,
220,
220,
220,
19607,
62,
10379,
268,
1047,
25,
1351,
796,
685,
4357,
198,
220,
220,
220,
12234,
62,
20786,
25,
869,
540,
796,
427,
64,
18,
62,
11645,
198,
8,
4613,
9881,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7330,
262,
1395,
1581,
276,
12234,
286,
477,
3696,
287,
262,
1813,
8619,
198,
220,
220,
220,
351,
1813,
12234,
2163,
628,
220,
220,
220,
1058,
17143,
8619,
25,
8619,
422,
543,
477,
3696,
389,
468,
704,
198,
220,
220,
220,
1058,
4906,
8619,
25,
10644,
198,
220,
220,
220,
1058,
17143,
15095,
25,
15095,
284,
7330,
3696,
422,
8619,
11,
26235,
284,
12429,
15211,
198,
220,
220,
220,
1058,
4906,
15095,
25,
965,
11,
11902,
198,
220,
220,
220,
1058,
17143,
19607,
62,
37333,
844,
274,
25,
35488,
274,
326,
389,
9514,
198,
220,
220,
220,
1058,
4906,
19607,
62,
37333,
844,
274,
25,
1351,
198,
220,
220,
220,
1058,
17143,
19607,
62,
10379,
268,
1047,
25,
1226,
268,
1047,
326,
389,
9514,
198,
220,
220,
220,
1058,
4906,
19607,
62,
10379,
268,
1047,
25,
1351,
198,
220,
220,
220,
1058,
17143,
12234,
62,
20786,
25,
12234,
2163,
326,
318,
973,
11,
26235,
284,
427,
64,
18,
62,
11645,
198,
220,
220,
220,
1058,
4906,
12234,
62,
20786,
25,
869,
540,
11,
11902,
198,
220,
220,
220,
1058,
7783,
25,
12234,
16274,
198,
220,
220,
220,
1058,
81,
4906,
25,
9881,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6818,
318,
39098,
7,
34945,
11,
357,
2536,
11,
10644,
4008,
198,
220,
220,
220,
6818,
318,
39098,
7,
4743,
672,
11,
965,
8,
198,
220,
220,
220,
6818,
869,
540,
7,
17831,
62,
20786,
8,
628,
220,
220,
220,
1303,
4155,
326,
29472,
857,
2152,
198,
220,
220,
220,
8619,
796,
4155,
62,
6978,
7,
34945,
11,
1276,
62,
38476,
28,
17821,
8,
198,
220,
220,
220,
6818,
8619,
13,
271,
62,
15908,
3419,
628,
220,
220,
220,
289,
796,
12234,
62,
20786,
3419,
198,
220,
220,
220,
16274,
796,
275,
1,
59,
15,
1,
1635,
289,
13,
12894,
395,
62,
7857,
198,
220,
220,
220,
329,
24714,
287,
8619,
13,
4743,
672,
7,
4743,
672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24714,
13,
37333,
844,
287,
19607,
62,
37333,
844,
274,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24714,
13,
3672,
287,
19607,
62,
10379,
268,
1047,
198,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
14267,
15009,
3696,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1395,
1581,
16274,
351,
2393,
338,
16274,
198,
220,
220,
220,
220,
220,
220,
220,
16274,
796,
9881,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
10563,
275,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
257,
11,
275,
287,
19974,
7,
12894,
395,
11,
12234,
62,
7753,
7,
22184,
11,
12234,
62,
20786,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
33761,
628,
220,
220,
220,
1441,
289,
13,
12894,
395,
3419,
198
] | 2.546781 | 1,165 |
"""
Utilities for setting up PyTorch memory usage experiments.
"""
import csv
from itertools import product as iter_product
import os
import subprocess
import time
import numpy as np
from common import (check_file_exists, prepare_out_file,
read_json, render_exception, write_json)
MEASURED_KEYS = ['time', 'gpu_time', 'input_mem', 'model_mem', 'total_mem', 'sync_time',
# profiling output
'base_compute_time', 'remat_compute_time', 'search_time', 'cost_time', 'memory_budget']
def run_trials(config_dir, python_cmd,
experiment_name, model_name,
specific_params,
n_inputs,
path_prefix,
report_errors=False,
append_to_csv=False,
trial_run=False,
trial_run_outfile='',
cmd_id=0,
conf_cnt=0):
"""
Responsible for recording the time and max memory usage
from running a model (the user must provide a lambda for
actually running the model because different kinds of models
need different kinds of setup and a lambda that generates an
input for running that model)
:params:
trial_run: When set to true, no persistent experiment data will be saved. It is used to
run a baseline trial and record how much memory is used then set the memory budget
for `ratio` commands of DTR experiments
trial_run_out_file: the temporary file that stores the memory usage data of the baseline run
cmd_id: the command id for current model, starting from 0 by default
conf_cnt: the id of confguration generated from `unfold_settings`; this is used for tracking
which exact configuration that caused errors.
"""
try:
cwd = os.getcwd()
params_file = 'specific_params.json'
try:
write_json(cwd, params_file, specific_params)
if not trial_run:
filename = prepare_out_file(path_prefix,
'{}-{}.csv'.format(get_report_prefix(experiment_name, specific_params, cmd_id), model_name))
mode = 'a' if append_to_csv else 'w'
with open(filename, mode, newline='') as csvfile:
writer = create_csv_writer(csvfile, specific_params)
if not append_to_csv:
writer.writeheader()
else:
filename = ''
shared_dir = os.path.dirname(os.path.abspath(__file__))
run_script = os.path.join(shared_dir, 'run_torch_trial.py')
for i in range(n_inputs):
try:
subprocess.run(
[python_cmd, run_script,
'--config-dir', config_dir,
'--experiment-mode', experiment_name,
'--model-name', model_name,
'--input-idx', str(i),
'--params-file', params_file,
'--out-file', filename,
'--trial-run', str(trial_run),
'--trial-run-outfile', trial_run_outfile
],
check=True, timeout=specific_params.get('timeout', 60))
except (subprocess.CalledProcessError, subprocess.TimeoutExpired) as e:
if not report_errors:
raise e
if trial_run:
return (False, 'Baseline failed: {}'.format(render_exception(e)))
log_error(experiment_name, model_name, specific_params, i, render_exception(e), path_prefix)
return (False, 'successfully caught error')
time.sleep(4)
return (True, 'success')
finally:
os.remove(params_file)
except Exception as e:
return (False,
'Encountered exception on ({}, {}, {}):\n'.format(
experiment_name, model_name, specific_params) + render_exception(e))
def process_command(command: dict, config_template: dict):
'''
Generate a setting with all necessary fields according
to the default setting and the type of the commands.
:params:
command: the command provided in the config.json
config_template: default values for the settings that is required
while running an experiment
'''
result = command.copy()
if result['type'] == 'baseline':
if 'batch_size' not in result:
result['batch_size'] = config_template['batch_size']
return result
elif result['type'] == 'dtr' or result['type'] == 'simrd':
for (k, v) in config_template.items():
if k not in command:
result[k] = v
return result
else:
raise Exception('Unknown type: {}'.format(result['type']))
def validate_setting(method, exp_config):
'''
Check whether the settings for an experiment contains
all the required values
'''
return {
'dtr' : check_dtr,
'simrd': check_simrd,
'baseline': lambda: ('batch_size' in exp_config, '')
}.get(method, lambda: (False, 'unknown kind'))()
def unfold_settings(exp_config):
'''
Unfold a command and get all possible
settings. Returned as an Iterable.
The possible settings are generated by taking
a Cartesian product over list fields of the command
Note: for `ratio` command, the `memory_budget` is calculated here in order to
avoid multiple runs of baseline trial
'''
setting_heading = list()
list_fields = list()
for (k, v) in exp_config.items():
if isinstance(v, list):
setting_heading.append(k)
list_fields.append(v)
if not list_fields:
yield exp_config
else:
for combo in iter_product(*list_fields):
# necessary to copy each time
# since the old data might be used later
result = exp_config.copy()
for i in range(len(list_fields)):
result[setting_heading[i]] = combo[i]
if result.get('kind') == 'ratio':
result['memory_budget'] *= result['ratio']
yield result
def run_baseline(model, exp_config, config, config_dir, output_dir):
'''
Run a baseline triral and obtain memory usage.
This is used for getting a reference memory usage for
DTR `ratio` commands
'''
baseline_config = { 'batch_size' : exp_config['batch_size'],
'timeout': exp_config.get('timeout', 60),
# only doing a minimal number of runs because we are only getting the memory usage,
# which should be identical between runs
'n_reps': 10,
'extra_params': exp_config.get('extra_params', {})
}
if 'input_params' in exp_config:
baseline_config['input_params'] = exp_config['input_params']
filename = str(time.time()) + '.json'
temp_file = prepare_out_file(os.getcwd(), filename)
success, msg = run_trials(config_dir,
python_command('baseline', config),
'baseline', model, baseline_config,
exp_config.get('n_inputs', config['n_inputs']),
output_dir,
report_errors=config['report_errors'],
append_to_csv=False,
trial_run=True,
trial_run_outfile=temp_file)
if not success:
return False, 'Error while running baseline trial: \n{}'.format(msg)
mem_usage = read_json(output_dir, temp_file)
os.remove(temp_file)
if 'mem' not in mem_usage:
return False, 'failed to get baseline memory usage'
return True, mem_usage['mem']
def parse_commands(model, config):
'''
Parse a command and return a processed command, which
can be used to generate settings for experiments
:params:
model: the name of the model
config: the top-level config
'''
if not config['dtr_settings'].get(model):
yield False, 'No settings for {}'.format(model), None
default_setting = config['dtr_settings'].get('default')
model_commands = config['dtr_settings'].get(model)
if default_setting is not None:
config_template = default_setting.copy()
else:
config_template = dict()
for command in model_commands:
exp_config = process_command(command, config_template)
if exp_config.get('kind') in ('ratio',):
exp_config['memory_budget'] = -1.0
success, msg = validate_setting(exp_config['type'], exp_config)
if not success:
yield False, 'Malformat configuration for {}-{}: {}'.format(model, exp_config['type'], msg), None
else:
yield True, 'Success', exp_config
def bootstrap_conf_intervals(data, stat, bootstrap_iters=10000, confidence=95, measure='mean'):
"""
Given an array of floats, performs bootstrap resampling for the specified number
of iterations to estimate confidence intervals.
"""
summary_stat = None
if measure == 'mean':
summary_stat = np.mean
elif measure == 'median':
summary_stat = np.median
else:
raise Exception(f'Invalid measure, must be mean or median but received {measure}')
assert summary_stat is not None
estimates = [
summary_stat(np.random.choice(data, replace=True, size=len(data)))
for i in range(bootstrap_iters)
]
# To get C% confidence intervals, we exclude the bottom (100-C)/2 % and the top (100-C)/2 %
conf_span = (100 - confidence) / 2
return (np.percentile(estimates, conf_span), np.percentile(estimates, 100 - conf_span))
def collect_raw_measurements(experiment_name, model, specific_params, path_prefix, cmd_id):
"""
Reads the raw data for the given experiment name and params and returns a tuple (metrics dictionary, memory budget if applicable, error message if there is no data file).
The first two fields will be None if there is no data file.
"""
filename = '{}-{}.csv'.format(get_report_prefix(experiment_name, specific_params, cmd_id), model)
if not check_file_exists(path_prefix, filename):
return (None, None, 'Data file {} does not exist at {}'.format(filename, path_prefix))
full_path = os.path.join(path_prefix, filename)
metrics = {}
memory_budget = None
with open(full_path, 'r', newline='') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
# In case there are commands for the same model
# that have the same values for all configurations
idx = int(row['input'])
measured = {
key: float(row[key]) for key in MEASURED_KEYS
}
if memory_budget is None and specific_params.get('kind') == 'ratio':
memory_budget = float(row['memory_budget'])
if idx not in metrics.keys():
metrics[idx] = {
key: [] for key in MEASURED_KEYS
}
for key in MEASURED_KEYS:
metrics[idx][key].append(measured[key])
return (metrics, memory_budget, 'success')
def compute_slowdowns(exp_times, baseline_times):
"""
Given arrays of prototype times and baseline times of the same length,
returns an array of slowdowns
"""
return [exp_times[i]/baseline_times[i] for i in range(len(exp_times))]
def compute_throughputs(batch_size, gpu_times):
"""
Given a batch size and an array of time running on GPU,
returns an array of throughputs
"""
return [batch_size / gpu_times[i] * 1000 for i in range(len(gpu_times))]
def parse_data_file(experiment_name, model, config, specific_params, path_prefix, cmd_id=0, baseline_params=None):
"""
Given an experiment name, model name, directory, and number of inputs,
parses the corresponding data file if it exists and computes
summary statistics for the (wall-clock) time, GPU time, and memory used in that data file for choice of specific settings
baseline_params: If the command is a ratio command, this will use
the baseline to compute the slowdown per data point
in order to better measure its distribution.
Returns None and an error message if it fails
"""
try:
report_errors = config['report_errors']
metrics, budget, msg = collect_raw_measurements(experiment_name, model, specific_params, path_prefix, cmd_id)
if metrics is None:
return (None, msg)
if budget is not None and specific_params.get('kind') == 'ratio':
specific_params['memory_budget'] = float(budget)
summary = {
'specific_params': specific_params
}
# in case everything errored out, this ensure that we will have a record of the error
if report_errors:
if check_error(experiment_name, model, specific_params, path_prefix):
summary['summary'] = 'error'
return summary, 'success'
# if this was a ratio experiment
# and we have a baseline available, let's compute
# the slowdown per data point, head to head
# and bootstrap confidence intervals
if (specific_params.get('type') != 'baseline'
and specific_params.get('kind') == 'ratio'
and baseline_params is not None):
baseline_metrics, _, baseline_msg = collect_raw_measurements(baseline_params['type'], model, baseline_params['specific_params'], path_prefix, baseline_params['cmd_id'])
if baseline_metrics is None:
return (None, baseline_msg)
# compute slowdown in metrics
for i in range(config['n_inputs']):
dtr_times = metrics[i]['gpu_time']
baseline_times = baseline_metrics[i]['gpu_time']
assert len(dtr_times) == len(baseline_times)
metrics[i]['slowdown'] = compute_slowdowns(dtr_times, baseline_times)
# Compute throughputs for baseline param_sweep commands
if specific_params.get('kind') == 'param_sweep' or specific_params.get('type') == 'baseline':
for i in range(config['n_inputs']):
metrics[i]['throughput'] = compute_throughputs(specific_params['batch_size'], metrics[i]['gpu_time'])
summary_stats = []
for (_, stat) in metrics.items():
summary_dict = {
key: compute_summary_stats(stat[key], bootstrap=('time' in key))
for key in MEASURED_KEYS
}
if 'slowdown' in stat:
summary_dict['slowdown'] = compute_summary_stats(stat['slowdown'], bootstrap=True)
if 'throughput' in stat:
summary_dict['throughput'] = compute_summary_stats(stat['throughput'], bootstrap=True)
summary_stats.append(summary_dict)
summary['summary'] = summary_stats
return (summary, 'success')
except Exception as e:
return (None, 'Encountered exception on ({}, {}): '.format(experiment_name, model) + render_exception(e))
| [
37811,
198,
18274,
2410,
329,
4634,
510,
9485,
15884,
354,
4088,
8748,
10256,
13,
198,
37811,
198,
11748,
269,
21370,
198,
6738,
340,
861,
10141,
1330,
1720,
355,
11629,
62,
11167,
198,
11748,
28686,
198,
11748,
850,
14681,
198,
11748,
640,
198,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
2219,
1330,
357,
9122,
62,
7753,
62,
1069,
1023,
11,
8335,
62,
448,
62,
7753,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1100,
62,
17752,
11,
8543,
62,
1069,
4516,
11,
3551,
62,
17752,
8,
198,
198,
11682,
1921,
4261,
1961,
62,
7336,
16309,
796,
37250,
2435,
3256,
705,
46999,
62,
2435,
3256,
705,
15414,
62,
11883,
3256,
705,
19849,
62,
11883,
3256,
705,
23350,
62,
11883,
3256,
705,
27261,
62,
2435,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31582,
5072,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8692,
62,
5589,
1133,
62,
2435,
3256,
705,
2787,
265,
62,
5589,
1133,
62,
2435,
3256,
705,
12947,
62,
2435,
3256,
705,
15805,
62,
2435,
3256,
705,
31673,
62,
37315,
20520,
628,
628,
628,
198,
4299,
1057,
62,
28461,
874,
7,
11250,
62,
15908,
11,
21015,
62,
28758,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6306,
62,
3672,
11,
2746,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2176,
62,
37266,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
15414,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
62,
40290,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
989,
62,
48277,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24443,
62,
1462,
62,
40664,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4473,
62,
5143,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4473,
62,
5143,
62,
448,
7753,
11639,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
62,
312,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1013,
62,
66,
429,
28,
15,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20549,
856,
329,
8296,
262,
640,
290,
3509,
4088,
8748,
198,
220,
220,
220,
422,
2491,
257,
2746,
357,
1169,
2836,
1276,
2148,
257,
37456,
329,
198,
220,
220,
220,
1682,
2491,
262,
2746,
780,
1180,
6982,
286,
4981,
198,
220,
220,
220,
761,
1180,
6982,
286,
9058,
290,
257,
37456,
326,
18616,
281,
198,
220,
220,
220,
5128,
329,
2491,
326,
2746,
8,
628,
220,
220,
220,
1058,
37266,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4473,
62,
5143,
25,
1649,
900,
284,
2081,
11,
645,
16218,
6306,
1366,
481,
307,
7448,
13,
632,
318,
973,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1057,
257,
14805,
4473,
290,
1700,
703,
881,
4088,
318,
973,
788,
900,
262,
4088,
4466,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4600,
10366,
952,
63,
9729,
286,
360,
5446,
10256,
628,
220,
220,
220,
220,
220,
220,
220,
4473,
62,
5143,
62,
448,
62,
7753,
25,
262,
8584,
2393,
326,
7000,
262,
4088,
8748,
1366,
286,
262,
14805,
1057,
628,
220,
220,
220,
220,
220,
220,
220,
23991,
62,
312,
25,
262,
3141,
4686,
329,
1459,
2746,
11,
3599,
422,
657,
416,
4277,
198,
220,
220,
220,
220,
220,
220,
220,
1013,
62,
66,
429,
25,
262,
4686,
286,
1013,
70,
3924,
7560,
422,
4600,
403,
11379,
62,
33692,
63,
26,
428,
318,
973,
329,
9646,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
543,
2748,
8398,
326,
4073,
8563,
13,
220,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
16993,
796,
28686,
13,
1136,
66,
16993,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
62,
7753,
796,
705,
11423,
62,
37266,
13,
17752,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3551,
62,
17752,
7,
66,
16993,
11,
42287,
62,
7753,
11,
2176,
62,
37266,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4473,
62,
5143,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
796,
8335,
62,
448,
62,
7753,
7,
6978,
62,
40290,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
90,
92,
12,
90,
27422,
40664,
4458,
18982,
7,
1136,
62,
13116,
62,
40290,
7,
23100,
3681,
62,
3672,
11,
2176,
62,
37266,
11,
23991,
62,
312,
828,
2746,
62,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4235,
796,
705,
64,
6,
611,
24443,
62,
1462,
62,
40664,
2073,
705,
86,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
34345,
11,
4235,
11,
649,
1370,
28,
7061,
8,
355,
269,
21370,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6260,
796,
2251,
62,
40664,
62,
16002,
7,
40664,
7753,
11,
2176,
62,
37266,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
24443,
62,
1462,
62,
40664,
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,
6260,
13,
13564,
25677,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
796,
10148,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4888,
62,
15908,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
12048,
796,
28686,
13,
6978,
13,
22179,
7,
28710,
62,
15908,
11,
705,
5143,
62,
13165,
354,
62,
45994,
13,
9078,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
77,
62,
15414,
82,
2599,
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,
850,
14681,
13,
5143,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
29412,
62,
28758,
11,
1057,
62,
12048,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
11250,
12,
15908,
3256,
4566,
62,
15908,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
23100,
3681,
12,
14171,
3256,
6306,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
19849,
12,
3672,
3256,
2746,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
15414,
12,
312,
87,
3256,
965,
7,
72,
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,
705,
438,
37266,
12,
7753,
3256,
42287,
62,
7753,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
448,
12,
7753,
3256,
29472,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
45994,
12,
5143,
3256,
965,
7,
45994,
62,
5143,
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,
705,
438,
45994,
12,
5143,
12,
448,
7753,
3256,
4473,
62,
5143,
62,
448,
7753,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2198,
28,
17821,
11,
26827,
28,
11423,
62,
37266,
13,
1136,
10786,
48678,
3256,
3126,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
7266,
14681,
13,
34,
4262,
18709,
12331,
11,
850,
14681,
13,
48031,
3109,
6474,
8,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
989,
62,
48277,
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,
5298,
304,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4473,
62,
5143,
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,
1441,
357,
25101,
11,
705,
15522,
4470,
4054,
25,
23884,
4458,
18982,
7,
13287,
62,
1069,
4516,
7,
68,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
18224,
7,
23100,
3681,
62,
3672,
11,
2746,
62,
3672,
11,
2176,
62,
37266,
11,
1312,
11,
8543,
62,
1069,
4516,
7,
68,
828,
3108,
62,
40290,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
25101,
11,
705,
37351,
4978,
4049,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
13,
42832,
7,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
17821,
11,
705,
13138,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3443,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
7,
37266,
62,
7753,
8,
198,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4834,
9127,
1068,
6631,
319,
37913,
5512,
1391,
5512,
23884,
2599,
59,
77,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6306,
62,
3672,
11,
2746,
62,
3672,
11,
2176,
62,
37266,
8,
1343,
8543,
62,
1069,
4516,
7,
68,
4008,
628,
198,
4299,
1429,
62,
21812,
7,
21812,
25,
8633,
11,
4566,
62,
28243,
25,
8633,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
2980,
378,
257,
4634,
351,
477,
3306,
7032,
1864,
198,
220,
220,
220,
220,
220,
220,
220,
284,
262,
4277,
4634,
290,
262,
2099,
286,
262,
9729,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
37266,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
25,
262,
3141,
2810,
287,
262,
4566,
13,
17752,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
28243,
25,
4277,
3815,
329,
262,
6460,
326,
318,
2672,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
2491,
281,
6306,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1255,
796,
3141,
13,
30073,
3419,
628,
220,
220,
220,
611,
1255,
17816,
4906,
20520,
6624,
705,
12093,
4470,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
43501,
62,
7857,
6,
407,
287,
1255,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
17816,
43501,
62,
7857,
20520,
796,
4566,
62,
28243,
17816,
43501,
62,
7857,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
198,
220,
220,
220,
1288,
361,
1255,
17816,
4906,
20520,
6624,
705,
67,
2213,
6,
393,
1255,
17816,
4906,
20520,
6624,
705,
14323,
4372,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
329,
357,
74,
11,
410,
8,
287,
4566,
62,
28243,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
479,
407,
287,
3141,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
74,
60,
796,
410,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
10786,
20035,
2099,
25,
23884,
4458,
18982,
7,
20274,
17816,
4906,
20520,
4008,
628,
198,
4299,
26571,
62,
33990,
7,
24396,
11,
1033,
62,
11250,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
6822,
1771,
262,
6460,
329,
281,
6306,
4909,
198,
220,
220,
220,
220,
220,
220,
220,
477,
262,
2672,
3815,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
1441,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
67,
2213,
6,
1058,
2198,
62,
67,
2213,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
14323,
4372,
10354,
2198,
62,
14323,
4372,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
12093,
4470,
10354,
37456,
25,
19203,
43501,
62,
7857,
6,
287,
1033,
62,
11250,
11,
10148,
8,
198,
220,
220,
220,
1782,
13,
1136,
7,
24396,
11,
37456,
25,
357,
25101,
11,
705,
34680,
1611,
6,
4008,
3419,
628,
198,
4299,
16631,
62,
33692,
7,
11201,
62,
11250,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
791,
11379,
257,
3141,
290,
651,
477,
1744,
198,
220,
220,
220,
220,
220,
220,
220,
6460,
13,
8229,
276,
355,
281,
40806,
540,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1744,
6460,
389,
7560,
416,
2263,
198,
220,
220,
220,
220,
220,
220,
220,
257,
13690,
35610,
1720,
625,
1351,
7032,
286,
262,
3141,
628,
220,
220,
220,
220,
220,
220,
220,
5740,
25,
329,
4600,
10366,
952,
63,
3141,
11,
262,
4600,
31673,
62,
37315,
63,
318,
10488,
994,
287,
1502,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3368,
3294,
4539,
286,
14805,
4473,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
4634,
62,
33878,
796,
1351,
3419,
198,
220,
220,
220,
1351,
62,
25747,
796,
1351,
3419,
198,
220,
220,
220,
329,
357,
74,
11,
410,
8,
287,
1033,
62,
11250,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
85,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4634,
62,
33878,
13,
33295,
7,
74,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
25747,
13,
33295,
7,
85,
8,
628,
220,
220,
220,
611,
407,
1351,
62,
25747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
1033,
62,
11250,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
14831,
287,
11629,
62,
11167,
46491,
4868,
62,
25747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3306,
284,
4866,
1123,
640,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1201,
262,
1468,
1366,
1244,
307,
973,
1568,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1033,
62,
11250,
13,
30073,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11925,
7,
4868,
62,
25747,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
33990,
62,
33878,
58,
72,
11907,
796,
14831,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1255,
13,
1136,
10786,
11031,
11537,
6624,
705,
10366,
952,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
17816,
31673,
62,
37315,
20520,
1635,
28,
1255,
17816,
10366,
952,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
1255,
628,
198,
4299,
1057,
62,
12093,
4470,
7,
19849,
11,
1033,
62,
11250,
11,
4566,
11,
4566,
62,
15908,
11,
5072,
62,
15908,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
5660,
257,
14805,
491,
21093,
290,
7330,
4088,
8748,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
318,
973,
329,
1972,
257,
4941,
4088,
8748,
329,
198,
220,
220,
220,
220,
220,
220,
220,
360,
5446,
4600,
10366,
952,
63,
9729,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
14805,
62,
11250,
796,
1391,
705,
43501,
62,
7857,
6,
1058,
1033,
62,
11250,
17816,
43501,
62,
7857,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
48678,
10354,
1033,
62,
11250,
13,
1136,
10786,
48678,
3256,
3126,
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,
1303,
691,
1804,
257,
10926,
1271,
286,
4539,
780,
356,
389,
691,
1972,
262,
4088,
8748,
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,
1303,
543,
815,
307,
10411,
1022,
4539,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
77,
62,
260,
862,
10354,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
26086,
62,
37266,
10354,
1033,
62,
11250,
13,
1136,
10786,
26086,
62,
37266,
3256,
23884,
8,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
611,
705,
15414,
62,
37266,
6,
287,
1033,
62,
11250,
25,
198,
220,
220,
220,
220,
220,
220,
220,
14805,
62,
11250,
17816,
15414,
62,
37266,
20520,
796,
1033,
62,
11250,
17816,
15414,
62,
37266,
20520,
198,
220,
220,
220,
29472,
796,
965,
7,
2435,
13,
2435,
28955,
1343,
45302,
17752,
6,
198,
220,
220,
220,
20218,
62,
7753,
796,
8335,
62,
448,
62,
7753,
7,
418,
13,
1136,
66,
16993,
22784,
29472,
8,
198,
220,
220,
220,
1943,
11,
31456,
796,
1057,
62,
28461,
874,
7,
11250,
62,
15908,
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,
21015,
62,
21812,
10786,
12093,
4470,
3256,
4566,
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,
705,
12093,
4470,
3256,
2746,
11,
14805,
62,
11250,
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,
1033,
62,
11250,
13,
1136,
10786,
77,
62,
15414,
82,
3256,
4566,
17816,
77,
62,
15414,
82,
20520,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
15908,
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,
989,
62,
48277,
28,
11250,
17816,
13116,
62,
48277,
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,
24443,
62,
1462,
62,
40664,
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,
4473,
62,
5143,
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,
4473,
62,
5143,
62,
448,
7753,
28,
29510,
62,
7753,
8,
198,
220,
220,
220,
611,
407,
1943,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
11,
705,
12331,
981,
2491,
14805,
4473,
25,
3467,
77,
90,
92,
4458,
18982,
7,
19662,
8,
628,
220,
220,
220,
1066,
62,
26060,
796,
1100,
62,
17752,
7,
22915,
62,
15908,
11,
20218,
62,
7753,
8,
198,
220,
220,
220,
28686,
13,
28956,
7,
29510,
62,
7753,
8,
198,
220,
220,
220,
611,
705,
11883,
6,
407,
287,
1066,
62,
26060,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
11,
705,
47904,
284,
651,
14805,
4088,
8748,
6,
198,
220,
220,
220,
1441,
6407,
11,
1066,
62,
26060,
17816,
11883,
20520,
628,
198,
4299,
21136,
62,
9503,
1746,
7,
19849,
11,
4566,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
2547,
325,
257,
3141,
290,
1441,
257,
13686,
3141,
11,
543,
198,
220,
220,
220,
220,
220,
220,
220,
460,
307,
973,
284,
7716,
6460,
329,
10256,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
37266,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
25,
262,
1438,
286,
262,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
25,
262,
1353,
12,
5715,
4566,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
611,
407,
4566,
17816,
67,
2213,
62,
33692,
6,
4083,
1136,
7,
19849,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
10352,
11,
705,
2949,
6460,
329,
23884,
4458,
18982,
7,
19849,
828,
6045,
628,
220,
220,
220,
4277,
62,
33990,
796,
4566,
17816,
67,
2213,
62,
33692,
6,
4083,
1136,
10786,
12286,
11537,
198,
220,
220,
220,
2746,
62,
9503,
1746,
796,
4566,
17816,
67,
2213,
62,
33692,
6,
4083,
1136,
7,
19849,
8,
628,
220,
220,
220,
611,
4277,
62,
33990,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
28243,
796,
4277,
62,
33990,
13,
30073,
3419,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
62,
28243,
796,
8633,
3419,
628,
220,
220,
220,
329,
3141,
287,
2746,
62,
9503,
1746,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1033,
62,
11250,
796,
1429,
62,
21812,
7,
21812,
11,
4566,
62,
28243,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1033,
62,
11250,
13,
1136,
10786,
11031,
11537,
287,
19203,
10366,
952,
3256,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1033,
62,
11250,
17816,
31673,
62,
37315,
20520,
796,
532,
16,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
1943,
11,
31456,
796,
26571,
62,
33990,
7,
11201,
62,
11250,
17816,
4906,
6,
4357,
1033,
62,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1943,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
10352,
11,
705,
15029,
18982,
8398,
329,
23884,
12,
90,
38362,
23884,
4458,
18982,
7,
19849,
11,
1033,
62,
11250,
17816,
4906,
6,
4357,
31456,
828,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7800,
6407,
11,
705,
33244,
3256,
1033,
62,
11250,
628,
198,
4299,
6297,
26418,
62,
10414,
62,
3849,
12786,
7,
7890,
11,
1185,
11,
6297,
26418,
62,
270,
364,
28,
49388,
11,
6628,
28,
3865,
11,
3953,
11639,
32604,
6,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
281,
7177,
286,
36016,
11,
17706,
6297,
26418,
581,
321,
11347,
329,
262,
7368,
1271,
198,
220,
220,
220,
286,
34820,
284,
8636,
6628,
20016,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10638,
62,
14269,
796,
6045,
198,
220,
220,
220,
611,
3953,
6624,
705,
32604,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
14269,
796,
45941,
13,
32604,
198,
220,
220,
220,
1288,
361,
3953,
6624,
705,
1150,
666,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
14269,
796,
45941,
13,
1150,
666,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7,
69,
6,
44651,
3953,
11,
1276,
307,
1612,
393,
14288,
475,
2722,
1391,
1326,
5015,
92,
11537,
198,
220,
220,
220,
6818,
10638,
62,
14269,
318,
407,
6045,
628,
220,
220,
220,
7746,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
14269,
7,
37659,
13,
25120,
13,
25541,
7,
7890,
11,
6330,
28,
17821,
11,
2546,
28,
11925,
7,
7890,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
18769,
26418,
62,
270,
364,
8,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
1303,
1675,
651,
327,
4,
6628,
20016,
11,
356,
19607,
262,
4220,
357,
3064,
12,
34,
20679,
17,
4064,
290,
262,
1353,
357,
3064,
12,
34,
20679,
17,
4064,
198,
220,
220,
220,
1013,
62,
12626,
796,
357,
3064,
532,
6628,
8,
1220,
362,
198,
220,
220,
220,
1441,
357,
37659,
13,
25067,
576,
7,
395,
26748,
11,
1013,
62,
12626,
828,
45941,
13,
25067,
576,
7,
395,
26748,
11,
1802,
532,
1013,
62,
12626,
4008,
628,
198,
198,
4299,
2824,
62,
1831,
62,
1326,
5015,
902,
7,
23100,
3681,
62,
3672,
11,
2746,
11,
2176,
62,
37266,
11,
3108,
62,
40290,
11,
23991,
62,
312,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
82,
262,
8246,
1366,
329,
262,
1813,
6306,
1438,
290,
42287,
290,
5860,
257,
46545,
357,
4164,
10466,
22155,
11,
4088,
4466,
611,
9723,
11,
4049,
3275,
611,
612,
318,
645,
1366,
2393,
737,
628,
220,
220,
220,
383,
717,
734,
7032,
481,
307,
6045,
611,
612,
318,
645,
1366,
2393,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
29472,
796,
705,
90,
92,
12,
90,
27422,
40664,
4458,
18982,
7,
1136,
62,
13116,
62,
40290,
7,
23100,
3681,
62,
3672,
11,
2176,
62,
37266,
11,
23991,
62,
312,
828,
2746,
8,
198,
220,
220,
220,
611,
407,
2198,
62,
7753,
62,
1069,
1023,
7,
6978,
62,
40290,
11,
29472,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
14202,
11,
6045,
11,
705,
6601,
2393,
23884,
857,
407,
2152,
379,
23884,
4458,
18982,
7,
34345,
11,
3108,
62,
40290,
4008,
628,
220,
220,
220,
1336,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
6978,
62,
40290,
11,
29472,
8,
628,
220,
220,
220,
20731,
796,
23884,
628,
220,
220,
220,
4088,
62,
37315,
796,
6045,
628,
220,
220,
220,
351,
1280,
7,
12853,
62,
6978,
11,
705,
81,
3256,
649,
1370,
28,
7061,
8,
355,
269,
21370,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9173,
796,
269,
21370,
13,
35,
713,
33634,
7,
40664,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5752,
287,
9173,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
1339,
612,
389,
9729,
329,
262,
976,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
326,
423,
262,
976,
3815,
329,
477,
25412,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
87,
796,
493,
7,
808,
17816,
15414,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8630,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
25,
12178,
7,
808,
58,
2539,
12962,
329,
1994,
287,
11948,
1921,
4261,
1961,
62,
7336,
16309,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4088,
62,
37315,
318,
6045,
290,
2176,
62,
37266,
13,
1136,
10786,
11031,
11537,
6624,
705,
10366,
952,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4088,
62,
37315,
796,
12178,
7,
808,
17816,
31673,
62,
37315,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4686,
87,
407,
287,
20731,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
58,
312,
87,
60,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
25,
17635,
329,
1994,
287,
11948,
1921,
4261,
1961,
62,
7336,
16309,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
11948,
1921,
4261,
1961,
62,
7336,
16309,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
58,
312,
87,
7131,
2539,
4083,
33295,
7,
1326,
34006,
58,
2539,
12962,
628,
220,
220,
220,
1441,
357,
4164,
10466,
11,
4088,
62,
37315,
11,
705,
13138,
11537,
628,
198,
4299,
24061,
62,
38246,
30371,
7,
11201,
62,
22355,
11,
14805,
62,
22355,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
26515,
286,
14879,
1661,
290,
14805,
1661,
286,
262,
976,
4129,
11,
198,
220,
220,
220,
5860,
281,
7177,
286,
3105,
30371,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
685,
11201,
62,
22355,
58,
72,
60,
14,
12093,
4470,
62,
22355,
58,
72,
60,
329,
1312,
287,
2837,
7,
11925,
7,
11201,
62,
22355,
4008,
60,
198,
198,
4299,
24061,
62,
9579,
1996,
82,
7,
43501,
62,
7857,
11,
308,
19944,
62,
22355,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
257,
15458,
2546,
290,
281,
7177,
286,
640,
2491,
319,
11362,
11,
198,
220,
220,
220,
5860,
281,
7177,
286,
41997,
82,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
685,
43501,
62,
7857,
1220,
308,
19944,
62,
22355,
58,
72,
60,
1635,
8576,
329,
1312,
287,
2837,
7,
11925,
7,
46999,
62,
22355,
4008,
60,
198,
198,
4299,
21136,
62,
7890,
62,
7753,
7,
23100,
3681,
62,
3672,
11,
2746,
11,
4566,
11,
2176,
62,
37266,
11,
3108,
62,
40290,
11,
23991,
62,
312,
28,
15,
11,
14805,
62,
37266,
28,
14202,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
281,
6306,
1438,
11,
2746,
1438,
11,
8619,
11,
290,
1271,
286,
17311,
11,
198,
220,
220,
220,
13544,
274,
262,
11188,
1366,
2393,
611,
340,
7160,
290,
552,
1769,
198,
220,
220,
220,
10638,
7869,
329,
262,
357,
11930,
12,
15750,
8,
640,
11,
11362,
640,
11,
290,
4088,
973,
287,
326,
1366,
2393,
329,
3572,
286,
2176,
6460,
628,
220,
220,
220,
14805,
62,
37266,
25,
1002,
262,
3141,
318,
257,
8064,
3141,
11,
428,
481,
779,
198,
220,
220,
220,
262,
14805,
284,
24061,
262,
35621,
583,
1366,
966,
198,
220,
220,
220,
287,
1502,
284,
1365,
3953,
663,
6082,
13,
628,
220,
220,
220,
16409,
6045,
290,
281,
4049,
3275,
611,
340,
10143,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
989,
62,
48277,
796,
4566,
17816,
13116,
62,
48277,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
20731,
11,
4466,
11,
31456,
796,
2824,
62,
1831,
62,
1326,
5015,
902,
7,
23100,
3681,
62,
3672,
11,
2746,
11,
2176,
62,
37266,
11,
3108,
62,
40290,
11,
23991,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
20731,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
14202,
11,
31456,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
4466,
318,
407,
6045,
290,
2176,
62,
37266,
13,
1136,
10786,
11031,
11537,
6624,
705,
10366,
952,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2176,
62,
37266,
17816,
31673,
62,
37315,
20520,
796,
12178,
7,
37315,
8,
628,
220,
220,
220,
220,
220,
220,
220,
10638,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11423,
62,
37266,
10354,
2176,
62,
37266,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
1339,
2279,
1931,
34640,
503,
11,
428,
4155,
326,
356,
481,
423,
257,
1700,
286,
262,
4049,
198,
220,
220,
220,
220,
220,
220,
220,
611,
989,
62,
48277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2198,
62,
18224,
7,
23100,
3681,
62,
3672,
11,
2746,
11,
2176,
62,
37266,
11,
3108,
62,
40290,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
17816,
49736,
20520,
796,
705,
18224,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10638,
11,
705,
13138,
6,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
428,
373,
257,
8064,
6306,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
356,
423,
257,
14805,
1695,
11,
1309,
338,
24061,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
35621,
583,
1366,
966,
11,
1182,
284,
1182,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
6297,
26418,
6628,
20016,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
11423,
62,
37266,
13,
1136,
10786,
4906,
11537,
14512,
705,
12093,
4470,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
2176,
62,
37266,
13,
1136,
10786,
11031,
11537,
6624,
705,
10366,
952,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
14805,
62,
37266,
318,
407,
6045,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14805,
62,
4164,
10466,
11,
4808,
11,
14805,
62,
19662,
796,
2824,
62,
1831,
62,
1326,
5015,
902,
7,
12093,
4470,
62,
37266,
17816,
4906,
6,
4357,
2746,
11,
14805,
62,
37266,
17816,
11423,
62,
37266,
6,
4357,
3108,
62,
40290,
11,
14805,
62,
37266,
17816,
28758,
62,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
14805,
62,
4164,
10466,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
14202,
11,
14805,
62,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
24061,
35621,
287,
20731,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11250,
17816,
77,
62,
15414,
82,
20520,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
2213,
62,
22355,
796,
20731,
58,
72,
7131,
6,
46999,
62,
2435,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14805,
62,
22355,
796,
14805,
62,
4164,
10466,
58,
72,
7131,
6,
46999,
62,
2435,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
67,
2213,
62,
22355,
8,
6624,
18896,
7,
12093,
4470,
62,
22355,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
58,
72,
7131,
6,
38246,
2902,
20520,
796,
24061,
62,
38246,
30371,
7,
67,
2213,
62,
22355,
11,
14805,
62,
22355,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
41997,
82,
329,
14805,
5772,
62,
46280,
538,
9729,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2176,
62,
37266,
13,
1136,
10786,
11031,
11537,
6624,
705,
17143,
62,
46280,
538,
6,
393,
2176,
62,
37266,
13,
1136,
10786,
4906,
11537,
6624,
705,
12093,
4470,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
11250,
17816,
77,
62,
15414,
82,
20520,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20731,
58,
72,
7131,
6,
9579,
1996,
20520,
796,
24061,
62,
9579,
1996,
82,
7,
11423,
62,
37266,
17816,
43501,
62,
7857,
6,
4357,
20731,
58,
72,
7131,
6,
46999,
62,
2435,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
34242,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
44104,
11,
1185,
8,
287,
20731,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
11600,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
25,
24061,
62,
49736,
62,
34242,
7,
14269,
58,
2539,
4357,
6297,
26418,
28,
10786,
2435,
6,
287,
1994,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
11948,
1921,
4261,
1961,
62,
7336,
16309,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
38246,
2902,
6,
287,
1185,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
11600,
17816,
38246,
2902,
20520,
796,
24061,
62,
49736,
62,
34242,
7,
14269,
17816,
38246,
2902,
6,
4357,
6297,
26418,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
9579,
1996,
6,
287,
1185,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10638,
62,
11600,
17816,
9579,
1996,
20520,
796,
24061,
62,
49736,
62,
34242,
7,
14269,
17816,
9579,
1996,
6,
4357,
6297,
26418,
28,
17821,
8,
198,
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,
10638,
62,
34242,
13,
33295,
7,
49736,
62,
11600,
8,
628,
220,
220,
220,
220,
220,
220,
220,
10638,
17816,
49736,
20520,
796,
10638,
62,
34242,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
49736,
11,
705,
13138,
11537,
628,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
14202,
11,
705,
4834,
9127,
1068,
6631,
319,
37913,
5512,
23884,
2599,
45302,
18982,
7,
23100,
3681,
62,
3672,
11,
2746,
8,
1343,
8543,
62,
1069,
4516,
7,
68,
4008,
198
] | 2.299335 | 6,765 |
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import seaborn as sns
import argparse
import numpy as np
import joblib
import tensorflow as tf
import os
from sac.misc import utils
from sac.policies.hierarchical_policy import FixedOptionPolicy
from sac.misc.sampler import rollouts
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('file', type=str, help='Path to the snapshot file.')
parser.add_argument('--max-path-length', '-l', type=int, default=100)
parser.add_argument('--n_paths', type=int, default=1)
parser.add_argument('--dim_0', type=int, default=0)
parser.add_argument('--dim_1', type=int, default=1)
parser.add_argument('--use_qpos', type=bool, default=False)
parser.add_argument('--use_action', type=bool, default=False)
parser.add_argument('--deterministic', '-d', dest='deterministic',
action='store_true')
parser.add_argument('--no-deterministic', '-nd', dest='deterministic',
action='store_false')
parser.set_defaults(deterministic=True)
args = parser.parse_args()
filename = '{}_{}_{}_trace.png'.format(os.path.splitext(args.file)[0],
args.dim_0, args.dim_1)
with tf.Session() as sess:
data = joblib.load(args.file)
policy = data['policy']
env = data['env']
num_skills = data['policy'].observation_space.flat_dim - data['env'].spec.observation_space.flat_dim
plt.figure(figsize=(6, 6))
palette = sns.color_palette('hls', num_skills)
with policy.deterministic(args.deterministic):
for z in range(num_skills):
fixed_z_policy = FixedOptionPolicy(policy, num_skills, z)
for path_index in range(args.n_paths):
obs = env.reset()
if args.use_qpos:
qpos = env.wrapped_env.env.model.data.qpos[:, 0]
obs_vec = [qpos]
else:
obs_vec = [obs]
for t in range(args.max_path_length):
action, _ = fixed_z_policy.get_action(obs)
(obs, _, _, _) = env.step(action)
if args.use_qpos:
qpos = env.wrapped_env.env.model.data.qpos[:, 0]
obs_vec.append(qpos)
elif args.use_action:
obs_vec.append(action)
else:
obs_vec.append(obs)
obs_vec = np.array(obs_vec)
x = obs_vec[:, args.dim_0]
y = obs_vec[:, args.dim_1]
plt.plot(x, y, c=palette[z])
plt.savefig(filename)
plt.close()
| [
11748,
2603,
29487,
8019,
198,
6759,
29487,
8019,
13,
1904,
10786,
46384,
11537,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
384,
397,
1211,
355,
3013,
82,
198,
11748,
1822,
29572,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
1693,
8019,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
28686,
198,
6738,
5360,
13,
44374,
1330,
3384,
4487,
198,
6738,
5360,
13,
79,
4160,
444,
13,
71,
959,
998,
605,
62,
30586,
1330,
10832,
19722,
36727,
198,
6738,
5360,
13,
44374,
13,
37687,
20053,
1330,
4836,
5269,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
628,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
7753,
3256,
2099,
28,
2536,
11,
1037,
11639,
15235,
284,
262,
27479,
2393,
2637,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
9806,
12,
6978,
12,
13664,
3256,
705,
12,
75,
3256,
2099,
28,
600,
11,
4277,
28,
3064,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
77,
62,
6978,
82,
3256,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
27740,
62,
15,
3256,
2099,
28,
600,
11,
4277,
28,
15,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
27740,
62,
16,
3256,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
1904,
62,
80,
1930,
3256,
2099,
28,
30388,
11,
4277,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
1904,
62,
2673,
3256,
2099,
28,
30388,
11,
4277,
28,
25101,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
67,
2357,
49228,
3256,
705,
12,
67,
3256,
2244,
11639,
67,
2357,
49228,
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,
2223,
11639,
8095,
62,
7942,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
3919,
12,
67,
2357,
49228,
3256,
705,
12,
358,
3256,
2244,
11639,
67,
2357,
49228,
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,
2223,
11639,
8095,
62,
9562,
11537,
198,
220,
220,
220,
30751,
13,
2617,
62,
12286,
82,
7,
67,
2357,
49228,
28,
17821,
8,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
29472,
796,
705,
90,
92,
23330,
92,
23330,
92,
62,
40546,
13,
11134,
4458,
18982,
7,
418,
13,
6978,
13,
22018,
578,
742,
7,
22046,
13,
7753,
38381,
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,
26498,
13,
27740,
62,
15,
11,
26498,
13,
27740,
62,
16,
8,
628,
220,
220,
220,
351,
48700,
13,
36044,
3419,
355,
264,
408,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
1693,
8019,
13,
2220,
7,
22046,
13,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2450,
796,
1366,
17816,
30586,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
17365,
796,
1366,
17816,
24330,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
8135,
2171,
796,
1366,
17816,
30586,
6,
4083,
672,
3168,
341,
62,
13200,
13,
38568,
62,
27740,
532,
1366,
17816,
24330,
6,
4083,
16684,
13,
672,
3168,
341,
62,
13200,
13,
38568,
62,
27740,
628,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
26875,
7,
5647,
7857,
16193,
21,
11,
718,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
27043,
796,
3013,
82,
13,
8043,
62,
18596,
5857,
10786,
71,
7278,
3256,
997,
62,
8135,
2171,
8,
198,
220,
220,
220,
220,
220,
220,
220,
351,
2450,
13,
67,
2357,
49228,
7,
22046,
13,
67,
2357,
49228,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1976,
287,
2837,
7,
22510,
62,
8135,
2171,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5969,
62,
89,
62,
30586,
796,
10832,
19722,
36727,
7,
30586,
11,
997,
62,
8135,
2171,
11,
1976,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3108,
62,
9630,
287,
2837,
7,
22046,
13,
77,
62,
6978,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10201,
796,
17365,
13,
42503,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
1904,
62,
80,
1930,
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,
10662,
1930,
796,
17365,
13,
29988,
1496,
62,
24330,
13,
24330,
13,
19849,
13,
7890,
13,
80,
1930,
58,
45299,
657,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10201,
62,
35138,
796,
685,
80,
1930,
60,
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,
10201,
62,
35138,
796,
685,
8158,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
256,
287,
2837,
7,
22046,
13,
9806,
62,
6978,
62,
13664,
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,
2223,
11,
4808,
796,
5969,
62,
89,
62,
30586,
13,
1136,
62,
2673,
7,
8158,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
8158,
11,
4808,
11,
4808,
11,
4808,
8,
796,
17365,
13,
9662,
7,
2673,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
1904,
62,
80,
1930,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
1930,
796,
17365,
13,
29988,
1496,
62,
24330,
13,
24330,
13,
19849,
13,
7890,
13,
80,
1930,
58,
45299,
657,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10201,
62,
35138,
13,
33295,
7,
80,
1930,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
26498,
13,
1904,
62,
2673,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10201,
62,
35138,
13,
33295,
7,
2673,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
220,
220,
220,
220,
10201,
62,
35138,
13,
33295,
7,
8158,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10201,
62,
35138,
796,
45941,
13,
18747,
7,
8158,
62,
35138,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
10201,
62,
35138,
58,
45299,
26498,
13,
27740,
62,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
796,
10201,
62,
35138,
58,
45299,
26498,
13,
27740,
62,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
29487,
7,
87,
11,
331,
11,
269,
28,
18596,
5857,
58,
89,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
21928,
5647,
7,
34345,
8,
198,
220,
220,
220,
220,
220,
220,
220,
458,
83,
13,
19836,
3419,
198
] | 1.920027 | 1,488 |
#
# Copyright (c) 2015-2019 Thierry Florac <tflorac AT ulthar.net>
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
"""PyAMS_layer.interfaces module
This module provides all layers and skins related interfaces.
"""
from pyramid.interfaces import IRequest
from zope.configuration.fields import GlobalInterface
from zope.interface import Attribute, Interface, implementer
from zope.interface.interfaces import IObjectEvent, ObjectEvent
from zope.schema import Bool, Choice, TextLine
from pyams_file.schema import FileField
__docformat__ = 'restructuredtext'
from pyams_layer import _
MANAGE_SKIN_PERMISSION = 'pyams.ManageSkin'
'''Permission required to manage rendering skin'''
class IResources(Interface):
"""Get list of CSS and Javascript resources associated with given context"""
resources = Attribute("Resources to include")
"""Iterable of resources to include into page
The best way to handle resources is to use Fanstatic to automatically
include CSS and Javascript tags.
"""
PYAMS_BASE_SKIN_NAME = 'PyAMS base skin'
class IBaseLayer(IRequest):
"""Base layer marker interface"""
class IFormLayer(Interface):
"""Custom layer for forms management"""
class IPyAMSLayer(IBaseLayer, IFormLayer):
"""PyAMS default layer"""
class IPyAMSUserLayer(IPyAMSLayer):
"""PyAMS custom user layer
This layer is the base for all custom skins.
Any component should provide a look and feel for this layer.
"""
BASE_SKINS_VOCABULARY_NAME = 'pyams_layer.skins'
USER_SKINS_VOCABULARY_NAME = 'pyams_layer.skin.user'
class ISkin(Interface):
"""Skin interface
Skins are registered as utilities implementing this interface
and defining request layer as attribute.
"""
label = TextLine(title="Skin name")
layer = GlobalInterface(title="Request layer",
description="This interface will be used to tag request layer",
required=True)
class ISkinChangedEvent(IObjectEvent):
"""Skin changed event"""
@implementer(ISkinChangedEvent)
class SkinChangedEvent(ObjectEvent):
"""Request skin changed event"""
class ISkinnable(Interface):
"""Skinnable content interface"""
can_inherit_skin = Attribute("Check if skin can be inherited")
inherit_skin = Bool(title=_("Inherit parent skin?"),
description=_("Should we reuse parent skin?"),
required=True,
default=False)
override_skin = Bool(title=_("Don't inherit parent skin?"),
description=_("Should we override parent skin?"),
required=True,
default=True)
skin_parent = Attribute("Skin parent (local or inherited)")
skin = Choice(title=_("Custom graphic theme"),
description=_("This theme will be used to handle graphic design (colors and "
"images)"),
vocabulary=USER_SKINS_VOCABULARY_NAME,
required=False)
def get_skin(self, request=None):
"""Get skin matching this content"""
container_class = TextLine(title=_("Container class"),
description=_("CSS class given to main page container element"),
required=False)
custom_stylesheet = FileField(title=_("Custom stylesheet"),
description=_("This custom stylesheet will be used to override "
"selected theme styles"),
required=False)
editor_stylesheet = FileField(title=_("Editor stylesheet"),
description=_("Styles defined into this stylesheet will be "
"available into HTML editor"),
required=False)
custom_script = FileField(title=_("Custom script"),
description=_("This custom javascript file will be used to add "
"dynamic features to selected theme"),
required=False)
class IUserSkinnable(ISkinnable):
"""User skinnable content interface"""
| [
2,
198,
2,
15069,
357,
66,
8,
1853,
12,
23344,
536,
959,
563,
4432,
330,
1279,
83,
2704,
273,
330,
5161,
14856,
400,
283,
13,
3262,
29,
198,
2,
1439,
6923,
33876,
13,
198,
2,
198,
2,
770,
3788,
318,
2426,
284,
262,
8617,
286,
262,
1168,
3008,
5094,
13789,
11,
198,
2,
10628,
362,
13,
16,
357,
57,
6489,
737,
220,
317,
4866,
286,
262,
1168,
6489,
815,
13873,
428,
6082,
13,
198,
2,
12680,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1,
5357,
15529,
5357,
11096,
7788,
32761,
6375,
8959,
49094,
198,
2,
34764,
11015,
15986,
13954,
48778,
1961,
11,
47783,
2751,
11,
21728,
5626,
40880,
5390,
11,
3336,
8959,
49094,
198,
2,
34764,
11015,
3963,
37977,
2538,
11,
34482,
3398,
1565,
5603,
25382,
11,
36218,
38604,
3268,
10913,
2751,
12529,
11,
5357,
376,
46144,
198,
2,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
198,
2,
198,
198,
37811,
20519,
40834,
62,
29289,
13,
3849,
32186,
8265,
198,
198,
1212,
8265,
3769,
477,
11685,
290,
25873,
3519,
20314,
13,
198,
37811,
198,
198,
6738,
27944,
13,
3849,
32186,
1330,
314,
18453,
198,
6738,
1976,
3008,
13,
11250,
3924,
13,
25747,
1330,
8060,
39317,
198,
6738,
1976,
3008,
13,
39994,
1330,
3460,
4163,
11,
26491,
11,
3494,
263,
198,
6738,
1976,
3008,
13,
39994,
13,
3849,
32186,
1330,
314,
10267,
9237,
11,
9515,
9237,
198,
6738,
1976,
3008,
13,
15952,
2611,
1330,
347,
970,
11,
18502,
11,
8255,
13949,
198,
198,
6738,
12972,
4105,
62,
7753,
13,
15952,
2611,
1330,
9220,
15878,
628,
198,
834,
15390,
18982,
834,
796,
705,
2118,
1356,
1522,
5239,
6,
198,
198,
6738,
12972,
4105,
62,
29289,
1330,
4808,
628,
198,
10725,
11879,
62,
18831,
1268,
62,
18973,
44,
40373,
796,
705,
9078,
4105,
13,
5124,
496,
42455,
6,
198,
7061,
6,
5990,
3411,
2672,
284,
6687,
14837,
4168,
7061,
6,
628,
198,
4871,
314,
33236,
7,
39317,
2599,
198,
220,
220,
220,
37227,
3855,
1351,
286,
17391,
290,
24711,
4133,
3917,
351,
1813,
4732,
37811,
628,
220,
220,
220,
4133,
796,
3460,
4163,
7203,
33236,
284,
2291,
4943,
198,
220,
220,
220,
37227,
29993,
540,
286,
4133,
284,
2291,
656,
2443,
628,
220,
220,
220,
383,
1266,
835,
284,
5412,
4133,
318,
284,
779,
13836,
12708,
284,
6338,
198,
220,
220,
220,
2291,
17391,
290,
24711,
15940,
13,
198,
220,
220,
220,
37227,
628,
198,
47,
56,
40834,
62,
33,
11159,
62,
18831,
1268,
62,
20608,
796,
705,
20519,
40834,
2779,
4168,
6,
628,
198,
4871,
314,
14881,
49925,
7,
40,
18453,
2599,
198,
220,
220,
220,
37227,
14881,
7679,
18364,
7071,
37811,
628,
198,
4871,
314,
8479,
49925,
7,
39317,
2599,
198,
220,
220,
220,
37227,
15022,
7679,
329,
5107,
4542,
37811,
628,
198,
4871,
6101,
88,
2390,
8634,
2794,
7,
9865,
589,
49925,
11,
314,
8479,
49925,
2599,
198,
220,
220,
220,
37227,
20519,
40834,
4277,
7679,
37811,
628,
198,
4871,
6101,
88,
2390,
12564,
2655,
49925,
7,
4061,
88,
2390,
8634,
2794,
2599,
198,
220,
220,
220,
37227,
20519,
40834,
2183,
2836,
7679,
628,
220,
220,
220,
770,
7679,
318,
262,
2779,
329,
477,
2183,
25873,
13,
198,
220,
220,
220,
4377,
7515,
815,
2148,
257,
804,
290,
1254,
329,
428,
7679,
13,
198,
220,
220,
220,
37227,
628,
198,
33,
11159,
62,
18831,
20913,
62,
53,
4503,
6242,
6239,
13153,
62,
20608,
796,
705,
9078,
4105,
62,
29289,
13,
82,
5331,
6,
198,
29904,
62,
18831,
20913,
62,
53,
4503,
6242,
6239,
13153,
62,
20608,
796,
705,
9078,
4105,
62,
29289,
13,
20407,
13,
7220,
6,
628,
198,
4871,
3180,
5116,
7,
39317,
2599,
198,
220,
220,
220,
37227,
42455,
7071,
628,
220,
220,
220,
3661,
1040,
389,
6823,
355,
20081,
15427,
428,
7071,
198,
220,
220,
220,
290,
16215,
2581,
7679,
355,
11688,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
6167,
796,
8255,
13949,
7,
7839,
2625,
42455,
1438,
4943,
628,
220,
220,
220,
7679,
796,
8060,
39317,
7,
7839,
2625,
18453,
7679,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
2625,
1212,
7071,
481,
307,
973,
284,
7621,
2581,
7679,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
17821,
8,
628,
198,
4871,
3180,
5116,
31813,
9237,
7,
40,
10267,
9237,
2599,
198,
220,
220,
220,
37227,
42455,
3421,
1785,
37811,
628,
198,
31,
320,
26908,
263,
7,
1797,
5116,
31813,
9237,
8,
198,
4871,
17847,
31813,
9237,
7,
10267,
9237,
2599,
198,
220,
220,
220,
37227,
18453,
4168,
3421,
1785,
37811,
628,
198,
4871,
3180,
74,
3732,
540,
7,
39317,
2599,
198,
220,
220,
220,
37227,
15739,
3732,
540,
2695,
7071,
37811,
628,
220,
220,
220,
460,
62,
259,
372,
270,
62,
20407,
796,
3460,
4163,
7203,
9787,
611,
4168,
460,
307,
19552,
4943,
628,
220,
220,
220,
16955,
62,
20407,
796,
347,
970,
7,
7839,
28,
62,
7203,
818,
372,
270,
2560,
4168,
1701,
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,
6764,
28,
62,
7203,
19926,
356,
32349,
2560,
4168,
1701,
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,
2672,
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,
4277,
28,
25101,
8,
628,
220,
220,
220,
20957,
62,
20407,
796,
347,
970,
7,
7839,
28,
62,
7203,
3987,
470,
16955,
2560,
4168,
1701,
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,
6764,
28,
62,
7203,
19926,
356,
20957,
2560,
4168,
1701,
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,
2672,
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,
4277,
28,
17821,
8,
628,
220,
220,
220,
4168,
62,
8000,
796,
3460,
4163,
7203,
42455,
2560,
357,
12001,
393,
19552,
8,
4943,
628,
220,
220,
220,
4168,
796,
18502,
7,
7839,
28,
62,
7203,
15022,
13028,
7505,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
28,
62,
7203,
1212,
7505,
481,
307,
973,
284,
5412,
13028,
1486,
357,
4033,
669,
290,
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,
220,
220,
366,
17566,
8,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25818,
28,
29904,
62,
18831,
20913,
62,
53,
4503,
6242,
6239,
13153,
62,
20608,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
8,
628,
220,
220,
220,
825,
651,
62,
20407,
7,
944,
11,
2581,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
4168,
12336,
428,
2695,
37811,
628,
220,
220,
220,
9290,
62,
4871,
796,
8255,
13949,
7,
7839,
28,
62,
7203,
29869,
1398,
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,
220,
220,
220,
220,
220,
220,
220,
6764,
28,
62,
7203,
49155,
1398,
1813,
284,
1388,
2443,
9290,
5002,
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,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
8,
628,
220,
220,
220,
2183,
62,
47720,
25473,
796,
9220,
15878,
7,
7839,
28,
62,
7203,
15022,
12186,
25473,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
28,
62,
7203,
1212,
2183,
12186,
25473,
481,
307,
973,
284,
20957,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
34213,
7505,
12186,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
8,
628,
220,
220,
220,
5464,
62,
47720,
25473,
796,
9220,
15878,
7,
7839,
28,
62,
7203,
17171,
12186,
25473,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
28,
62,
7203,
18716,
829,
5447,
656,
428,
12186,
25473,
481,
307,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15182,
656,
11532,
5464,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
8,
628,
220,
220,
220,
2183,
62,
12048,
796,
9220,
15878,
7,
7839,
28,
62,
7203,
15022,
4226,
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,
220,
220,
220,
220,
220,
220,
6764,
28,
62,
7203,
1212,
2183,
44575,
2393,
481,
307,
973,
284,
751,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
67,
28995,
3033,
284,
6163,
7505,
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,
220,
220,
220,
220,
220,
220,
2672,
28,
25101,
8,
628,
198,
4871,
314,
12982,
15739,
3732,
540,
7,
1797,
74,
3732,
540,
2599,
198,
220,
220,
220,
37227,
12982,
1341,
3732,
540,
2695,
7071,
37811,
198
] | 2.530978 | 1,840 |
from ..handler_request import get_resource_url
| [
6738,
11485,
30281,
62,
25927,
1330,
651,
62,
31092,
62,
6371,
628,
628,
198
] | 3.642857 | 14 |
from random import randint
itens = ('Pedra', 'Papel', 'Tesoura')
pc = randint(0, 2)
print('''Suas opções:
[ 0 ] PEDRA
[ 1 ] PAPEL
[ 2 ] TESOURA ''')
op = int(input('Qual é a sua jogada: '))
print('-=' * 11)
print('Computador jogou {}'.format(itens[pc]))
print('jogador jogou {}'.format(itens[op]))
print('-=' * 11)
if pc == 0:
if op == 0:
print('\033[33mEMPATE!')
elif op == 1:
print('\033[32mJOGADOR VENCE!')
elif op == 2:
print('\033[31mCOMPUTADOR VENCE!')
else:
print('\033[31mJOGADA INVÁLIDA!')
elif pc == 1:
if op == 0:
print('\033[31mCOMPUTADOR VENCE!')
elif op == 1:
print('\033[33mEMPATE!')
elif op == 2:
print('\033[32mJOGADOR VENCE!')
else:
print('\033[31mJOGADA INVÁLIDA!')
elif pc == 2:
if op == 0:
print('\033[32mJOGADOR VENCE!')
elif op == 1:
print('\033[31mCOMPUTADOR VENCE!')
elif op == 2:
print('\033[33mEMPATE!')
else:
print('\033[31mJOGADA INVÁLDA!')
else:
print('\033[31mNÚMERO INVÁLIDO! Tente novamente....')
| [
6738,
4738,
1330,
43720,
600,
198,
270,
641,
796,
19203,
43468,
430,
3256,
705,
47,
499,
417,
3256,
705,
36504,
280,
430,
11537,
198,
14751,
796,
43720,
600,
7,
15,
11,
362,
8,
198,
4798,
7,
7061,
6,
5606,
292,
1034,
16175,
127,
113,
274,
25,
220,
198,
58,
657,
2361,
350,
1961,
3861,
220,
198,
58,
352,
2361,
350,
2969,
3698,
198,
58,
362,
2361,
309,
1546,
2606,
3861,
705,
7061,
8,
198,
404,
796,
493,
7,
15414,
10786,
46181,
38251,
257,
424,
64,
48342,
4763,
25,
705,
4008,
198,
4798,
10786,
12,
11639,
1635,
1367,
8,
198,
4798,
10786,
5377,
1996,
7079,
48342,
280,
23884,
4458,
18982,
7,
270,
641,
58,
14751,
60,
4008,
198,
4798,
10786,
73,
519,
7079,
48342,
280,
23884,
4458,
18982,
7,
270,
641,
58,
404,
60,
4008,
198,
4798,
10786,
12,
11639,
1635,
1367,
8,
198,
361,
40653,
6624,
657,
25,
198,
220,
220,
220,
611,
1034,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2091,
76,
39494,
6158,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2624,
76,
41,
7730,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
9858,
30076,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
41,
7730,
26853,
34899,
127,
223,
43,
41957,
0,
11537,
198,
417,
361,
40653,
6624,
352,
25,
198,
220,
220,
220,
611,
1034,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
9858,
30076,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2091,
76,
39494,
6158,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2624,
76,
41,
7730,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
41,
7730,
26853,
34899,
127,
223,
43,
41957,
0,
11537,
198,
417,
361,
40653,
6624,
362,
25,
198,
220,
220,
220,
611,
1034,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2624,
76,
41,
7730,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
9858,
30076,
2885,
1581,
569,
18310,
0,
11537,
198,
220,
220,
220,
1288,
361,
1034,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
2091,
76,
39494,
6158,
0,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
41,
7730,
26853,
34899,
127,
223,
43,
5631,
0,
11537,
198,
17772,
25,
198,
220,
220,
220,
3601,
10786,
59,
44427,
58,
3132,
76,
45,
127,
248,
29296,
46,
34899,
127,
223,
43,
2389,
46,
0,
309,
21872,
645,
85,
3263,
68,
1106,
11537,
198
] | 1.888112 | 572 |
# -*- coding: utf-8 -*-
from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
5366,
13,
26791,
1330,
4818,
8079,
62,
26791,
355,
4818,
8079,
198,
6738,
5366,
13,
9945,
1330,
20613,
198,
6738,
5366,
13,
85,
17,
1330,
10011,
2611,
44,
4254,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198
] | 3.113208 | 53 |
import os
from dagster_examples.pyspark_pagerank.original import (
computeContribs,
execute_pagerank,
parseNeighbors,
)
from .util import checks_for_helper_functions
| [
11748,
28686,
198,
198,
6738,
48924,
1706,
62,
1069,
12629,
13,
79,
893,
20928,
62,
79,
3536,
962,
13,
14986,
1330,
357,
198,
220,
220,
220,
24061,
4264,
822,
82,
11,
198,
220,
220,
220,
12260,
62,
79,
3536,
962,
11,
198,
220,
220,
220,
21136,
46445,
32289,
11,
198,
8,
198,
198,
6738,
764,
22602,
1330,
8794,
62,
1640,
62,
2978,
525,
62,
12543,
2733,
628,
198
] | 2.676471 | 68 |
from __future__ import (division, absolute_import, print_function,
unicode_literals)
import sqlalchemy
import sqlalchemy.orm
from .gtfs_entities import gtfs_all, Feed, Base
class Schedule:
"""Represents the full database.
The schedule is the most important object in pygtfs. It represents the
entire dataset. Most of the properties come straight from the gtfs
reference. Two of them were renamed: calendar is called `services`, and
calendar_dates `service_exceptions`. One addition is the `feeds` table,
which is here to support more than one feed in a database.
Each of the properties is a list created upon access by sqlalchemy. Then,
each element of the list as attributes following the gtfs reference. In
addition, if they are related to another table, this can also be accessed
by attribute.
:param db_conection: Either a sqlalchemy database url or a filename to be used with sqlite.
"""
def drop_feed(self, feed_id):
""" Delete a feed from a database by feed id"""
# the following does not cascade unfortunatly.
# self.session.query(Feed).filter(Feed.feed_id == feed_id).delete()
feed = self.session.query(Feed).get(feed_id)
self.session.delete(feed)
self.session.commit()
for entity in (gtfs_all + [Feed]):
entity_doc = "A list of :py:class:`pygtfs.gtfs_entities.{0}` objects".format(entity.__name__)
entity_raw_doc = ("A :py:class:`sqlalchemy.orm.Query` object to fetch "
":py:class:`pygtfs.gtfs_entities.{0}` objects"
.format(entity.__name__))
entity_by_id_doc = "A list of :py:class:`pygtfs.gtfs_entities.{0}` objects with matching id".format(entity.__name__)
setattr(Schedule, entity._plural_name_, _meta_query_all(entity, entity_doc))
setattr(Schedule, entity._plural_name_ + "_query",
_meta_query_raw(entity, entity_raw_doc))
if hasattr(entity, 'id'):
setattr(Schedule, entity._plural_name_ + "_by_id", _meta_query_by_id(entity, entity_by_id_doc))
| [
6738,
11593,
37443,
834,
1330,
357,
21426,
11,
4112,
62,
11748,
11,
3601,
62,
8818,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28000,
1098,
62,
17201,
874,
8,
198,
198,
11748,
44161,
282,
26599,
198,
11748,
44161,
282,
26599,
13,
579,
198,
198,
6738,
764,
13655,
9501,
62,
298,
871,
1330,
308,
83,
9501,
62,
439,
11,
18272,
11,
7308,
628,
198,
4871,
19281,
25,
198,
220,
220,
220,
37227,
6207,
6629,
262,
1336,
6831,
13,
628,
220,
220,
220,
383,
7269,
318,
262,
749,
1593,
2134,
287,
12972,
13655,
9501,
13,
632,
6870,
262,
198,
220,
220,
220,
2104,
27039,
13,
4042,
286,
262,
6608,
1282,
3892,
422,
262,
308,
83,
9501,
198,
220,
220,
220,
4941,
13,
4930,
286,
606,
547,
25121,
25,
11845,
318,
1444,
4600,
30416,
47671,
290,
198,
220,
220,
220,
11845,
62,
19581,
4600,
15271,
62,
1069,
11755,
44646,
1881,
3090,
318,
262,
4600,
12363,
82,
63,
3084,
11,
198,
220,
220,
220,
543,
318,
994,
284,
1104,
517,
621,
530,
3745,
287,
257,
6831,
13,
628,
220,
220,
220,
5501,
286,
262,
6608,
318,
257,
1351,
2727,
2402,
1895,
416,
44161,
282,
26599,
13,
3244,
11,
198,
220,
220,
220,
1123,
5002,
286,
262,
1351,
355,
12608,
1708,
262,
308,
83,
9501,
4941,
13,
554,
198,
220,
220,
220,
3090,
11,
611,
484,
389,
3519,
284,
1194,
3084,
11,
428,
460,
635,
307,
17535,
198,
220,
220,
220,
416,
11688,
13,
628,
220,
220,
220,
1058,
17143,
20613,
62,
1102,
3213,
25,
15467,
257,
44161,
282,
26599,
6831,
19016,
393,
257,
29472,
284,
307,
973,
351,
44161,
578,
13,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4268,
62,
12363,
7,
944,
11,
3745,
62,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
23520,
257,
3745,
422,
257,
6831,
416,
3745,
4686,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
1708,
857,
407,
44847,
3684,
1922,
265,
306,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2116,
13,
29891,
13,
22766,
7,
18332,
737,
24455,
7,
18332,
13,
12363,
62,
312,
6624,
3745,
62,
312,
737,
33678,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3745,
796,
2116,
13,
29891,
13,
22766,
7,
18332,
737,
1136,
7,
12363,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
29891,
13,
33678,
7,
12363,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
29891,
13,
41509,
3419,
628,
628,
198,
198,
1640,
9312,
287,
357,
13655,
9501,
62,
439,
1343,
685,
18332,
60,
2599,
198,
220,
220,
220,
9312,
62,
15390,
796,
366,
32,
1351,
286,
1058,
9078,
25,
4871,
25,
63,
9078,
13655,
9501,
13,
13655,
9501,
62,
298,
871,
13,
90,
15,
92,
63,
5563,
1911,
18982,
7,
26858,
13,
834,
3672,
834,
8,
198,
220,
220,
220,
9312,
62,
1831,
62,
15390,
796,
5855,
32,
1058,
9078,
25,
4871,
25,
63,
25410,
282,
26599,
13,
579,
13,
20746,
63,
2134,
284,
21207,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25,
9078,
25,
4871,
25,
63,
9078,
13655,
9501,
13,
13655,
9501,
62,
298,
871,
13,
90,
15,
92,
63,
5563,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
18982,
7,
26858,
13,
834,
3672,
834,
4008,
198,
220,
220,
220,
9312,
62,
1525,
62,
312,
62,
15390,
796,
366,
32,
1351,
286,
1058,
9078,
25,
4871,
25,
63,
9078,
13655,
9501,
13,
13655,
9501,
62,
298,
871,
13,
90,
15,
92,
63,
5563,
351,
12336,
4686,
1911,
18982,
7,
26858,
13,
834,
3672,
834,
8,
198,
220,
220,
220,
900,
35226,
7,
27054,
5950,
11,
9312,
13557,
489,
1523,
62,
3672,
62,
11,
4808,
28961,
62,
22766,
62,
439,
7,
26858,
11,
9312,
62,
15390,
4008,
198,
220,
220,
220,
900,
35226,
7,
27054,
5950,
11,
9312,
13557,
489,
1523,
62,
3672,
62,
1343,
45434,
22766,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
28961,
62,
22766,
62,
1831,
7,
26858,
11,
9312,
62,
1831,
62,
15390,
4008,
198,
220,
220,
220,
611,
468,
35226,
7,
26858,
11,
705,
312,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
27054,
5950,
11,
9312,
13557,
489,
1523,
62,
3672,
62,
1343,
45434,
1525,
62,
312,
1600,
4808,
28961,
62,
22766,
62,
1525,
62,
312,
7,
26858,
11,
9312,
62,
1525,
62,
312,
62,
15390,
4008,
220,
220,
220,
220,
198
] | 2.663694 | 785 |
# Generated by Django 3.2.7 on 2021-10-11 12:43
from django.db import migrations
| [
2,
2980,
515,
416,
37770,
513,
13,
17,
13,
22,
319,
33448,
12,
940,
12,
1157,
1105,
25,
3559,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
628
] | 2.766667 | 30 |
################################################################################
# Copyright (C) 2019 drinfernoo #
# #
# This Program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2, or (at your option) #
# any later version. #
# #
# This Program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with XBMC; see the file COPYING. If not, write to #
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. #
# http://www.gnu.org/copyleft/gpl.html #
################################################################################
import xbmc
try: # Python 3
import zipfile
except ImportError: # Python 2
from resources.libs import zipfile
from resources.libs.common.config import CONFIG
| [
29113,
29113,
14468,
198,
2,
220,
220,
220,
220,
220,
15069,
357,
34,
8,
13130,
1553,
10745,
1142,
2238,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1303,
198,
2,
220,
770,
6118,
318,
1479,
3788,
26,
345,
460,
17678,
4163,
340,
290,
14,
273,
13096,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
340,
739,
262,
2846,
286,
262,
22961,
3611,
5094,
13789,
355,
3199,
416,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
262,
3232,
10442,
5693,
26,
2035,
2196,
362,
11,
393,
357,
265,
534,
3038,
8,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
597,
1568,
2196,
13,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
1303,
198,
2,
220,
770,
6118,
318,
9387,
287,
262,
2911,
326,
340,
481,
307,
4465,
11,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
475,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
34482,
3398,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
4091,
262,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
22961,
3611,
5094,
13789,
329,
517,
3307,
13,
220,
220,
220,
220,
220,
220,
220,
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,
1303,
198,
2,
220,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
3611,
5094,
13789,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
1863,
351,
1395,
33,
9655,
26,
766,
262,
2393,
27975,
45761,
13,
220,
1002,
407,
11,
3551,
284,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
262,
3232,
10442,
5693,
11,
718,
2425,
5674,
12761,
11,
14457,
11,
8779,
7816,
20219,
11,
4916,
13,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
2638,
1378,
2503,
13,
41791,
13,
2398,
14,
22163,
2349,
701,
14,
70,
489,
13,
6494,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
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,
198,
198,
11748,
2124,
20475,
66,
198,
198,
28311,
25,
220,
1303,
11361,
513,
198,
220,
220,
220,
1330,
19974,
7753,
198,
16341,
17267,
12331,
25,
220,
1303,
11361,
362,
198,
220,
220,
220,
422,
4133,
13,
8019,
82,
1330,
19974,
7753,
198,
198,
6738,
4133,
13,
8019,
82,
13,
11321,
13,
11250,
1330,
25626,
628,
628,
628,
628
] | 2.046308 | 799 |
#!/usr/bin/python3
# Example line: Step A must be finished before step L can begin.
edges = [(ord(x[1]) - ord('A'), ord(x[7]) - ord('A')) for x in
map(lambda x: x.split(), open('input.in').readlines())]
workers = 5
for e in edges:
print('{} → {}'.format(chr(ord('A') + e[0]),chr(ord('A') + e[1])))
graph = {}
# for l in range(ord('Z') - ord('A') + 1):
# graph[l] = Node(l)
for source, target in edges:
if source not in graph:
graph[source] = Node(source)
if target not in graph:
graph[target] = Node(target)
graph[source].insert_target(target, graph[target])
graph[target].insert_source(source, graph[source])
output = []
nodes_to_insert = []
graph_len = len(graph)
time_point = 0
workers = [ -1 for i in range(6)]
while(len(output) < graph_len):
# print(len(output))
# print(len(graph))
for w in range(len(workers)):
nodes_to_insert = []
for node in graph:
# print('{} : {} → {}'.format(node, len(graph[node].inputs), len(graph[node].outputs)))
# print('{}: {}'.format(node, graph[node]))
if len(graph[node].inputs) == 0:
nodes_to_insert.append(node)
#print(nodes_to_insert)
if len(nodes_to_insert) == 0:
print('Total time: {} .'.format(time_point))
break
nodes_to_insert.sort()
limit = min(len(workers), len(nodes_to_insert))
processed_nodes = nodes_to_insert[:limit]
for n in processed_nodes:
if n in graph:
if w != 0 and workers[w] == -1 and graph[n].busy == -1:
print('Assigning {} to worker {} at time point: {}'.format(chr(n+ord('A')), w, time_point))
graph[n].begin_time = time_point
graph[n].end_time = time_point + n + 1 + 60
workers[w] = n
graph[n].busy = w
if time_point == graph[n].end_time and graph[n].busy >= 0 and w == 0:
for k in graph[n].outputs:
out = graph[n].outputs[k]
del out.inputs[n]
print("Removing {} TP {}.".format(n, time_point))
output.append(n)
workers[graph[n].busy] = -1
graph[n].busy = -1
del graph[n]
time_point += 1
print('Total time: {} .'.format(time_point))
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
198,
2,
17934,
1627,
25,
5012,
317,
1276,
307,
5201,
878,
2239,
406,
460,
2221,
13,
198,
276,
3212,
796,
47527,
585,
7,
87,
58,
16,
12962,
532,
2760,
10786,
32,
33809,
2760,
7,
87,
58,
22,
12962,
532,
2760,
10786,
32,
6,
4008,
329,
2124,
287,
220,
198,
8899,
7,
50033,
2124,
25,
2124,
13,
35312,
22784,
1280,
10786,
15414,
13,
259,
27691,
961,
6615,
3419,
15437,
198,
22896,
796,
642,
198,
1640,
304,
287,
13015,
25,
198,
220,
220,
3601,
10786,
90,
92,
15168,
23884,
4458,
18982,
7,
354,
81,
7,
585,
10786,
32,
11537,
1343,
304,
58,
15,
46570,
354,
81,
7,
585,
10786,
32,
11537,
1343,
304,
58,
16,
60,
22305,
198,
198,
34960,
796,
23884,
198,
2,
329,
300,
287,
2837,
7,
585,
10786,
57,
11537,
532,
2760,
10786,
32,
11537,
1343,
352,
2599,
198,
2,
220,
220,
220,
220,
4823,
58,
75,
60,
796,
19081,
7,
75,
8,
198,
198,
1640,
2723,
11,
2496,
287,
13015,
25,
198,
220,
220,
220,
611,
2723,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
10459,
60,
796,
19081,
7,
10459,
8,
198,
220,
220,
220,
611,
2496,
407,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
16793,
60,
796,
19081,
7,
16793,
8,
198,
220,
220,
220,
4823,
58,
10459,
4083,
28463,
62,
16793,
7,
16793,
11,
4823,
58,
16793,
12962,
198,
220,
220,
220,
4823,
58,
16793,
4083,
28463,
62,
10459,
7,
10459,
11,
4823,
58,
10459,
12962,
198,
198,
22915,
796,
17635,
198,
77,
4147,
62,
1462,
62,
28463,
796,
17635,
198,
34960,
62,
11925,
796,
18896,
7,
34960,
8,
198,
2435,
62,
4122,
796,
657,
198,
22896,
796,
685,
532,
16,
329,
1312,
287,
2837,
7,
21,
15437,
198,
4514,
7,
11925,
7,
22915,
8,
1279,
4823,
62,
11925,
2599,
198,
2,
220,
220,
220,
3601,
7,
11925,
7,
22915,
4008,
198,
2,
220,
220,
220,
3601,
7,
11925,
7,
34960,
4008,
198,
220,
220,
220,
329,
266,
287,
2837,
7,
11925,
7,
22896,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
62,
1462,
62,
28463,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
10139,
287,
4823,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
90,
92,
1058,
23884,
15168,
23884,
4458,
18982,
7,
17440,
11,
18896,
7,
34960,
58,
17440,
4083,
15414,
82,
828,
18896,
7,
34960,
58,
17440,
4083,
22915,
82,
22305,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
90,
38362,
23884,
4458,
18982,
7,
17440,
11,
4823,
58,
17440,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
34960,
58,
17440,
4083,
15414,
82,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13760,
62,
1462,
62,
28463,
13,
33295,
7,
17440,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
77,
4147,
62,
1462,
62,
28463,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
77,
4147,
62,
1462,
62,
28463,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
14957,
640,
25,
23884,
764,
4458,
18982,
7,
2435,
62,
4122,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
62,
1462,
62,
28463,
13,
30619,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
4179,
796,
949,
7,
11925,
7,
22896,
828,
18896,
7,
77,
4147,
62,
1462,
62,
28463,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
13686,
62,
77,
4147,
796,
13760,
62,
1462,
62,
28463,
58,
25,
32374,
60,
198,
220,
220,
220,
220,
220,
220,
220,
329,
299,
287,
13686,
62,
77,
4147,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
299,
287,
4823,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
266,
14512,
657,
290,
3259,
58,
86,
60,
6624,
532,
16,
290,
4823,
58,
77,
4083,
10885,
88,
6624,
532,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
8021,
38944,
23884,
284,
8383,
23884,
379,
640,
966,
25,
23884,
4458,
18982,
7,
354,
81,
7,
77,
10,
585,
10786,
32,
11537,
828,
266,
11,
640,
62,
4122,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
77,
4083,
27471,
62,
2435,
796,
640,
62,
4122,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
77,
4083,
437,
62,
2435,
796,
640,
62,
4122,
220,
1343,
299,
1343,
352,
1343,
3126,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3259,
58,
86,
60,
796,
299,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
77,
4083,
10885,
88,
796,
266,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
640,
62,
4122,
6624,
4823,
58,
77,
4083,
437,
62,
2435,
290,
4823,
58,
77,
4083,
10885,
88,
18189,
657,
290,
266,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
287,
4823,
58,
77,
4083,
22915,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
796,
4823,
58,
77,
4083,
22915,
82,
58,
74,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
503,
13,
15414,
82,
58,
77,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
8413,
5165,
23884,
24525,
23884,
526,
13,
18982,
7,
77,
11,
640,
62,
4122,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
13,
33295,
7,
77,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3259,
58,
34960,
58,
77,
4083,
10885,
88,
60,
796,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
58,
77,
4083,
10885,
88,
796,
532,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
4823,
58,
77,
60,
628,
220,
220,
220,
640,
62,
4122,
15853,
352,
628,
198,
4798,
10786,
14957,
640,
25,
23884,
764,
4458,
18982,
7,
2435,
62,
4122,
4008,
198
] | 2.00416 | 1,202 |
# Generated by Django 3.0.2 on 2020-06-20 12:35
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
15,
13,
17,
319,
12131,
12,
3312,
12,
1238,
1105,
25,
2327,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
#!/usr/bin/env python3
import sys
import argparse
from collections import Counter
my_description = '''
Prune empty (or infrequent) slices from a tensor. With default options, this
script scans a tensor file and removes empty slices. Those slices are then
specified with "mode-X-gaps.map" files which map the old dimensionality into
the new one.
Infrequent items can also be pruned by specifying "--mode=MODE,FREQ"
options. For example, "--mode=3,5" will remove any slices in the third mode
with less than five non-zeros.
NOTE: since this process removes non-zeros, it can cause slices in other modes
to become infrequent or empty. If any non-zeros are pruned, this script should
be re-run until no additional empty/infrequent slices are present. Map files
should be merged with `merge_gap_keys.py` after each run, as they will be
overwritten if a mode is pruned additional times.
'''
parser = argparse.ArgumentParser(description=my_description,
formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('tensor', type=str, help='tensor to prune')
parser.add_argument('output', type=str, help='output tensor')
parser.add_argument('--mode', metavar='MODE,MIN-FREQ', action='append',
help='min. frequency for a mode (default: 1)')
args = parser.parse_args()
# First get the number of modes
nmodes = 0
with open(args.tensor, 'r') as fin:
line = fin.readline()
nmodes = len(line.split()[:-1]) # skip the val at the end
# Get user-specified minimum frequencies
mode_mins = [1] * nmodes
if args.mode:
for mode_tup in args.mode:
mode_tup = mode_tup.split(',')
m = int(mode_tup[0]) - 1
freq = int(mode_tup[1])
mode_mins[m] = freq
print('minimum frequencies: {}'.format(mode_mins))
def read_tensor(fname):
'''
Read each line of the tensor and return a list of indices and the value.
This function skips comments and blank lines.
'''
with open(fname, 'r') as fin:
for line in fin:
# skip comments and blank lines
if line[0] == '#' or line is '':
continue
# convert to integers and return list
line = line.strip().split()
yield [int(x) for x in line[:-1]], line[-1]
# Count appearances in each mode.
ind_counts = [Counter() for x in range(nmodes)]
for inds, val in read_tensor(args.tensor):
for m in range(nmodes):
ind_counts[m][inds[m]] += 1
# indmaps[m][i] gives the NEW index for original slice i
ind_maps = [dict() for m in range(nmodes)]
# Go over counts and prune infrequent slices
gapped_modes = []
for m in range(nmodes):
for index in ind_counts[m].keys():
if ind_counts[m][index] < mode_mins[m]:
ind_counts[m][index] = 0
# prune
keep = [x for x in sorted(ind_counts[m]) if ind_counts[m][x] >= mode_mins[m]]
gaplen = max(ind_counts[m]) - len(keep)
# Have we pruned any slices?
if gaplen > 0:
gapped_modes.append(m)
print('mode-{}: {} empty slices'.format(m+1, gaplen))
# assign new IDs and write map file
with open('mode-{}-gaps.map'.format(m+1), 'w') as mapfile:
for i in keep:
ind_maps[m][i] = len(ind_maps[m]) + 1
# invert map and write to file
print('{}'.format(i), file=mapfile)
if len(gapped_modes) == 0:
print('no empty slices')
sys.exit(0)
# Go back over the tensor and map indices
nnz = 0
pruned_nnz = 0
with open(args.output, 'w') as fout:
for inds, val in read_tensor(args.tensor):
pruned = False
# map indices and check for pruned nnz
for m in gapped_modes:
if inds[m] in ind_maps[m]:
inds[m] = ind_maps[m][inds[m]]
else:
pruned = True
pruned_nnz += 1
# write non-zero
if not pruned:
print('{} {}'.format(' '.join(map(str, inds)), val), file=fout)
nnz += 1
print('pruned nnz: {:,d} new nnz: {:,d}'.format(pruned_nnz, nnz))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
11748,
25064,
198,
198,
11748,
1822,
29572,
198,
6738,
17268,
1330,
15034,
628,
198,
1820,
62,
11213,
796,
705,
7061,
198,
6836,
1726,
6565,
357,
273,
1167,
46018,
8,
24314,
422,
257,
11192,
273,
13,
2080,
4277,
3689,
11,
428,
198,
12048,
23824,
257,
11192,
273,
2393,
290,
20694,
6565,
24314,
13,
5845,
24314,
389,
788,
198,
23599,
351,
366,
14171,
12,
55,
12,
70,
1686,
13,
8899,
1,
3696,
543,
3975,
262,
1468,
15793,
1483,
656,
198,
1169,
649,
530,
13,
198,
198,
18943,
46018,
3709,
460,
635,
307,
778,
40881,
416,
31577,
366,
438,
14171,
28,
49058,
11,
37,
2200,
48,
1,
198,
25811,
13,
1114,
1672,
11,
366,
438,
14171,
28,
18,
11,
20,
1,
481,
4781,
597,
24314,
287,
262,
2368,
4235,
198,
4480,
1342,
621,
1936,
1729,
12,
9107,
418,
13,
198,
198,
16580,
25,
1201,
428,
1429,
20694,
1729,
12,
9107,
418,
11,
340,
460,
2728,
24314,
287,
584,
12881,
198,
1462,
1716,
1167,
46018,
393,
6565,
13,
1002,
597,
1729,
12,
9107,
418,
389,
778,
40881,
11,
428,
4226,
815,
198,
1350,
302,
12,
5143,
1566,
645,
3224,
6565,
14,
10745,
46018,
24314,
389,
1944,
13,
220,
9347,
3696,
198,
21754,
307,
23791,
351,
4600,
647,
469,
62,
43554,
62,
13083,
13,
9078,
63,
706,
1123,
1057,
11,
355,
484,
481,
307,
198,
2502,
15266,
611,
257,
4235,
318,
778,
40881,
3224,
1661,
13,
198,
7061,
6,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
28,
1820,
62,
11213,
11,
198,
220,
220,
220,
1296,
1436,
62,
4871,
28,
853,
29572,
13,
27369,
8206,
22087,
8479,
1436,
8,
198,
198,
48610,
13,
2860,
62,
49140,
10786,
83,
22854,
3256,
2099,
28,
2536,
11,
1037,
11639,
83,
22854,
284,
778,
1726,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
22915,
3256,
2099,
28,
2536,
11,
1037,
11639,
22915,
11192,
273,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
438,
14171,
3256,
1138,
615,
283,
11639,
49058,
11,
23678,
12,
37,
2200,
48,
3256,
2223,
11639,
33295,
3256,
198,
220,
220,
220,
1037,
11639,
1084,
13,
8373,
329,
257,
4235,
357,
12286,
25,
352,
8,
11537,
198,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
2,
3274,
651,
262,
1271,
286,
12881,
198,
21533,
4147,
796,
657,
198,
4480,
1280,
7,
22046,
13,
83,
22854,
11,
705,
81,
11537,
355,
957,
25,
198,
220,
1627,
796,
957,
13,
961,
1370,
3419,
198,
220,
28642,
4147,
796,
18896,
7,
1370,
13,
35312,
3419,
58,
21912,
16,
12962,
1303,
14267,
262,
1188,
379,
262,
886,
628,
198,
2,
3497,
2836,
12,
23599,
5288,
19998,
198,
14171,
62,
42951,
796,
685,
16,
60,
1635,
28642,
4147,
198,
361,
26498,
13,
14171,
25,
198,
220,
329,
4235,
62,
83,
929,
287,
26498,
13,
14171,
25,
198,
220,
220,
220,
4235,
62,
83,
929,
796,
4235,
62,
83,
929,
13,
35312,
7,
3256,
11537,
198,
220,
220,
220,
285,
796,
493,
7,
14171,
62,
83,
929,
58,
15,
12962,
532,
352,
198,
220,
220,
220,
2030,
80,
796,
493,
7,
14171,
62,
83,
929,
58,
16,
12962,
198,
220,
220,
220,
4235,
62,
42951,
58,
76,
60,
796,
2030,
80,
198,
198,
4798,
10786,
39504,
19998,
25,
23884,
4458,
18982,
7,
14171,
62,
42951,
4008,
198,
198,
4299,
1100,
62,
83,
22854,
7,
69,
3672,
2599,
198,
220,
705,
7061,
198,
220,
220,
220,
4149,
1123,
1627,
286,
262,
11192,
273,
290,
1441,
257,
1351,
286,
36525,
290,
262,
1988,
13,
198,
220,
220,
220,
770,
2163,
1341,
2419,
3651,
290,
9178,
3951,
13,
198,
220,
705,
7061,
198,
220,
351,
1280,
7,
69,
3672,
11,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
329,
1627,
287,
957,
25,
198,
220,
220,
220,
220,
220,
1303,
14267,
3651,
290,
9178,
3951,
198,
220,
220,
220,
220,
220,
611,
1627,
58,
15,
60,
6624,
705,
2,
6,
393,
1627,
318,
10148,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
1303,
10385,
284,
37014,
290,
1441,
1351,
198,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
36311,
22446,
35312,
3419,
198,
220,
220,
220,
220,
220,
7800,
685,
600,
7,
87,
8,
329,
2124,
287,
1627,
58,
21912,
16,
60,
4357,
1627,
58,
12,
16,
60,
198,
220,
220,
220,
220,
628,
198,
2,
2764,
11057,
287,
1123,
4235,
13,
198,
521,
62,
9127,
82,
796,
685,
31694,
3419,
329,
2124,
287,
2837,
7,
21533,
4147,
15437,
198,
1640,
773,
82,
11,
1188,
287,
1100,
62,
83,
22854,
7,
22046,
13,
83,
22854,
2599,
198,
220,
329,
285,
287,
2837,
7,
21533,
4147,
2599,
198,
220,
220,
220,
773,
62,
9127,
82,
58,
76,
7131,
521,
82,
58,
76,
11907,
15853,
352,
628,
198,
2,
773,
31803,
58,
76,
7131,
72,
60,
3607,
262,
12682,
6376,
329,
2656,
16416,
1312,
198,
521,
62,
31803,
796,
685,
11600,
3419,
329,
285,
287,
2837,
7,
21533,
4147,
15437,
198,
198,
2,
1514,
625,
9853,
290,
778,
1726,
1167,
46018,
24314,
198,
70,
6320,
62,
76,
4147,
796,
17635,
198,
1640,
285,
287,
2837,
7,
21533,
4147,
2599,
198,
220,
329,
6376,
287,
773,
62,
9127,
82,
58,
76,
4083,
13083,
33529,
198,
220,
220,
220,
611,
773,
62,
9127,
82,
58,
76,
7131,
9630,
60,
1279,
4235,
62,
42951,
58,
76,
5974,
198,
220,
220,
220,
220,
220,
773,
62,
9127,
82,
58,
76,
7131,
9630,
60,
796,
657,
628,
220,
1303,
778,
1726,
198,
220,
1394,
796,
685,
87,
329,
2124,
287,
23243,
7,
521,
62,
9127,
82,
58,
76,
12962,
611,
773,
62,
9127,
82,
58,
76,
7131,
87,
60,
18189,
4235,
62,
42951,
58,
76,
11907,
628,
220,
31986,
489,
268,
796,
3509,
7,
521,
62,
9127,
82,
58,
76,
12962,
532,
18896,
7,
14894,
8,
198,
220,
1303,
8192,
356,
778,
40881,
597,
24314,
30,
198,
220,
611,
31986,
489,
268,
1875,
657,
25,
198,
220,
220,
220,
308,
6320,
62,
76,
4147,
13,
33295,
7,
76,
8,
198,
220,
220,
220,
3601,
10786,
14171,
12,
90,
38362,
23884,
6565,
24314,
4458,
18982,
7,
76,
10,
16,
11,
31986,
489,
268,
4008,
628,
220,
220,
220,
1303,
8333,
649,
32373,
290,
3551,
3975,
2393,
198,
220,
220,
220,
351,
1280,
10786,
14171,
12,
90,
92,
12,
70,
1686,
13,
8899,
4458,
18982,
7,
76,
10,
16,
828,
705,
86,
11537,
355,
3975,
7753,
25,
198,
220,
220,
220,
220,
220,
329,
1312,
287,
1394,
25,
198,
220,
220,
220,
220,
220,
220,
220,
773,
62,
31803,
58,
76,
7131,
72,
60,
796,
18896,
7,
521,
62,
31803,
58,
76,
12962,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
1851,
3975,
290,
3551,
284,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
90,
92,
4458,
18982,
7,
72,
828,
2393,
28,
8899,
7753,
8,
628,
198,
198,
361,
18896,
7,
70,
6320,
62,
76,
4147,
8,
6624,
657,
25,
198,
220,
3601,
10786,
3919,
6565,
24314,
11537,
198,
220,
25064,
13,
37023,
7,
15,
8,
628,
198,
2,
1514,
736,
625,
262,
11192,
273,
290,
3975,
36525,
198,
20471,
89,
796,
657,
198,
1050,
40881,
62,
20471,
89,
796,
657,
198,
4480,
1280,
7,
22046,
13,
22915,
11,
705,
86,
11537,
355,
277,
448,
25,
198,
220,
329,
773,
82,
11,
1188,
287,
1100,
62,
83,
22854,
7,
22046,
13,
83,
22854,
2599,
198,
220,
220,
220,
778,
40881,
796,
10352,
628,
220,
220,
220,
1303,
3975,
36525,
290,
2198,
329,
778,
40881,
299,
27305,
198,
220,
220,
220,
329,
285,
287,
308,
6320,
62,
76,
4147,
25,
198,
220,
220,
220,
220,
220,
611,
773,
82,
58,
76,
60,
287,
773,
62,
31803,
58,
76,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
773,
82,
58,
76,
60,
796,
773,
62,
31803,
58,
76,
7131,
521,
82,
58,
76,
11907,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
778,
40881,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
778,
40881,
62,
20471,
89,
15853,
352,
628,
220,
220,
220,
1303,
3551,
1729,
12,
22570,
198,
220,
220,
220,
611,
407,
778,
40881,
25,
198,
220,
220,
220,
220,
220,
3601,
10786,
90,
92,
23884,
4458,
18982,
10786,
45302,
22179,
7,
8899,
7,
2536,
11,
773,
82,
36911,
1188,
828,
2393,
28,
69,
448,
8,
198,
220,
220,
220,
220,
220,
299,
27305,
15853,
352,
198,
198,
4798,
10786,
1050,
40881,
299,
27305,
25,
1391,
45299,
67,
92,
649,
299,
27305,
25,
1391,
45299,
67,
92,
4458,
18982,
7,
1050,
40881,
62,
20471,
89,
11,
299,
27305,
4008,
628
] | 2.638062 | 1,445 |
"""Clean Code in Python - Chater 4, The SOLID Principles
> Liskov's Substitution Principle (LSP)
Detecting violatinos os LSP through tools (mypy, pylint, etc.)
"""
| [
37811,
32657,
6127,
287,
11361,
532,
609,
729,
604,
11,
383,
36817,
2389,
34200,
198,
198,
29,
406,
1984,
709,
338,
24944,
2738,
40921,
357,
43,
4303,
8,
198,
198,
47504,
278,
1935,
10680,
418,
28686,
406,
4303,
832,
4899,
357,
1820,
9078,
11,
279,
2645,
600,
11,
3503,
2014,
198,
37811,
628,
628
] | 3.12963 | 54 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.