content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
import torch
import numpy as np
import torch.nn.functional as F
import cv2
if __name__ == '__main__':
from bbox_model.kpda_parser import KPDA
import cv2
from bbox_model.config import Config
import numpy as np
config = Config('whale')
# db_path = '/home/storage/lsy/fashion/FashionAI_Keypoint_Detection/train/'
kpda = KPDA(config)
img_path = kpda.get_image_path(0)
kpts = kpda.get_keypoints(0)
kpts = torch.from_numpy(kpts)
img = cv2.imread(img_path,1)
image = np.zeros([2048, 2048, 3])
image[:img.shape[0], :img.shape[1], :] = img
cv2.imwrite('img.jpg', image)
ke = KeypointEncoder()
heatmaps, _ = ke.encode(kpts, image.shape[:2], config.hm_stride, config.hm_sigma, config.hm_sigma)
for i, heatmap in enumerate(heatmaps):
heatmap = np.expand_dims(heatmap.numpy() * 255, 2)
cv2.imwrite('map%d.jpg' % i, heatmap ) | [
11748,
28034,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
11748,
269,
85,
17,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
422,
275,
3524,
62,
19849,
13,
74,
79,
6814,
62,
48610,
1330,
45814,
5631,
198,
220,
220,
220,
1330,
269,
85,
17,
198,
220,
220,
220,
422,
275,
3524,
62,
19849,
13,
11250,
1330,
17056,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
4566,
796,
17056,
10786,
1929,
1000,
11537,
198,
220,
220,
220,
1303,
20613,
62,
6978,
796,
31051,
11195,
14,
35350,
14,
75,
1837,
14,
25265,
14,
37,
5880,
20185,
62,
9218,
4122,
62,
11242,
3213,
14,
27432,
14,
6,
198,
220,
220,
220,
479,
79,
6814,
796,
45814,
5631,
7,
11250,
8,
198,
220,
220,
220,
33705,
62,
6978,
796,
479,
79,
6814,
13,
1136,
62,
9060,
62,
6978,
7,
15,
8,
198,
220,
220,
220,
479,
457,
82,
796,
479,
79,
6814,
13,
1136,
62,
2539,
13033,
7,
15,
8,
198,
220,
220,
220,
479,
457,
82,
796,
28034,
13,
6738,
62,
77,
32152,
7,
74,
457,
82,
8,
198,
220,
220,
220,
33705,
796,
269,
85,
17,
13,
320,
961,
7,
9600,
62,
6978,
11,
16,
8,
198,
220,
220,
220,
2939,
796,
45941,
13,
9107,
418,
26933,
1238,
2780,
11,
36117,
11,
513,
12962,
198,
220,
220,
220,
2939,
58,
25,
9600,
13,
43358,
58,
15,
4357,
1058,
9600,
13,
43358,
58,
16,
4357,
1058,
60,
796,
33705,
628,
220,
220,
220,
269,
85,
17,
13,
320,
13564,
10786,
9600,
13,
9479,
3256,
2939,
8,
198,
220,
220,
220,
885,
796,
7383,
4122,
27195,
12342,
3419,
198,
220,
220,
220,
4894,
31803,
11,
4808,
796,
885,
13,
268,
8189,
7,
74,
457,
82,
11,
2939,
13,
43358,
58,
25,
17,
4357,
4566,
13,
23940,
62,
2536,
485,
11,
4566,
13,
23940,
62,
82,
13495,
11,
4566,
13,
23940,
62,
82,
13495,
8,
198,
220,
220,
220,
329,
1312,
11,
4894,
8899,
287,
27056,
378,
7,
25080,
31803,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4894,
8899,
796,
45941,
13,
11201,
392,
62,
67,
12078,
7,
25080,
8899,
13,
77,
32152,
3419,
1635,
14280,
11,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
320,
13564,
10786,
8899,
4,
67,
13,
9479,
6,
4064,
1312,
11,
4894,
8899,
1267
] | 2.219753 | 405 |
#if 0 /*
# -----------------------------------------------------------------------
# vcdinfo.py - parse vcd track informations
# -----------------------------------------------------------------------
# $Id: vcdinfo.py,v 1.8 2004/06/25 13:20:35 dischi Exp $
#
# $Log: vcdinfo.py,v $
# Revision 1.8 2004/06/25 13:20:35 dischi
# FreeBSD patches
#
# Revision 1.7 2003/06/30 13:17:19 the_krow
# o Refactored mediainfo into factory, synchronizedobject
# o Parsers now register directly at mmpython not at mmpython.mediainfo
# o use mmpython.Factory() instead of mmpython.mediainfo.get_singleton()
# o Bugfix in PNG parser
# o Renamed disc.AudioInfo into disc.AudioDiscInfo
# o Renamed disc.DataInfo into disc.DataDiscInfo
#
# Revision 1.6 2003/06/10 22:11:36 dischi
# some fixes
#
# Revision 1.5 2003/06/09 12:47:53 dischi
# more track info
#
#
# -----------------------------------------------------------------------
# Copyright (C) 2003 Thomas Schueppel, Dirk Meyer
#
# 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 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 MER-
# CHANTABILITY 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, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ----------------------------------------------------------------------- */
#endif
import mmpython
from mmpython import mediainfo
from discinfo import DiscInfo
import cdrom
mmpython.registertype( 'video/vcd', mediainfo.EXTENSION_DEVICE, mediainfo.TYPE_AV, VCDInfo )
| [
2,
361,
657,
11900,
198,
2,
16529,
26866,
198,
2,
410,
10210,
10951,
13,
9078,
532,
21136,
410,
10210,
2610,
4175,
602,
198,
2,
16529,
26866,
198,
2,
720,
7390,
25,
410,
10210,
10951,
13,
9078,
11,
85,
352,
13,
23,
5472,
14,
3312,
14,
1495,
1511,
25,
1238,
25,
2327,
595,
11072,
5518,
720,
198,
2,
198,
2,
720,
11187,
25,
410,
10210,
10951,
13,
9078,
11,
85,
720,
198,
2,
46604,
352,
13,
23,
220,
5472,
14,
3312,
14,
1495,
1511,
25,
1238,
25,
2327,
220,
595,
11072,
198,
2,
35841,
16082,
198,
2,
198,
2,
46604,
352,
13,
22,
220,
5816,
14,
3312,
14,
1270,
1511,
25,
1558,
25,
1129,
220,
262,
62,
74,
808,
198,
2,
267,
6524,
529,
1850,
16957,
391,
6513,
656,
8860,
11,
47192,
15252,
198,
2,
267,
23042,
364,
783,
7881,
3264,
379,
285,
3149,
7535,
407,
379,
285,
3149,
7535,
13,
2379,
391,
6513,
198,
2,
267,
779,
285,
3149,
7535,
13,
22810,
3419,
2427,
286,
285,
3149,
7535,
13,
2379,
391,
6513,
13,
1136,
62,
12215,
10565,
3419,
198,
2,
267,
15217,
13049,
287,
36182,
30751,
198,
2,
267,
7152,
2434,
1221,
13,
21206,
12360,
656,
1221,
13,
21206,
15642,
12360,
198,
2,
267,
7152,
2434,
1221,
13,
6601,
12360,
656,
1221,
13,
6601,
15642,
12360,
198,
2,
198,
2,
46604,
352,
13,
21,
220,
5816,
14,
3312,
14,
940,
2534,
25,
1157,
25,
2623,
220,
595,
11072,
198,
2,
617,
13040,
198,
2,
198,
2,
46604,
352,
13,
20,
220,
5816,
14,
3312,
14,
2931,
1105,
25,
2857,
25,
4310,
220,
595,
11072,
198,
2,
517,
2610,
7508,
198,
2,
198,
2,
198,
2,
16529,
26866,
198,
2,
15069,
357,
34,
8,
5816,
5658,
3059,
518,
46357,
11,
42761,
23975,
198,
2,
198,
2,
770,
1430,
318,
1479,
3788,
26,
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,
26,
2035,
2196,
362,
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,
475,
198,
2,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
34482,
12,
198,
2,
5870,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
4091,
262,
22961,
3611,
198,
2,
5094,
13789,
329,
517,
3307,
13,
198,
2,
198,
2,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
3611,
5094,
13789,
1863,
198,
2,
351,
428,
1430,
26,
611,
407,
11,
3551,
284,
262,
3232,
10442,
5693,
11,
3457,
1539,
198,
2,
7863,
10857,
8474,
11,
26264,
25508,
11,
6182,
11,
8779,
7816,
16243,
12,
12952,
22,
4916,
198,
2,
198,
2,
16529,
26866,
9466,
198,
2,
32088,
198,
198,
11748,
285,
3149,
7535,
198,
6738,
285,
3149,
7535,
1330,
16957,
391,
6513,
198,
6738,
1221,
10951,
1330,
8444,
12360,
198,
11748,
22927,
398,
628,
220,
220,
220,
220,
198,
3020,
29412,
13,
30238,
4906,
7,
705,
15588,
14,
85,
10210,
3256,
16957,
391,
6513,
13,
13918,
16938,
2849,
62,
7206,
27389,
11,
16957,
391,
6513,
13,
25216,
62,
10116,
11,
569,
8610,
12360,
1267,
198
] | 3.582721 | 544 |
import os
from typing import List
from fastapi import FastAPI, File, UploadFile
from fastapi.responses import HTMLResponse
from fastapi import Request
from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
app = FastAPI()
app.mount("/static", StaticFiles(directory="static"), name="static")
templates = Jinja2Templates(directory="templates")
UPLOAD_DIR = "uploaded"
os.makedirs(UPLOAD_DIR, exist_ok=True)
from fastapi_file_helper import save_upload_file
@app.post("/uploadfiles/")
@app.get("/")
| [
11748,
28686,
198,
6738,
19720,
1330,
7343,
198,
198,
6738,
3049,
15042,
1330,
12549,
17614,
11,
9220,
11,
36803,
8979,
198,
6738,
3049,
15042,
13,
16733,
274,
1330,
11532,
31077,
198,
198,
6738,
3049,
15042,
1330,
19390,
198,
6738,
3049,
15042,
13,
12708,
16624,
1330,
36125,
25876,
198,
6738,
3049,
15042,
13,
11498,
489,
803,
1330,
17297,
6592,
17,
12966,
17041,
628,
198,
1324,
796,
12549,
17614,
3419,
198,
198,
1324,
13,
14948,
7203,
14,
12708,
1600,
36125,
25876,
7,
34945,
2625,
12708,
12340,
1438,
2625,
12708,
4943,
198,
198,
11498,
17041,
796,
17297,
6592,
17,
12966,
17041,
7,
34945,
2625,
11498,
17041,
4943,
628,
198,
52,
6489,
41048,
62,
34720,
796,
366,
25850,
276,
1,
198,
418,
13,
76,
4335,
17062,
7,
52,
6489,
41048,
62,
34720,
11,
2152,
62,
482,
28,
17821,
8,
198,
6738,
3049,
15042,
62,
7753,
62,
2978,
525,
1330,
3613,
62,
25850,
62,
7753,
628,
198,
31,
1324,
13,
7353,
7203,
14,
25850,
16624,
14,
4943,
628,
198,
31,
1324,
13,
1136,
7203,
14,
4943,
198
] | 3.156977 | 172 |
import certifi
import urllib3
import asyncio
import aiohttp
import ipaddress
import time
from connection import Connection
from bencode import Parser
from torrent import Torrent
from block import Piece, Block
if __name__ == "__main__":
path = './test/ubuntu-20.10-desktop-amd64.iso.torrent'
torrent = Torrent(path)
tracker = Tracker(torrent)
loop = asyncio.get_event_loop()
task = loop.create_task(tracker.download())
loop.run_until_complete(task)
| [
11748,
5051,
22238,
198,
11748,
2956,
297,
571,
18,
198,
11748,
30351,
952,
198,
11748,
257,
952,
4023,
198,
11748,
20966,
21975,
198,
11748,
640,
198,
6738,
4637,
1330,
26923,
198,
6738,
1888,
8189,
1330,
23042,
263,
198,
6738,
24458,
1330,
43399,
198,
6738,
2512,
1330,
27053,
11,
9726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
3108,
796,
705,
19571,
9288,
14,
32230,
12,
1238,
13,
940,
12,
41375,
12,
28745,
2414,
13,
26786,
13,
13165,
1156,
6,
198,
220,
220,
220,
24458,
796,
43399,
7,
6978,
8,
198,
220,
220,
220,
30013,
796,
26885,
7,
13165,
1156,
8,
628,
220,
220,
220,
9052,
796,
30351,
952,
13,
1136,
62,
15596,
62,
26268,
3419,
198,
220,
220,
220,
4876,
796,
9052,
13,
17953,
62,
35943,
7,
2213,
10735,
13,
15002,
28955,
628,
220,
220,
220,
9052,
13,
5143,
62,
28446,
62,
20751,
7,
35943,
8,
198,
220,
220,
220
] | 2.927711 | 166 |
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.tools import pycompat
from odoo.tools import mute_logger
from odoo.tools.translate import quote, unquote, xml_translate, html_translate
from odoo.tests.common import TransactionCase, BaseCase
from psycopg2 import IntegrityError
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
2142,
286,
10529,
2238,
13,
4091,
38559,
24290,
2393,
329,
1336,
6634,
290,
15665,
3307,
13,
198,
6738,
16298,
2238,
13,
31391,
1330,
12972,
5589,
265,
198,
6738,
16298,
2238,
13,
31391,
1330,
38723,
62,
6404,
1362,
198,
6738,
16298,
2238,
13,
31391,
13,
7645,
17660,
1330,
9577,
11,
555,
22708,
11,
35555,
62,
7645,
17660,
11,
27711,
62,
7645,
17660,
198,
6738,
16298,
2238,
13,
41989,
13,
11321,
1330,
45389,
20448,
11,
7308,
20448,
198,
6738,
17331,
22163,
70,
17,
1330,
39348,
12331,
628,
628
] | 3.366337 | 101 |
import copy
import typing
from slender import List
KT = typing.TypeVar('KT')
VT = typing.TypeVar('VT')
| [
198,
11748,
4866,
198,
11748,
19720,
198,
198,
6738,
36808,
1330,
7343,
198,
198,
42176,
796,
19720,
13,
6030,
19852,
10786,
42176,
11537,
198,
36392,
796,
19720,
13,
6030,
19852,
10786,
36392,
11537,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628
] | 2.537037 | 54 |
# uncompyle6 version 3.2.0
# Python bytecode 2.4 (62061)
# Decompiled from: Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)]
# Embedded file name: pirates.ship.ShipGlobals
from pandac.PandaModules import *
from direct.showbase.PythonUtil import Enum
from pirates.uberdog.UberDogGlobals import *
from pirates.uberdog.UberDogGlobals import InventoryType
from direct.actor import Actor
from direct.task import Task
from pirates.inventory import ItemGlobals
import random, copy, math
FORMATION_ARROW = 0
FORMATION_CIRCLE = 1
FORMATION_LINE = 2
FORMATION_WALL = 3
FORMATION_DEFAULT = FORMATION_ARROW
FORMATION_ICON_CHEST = 0
FORMATION_ICON_SKULL = 1
FORMATION_AVOID_SPHERE_RADIUS = 100
AI_SHIP = 0
PLAYER_SHIP = 1
CANNONDEFENSE_SHIP = 2
FISHING_SHIP = 3
SEIZEABLE_SHIP = 4
SEIZEABLE_SHIP_TIME = 60 * 30
SHIP_MOVIE_BOARD = 0
SHIP_MOVIE_UNBOARD = 1
SHIP_BOARD_FROM_SWIM = 0
SHIP_BOARD_FROM_WALK = 1
ARMOR_REAR = 0
ARMOR_LEFT = -1
ARMOR_RIGHT = 1
AVOID_SPHERE_RADIUS = 100
SUNK_REPAIR_COST_MULTIPLIER = 2
SHIP_REAR_DAMAGE_BONUS = 1.25
MAST_LOGO_PLACEMENT_LIST = [
Logos.Bounty_Hunter_Wasp, Logos.Bounty_Hunter_Spider]
INTERCEPTORL1 = 1
INTERCEPTORL2 = 2
INTERCEPTORL3 = 3
MERCHANTL1 = 11
MERCHANTL2 = 12
MERCHANTL3 = 13
WARSHIPL1 = 21
WARSHIPL2 = 22
WARSHIPL3 = 23
WARSHIPCOM = 24
BRIGL1 = 25
BRIGL2 = 26
BRIGL3 = 27
SHIP_OF_THE_LINE = 30
HMS_VICTORY = 31
HMS_NEWCASTLE = 32
HMS_INVINCIBLE = 33
EITC_INTREPID = 34
EITC_CONQUERER = 35
EITC_LEVIATHAN = 36
EL_PATRONS_SHIP = 37
P_SKEL_PHANTOM = 38
P_SKEL_REVENANT = 39
P_SKEL_CEREBUS = 40
P_NAVY_KINGFISHER = 41
P_EITC_WARLORD = 42
NAVY_KRAKEN_HUNTER = 43
BLACK_PEARL = 50
DAUNTLESS = 51
FLYING_DUTCHMAN = 52
GOLIATH = 53
JOLLY_ROGER = 54
QUEEN_ANNES_REVENGE = 55
SKEL_WARSHIPL3 = 60
SKEL_INTERCEPTORL3 = 61
NAVY_FERRET = 80
NAVY_GREYHOUND = 81
NAVY_KINGFISHER = 82
NAVY_PREDATOR = 83
NAVY_BULWARK = 84
NAVY_VANGUARD = 85
NAVY_MONARCH = 86
NAVY_COLOSSUS = 87
NAVY_PANTHER = 88
NAVY_CENTURION = 89
NAVY_MAN_O_WAR = 90
NAVY_DREADNOUGHT = 91
NAVY_ELITE = 92
NAVY_BASTION = 93
EITC_SEA_VIPER = 100
EITC_BLOODHOUND = 101
EITC_BARRACUDA = 102
EITC_CORSAIR = 103
EITC_SENTINEL = 104
EITC_IRONWALL = 105
EITC_OGRE = 106
EITC_BEHEMOTH = 107
EITC_CORVETTE = 108
EITC_MARAUDER = 109
EITC_WARLORD = 110
EITC_JUGGERNAUT = 111
EITC_TYRANT = 112
SKEL_PHANTOM = 120
SKEL_REVENANT = 121
SKEL_STORM_REAPER = 122
SKEL_BLACK_HARBINGER = 123
SKEL_DEATH_OMEN = 124
SKEL_SHADOW_CROW_FR = 125
SKEL_HELLHOUND_FR = 126
SKEL_BLOOD_SCOURGE_FR = 127
SKEL_SHADOW_CROW_SP = 128
SKEL_HELLHOUND_SP = 129
SKEL_BLOOD_SCOURGE_SP = 130
HUNTER_VENGEANCE = 160
HUNTER_CUTTER_SHARK = 161
HUNTER_FLYING_STORM = 162
HUNTER_KILLYADED = 163
HUNTER_RED_DERVISH = 164
HUNTER_CENTURY_HAWK = 165
HUNTER_SCORNED_SIREN = 166
HUNTER_TALLYHO = 180
HUNTER_BATTLEROYALE = 181
HUNTER_EN_GARDE = 182
STUMPY_SHIP = 255
PLAYER_SHIPS = (
INTERCEPTORL1, INTERCEPTORL2, INTERCEPTORL3, MERCHANTL1, MERCHANTL2, MERCHANTL3, WARSHIPL1, WARSHIPL2, WARSHIPL3, BRIGL1, BRIGL2, BRIGL3, SHIP_OF_THE_LINE, EL_PATRONS_SHIP, P_SKEL_PHANTOM, P_SKEL_REVENANT, P_SKEL_CEREBUS, P_NAVY_KINGFISHER, P_EITC_WARLORD, NAVY_KRAKEN_HUNTER)
UNPAID_SHIPS = (
INTERCEPTORL1, MERCHANTL1, WARSHIPL1, BRIGL1)
MAST_LOGO_PLACEMENT = {INTERCEPTORL1: [0], INTERCEPTORL2: [0], INTERCEPTORL3: [0], MERCHANTL1: [1], MERCHANTL2: [1], MERCHANTL3: [1], WARSHIPL1: [0], WARSHIPL2: [0], WARSHIPL3: [0], BRIGL1: [0], BRIGL2: [0], BRIGL3: [0], WARSHIPCOM: [0]}
SHIP_CLASS_LIST = [
'INTERCEPTORL1', 'INTERCEPTORL2', 'INTERCEPTORL3', 'MERCHANTL1', 'MERCHANTL2', 'MERCHANTL3', 'WARSHIPL1', 'WARSHIPL2', 'WARSHIPL3', 'BRIGL1', 'BRIGL2', 'BRIGL3', 'BLACK_PEARL', 'DAUNTLESS', 'FLYING_DUTCHMAN', 'GOLIATH', 'QUEEN_ANNES_REVENGE', 'SKEL_WARSHIPL3', 'SKEL_INTERCEPTORL3', 'STUMPY_SHIP', 'NAVY_FERRET', 'NAVY_GREYHOUND', 'NAVY_KINGFISHER', 'NAVY_PREDATOR', 'NAVY_BULWARK', 'NAVY_VANGUARD', 'NAVY_MONARCH', 'NAVY_COLOSSUS', 'NAVY_PANTHER', 'NAVY_CENTURION', 'NAVY_MAN_O_WAR', 'NAVY_DREADNOUGHT', 'EITC_SEA_VIPER', 'EITC_BLOODHOUND', 'EITC_BARRACUDA', 'EITC_CORSAIR', 'EITC_SENTINEL', 'EITC_IRONWALL', 'EITC_OGRE', 'EITC_BEHEMOTH', 'EITC_CORVETTE', 'EITC_MARAUDER', 'EITC_WARLORD', 'EITC_JUGGERNAUT', 'SKEL_PHANTOM', 'SKEL_REVENANT', 'SKEL_STORM_REAPER', 'SKEL_BLACK_HARBINGER', 'SKEL_DEATH_OMEN', 'SKEL_SHADOW_CROW_FR', 'SKEL_HELLHOUND_FR', 'SKEL_BLOOD_SCOURGE_FR', 'SKEL_SHADOW_CROW_SP', 'SKEL_HELLHOUND_SP', 'SKEL_BLOOD_SCOURGE_SP', 'HUNTER_VENGEANCE']
__hullArmor = {WARSHIPL1: [1000, 2000, 2000], WARSHIPL2: [1500, 3000, 3000], WARSHIPL3: [2500, 5000, 5000], MERCHANTL1: [1600, 1400, 1400], MERCHANTL2: [2200, 2400, 2400], MERCHANTL3: [3400, 4000, 4000], INTERCEPTORL1: [800, 1000, 1000], INTERCEPTORL2: [1200, 1800, 1800], INTERCEPTORL3: [2000, 3600, 3600], BRIGL1: [1300, 1500, 1500], BRIGL2: [1900, 2700, 2700], BRIGL3: [3000, 4500, 4500], SHIP_OF_THE_LINE: [50000, 100000, 100000], SKEL_WARSHIPL3: [2800, 5200, 5200], SKEL_INTERCEPTORL3: [2400, 4200, 4200], BLACK_PEARL: [3000, 5400, 5400], GOLIATH: [3200, 5600, 5600], QUEEN_ANNES_REVENGE: [3000, 4000, 4000]}
defaultAcceleration = 20
defaultMaxSpeed = 120
defaultMaxReverseSpeed = defaultMaxSpeed / 1.5
defaultReverseAcceleration = defaultAcceleration / 1.5
defaultMaxReverseAcceleration = 10
defaultTurn = 6
defaultMaxTurn = 20
defaultShipMass = 1.0
defaultWaterIntake = 0.05
__maxHullStats = {}
__shipConfigs = {WARSHIPL1: {'setShipClass': WARSHIPL1, 'modelClass': WARSHIPL1, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 8, 'leftBroadsides': [Cannons.L2] * 5, 'rightBroadsides': [Cannons.L2] * 5, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 4200, 'sp': 6000, 'maxCargo': 8, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 10, 'rammingPower': 450, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, WARSHIPL2: {'setShipClass': WARSHIPL2, 'modelClass': WARSHIPL2, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 10, 'leftBroadsides': [Cannons.L2] * 7, 'rightBroadsides': [Cannons.L2] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 8400, 'sp': 9000, 'maxCargo': 12, 'maxCrew': 10, 'maxCannons': 10, 'maxBroadsides': 14, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, WARSHIPL3: {'setShipClass': WARSHIPL3, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 12600, 'sp': 12000, 'maxCargo': 16, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 1800, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, BRIGL1: {'setShipClass': BRIGL1, 'modelClass': BRIGL1, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 6, 'leftBroadsides': [Cannons.L2] * 5, 'rightBroadsides': [Cannons.L2] * 5, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 3900, 'sp': 5500, 'maxCargo': 8, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 10, 'rammingPower': 400, 'acceleration': 1.15 * defaultAcceleration, 'maxSpeed': 0.85 * defaultMaxSpeed, 'reverseAcceleration': 0.75 * defaultReverseAcceleration, 'maxReverseSpeed': 0.75 * defaultMaxReverseAcceleration, 'turn': 0.7 * defaultTurn, 'maxTurn': 0.7 * defaultMaxTurn}, BRIGL2: {'setShipClass': BRIGL2, 'modelClass': BRIGL2, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 10, 'leftBroadsides': [Cannons.L2] * 7, 'rightBroadsides': [Cannons.L2] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 7800, 'sp': 8000, 'maxCargo': 12, 'maxCrew': 10, 'maxCannons': 10, 'maxBroadsides': 16, 'rammingPower': 750, 'acceleration': 1.15 * defaultAcceleration, 'maxSpeed': 0.85 * defaultMaxSpeed, 'reverseAcceleration': 0.75 * defaultReverseAcceleration, 'maxReverseSpeed': 0.75 * defaultMaxReverseAcceleration, 'turn': 0.7 * defaultTurn, 'maxTurn': 0.7 * defaultMaxTurn}, BRIGL3: {'setShipClass': BRIGL3, 'modelClass': BRIGL3, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2], 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 12000, 'sp': 11000, 'maxCargo': 16, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 22, 'rammingPower': 1400, 'acceleration': 1.15 * defaultAcceleration, 'maxSpeed': 0.85 * defaultMaxSpeed, 'reverseAcceleration': 0.75 * defaultReverseAcceleration, 'maxReverseSpeed': 0.75 * defaultMaxReverseAcceleration, 'turn': 0.7 * defaultTurn, 'maxTurn': 0.7 * defaultMaxTurn}, SHIP_OF_THE_LINE: {'setShipClass': SHIP_OF_THE_LINE, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 24, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, EL_PATRONS_SHIP: {'setShipClass': EL_PATRONS_SHIP, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonGrapeShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 12600, 'sp': 12000, 'maxCargo': 16, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 1800, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, P_SKEL_PHANTOM: {'setShipClass': P_SKEL_PHANTOM, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [0, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, 0], 'rightBroadsides': [0, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, 0], 'broadsideAmmo': InventoryType.CannonThunderbolt, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 14, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 1600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, P_SKEL_REVENANT: {'setShipClass': P_SKEL_REVENANT, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 6, 'rightBroadsides': [Cannons.Skel_L2] * 6, 'broadsideAmmo': InventoryType.CannonFury, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 14, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 1600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, P_SKEL_CEREBUS: {'setShipClass': P_SKEL_CEREBUS, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 3000, 'sp': 6000, 'maxCargo': 12, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 500, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, P_NAVY_KINGFISHER: {'setShipClass': P_NAVY_KINGFISHER, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L1] * 5, 'rightBroadsides': [Cannons.L1] * 5, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1200, 'sp': 4000, 'maxCargo': 14, 'maxCrew': 3, 'maxCannons': 9, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, P_EITC_WARLORD: {'setShipClass': P_EITC_WARLORD, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2] * 9, 'rightBroadsides': [Cannons.L2] * 9, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2100, 'sp': 6000, 'maxCargo': 16, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 2400, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_KRAKEN_HUNTER: {'setShipClass': NAVY_KRAKEN_HUNTER, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 0, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, HMS_VICTORY: {'setShipClass': HMS_VICTORY, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_Navy, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, HMS_NEWCASTLE: {'setShipClass': HMS_NEWCASTLE, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_Navy, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, HMS_INVINCIBLE: {'setShipClass': HMS_INVINCIBLE, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_Navy, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, EITC_INTREPID: {'setShipClass': EITC_INTREPID, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_EITC, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, EITC_CONQUERER: {'setShipClass': EITC_CONQUERER, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_EITC, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, EITC_LEVIATHAN: {'setShipClass': EITC_LEVIATHAN, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.Treasure_EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Treasure_EITC, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 20000, 'sp': 15000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, MERCHANTL1: {'setShipClass': MERCHANTL1, 'modelClass': MERCHANTL1, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 1), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 4, 'leftBroadsides': [Cannons.L2] * 5, 'rightBroadsides': [Cannons.L2] * 5, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 3600, 'sp': 5000, 'maxCargo': 10, 'maxCrew': 6, 'maxCannons': 4, 'maxBroadsides': 10, 'rammingPower': 300, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, MERCHANTL2: {'setShipClass': MERCHANTL2, 'modelClass': MERCHANTL2, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': (Masts.Main_Square, 1), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 7200, 'sp': 7000, 'maxCargo': 14, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 18, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, MERCHANTL3: {'setShipClass': MERCHANTL3, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 10, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 10800, 'sp': 10000, 'maxCargo': 18, 'maxCrew': 10, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 1200, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, INTERCEPTORL1: {'setShipClass': INTERCEPTORL1, 'modelClass': INTERCEPTORL1, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 2, 'leftBroadsides': [Cannons.L2] * 3, 'rightBroadsides': [Cannons.L2] * 3, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 2400, 'sp': 4000, 'maxCargo': 6, 'maxCrew': 3, 'maxCannons': 2, 'maxBroadsides': 6, 'rammingPower': 150, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, INTERCEPTORL2: {'setShipClass': INTERCEPTORL2, 'modelClass': INTERCEPTORL2, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L1] * 5, 'rightBroadsides': [Cannons.L1] * 5, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 4800, 'sp': 6000, 'maxCargo': 10, 'maxCrew': 6, 'maxCannons': 6, 'maxBroadsides': 10, 'rammingPower': 300, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, INTERCEPTORL3: {'setShipClass': INTERCEPTORL3, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [Cannons.L1] * 7, 'rightBroadsides': [Cannons.L1] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 7200, 'sp': 9000, 'maxCargo': 14, 'maxCrew': 9, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, BLACK_PEARL: {'setShipClass': BLACK_PEARL, 'modelClass': BLACK_PEARL, 'defaultStyle': Styles.BP, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.BlackPearl, 'cannons': [Cannons.BP] * 14, 'leftBroadsides': [Cannons.BP] * 9, 'rightBroadsides': [Cannons.BP] * 9, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 6000, 'sp': 8000, 'maxCargo': 20, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 18, 'rammingPower': 2000, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.7 * defaultTurn, 'maxTurn': 0.7 * defaultMaxTurn}, STUMPY_SHIP: {'setShipClass': INTERCEPTORL1, 'modelClass': INTERCEPTORL1, 'defaultStyle': Styles.Player, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.Tutorial, 0], 'leftBroadsides': [], 'rightBroadsides': [], 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 2400, 'sp': 4000, 'maxCargo': 5, 'maxCrew': 2, 'maxCannons': 2, 'maxBroadsides': 0, 'rammingPower': 150, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.7 * defaultTurn, 'maxTurn': 0.7 * defaultMaxTurn}, GOLIATH: {'setShipClass': GOLIATH, 'modelClass': GOLIATH, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L4] * 9, 'rightBroadsides': [Cannons.L4] * 9, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 3500, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 18, 'maxBroadsides': 18, 'rammingPower': 900, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 1.2 * defaultMaxSpeed, 'reverseAcceleration': 0.9 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, QUEEN_ANNES_REVENGE: {'setShipClass': QUEEN_ANNES_REVENGE, 'modelClass': QUEEN_ANNES_REVENGE, 'defaultStyle': Styles.QueenAnnesRevenge, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 10, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Skeleton, 'hp': 9000, 'sp': 10000, 'maxCargo': 16, 'maxCrew': 10, 'maxCannons': 12, 'maxBroadsides': 22, 'rammingPower': 1200, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, NAVY_PANTHER: {'setShipClass': NAVY_PANTHER, 'modelClass': WARSHIPL1, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 6, 'leftBroadsides': [Cannons.L2] * 4, 'rightBroadsides': [Cannons.L2] * 4, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 1700, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 10, 'rammingPower': 150, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_CENTURION: {'setShipClass': NAVY_CENTURION, 'modelClass': WARSHIPL2, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 8, 'leftBroadsides': [Cannons.L2] * 6, 'rightBroadsides': [Cannons.L2] * 6, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2100, 'sp': 5000, 'maxCargo': 3, 'maxCrew': 6, 'maxCannons': 10, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_MAN_O_WAR: {'setShipClass': NAVY_MAN_O_WAR, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 10, 'leftBroadsides': [Cannons.L2] * 8, 'rightBroadsides': [Cannons.L2] * 8, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2100, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_DREADNOUGHT: {'setShipClass': NAVY_DREADNOUGHT, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L4] * 9, 'rightBroadsides': [Cannons.L4] * 9, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 2100, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_ELITE: {'setShipClass': NAVY_ELITE, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L4] * 9, 'rightBroadsides': [Cannons.L4] * 9, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 4200, 'sp': 6000, 'maxCargo': 5, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_BULWARK: {'setShipClass': NAVY_BULWARK, 'modelClass': MERCHANTL1, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 1), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 4, 'leftBroadsides': [0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Lady, 'hp': 1400, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 6, 'maxCannons': 4, 'maxBroadsides': 10, 'rammingPower': 150, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_VANGUARD: {'setShipClass': NAVY_VANGUARD, 'modelClass': MERCHANTL2, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': (Masts.Main_Square, 1), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L3] * 5, 'rightBroadsides': [Cannons.L3] * 5, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Lady, 'hp': 1800, 'sp': 5000, 'maxCargo': 3, 'maxCrew': 10, 'maxCannons': 8, 'maxBroadsides': 18, 'rammingPower': 300, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_MONARCH: {'setShipClass': NAVY_MONARCH, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': (Masts.Main_Square, 2), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1800, 'sp': 5500, 'maxCargo': 3, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_COLOSSUS: {'setShipClass': NAVY_COLOSSUS, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 10, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1800, 'sp': 5500, 'maxCargo': 3, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_BASTION: {'setShipClass': NAVY_BASTION, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 10, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0], 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 3600, 'sp': 5500, 'maxCargo': 5, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, NAVY_FERRET: {'setShipClass': NAVY_FERRET, 'modelClass': INTERCEPTORL1, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 2, 'leftBroadsides': [], 'rightBroadsides': [], 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Lady, 'hp': 1000, 'sp': 3000, 'maxCargo': 1, 'maxCrew': 4, 'maxCannons': 2, 'maxBroadsides': 6, 'rammingPower': 75, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, NAVY_GREYHOUND: {'setShipClass': NAVY_GREYHOUND, 'modelClass': INTERCEPTORL2, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 4, 'leftBroadsides': [Cannons.L1] * 3, 'rightBroadsides': [Cannons.L1] * 3, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Lady, 'hp': 1200, 'sp': 3500, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 10, 'rammingPower': 225, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, NAVY_KINGFISHER: {'setShipClass': NAVY_KINGFISHER, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L1] * 5, 'rightBroadsides': [Cannons.L1] * 5, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1200, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, NAVY_PREDATOR: {'setShipClass': NAVY_PREDATOR, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.Navy, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.NoLogo, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [Cannons.L1] * 7, 'rightBroadsides': [Cannons.L1] * 7, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1200, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, EITC_CORVETTE: {'setShipClass': EITC_CORVETTE, 'modelClass': WARSHIPL1, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 6, 'leftBroadsides': [Cannons.L2] * 5, 'rightBroadsides': [Cannons.L2] * 5, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 1700, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 10, 'rammingPower': 150, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_MARAUDER: {'setShipClass': EITC_MARAUDER, 'modelClass': WARSHIPL2, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 8, 'leftBroadsides': [Cannons.L2] * 7, 'rightBroadsides': [Cannons.L2] * 7, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 2100, 'sp': 5000, 'maxCargo': 3, 'maxCrew': 6, 'maxCannons': 10, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_WARLORD: {'setShipClass': EITC_WARLORD, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2] * 9, 'rightBroadsides': [Cannons.L2] * 9, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2100, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_JUGGERNAUT: {'setShipClass': EITC_JUGGERNAUT, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 2100, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_TYRANT: {'setShipClass': EITC_TYRANT, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 4200, 'sp': 6000, 'maxCargo': 5, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_SENTINEL: {'setShipClass': EITC_SENTINEL, 'modelClass': MERCHANTL1, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 1), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 4, 'leftBroadsides': [Cannons.L2] * 5, 'rightBroadsides': [Cannons.L2] * 5, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': Prows.Lady, 'hp': 1400, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 6, 'maxCannons': 4, 'maxBroadsides': 10, 'rammingPower': 150, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_IRONWALL: {'setShipClass': EITC_IRONWALL, 'modelClass': MERCHANTL2, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 1), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': (Masts.Main_Square, 1), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L3] * 7, 'rightBroadsides': [Cannons.L3] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1800, 'sp': 5000, 'maxCargo': 3, 'maxCrew': 10, 'maxCannons': 8, 'maxBroadsides': 18, 'rammingPower': 300, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_OGRE: {'setShipClass': EITC_OGRE, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 2), 'mastConfig3': (Masts.Main_Square, 2), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2], 'rightBroadsides': [Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, 0, 0, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2, Cannons.L2], 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1800, 'sp': 5500, 'maxCargo': 3, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_BEHEMOTH: {'setShipClass': EITC_BEHEMOTH, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 10, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': Prows.Lady, 'hp': 1800, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, EITC_SEA_VIPER: {'setShipClass': EITC_SEA_VIPER, 'modelClass': INTERCEPTORL1, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 2, 'leftBroadsides': [Cannons.L1] * 3, 'rightBroadsides': [Cannons.L1] * 3, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': Prows.Lady, 'hp': 1000, 'sp': 3000, 'maxCargo': 1, 'maxCrew': 4, 'maxCannons': 2, 'maxBroadsides': 6, 'rammingPower': 75, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, EITC_BLOODHOUND: {'setShipClass': EITC_BLOODHOUND, 'modelClass': INTERCEPTORL2, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': 0, 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L1] * 5, 'rightBroadsides': [Cannons.L1] * 5, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': Prows.Lady, 'hp': 1200, 'sp': 3500, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 10, 'rammingPower': 225, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, EITC_BARRACUDA: {'setShipClass': EITC_BARRACUDA, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 6, 'leftBroadsides': [Cannons.L1] * 7, 'rightBroadsides': [Cannons.L1] * 7, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': Prows.Lady, 'hp': 1200, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, EITC_CORSAIR: {'setShipClass': EITC_CORSAIR, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.EITC, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.EITC, 'cannons': [Cannons.L1] * 8, 'leftBroadsides': [Cannons.L1] * 7, 'rightBroadsides': [Cannons.L1] * 7, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': Prows.Lady, 'hp': 1200, 'sp': 4000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 450, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_PHANTOM: {'setShipClass': SKEL_PHANTOM, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [0, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, 0], 'rightBroadsides': [0, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, Cannons.Skel_L2, 0], 'broadsideAmmo': InventoryType.CannonThunderbolt, 'cannonAmmo': InventoryType.CannonChainShot, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, SKEL_REVENANT: {'setShipClass': SKEL_REVENANT, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 6, 'rightBroadsides': [Cannons.Skel_L2] * 6, 'broadsideAmmo': InventoryType.CannonFury, 'cannonAmmo': InventoryType.CannonRoundShot, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, SKEL_STORM_REAPER: {'setShipClass': SKEL_STORM_REAPER, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 7, 'rightBroadsides': [Cannons.Skel_L2] * 7, 'broadsideAmmo': InventoryType.CannonThunderbolt, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, SKEL_BLACK_HARBINGER: {'setShipClass': SKEL_BLACK_HARBINGER, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 7, 'rightBroadsides': [Cannons.Skel_L2] * 7, 'broadsideAmmo': InventoryType.CannonFury, 'cannonAmmo': InventoryType.CannonFury, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, SKEL_DEATH_OMEN: {'setShipClass': SKEL_DEATH_OMEN, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 7, 'rightBroadsides': [Cannons.Skel_L2] * 7, 'broadsideAmmo': InventoryType.CannonFury, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 2500, 'sp': 6000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, JOLLY_ROGER: {'setShipClass': JOLLY_ROGER, 'modelClass': SKEL_WARSHIPL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Main_A, 3), 'mastConfig2': (Masts.Skel_Main_B, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Skel_Fore, 2), 'aftmastConfig': (Masts.Skel_Aft, 2), 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 6, 'leftBroadsides': [Cannons.Skel_L2] * 7, 'rightBroadsides': [Cannons.Skel_L2] * 7, 'broadsideAmmo': InventoryType.CannonThunderbolt, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 20000, 'sp': 18000, 'maxCargo': 10, 'maxCrew': 8, 'maxCannons': 8, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, SKEL_SHADOW_CROW_FR: {'setShipClass': SKEL_SHADOW_CROW_FR, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFury, 'prow': 0, 'hp': 2500, 'sp': 5000, 'maxCargo': 1, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_HELLHOUND_FR: {'setShipClass': SKEL_HELLHOUND_FR, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 3000, 'sp': 5000, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_BLOOD_SCOURGE_FR: {'setShipClass': SKEL_BLOOD_SCOURGE_FR, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 4000, 'sp': 5000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_SHADOW_CROW_SP: {'setShipClass': SKEL_SHADOW_CROW_SP, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonChainShot, 'cannonAmmo': InventoryType.CannonFury, 'prow': 0, 'hp': 2500, 'sp': 5000, 'maxCargo': 1, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_HELLHOUND_SP: {'setShipClass': SKEL_HELLHOUND_SP, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 3000, 'sp': 6000, 'maxCargo': 2, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, SKEL_BLOOD_SCOURGE_SP: {'setShipClass': SKEL_BLOOD_SCOURGE_SP, 'modelClass': SKEL_INTERCEPTORL3, 'defaultStyle': Styles.Undead, 'mastConfig1': (Masts.Skel_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': 0, 'aftmastConfig': 0, 'sailLogo': 0, 'cannons': [Cannons.Skel_L3] * 5, 'leftBroadsides': [Cannons.Skel_L2] * 5, 'rightBroadsides': [Cannons.Skel_L2] * 5, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 4000, 'sp': 8000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 6, 'maxBroadsides': 14, 'rammingPower': 600, 'acceleration': 1.2 * defaultAcceleration, 'maxSpeed': 0.9 * defaultMaxSpeed, 'reverseAcceleration': 0.8 * defaultReverseAcceleration, 'maxReverseSpeed': 0.8 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_VENGEANCE: {'setShipClass': HUNTER_VENGEANCE, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.BountyHunter_A, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Bounty_Hunter_Wasp, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 9000, 'sp': 30000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.5 * defaultAcceleration, 'maxSpeed': 1.2 * defaultMaxSpeed, 'reverseAcceleration': 1.0 * defaultReverseAcceleration, 'maxReverseSpeed': 1.0 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_CUTTER_SHARK: {'setShipClass': HUNTER_CUTTER_SHARK, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.BountyHunter_B, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Bandit_Claw, 'cannons': [Cannons.L3] * 8, 'leftBroadsides': [Cannons.L2] * 7, 'rightBroadsides': [Cannons.L2] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 6400, 'sp': 24000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 12, 'maxBroadsides': 16, 'rammingPower': 450, 'acceleration': 2.0 * defaultAcceleration, 'maxSpeed': 2.0 * defaultMaxSpeed, 'reverseAcceleration': 1.0 * defaultReverseAcceleration, 'maxReverseSpeed': 1.0 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_FLYING_STORM: {'setShipClass': HUNTER_FLYING_STORM, 'modelClass': INTERCEPTORL3, 'defaultStyle': Styles.BountyHunter_C, 'mastConfig1': (Masts.Main_Tri, 2), 'mastConfig2': 0, 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Tri, 1), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Bounty_Hunter_Snake, 'cannons': [Cannons.L3] * 8, 'leftBroadsides': [Cannons.L2] * 7, 'rightBroadsides': [Cannons.L2] * 7, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 6400, 'sp': 24000, 'maxCargo': 2, 'maxCrew': 3, 'maxCannons': 12, 'maxBroadsides': 16, 'rammingPower': 450, 'acceleration': 2.0 * defaultAcceleration, 'maxSpeed': 2.0 * defaultMaxSpeed, 'reverseAcceleration': 1.0 * defaultReverseAcceleration, 'maxReverseSpeed': 1.0 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_KILLYADED: {'setShipClass': HUNTER_KILLYADED, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.BountyHunter_D, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.Bounty_Hunter_Spider, 'cannons': [Cannons.L3] * 10, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 9200, 'sp': 25500, 'maxCargo': 5, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, HUNTER_RED_DERVISH: {'setShipClass': HUNTER_RED_DERVISH, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.BountyHunter_E, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Bandit_Scorpion, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 9000, 'sp': 30000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.5 * defaultAcceleration, 'maxSpeed': 1.2 * defaultMaxSpeed, 'reverseAcceleration': 1.0 * defaultReverseAcceleration, 'maxReverseSpeed': 1.0 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_CENTURY_HAWK: {'setShipClass': HUNTER_CENTURY_HAWK, 'modelClass': MERCHANTL3, 'defaultStyle': Styles.BountyHunter_F, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 2), 'aftmastConfig': 0, 'sailLogo': Logos.Bandit_Dagger, 'cannons': [Cannons.L3] * 10, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 9200, 'sp': 25500, 'maxCargo': 5, 'maxCrew': 14, 'maxCannons': 10, 'maxBroadsides': 24, 'rammingPower': 600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}, HUNTER_SCORNED_SIREN: {'setShipClass': HUNTER_SCORNED_SIREN, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.BountyHunter_G, 'mastConfig1': (Masts.Main_Square, 2), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Bandit_Claw, 'cannons': [Cannons.L3] * 12, 'leftBroadsides': [Cannons.L2] * 10, 'rightBroadsides': [Cannons.L2] * 10, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 9000, 'sp': 10000, 'maxCargo': 3, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.5 * defaultAcceleration, 'maxSpeed': 1.2 * defaultMaxSpeed, 'reverseAcceleration': 1.0 * defaultReverseAcceleration, 'maxReverseSpeed': 1.0 * defaultMaxReverseAcceleration, 'turn': 0.8 * defaultTurn, 'maxTurn': 0.8 * defaultMaxTurn}, HUNTER_TALLYHO: {'setShipClass': HUNTER_TALLYHO, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.NavyHunter, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Navy_Hunter_Unicorn, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonFirebrand, 'cannonAmmo': InventoryType.CannonExplosive, 'prow': 0, 'hp': 20000, 'sp': 45000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, HUNTER_BATTLEROYALE: {'setShipClass': HUNTER_BATTLEROYALE, 'modelClass': SHIP_OF_THE_LINE, 'defaultStyle': Styles.NavyHunter, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': (Masts.Main_Square, 3), 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Navy_Hunter_Lion, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L2] * 12, 'rightBroadsides': [Cannons.L2] * 12, 'broadsideAmmo': InventoryType.CannonExplosive, 'cannonAmmo': InventoryType.CannonFirebrand, 'prow': 0, 'hp': 20000, 'sp': 45000, 'maxCargo': 8, 'maxCrew': 12, 'maxCannons': 14, 'maxBroadsides': 12, 'rammingPower': 3600, 'acceleration': 1.0 * defaultAcceleration, 'maxSpeed': 0.7 * defaultMaxSpeed, 'reverseAcceleration': 0.6 * defaultReverseAcceleration, 'maxReverseSpeed': 0.6 * defaultMaxReverseAcceleration, 'turn': 0.5 * defaultTurn, 'maxTurn': 0.5 * defaultMaxTurn}, HUNTER_EN_GARDE: {'setShipClass': HUNTER_EN_GARDE, 'modelClass': WARSHIPL3, 'defaultStyle': Styles.NavyHunter, 'mastConfig1': (Masts.Main_Square, 3), 'mastConfig2': (Masts.Main_Square, 3), 'mastConfig3': 0, 'foremastConfig': (Masts.Fore_Multi, 3), 'aftmastConfig': (Masts.Aft_Tri, 1), 'sailLogo': Logos.Navy_Hunter_Unicorn, 'cannons': [Cannons.L3] * 14, 'leftBroadsides': [Cannons.L4] * 9, 'rightBroadsides': [Cannons.L4] * 9, 'broadsideAmmo': InventoryType.CannonRoundShot, 'cannonAmmo': InventoryType.CannonThunderbolt, 'prow': 0, 'hp': 10000, 'sp': 36000, 'maxCargo': 5, 'maxCrew': 8, 'maxCannons': 14, 'maxBroadsides': 20, 'rammingPower': 900, 'acceleration': 1.1 * defaultAcceleration, 'maxSpeed': 0.8 * defaultMaxSpeed, 'reverseAcceleration': 0.7 * defaultReverseAcceleration, 'maxReverseSpeed': 0.7 * defaultMaxReverseAcceleration, 'turn': 0.6 * defaultTurn, 'maxTurn': 0.6 * defaultMaxTurn}}
__shipRepairCostMultiplier = {INTERCEPTORL1: 0.15, MERCHANTL1: 0.2, WARSHIPL1: 0.25, INTERCEPTORL2: 0.15, MERCHANTL2: 0.2, WARSHIPL2: 0.25, INTERCEPTORL3: 0.15, MERCHANTL3: 0.2, WARSHIPL3: 0.25, SHIP_OF_THE_LINE: 0.5, GOLIATH: 0.25, BLACK_PEARL: 0.25, SKEL_WARSHIPL3: 0.25, SKEL_INTERCEPTORL3: 0.25, JOLLY_ROGER: 0.0}
__enemyAIShipSpeed = {WARSHIPL1: ([50, 100, 115, 135], [10, 10]), WARSHIPL2: ([50, 100, 115, 135], [10, 10]), WARSHIPL3: ([50, 100, 115, 135], [10, 10]), MERCHANTL1: ([45, 90, 105, 125], [6, 6]), MERCHANTL2: ([45, 90, 105, 125], [6, 6]), MERCHANTL3: ([45, 90, 105, 125], [6, 6]), INTERCEPTORL1: ([55, 110, 125, 145], [16, 16]), INTERCEPTORL2: ([55, 110, 125, 145], [16, 16]), INTERCEPTORL3: ([55, 110, 125, 145], [16, 16]), BRIGL1: ([55, 110, 125, 145], [16, 16]), BRIGL2: ([55, 110, 125, 145], [16, 16]), BRIGL3: ([55, 110, 125, 145], [16, 16]), QUEEN_ANNES_REVENGE: ([52, 105, 120, 140], [13, 13]), HUNTER_VENGEANCE: ([100, 150, 200, 250], [20, 20]), HUNTER_CUTTER_SHARK: ([100, 150, 200, 250], [20, 20]), HUNTER_FLYING_STORM: ([100, 150, 200, 250], [20, 20]), HUNTER_KILLYADED: ([100, 150, 200, 250], [20, 20]), HUNTER_RED_DERVISH: ([100, 150, 200, 250], [20, 20]), HUNTER_CENTURY_HAWK: ([100, 150, 200, 250], [20, 20]), HUNTER_SCORNED_SIREN: ([100, 150, 200, 250], [20, 20]), HUNTER_TALLYHO: ([100, 150, 200, 250], [20, 20]), HUNTER_BATTLEROYALE: ([100, 150, 200, 250], [20, 20]), HUNTER_EN_GARDE: ([100, 150, 200, 250], [20, 20]), HMS_VICTORY: ([50, 100, 150, 200], [14, 14]), HMS_NEWCASTLE: ([50, 100, 150, 200], [14, 14]), HMS_INVINCIBLE: ([50, 100, 150, 200], [14, 14]), EITC_INTREPID: ([50, 100, 150, 200], [14, 14]), EITC_CONQUERER: ([50, 100, 150, 200], [14, 14]), EITC_LEVIATHAN: ([50, 100, 150, 200], [14, 14]), NAVY_KRAKEN_HUNTER: ([50, 100, 150, 200], [14, 14]), STUMPY_SHIP: ([8, 8, 8, 8], [6, 6]), BLACK_PEARL: ([50, 100, 150, 200], [14, 14]), GOLIATH: ([50, 100, 150, 200], [14, 14]), JOLLY_ROGER: ([70, 130, 145, 165], [20, 20]), NAVY_PANTHER: ([25, 60, 105, 125], [7, 7]), NAVY_CENTURION: ([30, 65, 110, 130], [8, 8]), NAVY_MAN_O_WAR: ([35, 70, 115, 135], [9, 9]), NAVY_DREADNOUGHT: ([35, 70, 115, 135], [9, 9]), NAVY_ELITE: ([35, 70, 115, 135], [9, 9]), NAVY_BULWARK: ([20, 50, 95, 115], [5, 5]), NAVY_VANGUARD: ([25, 55, 100, 120], [6, 6]), NAVY_MONARCH: ([30, 60, 105, 125], [7, 7]), NAVY_COLOSSUS: ([30, 60, 105, 125], [7, 7]), NAVY_BASTION: ([30, 60, 105, 125], [7, 7]), NAVY_FERRET: ([30, 70, 115, 135], [10, 10]), NAVY_GREYHOUND: ([35, 75, 120, 140], [11, 11]), NAVY_KINGFISHER: ([40, 80, 125, 145], [12, 12]), NAVY_PREDATOR: ([40, 80, 125, 145], [12, 12]), EITC_CORVETTE: ([25, 60, 105, 125], [7, 7]), EITC_MARAUDER: ([30, 65, 110, 130], [8, 8]), EITC_WARLORD: ([35, 70, 115, 135], [9, 9]), EITC_JUGGERNAUT: ([35, 70, 115, 135], [9, 9]), EITC_TYRANT: ([35, 70, 115, 135], [9, 9]), EITC_SENTINEL: ([20, 50, 95, 115], [5, 5]), EITC_IRONWALL: ([25, 55, 100, 120], [6, 6]), EITC_OGRE: ([30, 60, 105, 125], [7, 7]), EITC_BEHEMOTH: ([30, 60, 105, 125], [7, 7]), EITC_SEA_VIPER: ([30, 70, 115, 135], [10, 10]), EITC_BLOODHOUND: ([35, 75, 120, 140], [11, 11]), EITC_BARRACUDA: ([40, 80, 125, 145], [12, 12]), EITC_CORSAIR: ([40, 80, 125, 145], [12, 12]), SKEL_PHANTOM: ([35, 70, 115, 135], [10, 10]), SKEL_REVENANT: ([35, 70, 115, 135], [11, 11]), SKEL_STORM_REAPER: ([40, 75, 120, 140], [11, 11]), SKEL_BLACK_HARBINGER: ([40, 75, 120, 140], [12, 12]), SKEL_DEATH_OMEN: ([45, 80, 125, 145], [12, 12]), SKEL_SHADOW_CROW_FR: ([40, 80, 125, 145], [12, 12]), SKEL_HELLHOUND_FR: ([40, 80, 125, 145], [13, 13]), SKEL_BLOOD_SCOURGE_FR: ([45, 85, 130, 150], [14, 14]), SKEL_SHADOW_CROW_SP: ([40, 80, 125, 145], [12, 12]), SKEL_HELLHOUND_SP: ([40, 80, 125, 145], [13, 13]), SKEL_BLOOD_SCOURGE_SP: ([45, 85, 130, 150], [14, 14])}
KrakenLocators = {INTERCEPTORL1: ((Point3(40, 20, -5), 0.5, Point3(0), 0.9), (Point3(40, -40, -5), 0.5, Point3(0), 0.9)), INTERCEPTORL2: ((Point3(50, 40, -5), 0.75, Point3(0), 0.9), (Point3(50, -70, -5), 0.75, Point3(0), 0.9)), INTERCEPTORL3: ((Point3(60, 80, 0), 0.8, Point3(0), 0.9), (Point3(60, -30, 0), 0.8, Point3(0), 0.9)), MERCHANTL1: ((Point3(30, 50, -5), 0.6, Point3(0), 0.9), (Point3(40, -10, -5), 0.6, Point3(0), 0.9), (Point3(40, -70, -5), 0.6, Point3(0), 0.9)), MERCHANTL2: ((Point3(50, 50, 0), 0.8, Point3(0), 0.9), (Point3(50, -10, 0), 0.8, Point3(0), 0.9), (Point3(50, -70, 0), 0.8, Point3(0), 0.9)), MERCHANTL3: ((Point3(60, 50, 0), 1, Point3(0), 0.9), (Point3(70, -10, 0), 1, Point3(0), 0.9), (Point3(70, -120, 0), 1, Point3(0), 0.9)), WARSHIPL1: ((Point3(30, 50, -15), 0.6, Point3(0, 22, 0), 0.7), (Point3(40, -10, -15), 0.6, Point3(0), 0.8), (Point3(40, -70, -15), 0.6, Point3(0), 0.8)), WARSHIPL2: ((Point3(40, 90, -15), 0.8, Point3(10, 25, 0), 0.8), (Point3(50, 10, -15), 0.8, Point3(0), 0.9), (Point3(50, -70, -15), 0.8, Point3(0), 0.9)), WARSHIPL3: ((Point3(50, 90, -15), 1, Point3(-20, 15, 0), 0.6), (Point3(60, 10, -15), 1, Point3(0), 0.8), (Point3(60, -120, -15), 1, Point3(0), 0.9)), SHIP_OF_THE_LINE: ((Point3(50, 90, -15), 1, Point3(-20, 15, 0), 0.6), (Point3(60, 10, -15), 1, Point3(0), 0.8), (Point3(60, -120, -15), 1, Point3(0), 0.9))}
__shipSplitOffsets = {INTERCEPTORL1: (10.0, 0), INTERCEPTORL2: (2.0, 0), INTERCEPTORL3: (5.0, 0), MERCHANTL1: (13.0, -1), MERCHANTL2: (0.0, 1), MERCHANTL3: (5.0, 0), WARSHIPL1: (5.0, -1), WARSHIPL2: (-5.0, -1), WARSHIPL3: (0.0, -1), SHIP_OF_THE_LINE: (0.0, -1), HMS_VICTORY: (0.0, -1), HMS_NEWCASTLE: (0.0, -1), HMS_INVINCIBLE: (0.0, -1), EITC_INTREPID: (0.0, -1), EITC_CONQUERER: (0.0, -1), EITC_LEVIATHAN: (0.0, -1), NAVY_KRAKEN_HUNTER: (0.0, -1), BLACK_PEARL: (0.0, -1), GOLIATH: (0.0, -1)}
INVALID_TEAM = -1
PLAYER_TEAM = 0
UNDEAD_TEAM = 1
NAVY_TEAM = 2
TRADING_CO_TEAM = 3
FRENCH_UNDEAD_TEAM = 7
SPANISH_UNDEAD_TEAM = 8
VOODOO_ZOMBIE_TEAM = 10
BOUNTY_HUNTER_TEAM = 11
LEVEL_INDEX = 0
TEAM_INDEX = 1
ENABLED_INDEX = 2
shipData = {HMS_VICTORY: [80, NAVY_TEAM, 1], HMS_NEWCASTLE: [80, NAVY_TEAM, 1], HMS_INVINCIBLE: [80, NAVY_TEAM, 1], EITC_INTREPID: [80, TRADING_CO_TEAM, 1], EITC_CONQUERER: [80, TRADING_CO_TEAM, 1], EITC_LEVIATHAN: [80, TRADING_CO_TEAM, 1], NAVY_KRAKEN_HUNTER: [80, NAVY_TEAM, 1], NAVY_FERRET: [2, NAVY_TEAM, 1], NAVY_BULWARK: [6, NAVY_TEAM, 1], NAVY_PANTHER: [9, NAVY_TEAM, 1], NAVY_GREYHOUND: [12, NAVY_TEAM, 1], NAVY_VANGUARD: [16, NAVY_TEAM, 1], NAVY_CENTURION: [19, NAVY_TEAM, 1], NAVY_KINGFISHER: [22, NAVY_TEAM, 1], NAVY_MONARCH: [26, NAVY_TEAM, 1], NAVY_MAN_O_WAR: [29, NAVY_TEAM, 1], NAVY_PREDATOR: [32, NAVY_TEAM, 1], NAVY_COLOSSUS: [36, NAVY_TEAM, 1], NAVY_DREADNOUGHT: [39, NAVY_TEAM, 1], NAVY_BASTION: [60, NAVY_TEAM, 1], NAVY_ELITE: [70, NAVY_TEAM, 1], GOLIATH: [40, NAVY_TEAM, 1], BLACK_PEARL: [30, PLAYER_TEAM, 1], QUEEN_ANNES_REVENGE: [40, VOODOO_ZOMBIE_TEAM, 1], HUNTER_VENGEANCE: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_CUTTER_SHARK: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_FLYING_STORM: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_KILLYADED: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_RED_DERVISH: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_CENTURY_HAWK: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_SCORNED_SIREN: [50, BOUNTY_HUNTER_TEAM, 1], HUNTER_TALLYHO: [60, NAVY_TEAM, 1], HUNTER_BATTLEROYALE: [60, NAVY_TEAM, 1], HUNTER_EN_GARDE: [60, NAVY_TEAM, 1], EITC_SEA_VIPER: [7, TRADING_CO_TEAM, 1], EITC_SENTINEL: [11, TRADING_CO_TEAM, 1], EITC_CORVETTE: [14, TRADING_CO_TEAM, 1], EITC_BLOODHOUND: [17, TRADING_CO_TEAM, 1], EITC_IRONWALL: [21, TRADING_CO_TEAM, 1], EITC_MARAUDER: [24, TRADING_CO_TEAM, 1], EITC_BARRACUDA: [27, TRADING_CO_TEAM, 1], EITC_OGRE: [31, TRADING_CO_TEAM, 1], EITC_WARLORD: [34, TRADING_CO_TEAM, 1], EITC_CORSAIR: [37, TRADING_CO_TEAM, 1], EITC_BEHEMOTH: [41, TRADING_CO_TEAM, 1], EITC_JUGGERNAUT: [44, TRADING_CO_TEAM, 1], EITC_TYRANT: [70, TRADING_CO_TEAM, 1], SKEL_PHANTOM: [18, UNDEAD_TEAM, 1], SKEL_REVENANT: [26, UNDEAD_TEAM, 1], SKEL_STORM_REAPER: [31, UNDEAD_TEAM, 1], SKEL_BLACK_HARBINGER: [36, UNDEAD_TEAM, 1], SKEL_DEATH_OMEN: [42, UNDEAD_TEAM, 1], JOLLY_ROGER: [60, UNDEAD_TEAM, 1], SKEL_SHADOW_CROW_FR: [18, FRENCH_UNDEAD_TEAM, 1], SKEL_HELLHOUND_FR: [21, FRENCH_UNDEAD_TEAM, 1], SKEL_BLOOD_SCOURGE_FR: [28, FRENCH_UNDEAD_TEAM, 1], SKEL_SHADOW_CROW_SP: [18, SPANISH_UNDEAD_TEAM, 1], SKEL_HELLHOUND_SP: [21, SPANISH_UNDEAD_TEAM, 1], SKEL_BLOOD_SCOURGE_SP: [28, SPANISH_UNDEAD_TEAM, 1]}
BaseLevel = {INTERCEPTORL1: 2, MERCHANTL1: 4, WARSHIPL1: 8, BRIGL1: 9, INTERCEPTORL2: 12, MERCHANTL2: 16, WARSHIPL2: 20, BRIGL2: 22, INTERCEPTORL3: 26, MERCHANTL3: 30, WARSHIPL3: 34, BRIGL3: 36, QUEEN_ANNES_REVENGE: 32, BLACK_PEARL: 40, SKEL_WARSHIPL3: 32, SKEL_INTERCEPTORL3: 26, JOLLY_ROGER: 60, GOLIATH: 50, SHIP_OF_THE_LINE: 80, QUEEN_ANNES_REVENGE: 40}
__shipLevelStatMultiplier = {0: (0.5, 0, 10), 1: (0.7, 0, 15), 2: (0.9, 0, 20), 3: (1.1, 0, 25), 4: (1.3, 0, 30), 5: (1.5, 0, 35), 6: (1.7, 0, 40), 7: (1.9, 0, 45), 8: (2.1, 0, 50), 9: (2.3, 0, 55), 10: (2.5, 0, 60), 11: (2.7, 0, 65), 12: (2.9, 0, 70), 13: (3.1, 0, 75), 14: (3.3, 0, 80), 15: (3.5, 0, 85), 16: (3.7, 0, 90), 17: (3.9, 0, 95), 18: (4.1, 0, 100), 19: (4.3, 0, 105), 20: (4.5, 0, 110), 21: (4.7, 0, 115), 22: (4.9, 0, 120), 23: (5.1, 0, 125), 24: (5.3, 0, 130), 25: (5.5, 0, 135), 26: (5.7, 0, 140), 27: (5.9, 0, 145), 28: (6.1, 0, 150), 29: (6.3, 0, 155), 30: (6.5, 0, 160), 31: (6.7, 0, 165), 32: (6.9, 0, 170), 33: (7.1, 0, 175), 34: (7.3, 0, 180), 35: (7.5, 0, 185), 36: (7.7, 0, 190), 37: (7.9, 0, 195), 38: (8.1, 0, 200), 39: (8.3, 0, 205), 40: (8.5, 0, 210), 41: (8.7, 0, 215), 42: (8.9, 0, 220), 43: (9.1, 0, 225), 44: (9.3, 0, 230), 45: (9.5, 0, 235), 46: (9.7, 0, 240), 47: (9.9, 0, 245), 48: (10.1, 0, 250), 49: (10.3, 0, 255), 50: (10.5, 0, 260), 51: (10.7, 0, 265), 52: (10.9, 0, 270), 53: (11.1, 0, 275), 54: (11.3, 0, 280), 55: (11.5, 0, 285), 56: (11.7, 0, 290), 57: (11.9, 0, 295), 58: (12.1, 0, 300), 59: (12.3, 0, 305), 60: (12.5, 0, 310), 61: (12.7, 0, 315), 62: (12.9, 0, 320), 63: (13.1, 0, 325), 64: (13.3, 0, 330), 65: (13.5, 0, 335), 66: (13.7, 0, 340), 67: (13.9, 0, 345), 68: (14.1, 0, 350), 69: (14.3, 0, 355), 70: (14.5, 0, 360), 71: (14.7, 0, 365), 72: (14.9, 0, 370), 73: (15.1, 0, 375), 74: (15.3, 0, 380), 75: (15.5, 0, 385), 76: (15.7, 0, 390), 77: (15.9, 0, 395), 78: (16.1, 0, 400), 79: (16.3, 0, 405), 80: (16.5, 0, 410), 81: (16.7, 0, 415), 82: (16.9, 0, 420), 83: (17.1, 0, 425), 84: (17.3, 0, 430), 85: (17.5, 0, 435), 86: (17.7, 0, 440), 87: (17.9, 0, 445), 88: (18.1, 0, 450), 89: (18.3, 0, 455), 90: (18.5, 0, 460), 91: (18.7, 0, 465), 92: (18.9, 0, 470), 93: (19.1, 0, 475), 94: (19.3, 0, 480), 95: (19.5, 0, 485), 96: (19.7, 0, 490), 97: (19.9, 0, 495), 98: (20.1, 0, 505), 99: (20.3, 0, 500), 100: (20.5, 0, 515)}
WaterlineOffsets = {INTERCEPTORL1: -4, INTERCEPTORL2: -4, INTERCEPTORL3: -4, MERCHANTL1: -4, MERCHANTL2: -4, MERCHANTL3: -4, WARSHIPL1: -4, WARSHIPL2: -4, WARSHIPL3: -4, BRIGL1: -100, BRIGL2: -100, BRIGL3: -100, QUEEN_ANNES_REVENGE: -4, BLACK_PEARL: -10, GOLIATH: -10, SKEL_WARSHIPL3: -4, SKEL_INTERCEPTORL3: -4, SHIP_OF_THE_LINE: -10}
TiltFakeMass = {INTERCEPTORL1: 1.0, INTERCEPTORL2: 1.4, INTERCEPTORL3: 1.7, MERCHANTL1: 2.5, MERCHANTL2: 3.0, MERCHANTL3: 3.5, WARSHIPL1: 2.5, WARSHIPL2: 3.0, WARSHIPL3: 4.0, BRIGL1: 2.5, BRIGL2: 3.0, BRIGL3: 4.0, QUEEN_ANNES_REVENGE: 1.7, SHIP_OF_THE_LINE: 4.5, BLACK_PEARL: 4.5, GOLIATH: 4.5, SKEL_INTERCEPTORL3: 1.7, SKEL_WARSHIPL3: 4.0}
SamplePoints = Enum('\n FL, F, FR,\n L, C, R,\n BL, B, BR,\n ')
SamplePointOffsets = {INTERCEPTORL1: [(0, -11), {SamplePoints.FL: (-13, 29), SamplePoints.F: (0, 29), SamplePoints.FR: (13, 29), SamplePoints.L: (-13, 0), SamplePoints.C: (0, 0), SamplePoints.R: (13, 0), SamplePoints.BL: (-13, -29), SamplePoints.B: (0, -29), SamplePoints.BR: (13, -29)}], INTERCEPTORL2: [(0, -8), {SamplePoints.FL: (-20, 50), SamplePoints.F: (0, 50), SamplePoints.FR: (20, 50), SamplePoints.L: (-20, 0), SamplePoints.C: (0, 0), SamplePoints.R: (20, 0), SamplePoints.BL: (-20, -50), SamplePoints.B: (0, -50), SamplePoints.BR: (20, -50)}, -5], INTERCEPTORL3: [(0, 0), {SamplePoints.FL: (-26, 50), SamplePoints.F: (0, 50), SamplePoints.FR: (26, 50), SamplePoints.L: (-26, 0), SamplePoints.C: (0, 0), SamplePoints.R: (26, 0), SamplePoints.BL: (-26, -50), SamplePoints.B: (0, -50), SamplePoints.BR: (26, -50)}, -5], MERCHANTL1: [(0, 0), {SamplePoints.FL: (-23, 33), SamplePoints.F: (0, 33), SamplePoints.FR: (23, 33), SamplePoints.L: (-23, 0), SamplePoints.C: (0, 0), SamplePoints.R: (23, 0), SamplePoints.BL: (-23, -33), SamplePoints.B: (0, -33), SamplePoints.BR: (23, -33)}], MERCHANTL2: [(0, 0), {SamplePoints.FL: (-35, 60), SamplePoints.F: (0, 60), SamplePoints.FR: (35, 60), SamplePoints.L: (-35, 0), SamplePoints.C: (0, 0), SamplePoints.R: (35, 0), SamplePoints.BL: (-35, -60), SamplePoints.B: (0, -60), SamplePoints.BR: (35, -60)}], MERCHANTL3: [(0, 0), {SamplePoints.FL: (-38, 68), SamplePoints.F: (0, 68), SamplePoints.FR: (38, 68), SamplePoints.L: (-38, 0), SamplePoints.C: (0, 0), SamplePoints.R: (38, 0), SamplePoints.BL: (-38, -68), SamplePoints.B: (0, -68), SamplePoints.BR: (38, -68)}], WARSHIPL1: [(0, -5), {SamplePoints.FL: (-22, 45), SamplePoints.F: (0, 45), SamplePoints.FR: (22, 45), SamplePoints.L: (-22, 0), SamplePoints.C: (0, 0), SamplePoints.R: (22, 0), SamplePoints.BL: (-22, -45), SamplePoints.B: (0, -45), SamplePoints.BR: (22, -45)}], WARSHIPL2: [(0, 0), {SamplePoints.FL: (-28, 64), SamplePoints.F: (0, 64), SamplePoints.FR: (28, 64), SamplePoints.L: (-28, 0), SamplePoints.C: (0, 0), SamplePoints.R: (28, 0), SamplePoints.BL: (-28, -64), SamplePoints.B: (0, -64), SamplePoints.BR: (28, -64)}], WARSHIPL3: [(0, -5), {SamplePoints.FL: (-42, 84), SamplePoints.F: (0, 84), SamplePoints.FR: (42, 84), SamplePoints.L: (-42, 0), SamplePoints.C: (0, 0), SamplePoints.R: (42, 0), SamplePoints.BL: (-42, -84), SamplePoints.B: (0, -84), SamplePoints.BR: (42, -84)}], BRIGL1: [(0, -5), {SamplePoints.FL: (-22, 45), SamplePoints.F: (0, 45), SamplePoints.FR: (22, 45), SamplePoints.L: (-22, 0), SamplePoints.C: (0, 0), SamplePoints.R: (22, 0), SamplePoints.BL: (-22, -45), SamplePoints.B: (0, -45), SamplePoints.BR: (22, -45)}], BRIGL2: [(0, 0), {SamplePoints.FL: (-28, 64), SamplePoints.F: (0, 64), SamplePoints.FR: (28, 64), SamplePoints.L: (-28, 0), SamplePoints.C: (0, 0), SamplePoints.R: (28, 0), SamplePoints.BL: (-28, -64), SamplePoints.B: (0, -64), SamplePoints.BR: (28, -64)}], BRIGL3: [(0, -5), {SamplePoints.FL: (-42, 84), SamplePoints.F: (0, 84), SamplePoints.FR: (42, 84), SamplePoints.L: (-42, 0), SamplePoints.C: (0, 0), SamplePoints.R: (42, 0), SamplePoints.BL: (-42, -84), SamplePoints.B: (0, -84), SamplePoints.BR: (42, -84)}], QUEEN_ANNES_REVENGE: [(0, 0), {SamplePoints.FL: (-26, 50), SamplePoints.F: (0, 50), SamplePoints.FR: (26, 50), SamplePoints.L: (-26, 0), SamplePoints.C: (0, 0), SamplePoints.R: (26, 0), SamplePoints.BL: (-26, -50), SamplePoints.B: (0, -50), SamplePoints.BR: (26, -50)}, -5], SHIP_OF_THE_LINE: [(0, -5), {SamplePoints.FL: (-32, 94), SamplePoints.F: (0, 94), SamplePoints.FR: (32, 94), SamplePoints.L: (-32, 0), SamplePoints.C: (0, 0), SamplePoints.R: (32, 0), SamplePoints.BL: (-32, -94), SamplePoints.B: (0, -94), SamplePoints.BR: (32, -94)}], BLACK_PEARL: [(0, -5), {SamplePoints.FL: (-32, 94), SamplePoints.F: (0, 94), SamplePoints.FR: (32, 94), SamplePoints.L: (-32, 0), SamplePoints.C: (0, 0), SamplePoints.R: (32, 0), SamplePoints.BL: (-32, -94), SamplePoints.B: (0, -94), SamplePoints.BR: (32, -94)}], GOLIATH: [(0, -5), {SamplePoints.FL: (-32, 94), SamplePoints.F: (0, 94), SamplePoints.FR: (32, 94), SamplePoints.L: (-32, 0), SamplePoints.C: (0, 0), SamplePoints.R: (32, 0), SamplePoints.BL: (-32, -94), SamplePoints.B: (0, -94), SamplePoints.BR: (32, -94)}], SKEL_INTERCEPTORL3: [(0, 0), {SamplePoints.FL: (-26, 50), SamplePoints.F: (0, 50), SamplePoints.FR: (26, 50), SamplePoints.L: (-26, 0), SamplePoints.C: (0, 0), SamplePoints.R: (26, 0), SamplePoints.BL: (-26, -50), SamplePoints.B: (0, -50), SamplePoints.BR: (26, -50)}], SKEL_WARSHIPL3: [(0, -5), {SamplePoints.FL: (-42, 84), SamplePoints.F: (0, 84), SamplePoints.FR: (42, 84), SamplePoints.L: (-42, 0), SamplePoints.C: (0, 0), SamplePoints.R: (42, 0), SamplePoints.BL: (-42, -84), SamplePoints.B: (0, -84), SamplePoints.BR: (42, -84)}], JOLLY_ROGER: [(0, -5), {SamplePoints.FL: (-42, 84), SamplePoints.F: (0, 84), SamplePoints.FR: (42, 84), SamplePoints.L: (-42, 0), SamplePoints.C: (0, 0), SamplePoints.R: (42, 0), SamplePoints.BL: (-42, -84), SamplePoints.B: (0, -84), SamplePoints.BR: (42, -84)}]}
__boardingSphere = {WARSHIPL1: ((Vec3(0, 0, 100), 90), 25), WARSHIPL2: ((Vec3(0, 0, 100), 90), 45), WARSHIPL3: ((Vec3(-6.0, 13.0, 21.9), -90), 60), MERCHANTL1: ((Vec3(0, 0, 100), 90), 25), MERCHANTL2: ((Vec3(8, -11, 33), 90), 40), MERCHANTL3: ((Vec3(0, 0, 100), 90), 55), INTERCEPTORL1: ((Vec3(2.74993, 23.197, 9.27622), 90), 25), INTERCEPTORL2: ((Vec3(0, 0, 100), 90), 35), INTERCEPTORL3: ((Vec3(11.899, -1.7117, 21.8932), -29), 45), BRIGL1: ((Vec3(0, 0, 100), 90), 25), BRIGL2: ((Vec3(0, 0, 100), 90), 45), BRIGL3: ((Vec3(-6.0, 13.0, 21.9), -90), 60), QUEEN_ANNES_REVENGE: ((Vec3(11.899, -1.7117, 21.8932), -29), 45), SHIP_OF_THE_LINE: ((Vec3(-6.0, 13.0, 21.9), -90), 60), BLACK_PEARL: ((Vec3(-6.0, 13.0, 21.9), -90), 60), GOLIATH: ((Vec3(-6.0, 13.0, 21.9), -90), 60), STUMPY_SHIP: ((Vec3(2.74993, 23.197, 9.27622), 90), 25), SKEL_WARSHIPL3: ((Vec3(-6.0, 13.0, 21.9), -90), 60), SKEL_INTERCEPTORL3: ((Vec3(11.899, -1.7117, 21.8932), -29), 45)}
__exitSphere = {WARSHIPL1: (21.26, 13.44, 21.93), WARSHIPL2: (21.26, 13.44, 21.93), WARSHIPL3: (21.26, 13.44, 21.93), MERCHANTL1: (-5.44, 6.735, 12.278), MERCHANTL2: (-5.44, 6.735, 12.278), MERCHANTL3: (-5.44, 6.735, 12.278), INTERCEPTORL1: (2.354, -15.201, 5.493), INTERCEPTORL2: (2.354, -15.201, 5.493), INTERCEPTORL3: (2.354, -15.201, 5.493), BRIGL1: (21.26, 13.44, 21.93), BRIGL2: (21.26, 13.44, 21.93), BRIGL3: (21.26, 13.44, 21.93), QUEEN_ANNES_REVENGE: (2.354, -15.201, 5.493), SHIP_OF_THE_LINE: (21.26, 13.44, 21.93), BLACK_PEARL: (21.26, 13.44, 21.93), GOLIATH: (21.26, 13.44, 21.93), SKEL_WARSHIPL3: (21.26, 13.44, 21.93), SKEL_INTERCEPTORL3: (2.354, -15.201, 5.493)}
BOARDING_POS_H_INDEX = 0
BOARDING_SCALE_INDEX = 1
__boardingRopeHeight = {WARSHIPL1: 0.6, WARSHIPL2: 0.8, WARSHIPL3: 1.0, MERCHANTL1: 0.6, MERCHANTL2: 0.8, MERCHANTL3: 1.0, INTERCEPTORL1: 0.5, INTERCEPTORL2: 0.7, INTERCEPTORL3: 1.0, BRIGL1: 0.6, BRIGL2: 0.8, BRIGL3: 1.0, QUEEN_ANNES_REVENGE: 1.0, SHIP_OF_THE_LINE: 1.0, BLACK_PEARL: 1.0, GOLIATH: 1.0, SKEL_WARSHIPL3: 1.0, SKEL_INTERCEPTORL3: 0.8}
AI_RAM_LATENCY_BUFFER = 500
__rammingSphereValues = {WARSHIPL1: (0, 140, 10, 30), WARSHIPL2: (0, 160, 15, 40), WARSHIPL3: (0, 180, 20, 50), MERCHANTL1: (0, 120, 10, 30), MERCHANTL2: (0, 140, 15, 40), MERCHANTL3: (0, 160, 20, 50), INTERCEPTORL1: (0, 110, 10, 30), INTERCEPTORL2: (0, 130, 15, 40), INTERCEPTORL3: (0, 150, 20, 50), BRIGL1: (0, 140, 10, 30), BRIGL2: (0, 160, 15, 40), BRIGL3: (0, 180, 20, 50), QUEEN_ANNES_REVENGE: (0, 150, 20, 50), SHIP_OF_THE_LINE: (0, 190, 20, 50), BLACK_PEARL: (0, 190, 20, 50), GOLIATH: (0, 190, 20, 50), SKEL_WARSHIPL3: (0, 180, 20, 50), SKEL_INTERCEPTORL3: (0, 150, 20, 50)}
BROADSIDE_MAX_AUTOAIM_DIST = 2000
BROADSIDE_LEFT = 0
BROADSIDE_RIGHT = 1
__broadsideMaxDelay = {WARSHIPL1: 0.6, WARSHIPL2: 1.0, WARSHIPL3: 1.5, MERCHANTL1: 0.8, MERCHANTL2: 1.6, MERCHANTL3: 1.75, INTERCEPTORL1: 0.3, INTERCEPTORL2: 0.5, INTERCEPTORL3: 0.75, BRIGL1: 0.6, BRIGL2: 1.0, BRIGL3: 1.5, SHIP_OF_THE_LINE: 1.2, BLACK_PEARL: 1.25, GOLIATH: 1.2, QUEEN_ANNES_REVENGE: 1.2, SKEL_WARSHIPL3: 1.25, SKEL_INTERCEPTORL3: 1.0}
CustomShipRewards = {QUEEN_ANNES_REVENGE: [{100.0: [ItemGlobals.MUTINEERS_CHARM]}, {0.02: [ItemGlobals.POTION_SUMMON_CHICKEN], 100.0: [ItemGlobals.POTION_CANNON_3, ItemGlobals.POTION_PISTOL_3, ItemGlobals.POTION_FACECOLOR, ItemGlobals.POTION_ACC_3, ItemGlobals.POTION_SPEED_3]}]} | [
2,
34318,
2349,
21,
2196,
513,
13,
17,
13,
15,
198,
2,
11361,
18022,
8189,
362,
13,
19,
357,
38850,
5333,
8,
198,
2,
4280,
3361,
3902,
422,
25,
11361,
362,
13,
22,
13,
1415,
357,
85,
17,
13,
22,
13,
1415,
25,
23,
34825,
1129,
2327,
276,
11,
8621,
1467,
2177,
11,
1160,
25,
1129,
25,
1270,
8,
685,
5653,
34,
410,
13,
33698,
3933,
1643,
357,
24123,
15437,
198,
2,
13302,
47238,
2393,
1438,
25,
27516,
13,
6720,
13,
25586,
9861,
672,
874,
198,
6738,
19798,
330,
13,
47,
5282,
5841,
5028,
1330,
1635,
198,
6738,
1277,
13,
12860,
8692,
13,
37906,
18274,
346,
1330,
2039,
388,
198,
6738,
27516,
13,
18478,
9703,
13,
39018,
32942,
9861,
672,
874,
1330,
1635,
198,
6738,
27516,
13,
18478,
9703,
13,
39018,
32942,
9861,
672,
874,
1330,
35772,
6030,
198,
6738,
1277,
13,
11218,
1330,
27274,
198,
6738,
1277,
13,
35943,
1330,
15941,
198,
6738,
27516,
13,
24807,
1330,
9097,
9861,
672,
874,
198,
11748,
4738,
11,
4866,
11,
10688,
198,
35036,
62,
26465,
3913,
796,
657,
198,
35036,
62,
34,
4663,
29931,
796,
352,
198,
35036,
62,
24027,
796,
362,
198,
35036,
62,
54,
7036,
796,
513,
198,
35036,
62,
7206,
38865,
796,
49144,
6234,
62,
26465,
3913,
198,
35036,
62,
2149,
1340,
62,
3398,
6465,
796,
657,
198,
35036,
62,
2149,
1340,
62,
18831,
9994,
796,
352,
198,
35036,
62,
10116,
46,
2389,
62,
4303,
39,
9338,
62,
49,
2885,
40,
2937,
796,
1802,
198,
20185,
62,
49423,
796,
657,
198,
31519,
1137,
62,
49423,
796,
352,
198,
34,
22846,
1340,
32988,
24290,
62,
49423,
796,
362,
198,
37,
18422,
2751,
62,
49423,
796,
513,
198,
5188,
35400,
17534,
62,
49423,
796,
604,
198,
5188,
35400,
17534,
62,
49423,
62,
34694,
796,
3126,
1635,
1542,
198,
49423,
62,
44,
8874,
10008,
62,
8202,
9795,
796,
657,
198,
49423,
62,
44,
8874,
10008,
62,
4944,
8202,
9795,
796,
352,
198,
49423,
62,
8202,
9795,
62,
10913,
2662,
62,
17887,
3955,
796,
657,
198,
49423,
62,
8202,
9795,
62,
10913,
2662,
62,
54,
28082,
796,
352,
198,
33456,
1581,
62,
2200,
1503,
796,
657,
198,
33456,
1581,
62,
2538,
9792,
796,
532,
16,
198,
33456,
1581,
62,
49,
9947,
796,
352,
198,
10116,
46,
2389,
62,
4303,
39,
9338,
62,
49,
2885,
40,
2937,
796,
1802,
198,
50,
4944,
42,
62,
2200,
4537,
4663,
62,
8220,
2257,
62,
44,
16724,
4061,
31271,
1137,
796,
362,
198,
49423,
62,
2200,
1503,
62,
35,
2390,
11879,
62,
33,
1340,
2937,
796,
352,
13,
1495,
628,
198,
198,
44,
11262,
62,
25294,
46,
62,
6489,
2246,
12529,
62,
45849,
796,
685,
198,
5972,
418,
13,
33,
17705,
62,
38803,
62,
54,
5126,
11,
5972,
418,
13,
33,
17705,
62,
38803,
62,
41294,
60,
198,
41358,
42006,
1581,
43,
16,
796,
352,
198,
41358,
42006,
1581,
43,
17,
796,
362,
198,
41358,
42006,
1581,
43,
18,
796,
513,
198,
29296,
3398,
8643,
43,
16,
796,
1367,
198,
29296,
3398,
8643,
43,
17,
796,
1105,
198,
29296,
3398,
8643,
43,
18,
796,
1511,
198,
16279,
49423,
43,
16,
796,
2310,
198,
16279,
49423,
43,
17,
796,
2534,
198,
16279,
49423,
43,
18,
796,
2242,
198,
16279,
49423,
9858,
796,
1987,
198,
11473,
3528,
43,
16,
796,
1679,
198,
11473,
3528,
43,
17,
796,
2608,
198,
11473,
3528,
43,
18,
796,
2681,
198,
49423,
62,
19238,
62,
10970,
62,
24027,
796,
1542,
198,
39,
5653,
62,
53,
18379,
15513,
796,
3261,
198,
39,
5653,
62,
13965,
44647,
2538,
796,
3933,
198,
39,
5653,
62,
1268,
53,
30158,
34563,
796,
4747,
198,
36,
2043,
34,
62,
12394,
35316,
2389,
796,
4974,
198,
36,
2043,
34,
62,
10943,
10917,
1137,
1137,
796,
3439,
198,
36,
2043,
34,
62,
2538,
12861,
12599,
1565,
796,
4570,
198,
3698,
62,
47,
1404,
49,
19213,
62,
49423,
796,
5214,
198,
47,
62,
18831,
3698,
62,
11909,
8643,
2662,
796,
4353,
198,
47,
62,
18831,
3698,
62,
2200,
28290,
8643,
796,
5014,
198,
47,
62,
18831,
3698,
62,
34,
9338,
45346,
796,
2319,
198,
47,
62,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
796,
6073,
198,
47,
62,
36,
2043,
34,
62,
16279,
43,
12532,
796,
5433,
198,
4535,
53,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
796,
5946,
198,
9148,
8120,
62,
11401,
1503,
43,
796,
2026,
198,
5631,
4944,
14990,
7597,
796,
6885,
198,
3697,
45761,
62,
35,
3843,
3398,
10725,
796,
6740,
198,
38,
3535,
40,
12599,
796,
7192,
198,
45006,
3069,
56,
62,
49,
7730,
1137,
796,
7175,
198,
48,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
796,
5996,
198,
18831,
3698,
62,
16279,
49423,
43,
18,
796,
3126,
198,
18831,
3698,
62,
41358,
42006,
1581,
43,
18,
796,
8454,
198,
4535,
53,
56,
62,
24302,
26087,
796,
4019,
198,
4535,
53,
56,
62,
28934,
56,
39,
15919,
796,
9773,
198,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
796,
9415,
198,
4535,
53,
56,
62,
4805,
1961,
25633,
796,
9698,
198,
4535,
53,
56,
62,
33,
6239,
54,
14175,
796,
9508,
198,
4535,
53,
56,
62,
53,
15567,
52,
9795,
796,
7600,
198,
4535,
53,
56,
62,
27857,
31315,
796,
9849,
198,
4535,
53,
56,
62,
25154,
18420,
2937,
796,
10083,
198,
4535,
53,
56,
62,
47,
1565,
21250,
796,
9193,
198,
4535,
53,
56,
62,
43960,
4261,
2849,
796,
9919,
198,
4535,
53,
56,
62,
10725,
62,
46,
62,
16279,
796,
4101,
198,
4535,
53,
56,
62,
35,
15675,
45,
2606,
38,
6535,
796,
10495,
198,
4535,
53,
56,
62,
3698,
12709,
796,
10190,
198,
4535,
53,
56,
62,
33,
11262,
2849,
796,
10261,
198,
36,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
796,
1802,
198,
36,
2043,
34,
62,
9148,
22808,
39,
15919,
796,
8949,
198,
36,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
796,
15143,
198,
36,
2043,
34,
62,
44879,
4090,
4663,
796,
15349,
198,
36,
2043,
34,
62,
50,
3525,
1268,
3698,
796,
14436,
198,
36,
2043,
34,
62,
4663,
1340,
54,
7036,
796,
13343,
198,
36,
2043,
34,
62,
7730,
2200,
796,
15696,
198,
36,
2043,
34,
62,
12473,
39,
3620,
26946,
796,
16226,
198,
36,
2043,
34,
62,
44879,
53,
2767,
9328,
796,
15495,
198,
36,
2043,
34,
62,
44,
24401,
8322,
1137,
796,
16003,
198,
36,
2043,
34,
62,
16279,
43,
12532,
796,
9796,
198,
36,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
796,
13374,
198,
36,
2043,
34,
62,
9936,
32506,
796,
13539,
198,
18831,
3698,
62,
11909,
8643,
2662,
796,
7982,
198,
18831,
3698,
62,
2200,
28290,
8643,
796,
20416,
198,
18831,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
796,
19409,
198,
18831,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
796,
17031,
198,
18831,
3698,
62,
7206,
12599,
62,
2662,
1677,
796,
19755,
198,
18831,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
796,
13151,
198,
18831,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
796,
19710,
198,
18831,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
796,
18112,
198,
18831,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
796,
13108,
198,
18831,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
796,
20248,
198,
18831,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
796,
11323,
198,
39,
4944,
5781,
62,
28290,
8264,
19240,
796,
13454,
198,
39,
4944,
5781,
62,
34,
3843,
5781,
62,
9693,
14175,
796,
27829,
198,
39,
4944,
5781,
62,
3697,
45761,
62,
2257,
1581,
44,
796,
25090,
198,
39,
4944,
5781,
62,
42,
8267,
56,
2885,
1961,
796,
26826,
198,
39,
4944,
5781,
62,
22083,
62,
14418,
53,
18422,
796,
25307,
198,
39,
4944,
5781,
62,
43960,
4261,
56,
62,
7801,
54,
42,
796,
21409,
198,
39,
4944,
5781,
62,
6173,
30649,
1961,
62,
50,
4663,
1677,
796,
26753,
198,
39,
4944,
5781,
62,
51,
19807,
32298,
796,
11546,
198,
39,
4944,
5781,
62,
47379,
14990,
1137,
21414,
21358,
796,
30110,
198,
39,
4944,
5781,
62,
1677,
62,
38,
1503,
7206,
796,
28581,
198,
2257,
20476,
56,
62,
49423,
796,
14280,
198,
31519,
1137,
62,
9693,
47643,
796,
357,
198,
23255,
42006,
1581,
43,
16,
11,
23255,
42006,
1581,
43,
17,
11,
23255,
42006,
1581,
43,
18,
11,
34482,
3398,
8643,
43,
16,
11,
34482,
3398,
8643,
43,
17,
11,
34482,
3398,
8643,
43,
18,
11,
11837,
49423,
43,
16,
11,
11837,
49423,
43,
17,
11,
11837,
49423,
43,
18,
11,
11177,
3528,
43,
16,
11,
11177,
3528,
43,
17,
11,
11177,
3528,
43,
18,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
17852,
62,
47,
1404,
49,
19213,
62,
49423,
11,
350,
62,
18831,
3698,
62,
11909,
8643,
2662,
11,
350,
62,
18831,
3698,
62,
2200,
28290,
8643,
11,
350,
62,
18831,
3698,
62,
34,
9338,
45346,
11,
350,
62,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
11,
350,
62,
36,
2043,
34,
62,
16279,
43,
12532,
11,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
8,
198,
4944,
4537,
2389,
62,
9693,
47643,
796,
357,
198,
23255,
42006,
1581,
43,
16,
11,
34482,
3398,
8643,
43,
16,
11,
11837,
49423,
43,
16,
11,
11177,
3528,
43,
16,
8,
198,
44,
11262,
62,
25294,
46,
62,
6489,
2246,
12529,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
685,
15,
4357,
23255,
42006,
1581,
43,
17,
25,
685,
15,
4357,
23255,
42006,
1581,
43,
18,
25,
685,
15,
4357,
34482,
3398,
8643,
43,
16,
25,
685,
16,
4357,
34482,
3398,
8643,
43,
17,
25,
685,
16,
4357,
34482,
3398,
8643,
43,
18,
25,
685,
16,
4357,
11837,
49423,
43,
16,
25,
685,
15,
4357,
11837,
49423,
43,
17,
25,
685,
15,
4357,
11837,
49423,
43,
18,
25,
685,
15,
4357,
11177,
3528,
43,
16,
25,
685,
15,
4357,
11177,
3528,
43,
17,
25,
685,
15,
4357,
11177,
3528,
43,
18,
25,
685,
15,
4357,
11837,
49423,
9858,
25,
685,
15,
48999,
198,
49423,
62,
31631,
62,
45849,
796,
685,
198,
705,
41358,
42006,
1581,
43,
16,
3256,
705,
41358,
42006,
1581,
43,
17,
3256,
705,
41358,
42006,
1581,
43,
18,
3256,
705,
29296,
3398,
8643,
43,
16,
3256,
705,
29296,
3398,
8643,
43,
17,
3256,
705,
29296,
3398,
8643,
43,
18,
3256,
705,
16279,
49423,
43,
16,
3256,
705,
16279,
49423,
43,
17,
3256,
705,
16279,
49423,
43,
18,
3256,
705,
11473,
3528,
43,
16,
3256,
705,
11473,
3528,
43,
17,
3256,
705,
11473,
3528,
43,
18,
3256,
705,
9148,
8120,
62,
11401,
1503,
43,
3256,
705,
5631,
4944,
14990,
7597,
3256,
705,
3697,
45761,
62,
35,
3843,
3398,
10725,
3256,
705,
38,
3535,
40,
12599,
3256,
705,
48,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
3256,
705,
18831,
3698,
62,
16279,
49423,
43,
18,
3256,
705,
18831,
3698,
62,
41358,
42006,
1581,
43,
18,
3256,
705,
2257,
20476,
56,
62,
49423,
3256,
705,
4535,
53,
56,
62,
24302,
26087,
3256,
705,
4535,
53,
56,
62,
28934,
56,
39,
15919,
3256,
705,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
3256,
705,
4535,
53,
56,
62,
4805,
1961,
25633,
3256,
705,
4535,
53,
56,
62,
33,
6239,
54,
14175,
3256,
705,
4535,
53,
56,
62,
53,
15567,
52,
9795,
3256,
705,
4535,
53,
56,
62,
27857,
31315,
3256,
705,
4535,
53,
56,
62,
25154,
18420,
2937,
3256,
705,
4535,
53,
56,
62,
47,
1565,
21250,
3256,
705,
4535,
53,
56,
62,
43960,
4261,
2849,
3256,
705,
4535,
53,
56,
62,
10725,
62,
46,
62,
16279,
3256,
705,
4535,
53,
56,
62,
35,
15675,
45,
2606,
38,
6535,
3256,
705,
36,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
3256,
705,
36,
2043,
34,
62,
9148,
22808,
39,
15919,
3256,
705,
36,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
3256,
705,
36,
2043,
34,
62,
44879,
4090,
4663,
3256,
705,
36,
2043,
34,
62,
50,
3525,
1268,
3698,
3256,
705,
36,
2043,
34,
62,
4663,
1340,
54,
7036,
3256,
705,
36,
2043,
34,
62,
7730,
2200,
3256,
705,
36,
2043,
34,
62,
12473,
39,
3620,
26946,
3256,
705,
36,
2043,
34,
62,
44879,
53,
2767,
9328,
3256,
705,
36,
2043,
34,
62,
44,
24401,
8322,
1137,
3256,
705,
36,
2043,
34,
62,
16279,
43,
12532,
3256,
705,
36,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
3256,
705,
18831,
3698,
62,
11909,
8643,
2662,
3256,
705,
18831,
3698,
62,
2200,
28290,
8643,
3256,
705,
18831,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
3256,
705,
18831,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
3256,
705,
18831,
3698,
62,
7206,
12599,
62,
2662,
1677,
3256,
705,
18831,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
3256,
705,
18831,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
3256,
705,
18831,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
3256,
705,
18831,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
3256,
705,
18831,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
3256,
705,
18831,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
3256,
705,
39,
4944,
5781,
62,
28290,
8264,
19240,
20520,
628,
628,
628,
628,
198,
834,
71,
724,
31512,
796,
1391,
16279,
49423,
43,
16,
25,
685,
12825,
11,
4751,
11,
4751,
4357,
11837,
49423,
43,
17,
25,
685,
33698,
11,
20343,
11,
20343,
4357,
11837,
49423,
43,
18,
25,
685,
44688,
11,
23336,
11,
23336,
4357,
34482,
3398,
8643,
43,
16,
25,
685,
36150,
11,
36641,
11,
36641,
4357,
34482,
3398,
8643,
43,
17,
25,
685,
34294,
11,
48548,
11,
48548,
4357,
34482,
3398,
8643,
43,
18,
25,
685,
2682,
405,
11,
30123,
11,
30123,
4357,
23255,
42006,
1581,
43,
16,
25,
685,
7410,
11,
8576,
11,
8576,
4357,
23255,
42006,
1581,
43,
17,
25,
685,
27550,
11,
21431,
11,
21431,
4357,
23255,
42006,
1581,
43,
18,
25,
685,
11024,
11,
4570,
405,
11,
4570,
405,
4357,
11177,
3528,
43,
16,
25,
685,
1485,
405,
11,
20007,
11,
20007,
4357,
11177,
3528,
43,
17,
25,
685,
48104,
11,
2681,
405,
11,
2681,
405,
4357,
11177,
3528,
43,
18,
25,
685,
23924,
11,
604,
4059,
11,
604,
4059,
4357,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
685,
20,
2388,
11,
1802,
830,
11,
1802,
830,
4357,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
685,
2078,
405,
11,
642,
2167,
11,
642,
2167,
4357,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
685,
1731,
405,
11,
604,
2167,
11,
604,
2167,
4357,
31963,
62,
11401,
1503,
43,
25,
685,
23924,
11,
642,
7029,
11,
642,
7029,
4357,
402,
3535,
40,
12599,
25,
685,
18,
2167,
11,
7265,
405,
11,
7265,
405,
4357,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
685,
23924,
11,
30123,
11,
30123,
48999,
628,
198,
12286,
12832,
7015,
341,
796,
1160,
198,
12286,
11518,
22785,
796,
7982,
198,
12286,
11518,
49,
964,
325,
22785,
796,
4277,
11518,
22785,
1220,
352,
13,
20,
198,
12286,
49,
964,
325,
12832,
7015,
341,
796,
4277,
12832,
7015,
341,
1220,
352,
13,
20,
198,
12286,
11518,
49,
964,
325,
12832,
7015,
341,
796,
838,
198,
12286,
17278,
796,
718,
198,
12286,
11518,
17278,
796,
1160,
198,
12286,
25586,
20273,
796,
352,
13,
15,
198,
12286,
19184,
5317,
539,
796,
657,
13,
2713,
198,
834,
9806,
39,
724,
29668,
796,
23884,
628,
198,
834,
6720,
16934,
82,
796,
1391,
16279,
49423,
43,
16,
25,
1391,
6,
2617,
25586,
9487,
10354,
11837,
49423,
43,
16,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
604,
2167,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
11837,
49423,
43,
17,
25,
1391,
6,
2617,
25586,
9487,
10354,
11837,
49423,
43,
17,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
807,
7029,
11,
705,
2777,
10354,
50138,
11,
705,
9806,
34,
9448,
10354,
1105,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
11837,
49423,
43,
18,
25,
1391,
6,
2617,
25586,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
1105,
8054,
11,
705,
2777,
10354,
1105,
830,
11,
705,
9806,
34,
9448,
10354,
1467,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
21431,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
11177,
3528,
43,
16,
25,
1391,
6,
2617,
25586,
9487,
10354,
11177,
3528,
43,
16,
11,
705,
19849,
9487,
10354,
11177,
3528,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
5014,
405,
11,
705,
2777,
10354,
642,
4059,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
7337,
11,
705,
330,
7015,
341,
10354,
352,
13,
1314,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
5332,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
2425,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
2425,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
22,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
22,
1635,
4277,
11518,
17278,
5512,
11177,
3528,
43,
17,
25,
1391,
6,
2617,
25586,
9487,
10354,
11177,
3528,
43,
17,
11,
705,
19849,
9487,
10354,
11177,
3528,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
767,
7410,
11,
705,
2777,
10354,
38055,
11,
705,
9806,
34,
9448,
10354,
1105,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1467,
11,
705,
859,
2229,
13434,
10354,
19683,
11,
705,
330,
7015,
341,
10354,
352,
13,
1314,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
5332,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
2425,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
2425,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
22,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
22,
1635,
4277,
11518,
17278,
5512,
11177,
3528,
43,
18,
25,
1391,
6,
2617,
25586,
9487,
10354,
11177,
3528,
43,
18,
11,
705,
19849,
9487,
10354,
11177,
3528,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
1105,
830,
11,
705,
2777,
10354,
1367,
830,
11,
705,
9806,
34,
9448,
10354,
1467,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
2534,
11,
705,
859,
2229,
13434,
10354,
36641,
11,
705,
330,
7015,
341,
10354,
352,
13,
1314,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
5332,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
2425,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
2425,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
22,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
22,
1635,
4277,
11518,
17278,
5512,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
1391,
6,
2617,
25586,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
1987,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
17852,
62,
47,
1404,
49,
19213,
62,
49423,
25,
1391,
6,
2617,
25586,
9487,
10354,
17852,
62,
47,
1404,
49,
19213,
62,
49423,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
38,
13484,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
1105,
8054,
11,
705,
2777,
10354,
1105,
830,
11,
705,
9806,
34,
9448,
10354,
1467,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
21431,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
350,
62,
18831,
3698,
62,
11909,
8643,
2662,
25,
1391,
6,
2617,
25586,
9487,
10354,
350,
62,
18831,
3698,
62,
11909,
8643,
2662,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
1478,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
26143,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
350,
62,
18831,
3698,
62,
2200,
28290,
8643,
25,
1391,
6,
2617,
25586,
9487,
10354,
350,
62,
18831,
3698,
62,
2200,
28290,
8643,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
718,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
718,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
1478,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
26143,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
350,
62,
18831,
3698,
62,
34,
9338,
45346,
25,
1391,
6,
2617,
25586,
9487,
10354,
350,
62,
18831,
3698,
62,
34,
9338,
45346,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
20343,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
1105,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
5323,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
350,
62,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
25,
1391,
6,
2617,
25586,
9487,
10354,
350,
62,
4535,
53,
56,
62,
37286,
37,
1797,
16879,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
1478,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
860,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
350,
62,
36,
2043,
34,
62,
16279,
43,
12532,
25,
1391,
6,
2617,
25586,
9487,
10354,
350,
62,
36,
2043,
34,
62,
16279,
43,
12532,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
1467,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
48548,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
657,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
44247,
62,
53,
18379,
15513,
25,
1391,
6,
2617,
25586,
9487,
10354,
44247,
62,
53,
18379,
15513,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
45,
2830,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
44247,
62,
13965,
44647,
2538,
25,
1391,
6,
2617,
25586,
9487,
10354,
44247,
62,
13965,
44647,
2538,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
45,
2830,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
44247,
62,
1268,
53,
30158,
34563,
25,
1391,
6,
2617,
25586,
9487,
10354,
44247,
62,
1268,
53,
30158,
34563,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
45,
2830,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
12394,
35316,
2389,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
12394,
35316,
2389,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
10943,
10917,
1137,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
10943,
10917,
1137,
1137,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
2538,
12861,
12599,
1565,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
2538,
12861,
12599,
1565,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31055,
5015,
62,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1315,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
34482,
3398,
8643,
43,
16,
25,
1391,
6,
2617,
25586,
9487,
10354,
34482,
3398,
8643,
43,
16,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
604,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
4570,
405,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
838,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
604,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
5867,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
34482,
3398,
8643,
43,
17,
25,
1391,
6,
2617,
25586,
9487,
10354,
34482,
3398,
8643,
43,
17,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
767,
2167,
11,
705,
2777,
10354,
50205,
11,
705,
9806,
34,
9448,
10354,
1478,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1248,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
34482,
3398,
8643,
43,
18,
25,
1391,
6,
2617,
25586,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
838,
7410,
11,
705,
2777,
10354,
33028,
11,
705,
9806,
34,
9448,
10354,
1248,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
24938,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
23255,
42006,
1581,
43,
16,
25,
1391,
6,
2617,
25586,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
362,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
513,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
513,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
48548,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
718,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
362,
11,
705,
9806,
15783,
5643,
1460,
10354,
718,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
23255,
42006,
1581,
43,
17,
25,
1391,
6,
2617,
25586,
9487,
10354,
23255,
42006,
1581,
43,
17,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
4764,
405,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
838,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
5867,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
23255,
42006,
1581,
43,
18,
25,
1391,
6,
2617,
25586,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
767,
2167,
11,
705,
2777,
10354,
50138,
11,
705,
9806,
34,
9448,
10354,
1478,
11,
705,
9806,
46724,
10354,
860,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
31963,
62,
11401,
1503,
43,
25,
1391,
6,
2617,
25586,
9487,
10354,
31963,
62,
11401,
1503,
43,
11,
705,
19849,
9487,
10354,
31963,
62,
11401,
1503,
43,
11,
705,
12286,
21466,
10354,
44963,
13,
20866,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
9915,
46262,
75,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
20866,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
20866,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
20866,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
39064,
11,
705,
2777,
10354,
38055,
11,
705,
9806,
34,
9448,
10354,
1160,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1248,
11,
705,
859,
2229,
13434,
10354,
4751,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
22,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
22,
1635,
4277,
11518,
17278,
5512,
3563,
20476,
56,
62,
49423,
25,
1391,
6,
2617,
25586,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
14140,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
51,
44917,
11,
657,
4357,
705,
9464,
15783,
5643,
1460,
10354,
685,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
48548,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
362,
11,
705,
9806,
34,
1236,
684,
10354,
362,
11,
705,
9806,
15783,
5643,
1460,
10354,
657,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
22,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
22,
1635,
4277,
11518,
17278,
5512,
402,
3535,
40,
12599,
25,
1391,
6,
2617,
25586,
9487,
10354,
402,
3535,
40,
12599,
11,
705,
19849,
9487,
10354,
402,
3535,
40,
12599,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
3439,
405,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1248,
11,
705,
9806,
15783,
5643,
1460,
10354,
1248,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
352,
13,
17,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
24,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
1391,
6,
2617,
25586,
9487,
10354,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
11,
705,
19849,
9487,
10354,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
11,
705,
12286,
21466,
10354,
44963,
13,
32466,
2025,
2516,
3041,
18674,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
50,
38800,
11,
705,
24831,
10354,
50138,
11,
705,
2777,
10354,
33028,
11,
705,
9806,
34,
9448,
10354,
1467,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
1105,
11,
705,
9806,
15783,
5643,
1460,
10354,
2534,
11,
705,
859,
2229,
13434,
10354,
24938,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
47,
1565,
21250,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
47,
1565,
21250,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
604,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
604,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
35665,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
43960,
4261,
2849,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
43960,
4261,
2849,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
718,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
718,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
10725,
62,
46,
62,
16279,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
10725,
62,
46,
62,
16279,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
807,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
807,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
35,
15675,
45,
2606,
38,
6535,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
35,
15675,
45,
2606,
38,
6535,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
3698,
12709,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
3698,
12709,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
604,
2167,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
33,
6239,
54,
14175,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
33,
6239,
54,
14175,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
604,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
36641,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
604,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
53,
15567,
52,
9795,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
53,
15567,
52,
9795,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1248,
11,
705,
859,
2229,
13434,
10354,
5867,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
27857,
31315,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
27857,
31315,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
642,
4059,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
25154,
18420,
2937,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
25154,
18420,
2937,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
642,
4059,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
33,
11262,
2849,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
33,
11262,
2849,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
4570,
405,
11,
705,
2777,
10354,
642,
4059,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
24302,
26087,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
24302,
26087,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
362,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
8576,
11,
705,
2777,
10354,
20343,
11,
705,
9806,
34,
9448,
10354,
352,
11,
705,
9806,
46724,
10354,
604,
11,
705,
9806,
34,
1236,
684,
10354,
362,
11,
705,
9806,
15783,
5643,
1460,
10354,
718,
11,
705,
859,
2229,
13434,
10354,
5441,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
28934,
56,
39,
15919,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
28934,
56,
39,
15919,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
604,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
513,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
513,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
3439,
405,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
18500,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
37286,
37,
1797,
16879,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
37286,
37,
1797,
16879,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
47140,
56,
62,
4805,
1961,
25633,
25,
1391,
6,
2617,
25586,
9487,
10354,
47140,
56,
62,
4805,
1961,
25633,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
2949,
11187,
78,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
44879,
53,
2767,
9328,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
44879,
53,
2767,
9328,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
35665,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
44,
24401,
8322,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
44,
24401,
8322,
1137,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
16279,
43,
12532,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
16279,
43,
12532,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
38123,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
9936,
32506,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
9936,
32506,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
604,
2167,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
50,
3525,
1268,
3698,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
50,
3525,
1268,
3698,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
604,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
36641,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
718,
11,
705,
9806,
34,
1236,
684,
10354,
604,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
6640,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
4663,
1340,
54,
7036,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
4663,
1340,
54,
7036,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
352,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
838,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1248,
11,
705,
859,
2229,
13434,
10354,
5867,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
7730,
2200,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
7730,
2200,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
657,
11,
657,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
11,
12283,
684,
13,
43,
17,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
642,
4059,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
12473,
39,
3620,
26946,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
12473,
39,
3620,
26946,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
21431,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
16,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
362,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
513,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
513,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
8576,
11,
705,
2777,
10354,
20343,
11,
705,
9806,
34,
9448,
10354,
352,
11,
705,
9806,
46724,
10354,
604,
11,
705,
9806,
34,
1236,
684,
10354,
362,
11,
705,
9806,
15783,
5643,
1460,
10354,
718,
11,
705,
859,
2229,
13434,
10354,
5441,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
9148,
22808,
39,
15919,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
9148,
22808,
39,
15919,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
17,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
3439,
405,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
838,
11,
705,
859,
2229,
13434,
10354,
18500,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
412,
2043,
34,
62,
44879,
4090,
4663,
25,
1391,
6,
2617,
25586,
9487,
10354,
412,
2043,
34,
62,
44879,
4090,
4663,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
36,
2043,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
36,
2043,
34,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
16,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
350,
8516,
13,
38887,
11,
705,
24831,
10354,
24938,
11,
705,
2777,
10354,
30123,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
11909,
8643,
2662,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
11909,
8643,
2662,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
657,
4357,
705,
3506,
15783,
5643,
1460,
10354,
685,
15,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
12283,
684,
13,
50,
7750,
62,
43,
17,
11,
657,
4357,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
2200,
28290,
8643,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
2200,
28290,
8643,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
718,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
718,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
7206,
12599,
62,
2662,
1677,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
7206,
12599,
62,
2662,
1677,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
1391,
6,
2617,
25586,
9487,
10354,
32357,
3069,
56,
62,
49,
7730,
1137,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
16279,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
32,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
50,
7750,
62,
13383,
62,
33,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
16351,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
50,
7750,
62,
32,
701,
11,
362,
828,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
718,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
1248,
830,
11,
705,
9806,
34,
9448,
10354,
838,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
807,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
352,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
20343,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
30123,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
35491,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
37,
1601,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33507,
11,
705,
2777,
10354,
23336,
11,
705,
9806,
34,
9448,
10354,
352,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
20343,
11,
705,
2777,
10354,
39064,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
25,
1391,
6,
2617,
25586,
9487,
10354,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
11,
705,
19849,
9487,
10354,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
31319,
1329,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
50,
7750,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
657,
11,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
657,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
18,
60,
1635,
642,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
50,
7750,
62,
43,
17,
60,
1635,
642,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
30123,
11,
705,
2777,
10354,
38055,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
718,
11,
705,
9806,
15783,
5643,
1460,
10354,
1478,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
17,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
24,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
23,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
28290,
8264,
19240,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
28290,
8264,
19240,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
32,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
33,
17705,
62,
38803,
62,
54,
5126,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
50138,
11,
705,
2777,
10354,
513,
2388,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
20,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
352,
13,
17,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
352,
13,
15,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
34,
3843,
5781,
62,
9693,
14175,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
34,
3843,
5781,
62,
9693,
14175,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
33,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31407,
270,
62,
2601,
707,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
5598,
405,
11,
705,
2777,
10354,
1987,
830,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
1105,
11,
705,
9806,
15783,
5643,
1460,
10354,
1467,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
362,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
362,
13,
15,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
352,
13,
15,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
3697,
45761,
62,
2257,
1581,
44,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
3697,
45761,
62,
2257,
1581,
44,
11,
705,
19849,
9487,
10354,
23255,
42006,
1581,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
34,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
14824,
11,
362,
828,
705,
47616,
16934,
17,
10354,
657,
11,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
14824,
11,
352,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
33,
17705,
62,
38803,
62,
49795,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
807,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
767,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
5598,
405,
11,
705,
2777,
10354,
1987,
830,
11,
705,
9806,
34,
9448,
10354,
362,
11,
705,
9806,
46724,
10354,
513,
11,
705,
9806,
34,
1236,
684,
10354,
1105,
11,
705,
9806,
15783,
5643,
1460,
10354,
1467,
11,
705,
859,
2229,
13434,
10354,
18523,
11,
705,
330,
7015,
341,
10354,
362,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
362,
13,
15,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
352,
13,
15,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
42,
8267,
56,
2885,
1961,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
42,
8267,
56,
2885,
1961,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
35,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
33,
17705,
62,
38803,
62,
41294,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
860,
2167,
11,
705,
2777,
10354,
1679,
4059,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
22083,
62,
14418,
53,
18422,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
22083,
62,
14418,
53,
18422,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
36,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31407,
270,
62,
3351,
16300,
295,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
50138,
11,
705,
2777,
10354,
513,
2388,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
20,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
352,
13,
17,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
352,
13,
15,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
43960,
4261,
56,
62,
7801,
54,
42,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
43960,
4261,
56,
62,
7801,
54,
42,
11,
705,
19849,
9487,
10354,
34482,
3398,
8643,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
37,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
362,
828,
705,
14940,
47616,
16934,
10354,
657,
11,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31407,
270,
62,
35,
7928,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
838,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
860,
2167,
11,
705,
2777,
10354,
1679,
4059,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
1478,
11,
705,
9806,
34,
1236,
684,
10354,
838,
11,
705,
9806,
15783,
5643,
1460,
10354,
1987,
11,
705,
859,
2229,
13434,
10354,
10053,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
6173,
30649,
1961,
62,
50,
4663,
1677,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
6173,
30649,
1961,
62,
50,
4663,
1677,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
33,
17705,
38803,
62,
38,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
362,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
31407,
270,
62,
2601,
707,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1105,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
838,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
50138,
11,
705,
2777,
10354,
33028,
11,
705,
9806,
34,
9448,
10354,
513,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
20,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
352,
13,
17,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
352,
13,
15,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
23,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
23,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
51,
19807,
32298,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
51,
19807,
32298,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
38803,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
45,
2830,
62,
38803,
62,
3118,
291,
1211,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
4153,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
47379,
14990,
1137,
21414,
21358,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
47379,
14990,
1137,
21414,
21358,
11,
705,
19849,
9487,
10354,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
38803,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
45,
2830,
62,
38803,
62,
43,
295,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
17,
60,
1635,
1105,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
18438,
418,
425,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
13543,
17938,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
939,
405,
11,
705,
2777,
10354,
4153,
830,
11,
705,
9806,
34,
9448,
10354,
807,
11,
705,
9806,
46724,
10354,
1105,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1105,
11,
705,
859,
2229,
13434,
10354,
4570,
405,
11,
705,
330,
7015,
341,
10354,
352,
13,
15,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
21,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
21,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
20,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
20,
1635,
4277,
11518,
17278,
5512,
41041,
5781,
62,
1677,
62,
38,
1503,
7206,
25,
1391,
6,
2617,
25586,
9487,
10354,
41041,
5781,
62,
1677,
62,
38,
1503,
7206,
11,
705,
19849,
9487,
10354,
11837,
49423,
43,
18,
11,
705,
12286,
21466,
10354,
44963,
13,
45,
2830,
38803,
11,
705,
47616,
16934,
16,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
17,
10354,
357,
44,
5773,
13,
13383,
62,
48011,
11,
513,
828,
705,
47616,
16934,
18,
10354,
657,
11,
705,
754,
47616,
16934,
10354,
357,
44,
5773,
13,
16351,
62,
29800,
11,
513,
828,
705,
14940,
47616,
16934,
10354,
357,
44,
5773,
13,
32,
701,
62,
14824,
11,
352,
828,
705,
82,
603,
11187,
78,
10354,
5972,
418,
13,
45,
2830,
62,
38803,
62,
3118,
291,
1211,
11,
705,
66,
1236,
684,
10354,
685,
34,
1236,
684,
13,
43,
18,
60,
1635,
1478,
11,
705,
9464,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
3506,
15783,
5643,
1460,
10354,
685,
34,
1236,
684,
13,
43,
19,
60,
1635,
860,
11,
705,
36654,
1589,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
22685,
28512,
11,
705,
66,
8825,
32,
3020,
78,
10354,
35772,
6030,
13,
34,
8825,
45713,
25593,
11,
705,
79,
808,
10354,
657,
11,
705,
24831,
10354,
33028,
11,
705,
2777,
10354,
4570,
830,
11,
705,
9806,
34,
9448,
10354,
642,
11,
705,
9806,
46724,
10354,
807,
11,
705,
9806,
34,
1236,
684,
10354,
1478,
11,
705,
9806,
15783,
5643,
1460,
10354,
1160,
11,
705,
859,
2229,
13434,
10354,
15897,
11,
705,
330,
7015,
341,
10354,
352,
13,
16,
1635,
4277,
12832,
7015,
341,
11,
705,
9806,
22785,
10354,
657,
13,
23,
1635,
4277,
11518,
22785,
11,
705,
50188,
12832,
7015,
341,
10354,
657,
13,
22,
1635,
4277,
49,
964,
325,
12832,
7015,
341,
11,
705,
9806,
49,
964,
325,
22785,
10354,
657,
13,
22,
1635,
4277,
11518,
49,
964,
325,
12832,
7015,
341,
11,
705,
15344,
10354,
657,
13,
21,
1635,
4277,
17278,
11,
705,
9806,
17278,
10354,
657,
13,
21,
1635,
4277,
11518,
17278,
11709,
628,
198,
198,
834,
6720,
6207,
958,
13729,
15205,
24705,
959,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
657,
13,
1314,
11,
34482,
3398,
8643,
43,
16,
25,
657,
13,
17,
11,
11837,
49423,
43,
16,
25,
657,
13,
1495,
11,
23255,
42006,
1581,
43,
17,
25,
657,
13,
1314,
11,
34482,
3398,
8643,
43,
17,
25,
657,
13,
17,
11,
11837,
49423,
43,
17,
25,
657,
13,
1495,
11,
23255,
42006,
1581,
43,
18,
25,
657,
13,
1314,
11,
34482,
3398,
8643,
43,
18,
25,
657,
13,
17,
11,
11837,
49423,
43,
18,
25,
657,
13,
1495,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
657,
13,
20,
11,
402,
3535,
40,
12599,
25,
657,
13,
1495,
11,
31963,
62,
11401,
1503,
43,
25,
657,
13,
1495,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
657,
13,
1495,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
657,
13,
1495,
11,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
657,
13,
15,
92,
628,
628,
198,
834,
46970,
32,
1797,
1056,
22785,
796,
1391,
16279,
49423,
43,
16,
25,
29565,
1120,
11,
1802,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
11837,
49423,
43,
17,
25,
29565,
1120,
11,
1802,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
11837,
49423,
43,
18,
25,
29565,
1120,
11,
1802,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
34482,
3398,
8643,
43,
16,
25,
29565,
2231,
11,
4101,
11,
13343,
11,
13151,
4357,
685,
21,
11,
718,
46570,
34482,
3398,
8643,
43,
17,
25,
29565,
2231,
11,
4101,
11,
13343,
11,
13151,
4357,
685,
21,
11,
718,
46570,
34482,
3398,
8643,
43,
18,
25,
29565,
2231,
11,
4101,
11,
13343,
11,
13151,
4357,
685,
21,
11,
718,
46570,
23255,
42006,
1581,
43,
16,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
23255,
42006,
1581,
43,
17,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
23255,
42006,
1581,
43,
18,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
11177,
3528,
43,
16,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
11177,
3528,
43,
17,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
11177,
3528,
43,
18,
25,
29565,
2816,
11,
9796,
11,
13151,
11,
20299,
4357,
685,
1433,
11,
1467,
46570,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
29565,
4309,
11,
13343,
11,
7982,
11,
12713,
4357,
685,
1485,
11,
1511,
46570,
41041,
5781,
62,
28290,
8264,
19240,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
34,
3843,
5781,
62,
9693,
14175,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
3697,
45761,
62,
2257,
1581,
44,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
42,
8267,
56,
2885,
1961,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
22083,
62,
14418,
53,
18422,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
43960,
4261,
56,
62,
7801,
54,
42,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
6173,
30649,
1961,
62,
50,
4663,
1677,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
51,
19807,
32298,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
47379,
14990,
1137,
21414,
21358,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
41041,
5781,
62,
1677,
62,
38,
1503,
7206,
25,
29565,
3064,
11,
6640,
11,
939,
11,
8646,
4357,
685,
1238,
11,
1160,
46570,
44247,
62,
53,
18379,
15513,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
44247,
62,
13965,
44647,
2538,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
44247,
62,
1268,
53,
30158,
34563,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
412,
2043,
34,
62,
12394,
35316,
2389,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
412,
2043,
34,
62,
10943,
10917,
1137,
1137,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
412,
2043,
34,
62,
2538,
12861,
12599,
1565,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
3563,
20476,
56,
62,
49423,
25,
29565,
23,
11,
807,
11,
807,
11,
807,
4357,
685,
21,
11,
718,
46570,
31963,
62,
11401,
1503,
43,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
402,
3535,
40,
12599,
25,
29565,
1120,
11,
1802,
11,
6640,
11,
939,
4357,
685,
1415,
11,
1478,
46570,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
29565,
2154,
11,
11323,
11,
20299,
11,
21409,
4357,
685,
1238,
11,
1160,
46570,
47140,
56,
62,
47,
1565,
21250,
25,
29565,
1495,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
47140,
56,
62,
43960,
4261,
2849,
25,
29565,
1270,
11,
6135,
11,
9796,
11,
11323,
4357,
685,
23,
11,
807,
46570,
47140,
56,
62,
10725,
62,
46,
62,
16279,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
47140,
56,
62,
35,
15675,
45,
2606,
38,
6535,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
47140,
56,
62,
3698,
12709,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
47140,
56,
62,
33,
6239,
54,
14175,
25,
29565,
1238,
11,
2026,
11,
6957,
11,
12279,
4357,
685,
20,
11,
642,
46570,
47140,
56,
62,
53,
15567,
52,
9795,
25,
29565,
1495,
11,
5996,
11,
1802,
11,
7982,
4357,
685,
21,
11,
718,
46570,
47140,
56,
62,
27857,
31315,
25,
29565,
1270,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
47140,
56,
62,
25154,
18420,
2937,
25,
29565,
1270,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
47140,
56,
62,
33,
11262,
2849,
25,
29565,
1270,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
47140,
56,
62,
24302,
26087,
25,
29565,
1270,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
47140,
56,
62,
28934,
56,
39,
15919,
25,
29565,
2327,
11,
5441,
11,
7982,
11,
12713,
4357,
685,
1157,
11,
1367,
46570,
47140,
56,
62,
37286,
37,
1797,
16879,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
47140,
56,
62,
4805,
1961,
25633,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
412,
2043,
34,
62,
44879,
53,
2767,
9328,
25,
29565,
1495,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
412,
2043,
34,
62,
44,
24401,
8322,
1137,
25,
29565,
1270,
11,
6135,
11,
9796,
11,
11323,
4357,
685,
23,
11,
807,
46570,
412,
2043,
34,
62,
16279,
43,
12532,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
412,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
412,
2043,
34,
62,
9936,
32506,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
24,
11,
860,
46570,
412,
2043,
34,
62,
50,
3525,
1268,
3698,
25,
29565,
1238,
11,
2026,
11,
6957,
11,
12279,
4357,
685,
20,
11,
642,
46570,
412,
2043,
34,
62,
4663,
1340,
54,
7036,
25,
29565,
1495,
11,
5996,
11,
1802,
11,
7982,
4357,
685,
21,
11,
718,
46570,
412,
2043,
34,
62,
7730,
2200,
25,
29565,
1270,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
412,
2043,
34,
62,
12473,
39,
3620,
26946,
25,
29565,
1270,
11,
3126,
11,
13343,
11,
13151,
4357,
685,
22,
11,
767,
46570,
412,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
25,
29565,
1270,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
412,
2043,
34,
62,
9148,
22808,
39,
15919,
25,
29565,
2327,
11,
5441,
11,
7982,
11,
12713,
4357,
685,
1157,
11,
1367,
46570,
412,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
412,
2043,
34,
62,
44879,
4090,
4663,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
14277,
3698,
62,
11909,
8643,
2662,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
940,
11,
838,
46570,
14277,
3698,
62,
2200,
28290,
8643,
25,
29565,
2327,
11,
4317,
11,
12279,
11,
17501,
4357,
685,
1157,
11,
1367,
46570,
14277,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
25,
29565,
1821,
11,
5441,
11,
7982,
11,
12713,
4357,
685,
1157,
11,
1367,
46570,
14277,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
25,
29565,
1821,
11,
5441,
11,
7982,
11,
12713,
4357,
685,
1065,
11,
1105,
46570,
14277,
3698,
62,
7206,
12599,
62,
2662,
1677,
25,
29565,
2231,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1485,
11,
1511,
46570,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
25,
29565,
2231,
11,
7600,
11,
11323,
11,
6640,
4357,
685,
1415,
11,
1478,
46570,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1065,
11,
1105,
46570,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
25,
29565,
1821,
11,
4019,
11,
13151,
11,
20299,
4357,
685,
1485,
11,
1511,
46570,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
25,
29565,
2231,
11,
7600,
11,
11323,
11,
6640,
4357,
685,
1415,
11,
1478,
12962,
92,
628,
198,
42,
430,
3464,
33711,
2024,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
14808,
12727,
18,
7,
1821,
11,
1160,
11,
532,
20,
828,
657,
13,
20,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1821,
11,
532,
1821,
11,
532,
20,
828,
657,
13,
20,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
23255,
42006,
1581,
43,
17,
25,
14808,
12727,
18,
7,
1120,
11,
2319,
11,
532,
20,
828,
657,
13,
2425,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1120,
11,
532,
2154,
11,
532,
20,
828,
657,
13,
2425,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
23255,
42006,
1581,
43,
18,
25,
14808,
12727,
18,
7,
1899,
11,
4019,
11,
657,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1899,
11,
532,
1270,
11,
657,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
34482,
3398,
8643,
43,
16,
25,
14808,
12727,
18,
7,
1270,
11,
2026,
11,
532,
20,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1821,
11,
532,
940,
11,
532,
20,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1821,
11,
532,
2154,
11,
532,
20,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
34482,
3398,
8643,
43,
17,
25,
14808,
12727,
18,
7,
1120,
11,
2026,
11,
657,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1120,
11,
532,
940,
11,
657,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1120,
11,
532,
2154,
11,
657,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
34482,
3398,
8643,
43,
18,
25,
14808,
12727,
18,
7,
1899,
11,
2026,
11,
657,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
2154,
11,
532,
940,
11,
657,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
2154,
11,
532,
10232,
11,
657,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
11837,
49423,
43,
16,
25,
14808,
12727,
18,
7,
1270,
11,
2026,
11,
532,
1314,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
11,
2534,
11,
657,
828,
657,
13,
22,
828,
357,
12727,
18,
7,
1821,
11,
532,
940,
11,
532,
1314,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
828,
657,
13,
23,
828,
357,
12727,
18,
7,
1821,
11,
532,
2154,
11,
532,
1314,
828,
657,
13,
21,
11,
6252,
18,
7,
15,
828,
657,
13,
23,
36911,
11837,
49423,
43,
17,
25,
14808,
12727,
18,
7,
1821,
11,
4101,
11,
532,
1314,
828,
657,
13,
23,
11,
6252,
18,
7,
940,
11,
1679,
11,
657,
828,
657,
13,
23,
828,
357,
12727,
18,
7,
1120,
11,
838,
11,
532,
1314,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
828,
357,
12727,
18,
7,
1120,
11,
532,
2154,
11,
532,
1314,
828,
657,
13,
23,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
11837,
49423,
43,
18,
25,
14808,
12727,
18,
7,
1120,
11,
4101,
11,
532,
1314,
828,
352,
11,
6252,
18,
32590,
1238,
11,
1315,
11,
657,
828,
657,
13,
21,
828,
357,
12727,
18,
7,
1899,
11,
838,
11,
532,
1314,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
23,
828,
357,
12727,
18,
7,
1899,
11,
532,
10232,
11,
532,
1314,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
36911,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
14808,
12727,
18,
7,
1120,
11,
4101,
11,
532,
1314,
828,
352,
11,
6252,
18,
32590,
1238,
11,
1315,
11,
657,
828,
657,
13,
21,
828,
357,
12727,
18,
7,
1899,
11,
838,
11,
532,
1314,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
23,
828,
357,
12727,
18,
7,
1899,
11,
532,
10232,
11,
532,
1314,
828,
352,
11,
6252,
18,
7,
15,
828,
657,
13,
24,
4008,
92,
198,
834,
6720,
41205,
9362,
28709,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
357,
940,
13,
15,
11,
657,
828,
23255,
42006,
1581,
43,
17,
25,
357,
17,
13,
15,
11,
657,
828,
23255,
42006,
1581,
43,
18,
25,
357,
20,
13,
15,
11,
657,
828,
34482,
3398,
8643,
43,
16,
25,
357,
1485,
13,
15,
11,
532,
16,
828,
34482,
3398,
8643,
43,
17,
25,
357,
15,
13,
15,
11,
352,
828,
34482,
3398,
8643,
43,
18,
25,
357,
20,
13,
15,
11,
657,
828,
11837,
49423,
43,
16,
25,
357,
20,
13,
15,
11,
532,
16,
828,
11837,
49423,
43,
17,
25,
13841,
20,
13,
15,
11,
532,
16,
828,
11837,
49423,
43,
18,
25,
357,
15,
13,
15,
11,
532,
16,
828,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
357,
15,
13,
15,
11,
532,
16,
828,
44247,
62,
53,
18379,
15513,
25,
357,
15,
13,
15,
11,
532,
16,
828,
44247,
62,
13965,
44647,
2538,
25,
357,
15,
13,
15,
11,
532,
16,
828,
44247,
62,
1268,
53,
30158,
34563,
25,
357,
15,
13,
15,
11,
532,
16,
828,
412,
2043,
34,
62,
12394,
35316,
2389,
25,
357,
15,
13,
15,
11,
532,
16,
828,
412,
2043,
34,
62,
10943,
10917,
1137,
1137,
25,
357,
15,
13,
15,
11,
532,
16,
828,
412,
2043,
34,
62,
2538,
12861,
12599,
1565,
25,
357,
15,
13,
15,
11,
532,
16,
828,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
25,
357,
15,
13,
15,
11,
532,
16,
828,
31963,
62,
11401,
1503,
43,
25,
357,
15,
13,
15,
11,
532,
16,
828,
402,
3535,
40,
12599,
25,
357,
15,
13,
15,
11,
532,
16,
38165,
628,
198,
1268,
23428,
2389,
62,
9328,
2390,
796,
532,
16,
198,
31519,
1137,
62,
9328,
2390,
796,
657,
198,
4944,
7206,
2885,
62,
9328,
2390,
796,
352,
198,
4535,
53,
56,
62,
9328,
2390,
796,
362,
198,
5446,
2885,
2751,
62,
8220,
62,
9328,
2390,
796,
513,
198,
10913,
1677,
3398,
62,
4944,
7206,
2885,
62,
9328,
2390,
796,
767,
198,
4303,
1565,
18422,
62,
4944,
7206,
2885,
62,
9328,
2390,
796,
807,
198,
53,
22808,
6684,
62,
57,
2662,
3483,
36,
62,
9328,
2390,
796,
838,
198,
33,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
796,
1367,
198,
2538,
18697,
62,
12115,
6369,
796,
657,
198,
9328,
2390,
62,
12115,
6369,
796,
352,
198,
1677,
6242,
30465,
62,
12115,
6369,
796,
362,
198,
6720,
6601,
796,
1391,
39,
5653,
62,
53,
18379,
15513,
25,
685,
1795,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
44247,
62,
13965,
44647,
2538,
25,
685,
1795,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
44247,
62,
1268,
53,
30158,
34563,
25,
685,
1795,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
12394,
35316,
2389,
25,
685,
1795,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
10943,
10917,
1137,
1137,
25,
685,
1795,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
2538,
12861,
12599,
1565,
25,
685,
1795,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
42,
3861,
43959,
62,
39,
4944,
5781,
25,
685,
1795,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
24302,
26087,
25,
685,
17,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
33,
6239,
54,
14175,
25,
685,
21,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
47,
1565,
21250,
25,
685,
24,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
28934,
56,
39,
15919,
25,
685,
1065,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
53,
15567,
52,
9795,
25,
685,
1433,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
43960,
4261,
2849,
25,
685,
1129,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
37286,
37,
1797,
16879,
25,
685,
1828,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
27857,
31315,
25,
685,
2075,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
10725,
62,
46,
62,
16279,
25,
685,
1959,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
4805,
1961,
25633,
25,
685,
2624,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
25154,
18420,
2937,
25,
685,
2623,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
35,
15675,
45,
2606,
38,
6535,
25,
685,
2670,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
33,
11262,
2849,
25,
685,
1899,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
47140,
56,
62,
3698,
12709,
25,
685,
2154,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
402,
3535,
40,
12599,
25,
685,
1821,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
31963,
62,
11401,
1503,
43,
25,
685,
1270,
11,
28180,
1137,
62,
9328,
2390,
11,
352,
4357,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
685,
1821,
11,
569,
22808,
6684,
62,
57,
2662,
3483,
36,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
28290,
8264,
19240,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
34,
3843,
5781,
62,
9693,
14175,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
3697,
45761,
62,
2257,
1581,
44,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
42,
8267,
56,
2885,
1961,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
22083,
62,
14418,
53,
18422,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
43960,
4261,
56,
62,
7801,
54,
42,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
6173,
30649,
1961,
62,
50,
4663,
1677,
25,
685,
1120,
11,
347,
19385,
9936,
62,
39,
4944,
5781,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
51,
19807,
32298,
25,
685,
1899,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
47379,
14990,
1137,
21414,
21358,
25,
685,
1899,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
41041,
5781,
62,
1677,
62,
38,
1503,
7206,
25,
685,
1899,
11,
47140,
56,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
46887,
62,
53,
4061,
1137,
25,
685,
22,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
50,
3525,
1268,
3698,
25,
685,
1157,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
44879,
53,
2767,
9328,
25,
685,
1415,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
9148,
22808,
39,
15919,
25,
685,
1558,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
4663,
1340,
54,
7036,
25,
685,
2481,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
44,
24401,
8322,
1137,
25,
685,
1731,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
33,
26465,
2246,
52,
5631,
25,
685,
1983,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
7730,
2200,
25,
685,
3132,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
16279,
43,
12532,
25,
685,
2682,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
44879,
4090,
4663,
25,
685,
2718,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
12473,
39,
3620,
26946,
25,
685,
3901,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
41,
7340,
30373,
4535,
3843,
25,
685,
2598,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
412,
2043,
34,
62,
9936,
32506,
25,
685,
2154,
11,
7579,
2885,
2751,
62,
8220,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
11909,
8643,
2662,
25,
685,
1507,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
2200,
28290,
8643,
25,
685,
2075,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
2257,
1581,
44,
62,
2200,
2969,
1137,
25,
685,
3132,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
9148,
8120,
62,
39,
37304,
2751,
1137,
25,
685,
2623,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
7206,
12599,
62,
2662,
1677,
25,
685,
3682,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
685,
1899,
11,
4725,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
10913,
25,
685,
1507,
11,
8782,
1677,
3398,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
10913,
25,
685,
2481,
11,
8782,
1677,
3398,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
10913,
25,
685,
2078,
11,
8782,
1677,
3398,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
9693,
2885,
3913,
62,
9419,
3913,
62,
4303,
25,
685,
1507,
11,
6226,
1565,
18422,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
13909,
3069,
39,
15919,
62,
4303,
25,
685,
2481,
11,
6226,
1565,
18422,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
4357,
14277,
3698,
62,
9148,
22808,
62,
6173,
11698,
8264,
62,
4303,
25,
685,
2078,
11,
6226,
1565,
18422,
62,
4944,
7206,
2885,
62,
9328,
2390,
11,
352,
48999,
628,
198,
14881,
4971,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
362,
11,
34482,
3398,
8643,
43,
16,
25,
604,
11,
11837,
49423,
43,
16,
25,
807,
11,
11177,
3528,
43,
16,
25,
860,
11,
23255,
42006,
1581,
43,
17,
25,
1105,
11,
34482,
3398,
8643,
43,
17,
25,
1467,
11,
11837,
49423,
43,
17,
25,
1160,
11,
11177,
3528,
43,
17,
25,
2534,
11,
23255,
42006,
1581,
43,
18,
25,
2608,
11,
34482,
3398,
8643,
43,
18,
25,
1542,
11,
11837,
49423,
43,
18,
25,
4974,
11,
11177,
3528,
43,
18,
25,
4570,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
3933,
11,
31963,
62,
11401,
1503,
43,
25,
2319,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
3933,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
2608,
11,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
3126,
11,
402,
3535,
40,
12599,
25,
2026,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
4019,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
2319,
92,
198,
834,
6720,
4971,
17126,
15205,
24705,
959,
796,
1391,
15,
25,
357,
15,
13,
20,
11,
657,
11,
838,
828,
352,
25,
357,
15,
13,
22,
11,
657,
11,
1315,
828,
362,
25,
357,
15,
13,
24,
11,
657,
11,
1160,
828,
513,
25,
357,
16,
13,
16,
11,
657,
11,
1679,
828,
604,
25,
357,
16,
13,
18,
11,
657,
11,
1542,
828,
642,
25,
357,
16,
13,
20,
11,
657,
11,
3439,
828,
718,
25,
357,
16,
13,
22,
11,
657,
11,
2319,
828,
767,
25,
357,
16,
13,
24,
11,
657,
11,
4153,
828,
807,
25,
357,
17,
13,
16,
11,
657,
11,
2026,
828,
860,
25,
357,
17,
13,
18,
11,
657,
11,
5996,
828,
838,
25,
357,
17,
13,
20,
11,
657,
11,
3126,
828,
1367,
25,
357,
17,
13,
22,
11,
657,
11,
6135,
828,
1105,
25,
357,
17,
13,
24,
11,
657,
11,
4317,
828,
1511,
25,
357,
18,
13,
16,
11,
657,
11,
5441,
828,
1478,
25,
357,
18,
13,
18,
11,
657,
11,
4019,
828,
1315,
25,
357,
18,
13,
20,
11,
657,
11,
7600,
828,
1467,
25,
357,
18,
13,
22,
11,
657,
11,
4101,
828,
1596,
25,
357,
18,
13,
24,
11,
657,
11,
6957,
828,
1248,
25,
357,
19,
13,
16,
11,
657,
11,
1802,
828,
678,
25,
357,
19,
13,
18,
11,
657,
11,
13343,
828,
1160,
25,
357,
19,
13,
20,
11,
657,
11,
9796,
828,
2310,
25,
357,
19,
13,
22,
11,
657,
11,
12279,
828,
2534,
25,
357,
19,
13,
24,
11,
657,
11,
7982,
828,
2242,
25,
357,
20,
13,
16,
11,
657,
11,
13151,
828,
1987,
25,
357,
20,
13,
18,
11,
657,
11,
11323,
828,
1679,
25,
357,
20,
13,
20,
11,
657,
11,
17501,
828,
2608,
25,
357,
20,
13,
22,
11,
657,
11,
12713,
828,
2681,
25,
357,
20,
13,
24,
11,
657,
11,
20299,
828,
2579,
25,
357,
21,
13,
16,
11,
657,
11,
6640,
828,
2808,
25,
357,
21,
13,
18,
11,
657,
11,
20708,
828,
1542,
25,
357,
21,
13,
20,
11,
657,
11,
13454,
828,
3261,
25,
357,
21,
13,
22,
11,
657,
11,
21409,
828,
3933,
25,
357,
21,
13,
24,
11,
657,
11,
16677,
828,
4747,
25,
357,
22,
13,
16,
11,
657,
11,
19038,
828,
4974,
25,
357,
22,
13,
18,
11,
657,
11,
11546,
828,
3439,
25,
357,
22,
13,
20,
11,
657,
11,
22855,
828,
4570,
25,
357,
22,
13,
22,
11,
657,
11,
19884,
828,
5214,
25,
357,
22,
13,
24,
11,
657,
11,
24793,
828,
4353,
25,
357,
23,
13,
16,
11,
657,
11,
939,
828,
5014,
25,
357,
23,
13,
18,
11,
657,
11,
22538,
828,
2319,
25,
357,
23,
13,
20,
11,
657,
11,
20064,
828,
6073,
25,
357,
23,
13,
22,
11,
657,
11,
22951,
828,
5433,
25,
357,
23,
13,
24,
11,
657,
11,
15629,
828,
5946,
25,
357,
24,
13,
16,
11,
657,
11,
18500,
828,
5846,
25,
357,
24,
13,
18,
11,
657,
11,
18395,
828,
4153,
25,
357,
24,
13,
20,
11,
657,
11,
28878,
828,
6337,
25,
357,
24,
13,
22,
11,
657,
11,
14956,
828,
6298,
25,
357,
24,
13,
24,
11,
657,
11,
29637,
828,
4764,
25,
357,
940,
13,
16,
11,
657,
11,
8646,
828,
5125,
25,
357,
940,
13,
18,
11,
657,
11,
14280,
828,
2026,
25,
357,
940,
13,
20,
11,
657,
11,
21148,
828,
6885,
25,
357,
940,
13,
22,
11,
657,
11,
32090,
828,
6740,
25,
357,
940,
13,
24,
11,
657,
11,
20479,
828,
7192,
25,
357,
1157,
13,
16,
11,
657,
11,
25829,
828,
7175,
25,
357,
1157,
13,
18,
11,
657,
11,
21355,
828,
5996,
25,
357,
1157,
13,
20,
11,
657,
11,
33015,
828,
7265,
25,
357,
1157,
13,
22,
11,
657,
11,
26481,
828,
7632,
25,
357,
1157,
13,
24,
11,
657,
11,
34772,
828,
7618,
25,
357,
1065,
13,
16,
11,
657,
11,
5867,
828,
7863,
25,
357,
1065,
13,
18,
11,
657,
11,
32747,
828,
3126,
25,
357,
1065,
13,
20,
11,
657,
11,
28947,
828,
8454,
25,
357,
1065,
13,
22,
11,
657,
11,
32647,
828,
8190,
25,
357,
1065,
13,
24,
11,
657,
11,
20959,
828,
8093,
25,
357,
1485,
13,
16,
11,
657,
11,
29524,
828,
5598,
25,
357,
1485,
13,
18,
11,
657,
11,
25508,
828,
6135,
25,
357,
1485,
13,
20,
11,
657,
11,
37144,
828,
7930,
25,
357,
1485,
13,
22,
11,
657,
11,
28560,
828,
8275,
25,
357,
1485,
13,
24,
11,
657,
11,
39937,
828,
8257,
25,
357,
1415,
13,
16,
11,
657,
11,
13803,
828,
8644,
25,
357,
1415,
13,
18,
11,
657,
11,
36561,
828,
4317,
25,
357,
1415,
13,
20,
11,
657,
11,
11470,
828,
9166,
25,
357,
1415,
13,
22,
11,
657,
11,
21268,
828,
7724,
25,
357,
1415,
13,
24,
11,
657,
11,
28687,
828,
8854,
25,
357,
1314,
13,
16,
11,
657,
11,
29414,
828,
8915,
25,
357,
1314,
13,
18,
11,
657,
11,
29101,
828,
5441,
25,
357,
1314,
13,
20,
11,
657,
11,
44826,
828,
8684,
25,
357,
1314,
13,
22,
11,
657,
11,
33882,
828,
8541,
25,
357,
1314,
13,
24,
11,
657,
11,
42321,
828,
8699,
25,
357,
1433,
13,
16,
11,
657,
11,
7337,
828,
9225,
25,
357,
1433,
13,
18,
11,
657,
11,
36966,
828,
4019,
25,
357,
1433,
13,
20,
11,
657,
11,
32921,
828,
9773,
25,
357,
1433,
13,
22,
11,
657,
11,
40643,
828,
9415,
25,
357,
1433,
13,
24,
11,
657,
11,
28262,
828,
9698,
25,
357,
1558,
13,
16,
11,
657,
11,
36959,
828,
9508,
25,
357,
1558,
13,
18,
11,
657,
11,
35090,
828,
7600,
25,
357,
1558,
13,
20,
11,
657,
11,
42671,
828,
9849,
25,
357,
1558,
13,
22,
11,
657,
11,
33879,
828,
10083,
25,
357,
1558,
13,
24,
11,
657,
11,
48655,
828,
9193,
25,
357,
1507,
13,
16,
11,
657,
11,
18523,
828,
9919,
25,
357,
1507,
13,
18,
11,
657,
11,
46839,
828,
4101,
25,
357,
1507,
13,
20,
11,
657,
11,
34091,
828,
10495,
25,
357,
1507,
13,
22,
11,
657,
11,
49669,
828,
10190,
25,
357,
1507,
13,
24,
11,
657,
11,
38634,
828,
10261,
25,
357,
1129,
13,
16,
11,
657,
11,
45881,
828,
10048,
25,
357,
1129,
13,
18,
11,
657,
11,
23487,
828,
6957,
25,
357,
1129,
13,
20,
11,
657,
11,
4764,
20,
828,
9907,
25,
357,
1129,
13,
22,
11,
657,
11,
45601,
828,
10111,
25,
357,
1129,
13,
24,
11,
657,
11,
604,
3865,
828,
9661,
25,
357,
1238,
13,
16,
11,
657,
11,
43367,
828,
7388,
25,
357,
1238,
13,
18,
11,
657,
11,
5323,
828,
1802,
25,
357,
1238,
13,
20,
11,
657,
11,
642,
1314,
38165,
628,
628,
198,
198,
19184,
1370,
9362,
28709,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
532,
19,
11,
23255,
42006,
1581,
43,
17,
25,
532,
19,
11,
23255,
42006,
1581,
43,
18,
25,
532,
19,
11,
34482,
3398,
8643,
43,
16,
25,
532,
19,
11,
34482,
3398,
8643,
43,
17,
25,
532,
19,
11,
34482,
3398,
8643,
43,
18,
25,
532,
19,
11,
11837,
49423,
43,
16,
25,
532,
19,
11,
11837,
49423,
43,
17,
25,
532,
19,
11,
11837,
49423,
43,
18,
25,
532,
19,
11,
11177,
3528,
43,
16,
25,
532,
3064,
11,
11177,
3528,
43,
17,
25,
532,
3064,
11,
11177,
3528,
43,
18,
25,
532,
3064,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
532,
19,
11,
31963,
62,
11401,
1503,
43,
25,
532,
940,
11,
402,
3535,
40,
12599,
25,
532,
940,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
532,
19,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
532,
19,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
532,
940,
92,
198,
51,
2326,
49233,
20273,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
352,
13,
15,
11,
23255,
42006,
1581,
43,
17,
25,
352,
13,
19,
11,
23255,
42006,
1581,
43,
18,
25,
352,
13,
22,
11,
34482,
3398,
8643,
43,
16,
25,
362,
13,
20,
11,
34482,
3398,
8643,
43,
17,
25,
513,
13,
15,
11,
34482,
3398,
8643,
43,
18,
25,
513,
13,
20,
11,
11837,
49423,
43,
16,
25,
362,
13,
20,
11,
11837,
49423,
43,
17,
25,
513,
13,
15,
11,
11837,
49423,
43,
18,
25,
604,
13,
15,
11,
11177,
3528,
43,
16,
25,
362,
13,
20,
11,
11177,
3528,
43,
17,
25,
513,
13,
15,
11,
11177,
3528,
43,
18,
25,
604,
13,
15,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
352,
13,
22,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
604,
13,
20,
11,
31963,
62,
11401,
1503,
43,
25,
604,
13,
20,
11,
402,
3535,
40,
12599,
25,
604,
13,
20,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
352,
13,
22,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
604,
13,
15,
92,
198,
36674,
40710,
796,
2039,
388,
10786,
59,
77,
220,
220,
220,
9977,
11,
376,
11,
8782,
11,
59,
77,
220,
220,
220,
220,
406,
11,
327,
11,
220,
371,
11,
59,
77,
220,
220,
220,
9878,
11,
347,
11,
11177,
11,
59,
77,
220,
220,
220,
705,
8,
198,
36674,
12727,
9362,
28709,
796,
1391,
41358,
42006,
1581,
43,
16,
25,
47527,
15,
11,
532,
1157,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
1485,
11,
2808,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
2808,
828,
27565,
40710,
13,
10913,
25,
357,
1485,
11,
2808,
828,
27565,
40710,
13,
43,
25,
13841,
1485,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
1485,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
1485,
11,
532,
1959,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1959,
828,
27565,
40710,
13,
11473,
25,
357,
1485,
11,
532,
1959,
38165,
4357,
23255,
42006,
1581,
43,
17,
25,
47527,
15,
11,
532,
23,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
1238,
11,
2026,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
2026,
828,
27565,
40710,
13,
10913,
25,
357,
1238,
11,
2026,
828,
27565,
40710,
13,
43,
25,
13841,
1238,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
1238,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
1238,
11,
532,
1120,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1120,
828,
27565,
40710,
13,
11473,
25,
357,
1238,
11,
532,
1120,
8,
5512,
532,
20,
4357,
23255,
42006,
1581,
43,
18,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2075,
11,
2026,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
2026,
828,
27565,
40710,
13,
10913,
25,
357,
2075,
11,
2026,
828,
27565,
40710,
13,
43,
25,
13841,
2075,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2075,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2075,
11,
532,
1120,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1120,
828,
27565,
40710,
13,
11473,
25,
357,
2075,
11,
532,
1120,
8,
5512,
532,
20,
4357,
34482,
3398,
8643,
43,
16,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
1954,
11,
4747,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
4747,
828,
27565,
40710,
13,
10913,
25,
357,
1954,
11,
4747,
828,
27565,
40710,
13,
43,
25,
13841,
1954,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
1954,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
1954,
11,
532,
2091,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
2091,
828,
27565,
40710,
13,
11473,
25,
357,
1954,
11,
532,
2091,
38165,
4357,
34482,
3398,
8643,
43,
17,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2327,
11,
3126,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
3126,
828,
27565,
40710,
13,
10913,
25,
357,
2327,
11,
3126,
828,
27565,
40710,
13,
43,
25,
13841,
2327,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2327,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2327,
11,
532,
1899,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1899,
828,
27565,
40710,
13,
11473,
25,
357,
2327,
11,
532,
1899,
38165,
4357,
34482,
3398,
8643,
43,
18,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2548,
11,
8257,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
8257,
828,
27565,
40710,
13,
10913,
25,
357,
2548,
11,
8257,
828,
27565,
40710,
13,
43,
25,
13841,
2548,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2548,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2548,
11,
532,
3104,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
3104,
828,
27565,
40710,
13,
11473,
25,
357,
2548,
11,
532,
3104,
38165,
4357,
11837,
49423,
43,
16,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
1828,
11,
4153,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
4153,
828,
27565,
40710,
13,
10913,
25,
357,
1828,
11,
4153,
828,
27565,
40710,
13,
43,
25,
13841,
1828,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
1828,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
1828,
11,
532,
2231,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
2231,
828,
27565,
40710,
13,
11473,
25,
357,
1828,
11,
532,
2231,
38165,
4357,
11837,
49423,
43,
17,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2078,
11,
5598,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
5598,
828,
27565,
40710,
13,
10913,
25,
357,
2078,
11,
5598,
828,
27565,
40710,
13,
43,
25,
13841,
2078,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2078,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2078,
11,
532,
2414,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
2414,
828,
27565,
40710,
13,
11473,
25,
357,
2078,
11,
532,
2414,
38165,
4357,
11837,
49423,
43,
18,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
3682,
11,
9508,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
9508,
828,
27565,
40710,
13,
10913,
25,
357,
3682,
11,
9508,
828,
27565,
40710,
13,
43,
25,
13841,
3682,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
3682,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
3682,
11,
532,
5705,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5705,
828,
27565,
40710,
13,
11473,
25,
357,
3682,
11,
532,
5705,
38165,
4357,
11177,
3528,
43,
16,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
1828,
11,
4153,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
4153,
828,
27565,
40710,
13,
10913,
25,
357,
1828,
11,
4153,
828,
27565,
40710,
13,
43,
25,
13841,
1828,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
1828,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
1828,
11,
532,
2231,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
2231,
828,
27565,
40710,
13,
11473,
25,
357,
1828,
11,
532,
2231,
38165,
4357,
11177,
3528,
43,
17,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2078,
11,
5598,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
5598,
828,
27565,
40710,
13,
10913,
25,
357,
2078,
11,
5598,
828,
27565,
40710,
13,
43,
25,
13841,
2078,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2078,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2078,
11,
532,
2414,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
2414,
828,
27565,
40710,
13,
11473,
25,
357,
2078,
11,
532,
2414,
38165,
4357,
11177,
3528,
43,
18,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
3682,
11,
9508,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
9508,
828,
27565,
40710,
13,
10913,
25,
357,
3682,
11,
9508,
828,
27565,
40710,
13,
43,
25,
13841,
3682,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
3682,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
3682,
11,
532,
5705,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5705,
828,
27565,
40710,
13,
11473,
25,
357,
3682,
11,
532,
5705,
38165,
4357,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2075,
11,
2026,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
2026,
828,
27565,
40710,
13,
10913,
25,
357,
2075,
11,
2026,
828,
27565,
40710,
13,
43,
25,
13841,
2075,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2075,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2075,
11,
532,
1120,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1120,
828,
27565,
40710,
13,
11473,
25,
357,
2075,
11,
532,
1120,
8,
5512,
532,
20,
4357,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2624,
11,
10048,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
10048,
828,
27565,
40710,
13,
10913,
25,
357,
2624,
11,
10048,
828,
27565,
40710,
13,
43,
25,
13841,
2624,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2624,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2624,
11,
532,
5824,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5824,
828,
27565,
40710,
13,
11473,
25,
357,
2624,
11,
532,
5824,
38165,
4357,
31963,
62,
11401,
1503,
43,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2624,
11,
10048,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
10048,
828,
27565,
40710,
13,
10913,
25,
357,
2624,
11,
10048,
828,
27565,
40710,
13,
43,
25,
13841,
2624,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2624,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2624,
11,
532,
5824,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5824,
828,
27565,
40710,
13,
11473,
25,
357,
2624,
11,
532,
5824,
38165,
4357,
402,
3535,
40,
12599,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2624,
11,
10048,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
10048,
828,
27565,
40710,
13,
10913,
25,
357,
2624,
11,
10048,
828,
27565,
40710,
13,
43,
25,
13841,
2624,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2624,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2624,
11,
532,
5824,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5824,
828,
27565,
40710,
13,
11473,
25,
357,
2624,
11,
532,
5824,
38165,
4357,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
47527,
15,
11,
657,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
2075,
11,
2026,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
2026,
828,
27565,
40710,
13,
10913,
25,
357,
2075,
11,
2026,
828,
27565,
40710,
13,
43,
25,
13841,
2075,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
2075,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
2075,
11,
532,
1120,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
1120,
828,
27565,
40710,
13,
11473,
25,
357,
2075,
11,
532,
1120,
38165,
4357,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
3682,
11,
9508,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
9508,
828,
27565,
40710,
13,
10913,
25,
357,
3682,
11,
9508,
828,
27565,
40710,
13,
43,
25,
13841,
3682,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
3682,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
3682,
11,
532,
5705,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5705,
828,
27565,
40710,
13,
11473,
25,
357,
3682,
11,
532,
5705,
38165,
4357,
32357,
3069,
56,
62,
49,
7730,
1137,
25,
47527,
15,
11,
532,
20,
828,
1391,
36674,
40710,
13,
3697,
25,
13841,
3682,
11,
9508,
828,
27565,
40710,
13,
37,
25,
357,
15,
11,
9508,
828,
27565,
40710,
13,
10913,
25,
357,
3682,
11,
9508,
828,
27565,
40710,
13,
43,
25,
13841,
3682,
11,
657,
828,
27565,
40710,
13,
34,
25,
357,
15,
11,
657,
828,
27565,
40710,
13,
49,
25,
357,
3682,
11,
657,
828,
27565,
40710,
13,
9148,
25,
13841,
3682,
11,
532,
5705,
828,
27565,
40710,
13,
33,
25,
357,
15,
11,
532,
5705,
828,
27565,
40710,
13,
11473,
25,
357,
3682,
11,
532,
5705,
38165,
48999,
198,
834,
27794,
38882,
796,
1391,
16279,
49423,
43,
16,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
1679,
828,
11837,
49423,
43,
17,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
4153,
828,
11837,
49423,
43,
18,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
34482,
3398,
8643,
43,
16,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
1679,
828,
34482,
3398,
8643,
43,
17,
25,
14808,
53,
721,
18,
7,
23,
11,
532,
1157,
11,
4747,
828,
4101,
828,
2319,
828,
34482,
3398,
8643,
43,
18,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
5996,
828,
23255,
42006,
1581,
43,
16,
25,
14808,
53,
721,
18,
7,
17,
13,
4524,
44821,
11,
2242,
13,
24991,
11,
860,
13,
27988,
1828,
828,
4101,
828,
1679,
828,
23255,
42006,
1581,
43,
17,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
3439,
828,
23255,
42006,
1581,
43,
18,
25,
14808,
53,
721,
18,
7,
1157,
13,
44093,
11,
532,
16,
13,
22,
17657,
11,
2310,
13,
4531,
2624,
828,
532,
1959,
828,
4153,
828,
11177,
3528,
43,
16,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
1679,
828,
11177,
3528,
43,
17,
25,
14808,
53,
721,
18,
7,
15,
11,
657,
11,
1802,
828,
4101,
828,
4153,
828,
11177,
3528,
43,
18,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
14808,
53,
721,
18,
7,
1157,
13,
44093,
11,
532,
16,
13,
22,
17657,
11,
2310,
13,
4531,
2624,
828,
532,
1959,
828,
4153,
828,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
31963,
62,
11401,
1503,
43,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
402,
3535,
40,
12599,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
3563,
20476,
56,
62,
49423,
25,
14808,
53,
721,
18,
7,
17,
13,
4524,
44821,
11,
2242,
13,
24991,
11,
860,
13,
27988,
1828,
828,
4101,
828,
1679,
828,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
14808,
53,
721,
18,
32590,
21,
13,
15,
11,
1511,
13,
15,
11,
2310,
13,
24,
828,
532,
3829,
828,
3126,
828,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
14808,
53,
721,
18,
7,
1157,
13,
44093,
11,
532,
16,
13,
22,
17657,
11,
2310,
13,
4531,
2624,
828,
532,
1959,
828,
4153,
38165,
198,
834,
37023,
38882,
796,
1391,
16279,
49423,
43,
16,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
11837,
49423,
43,
17,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
11837,
49423,
43,
18,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
34482,
3398,
8643,
43,
16,
25,
13841,
20,
13,
2598,
11,
718,
13,
22,
2327,
11,
1105,
13,
25870,
828,
34482,
3398,
8643,
43,
17,
25,
13841,
20,
13,
2598,
11,
718,
13,
22,
2327,
11,
1105,
13,
25870,
828,
34482,
3398,
8643,
43,
18,
25,
13841,
20,
13,
2598,
11,
718,
13,
22,
2327,
11,
1105,
13,
25870,
828,
23255,
42006,
1581,
43,
16,
25,
357,
17,
13,
32182,
11,
532,
1314,
13,
1264,
11,
642,
13,
43134,
828,
23255,
42006,
1581,
43,
17,
25,
357,
17,
13,
32182,
11,
532,
1314,
13,
1264,
11,
642,
13,
43134,
828,
23255,
42006,
1581,
43,
18,
25,
357,
17,
13,
32182,
11,
532,
1314,
13,
1264,
11,
642,
13,
43134,
828,
11177,
3528,
43,
16,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
11177,
3528,
43,
17,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
11177,
3528,
43,
18,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
357,
17,
13,
32182,
11,
532,
1314,
13,
1264,
11,
642,
13,
43134,
828,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
31963,
62,
11401,
1503,
43,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
402,
3535,
40,
12599,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
357,
2481,
13,
2075,
11,
1511,
13,
2598,
11,
2310,
13,
6052,
828,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
357,
17,
13,
32182,
11,
532,
1314,
13,
1264,
11,
642,
13,
43134,
38165,
198,
8202,
9795,
2751,
62,
37997,
62,
39,
62,
12115,
6369,
796,
657,
198,
8202,
9795,
2751,
62,
6173,
21358,
62,
12115,
6369,
796,
352,
628,
628,
198,
834,
27794,
49,
3008,
23106,
796,
1391,
16279,
49423,
43,
16,
25,
657,
13,
21,
11,
11837,
49423,
43,
17,
25,
657,
13,
23,
11,
11837,
49423,
43,
18,
25,
352,
13,
15,
11,
34482,
3398,
8643,
43,
16,
25,
657,
13,
21,
11,
34482,
3398,
8643,
43,
17,
25,
657,
13,
23,
11,
34482,
3398,
8643,
43,
18,
25,
352,
13,
15,
11,
23255,
42006,
1581,
43,
16,
25,
657,
13,
20,
11,
23255,
42006,
1581,
43,
17,
25,
657,
13,
22,
11,
23255,
42006,
1581,
43,
18,
25,
352,
13,
15,
11,
11177,
3528,
43,
16,
25,
657,
13,
21,
11,
11177,
3528,
43,
17,
25,
657,
13,
23,
11,
11177,
3528,
43,
18,
25,
352,
13,
15,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
352,
13,
15,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
352,
13,
15,
11,
31963,
62,
11401,
1503,
43,
25,
352,
13,
15,
11,
402,
3535,
40,
12599,
25,
352,
13,
15,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
352,
13,
15,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
657,
13,
23,
92,
628,
198,
20185,
62,
24115,
62,
43,
1404,
45155,
62,
19499,
45746,
796,
5323,
198,
834,
859,
2229,
38882,
40161,
796,
1391,
16279,
49423,
43,
16,
25,
357,
15,
11,
12713,
11,
838,
11,
1542,
828,
11837,
49423,
43,
17,
25,
357,
15,
11,
13454,
11,
1315,
11,
2319,
828,
11837,
49423,
43,
18,
25,
357,
15,
11,
11546,
11,
1160,
11,
2026,
828,
34482,
3398,
8643,
43,
16,
25,
357,
15,
11,
7982,
11,
838,
11,
1542,
828,
34482,
3398,
8643,
43,
17,
25,
357,
15,
11,
12713,
11,
1315,
11,
2319,
828,
34482,
3398,
8643,
43,
18,
25,
357,
15,
11,
13454,
11,
1160,
11,
2026,
828,
23255,
42006,
1581,
43,
16,
25,
357,
15,
11,
9796,
11,
838,
11,
1542,
828,
23255,
42006,
1581,
43,
17,
25,
357,
15,
11,
11323,
11,
1315,
11,
2319,
828,
23255,
42006,
1581,
43,
18,
25,
357,
15,
11,
6640,
11,
1160,
11,
2026,
828,
11177,
3528,
43,
16,
25,
357,
15,
11,
12713,
11,
838,
11,
1542,
828,
11177,
3528,
43,
17,
25,
357,
15,
11,
13454,
11,
1315,
11,
2319,
828,
11177,
3528,
43,
18,
25,
357,
15,
11,
11546,
11,
1160,
11,
2026,
828,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
357,
15,
11,
6640,
11,
1160,
11,
2026,
828,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
357,
15,
11,
19884,
11,
1160,
11,
2026,
828,
31963,
62,
11401,
1503,
43,
25,
357,
15,
11,
19884,
11,
1160,
11,
2026,
828,
402,
3535,
40,
12599,
25,
357,
15,
11,
19884,
11,
1160,
11,
2026,
828,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
357,
15,
11,
11546,
11,
1160,
11,
2026,
828,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
357,
15,
11,
6640,
11,
1160,
11,
2026,
38165,
628,
198,
11473,
41048,
50,
14114,
62,
22921,
62,
39371,
23621,
3955,
62,
35,
8808,
796,
4751,
198,
11473,
41048,
50,
14114,
62,
2538,
9792,
796,
657,
198,
11473,
41048,
50,
14114,
62,
49,
9947,
796,
352,
198,
834,
36654,
1589,
11518,
13856,
323,
796,
1391,
16279,
49423,
43,
16,
25,
657,
13,
21,
11,
11837,
49423,
43,
17,
25,
352,
13,
15,
11,
11837,
49423,
43,
18,
25,
352,
13,
20,
11,
34482,
3398,
8643,
43,
16,
25,
657,
13,
23,
11,
34482,
3398,
8643,
43,
17,
25,
352,
13,
21,
11,
34482,
3398,
8643,
43,
18,
25,
352,
13,
2425,
11,
23255,
42006,
1581,
43,
16,
25,
657,
13,
18,
11,
23255,
42006,
1581,
43,
17,
25,
657,
13,
20,
11,
23255,
42006,
1581,
43,
18,
25,
657,
13,
2425,
11,
11177,
3528,
43,
16,
25,
657,
13,
21,
11,
11177,
3528,
43,
17,
25,
352,
13,
15,
11,
11177,
3528,
43,
18,
25,
352,
13,
20,
11,
6006,
4061,
62,
19238,
62,
10970,
62,
24027,
25,
352,
13,
17,
11,
31963,
62,
11401,
1503,
43,
25,
352,
13,
1495,
11,
402,
3535,
40,
12599,
25,
352,
13,
17,
11,
1195,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
352,
13,
17,
11,
14277,
3698,
62,
16279,
49423,
43,
18,
25,
352,
13,
1495,
11,
14277,
3698,
62,
41358,
42006,
1581,
43,
18,
25,
352,
13,
15,
92,
628,
198,
15022,
25586,
30003,
1371,
796,
1391,
48,
8924,
1677,
62,
22846,
1546,
62,
2200,
28290,
8264,
25,
685,
90,
3064,
13,
15,
25,
685,
7449,
9861,
672,
874,
13,
44,
3843,
8881,
4877,
62,
3398,
33456,
60,
5512,
1391,
15,
13,
2999,
25,
685,
7449,
9861,
672,
874,
13,
47,
2394,
2849,
62,
50,
5883,
27857,
62,
3398,
11860,
1677,
4357,
1802,
13,
15,
25,
685,
7449,
9861,
672,
874,
13,
47,
2394,
2849,
62,
34,
22846,
1340,
62,
18,
11,
9097,
9861,
672,
874,
13,
47,
2394,
2849,
62,
47,
8808,
3535,
62,
18,
11,
9097,
9861,
672,
874,
13,
47,
2394,
2849,
62,
37,
2246,
2943,
3535,
1581,
11,
9097,
9861,
672,
874,
13,
47,
2394,
2849,
62,
26861,
62,
18,
11,
9097,
9861,
672,
874,
13,
47,
2394,
2849,
62,
4303,
41841,
62,
18,
48999,
48999
] | 2.395889 | 40,231 |
import pytest
from nadypy.api.system import get_sysinfo
from nadypy.api.webserver import post_chat_web
from nadypy.client import BasicAuthClient, SignedAuthClient
from nadypy.models.system_information import SystemInformation
@pytest.fixture
@pytest.fixture
@pytest.mark.asyncio
@pytest.mark.asyncio
| [
11748,
12972,
9288,
198,
198,
6738,
299,
324,
4464,
88,
13,
15042,
13,
10057,
1330,
651,
62,
17597,
10951,
198,
6738,
299,
324,
4464,
88,
13,
15042,
13,
732,
1443,
18497,
1330,
1281,
62,
17006,
62,
12384,
198,
6738,
299,
324,
4464,
88,
13,
16366,
1330,
14392,
30515,
11792,
11,
36215,
30515,
11792,
198,
6738,
299,
324,
4464,
88,
13,
27530,
13,
10057,
62,
17018,
1330,
4482,
21918,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
4102,
13,
292,
13361,
952,
628,
198,
31,
9078,
9288,
13,
4102,
13,
292,
13361,
952,
628
] | 2.897196 | 107 |
price = [100, 180, 260, 310, 40, 535, 695]
stockAndBySell(price) | [
198,
198,
20888,
796,
685,
3064,
11,
11546,
11,
21148,
11,
28947,
11,
2319,
11,
642,
2327,
11,
718,
3865,
60,
198,
13578,
1870,
3886,
50,
695,
7,
20888,
8
] | 2.2 | 30 |
from flask import Flask, render_template, Blueprint, flash
from flask_bootstrap import Bootstrap
from flask_moment import Moment
from flask_wtf import FlaskForm
from wtforms import StringField, SubmitField, SelectField
from wtforms.validators import DataRequired
from workshops_model import *
from users_model import *
app = Flask(__name__)
app.config.from_object('config.Config')
db = {'host':app.config['HDB_URI'],'user':app.config['HDB_USER'],'pwd':app.config['HDB_PWD'],'port':app.config['HDB_PORT']}
bootstrap = Bootstrap(app)
moment = Moment(app)
register = Blueprint('register', __name__)
@register.route('/register/<moderator>', methods = [ 'GET', 'POST'])
if __name__ == '__main__':
app.run('0.0.0.0', port=8080)
| [
6738,
42903,
1330,
46947,
11,
8543,
62,
28243,
11,
39932,
11,
7644,
198,
6738,
42903,
62,
18769,
26418,
1330,
18892,
26418,
198,
6738,
42903,
62,
32542,
298,
1330,
29278,
198,
6738,
42903,
62,
86,
27110,
1330,
46947,
8479,
198,
6738,
266,
83,
23914,
1330,
10903,
15878,
11,
39900,
15878,
11,
9683,
15878,
198,
6738,
266,
83,
23914,
13,
12102,
2024,
1330,
6060,
37374,
198,
198,
6738,
25982,
62,
19849,
1330,
1635,
198,
6738,
2985,
62,
19849,
1330,
1635,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
8,
198,
1324,
13,
11250,
13,
6738,
62,
15252,
10786,
11250,
13,
16934,
11537,
198,
9945,
796,
1391,
6,
4774,
10354,
1324,
13,
11250,
17816,
10227,
33,
62,
47269,
20520,
4032,
7220,
10354,
1324,
13,
11250,
17816,
10227,
33,
62,
29904,
20520,
4032,
79,
16993,
10354,
1324,
13,
11250,
17816,
10227,
33,
62,
47,
22332,
20520,
4032,
634,
10354,
1324,
13,
11250,
17816,
10227,
33,
62,
15490,
20520,
92,
198,
198,
18769,
26418,
796,
18892,
26418,
7,
1324,
8,
198,
32542,
298,
796,
29278,
7,
1324,
8,
198,
198,
30238,
796,
39932,
10786,
30238,
3256,
11593,
3672,
834,
8,
628,
198,
31,
30238,
13,
38629,
10786,
14,
30238,
14,
27,
4666,
263,
1352,
29,
3256,
5050,
796,
685,
705,
18851,
3256,
705,
32782,
6,
12962,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
598,
13,
5143,
10786,
15,
13,
15,
13,
15,
13,
15,
3256,
2493,
28,
1795,
1795,
8,
198
] | 2.975709 | 247 |
from asyncio import Event, get_event_loop
| [
6738,
30351,
952,
1330,
8558,
11,
651,
62,
15596,
62,
26268,
628
] | 3.583333 | 12 |
#!/usr/bin/python
import cwiid
import sys
import gevent
import time
import json
import datetime
import atexit
from collections import OrderedDict
import random
from dotstar import Adafruit_DotStar
import socket
import alsaaudio
import wave
import sys
import struct
import math
WHOAMI = socket.gethostname()
import RPi.GPIO as GPIO
#GPIO Mode (BOARD / BCM)
GPIO.setmode(GPIO.BCM)
#set GPIO Pins
GPIO_AIR = 16
GPIO_LIGHTS = 13
#set GPIO direction (IN / OUT)
GPIO.setup(GPIO_AIR, GPIO.OUT)
GPIO.setup(GPIO_LIGHTS, GPIO.OUT)
mesg = False
rpt_mode = 0
wiimote = None
connected = False
turbo = False
rumble = 0
numpixels = 144 # Number of LEDs in strip
lasthb = 0
hbinterval = 30
defaultColor = 0xF0F0FF
defaultBright = 255
flashColor = 0x00FF00
flashBright = 255
# Here's how to control the strip from any two GPIO pins:
datapin = 23
clockpin = 24
strip = Adafruit_DotStar(numpixels, datapin, clockpin)
hi_thres = 10
low_thres = 4
strip.begin() # Initialize pins for output
strip.setBrightness(255) # Limit brightness to ~1/4 duty cycle
#Setting color to: 0xFF0000 # Green
#Setting color to: 0xCC00CC # Bright Teal
#Setting color to: 0x66CC00 # Orange
#Setting color to: 0x33FFFF # Magenta
#Setting color to: 0xFF00 # Red
#Setting color to: 0x330099 # Lightish Blue
#Setting color to: 0xFFFF00 # YEllow
#Setting color to: 0xFF # Bright Blue
#Setting color to: 0xFF9900 # YEllower Gren
#Setting color to: 0x33 # Dark BLue
#BTN_1', 'BTN_2', 'BTN_A', 'BTN_B', 'BTN_DOWN', 'BTN_HOME', 'BTN_LEFT', 'BTN_MINUS', 'BTN_PLUS', 'BTN_RIGHT', 'BTN_UP',
def color_dict(gradient):
''' Takes in a list of RGB sub-lists and returns dictionary of
colors in RGB and hex form for use in a graphing function
defined later on '''
return {"hex":[RGB_to_hex(RGB) for RGB in gradient],
"r":[RGB[0] for RGB in gradient],
"g":[RGB[1] for RGB in gradient],
"b":[RGB[2] for RGB in gradient]}
def linear_gradient(start_hex, finish_hex="#FFFFFF", n=10):
''' returns a gradient list of (n) colors between
two hex colors. start_hex and finish_hex
should be the full six-digit color string,
inlcuding the number sign ("#FFFFFF") '''
# Starting and ending colors in RGB form
s = hex_to_RGB(start_hex)
f = hex_to_RGB(finish_hex)
# Initilize a list of the output colors with the starting color
RGB_list = [s]
# Calcuate a color at each evenly spaced value of t from 1 to n
for t in range(1, n):
# Interpolate RGB vector for color at the current value of t
curr_vector = [ int(s[j] + (float(t)/(n-1))*(f[j]-s[j])) for j in range(3)]
# Add it to our list of output colors
RGB_list.append(curr_vector)
return color_dict(RGB_list)
def hex_to_RGB(hex):
''' "#FFFFFF" -> [255,255,255] '''
# Pass 16 to the integer function for change of base
return [int(hex[i:i+2], 16) for i in range(1,6,2)]
def RGB_to_hex(RGB):
''' [255,255,255] -> "#FFFFFF" '''
# Components need to be integers for hex to make sense
RGB = [int(x) for x in RGB]
return "#"+"".join(["0{0:x}".format(v) if v < 16 else
"{0:x}".format(v) for v in RGB])
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
11748,
269,
37686,
312,
198,
11748,
25064,
198,
11748,
4903,
1151,
198,
11748,
640,
198,
11748,
33918,
198,
11748,
4818,
8079,
198,
11748,
379,
37023,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
11748,
4738,
198,
6738,
16605,
7364,
1330,
1215,
1878,
4872,
62,
35,
313,
8248,
198,
11748,
17802,
198,
198,
11748,
435,
11400,
24051,
198,
11748,
6769,
198,
11748,
25064,
198,
11748,
2878,
198,
11748,
10688,
198,
198,
41856,
43870,
796,
17802,
13,
1136,
4774,
3672,
3419,
628,
198,
11748,
25812,
72,
13,
16960,
9399,
355,
50143,
198,
2,
16960,
9399,
10363,
357,
8202,
9795,
1220,
11843,
44,
8,
198,
16960,
9399,
13,
2617,
14171,
7,
16960,
9399,
13,
2749,
44,
8,
198,
1303,
2617,
50143,
350,
1040,
198,
16960,
9399,
62,
42149,
796,
1467,
198,
16960,
9399,
62,
43,
34874,
796,
1511,
198,
2,
2617,
50143,
4571,
357,
1268,
1220,
16289,
8,
198,
16960,
9399,
13,
40406,
7,
16960,
9399,
62,
42149,
11,
50143,
13,
12425,
8,
198,
16960,
9399,
13,
40406,
7,
16960,
9399,
62,
43,
34874,
11,
50143,
13,
12425,
8,
628,
198,
6880,
70,
796,
10352,
198,
81,
457,
62,
14171,
796,
657,
198,
37686,
320,
1258,
796,
6045,
198,
15236,
796,
10352,
198,
36590,
2127,
796,
10352,
198,
6582,
903,
796,
657,
198,
77,
931,
14810,
796,
20224,
1303,
7913,
286,
33697,
287,
10283,
198,
21921,
400,
65,
796,
657,
198,
71,
65,
3849,
2100,
796,
1542,
198,
12286,
10258,
796,
657,
87,
37,
15,
37,
15,
5777,
198,
12286,
41267,
796,
14280,
198,
34167,
10258,
796,
657,
87,
405,
5777,
405,
198,
34167,
41267,
796,
14280,
198,
2,
3423,
338,
703,
284,
1630,
262,
10283,
422,
597,
734,
50143,
20567,
25,
198,
19608,
499,
259,
220,
220,
796,
2242,
198,
15750,
11635,
220,
796,
1987,
198,
36311,
220,
220,
220,
220,
796,
1215,
1878,
4872,
62,
35,
313,
8248,
7,
77,
931,
14810,
11,
4818,
499,
259,
11,
8801,
11635,
8,
198,
5303,
62,
400,
411,
796,
838,
198,
9319,
62,
400,
411,
796,
604,
198,
36311,
13,
27471,
3419,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20768,
1096,
20567,
329,
5072,
198,
36311,
13,
2617,
41267,
1108,
7,
13381,
8,
1303,
27272,
22204,
284,
5299,
16,
14,
19,
7077,
6772,
198,
198,
2,
34149,
3124,
284,
25,
657,
87,
5777,
2388,
220,
220,
220,
1303,
3469,
198,
2,
34149,
3124,
284,
25,
657,
87,
4093,
405,
4093,
220,
220,
220,
1303,
17558,
1665,
282,
198,
2,
34149,
3124,
284,
25,
657,
87,
2791,
4093,
405,
220,
220,
220,
1303,
11942,
198,
2,
34149,
3124,
284,
25,
657,
87,
2091,
29312,
220,
220,
220,
1303,
2944,
29188,
220,
198,
2,
34149,
3124,
284,
25,
657,
87,
5777,
405,
220,
220,
220,
220,
220,
1303,
2297,
198,
2,
34149,
3124,
284,
25,
657,
87,
2091,
405,
2079,
220,
220,
220,
1303,
4401,
680,
4518,
198,
2,
34149,
3124,
284,
25,
657,
87,
29312,
405,
220,
220,
220,
1303,
575,
30639,
322,
220,
198,
2,
34149,
3124,
284,
25,
657,
87,
5777,
220,
220,
220,
220,
220,
220,
220,
1303,
17558,
4518,
198,
2,
34149,
3124,
284,
25,
657,
87,
5777,
2079,
405,
220,
220,
220,
1303,
575,
30639,
789,
19674,
198,
2,
34149,
3124,
284,
25,
657,
87,
2091,
220,
220,
220,
220,
220,
220,
220,
1303,
3801,
9878,
518,
628,
628,
628,
628,
628,
628,
628,
198,
198,
2,
19313,
45,
62,
16,
3256,
705,
19313,
45,
62,
17,
3256,
705,
19313,
45,
62,
32,
3256,
705,
19313,
45,
62,
33,
3256,
705,
19313,
45,
62,
41925,
3256,
705,
19313,
45,
62,
39069,
3256,
705,
19313,
45,
62,
2538,
9792,
3256,
705,
19313,
45,
62,
23678,
2937,
3256,
705,
19313,
45,
62,
6489,
2937,
3256,
705,
19313,
45,
62,
49,
9947,
3256,
705,
19313,
45,
62,
8577,
3256,
198,
198,
4299,
3124,
62,
11600,
7,
49607,
2599,
198,
220,
220,
220,
705,
7061,
33687,
287,
257,
1351,
286,
25228,
850,
12,
20713,
290,
5860,
22155,
286,
198,
220,
220,
220,
7577,
287,
25228,
290,
17910,
1296,
329,
779,
287,
257,
23360,
722,
2163,
198,
220,
220,
220,
5447,
1568,
319,
705,
7061,
198,
220,
220,
220,
1441,
19779,
33095,
20598,
36982,
62,
1462,
62,
33095,
7,
36982,
8,
329,
25228,
287,
31312,
4357,
198,
220,
220,
220,
220,
220,
366,
81,
20598,
36982,
58,
15,
60,
329,
25228,
287,
31312,
4357,
198,
220,
220,
220,
220,
220,
366,
70,
20598,
36982,
58,
16,
60,
329,
25228,
287,
31312,
4357,
198,
220,
220,
220,
220,
220,
366,
65,
20598,
36982,
58,
17,
60,
329,
25228,
287,
31312,
48999,
628,
198,
198,
4299,
14174,
62,
49607,
7,
9688,
62,
33095,
11,
5461,
62,
33095,
25698,
29312,
5777,
1600,
299,
28,
940,
2599,
198,
220,
220,
220,
705,
7061,
5860,
257,
31312,
1351,
286,
357,
77,
8,
7577,
1022,
198,
220,
220,
220,
734,
17910,
7577,
13,
923,
62,
33095,
290,
5461,
62,
33095,
198,
220,
220,
220,
815,
307,
262,
1336,
2237,
12,
27003,
3124,
4731,
11,
198,
220,
220,
220,
287,
44601,
26570,
262,
1271,
1051,
5855,
2,
29312,
5777,
4943,
705,
7061,
198,
220,
1303,
17962,
290,
7464,
7577,
287,
25228,
1296,
198,
220,
220,
220,
264,
796,
17910,
62,
1462,
62,
36982,
7,
9688,
62,
33095,
8,
198,
220,
220,
220,
277,
796,
17910,
62,
1462,
62,
36982,
7,
15643,
680,
62,
33095,
8,
198,
220,
1303,
44707,
346,
1096,
257,
1351,
286,
262,
5072,
7577,
351,
262,
3599,
3124,
198,
220,
220,
220,
25228,
62,
4868,
796,
685,
82,
60,
198,
220,
1303,
2199,
66,
4985,
257,
3124,
379,
1123,
21894,
38980,
1988,
286,
256,
422,
352,
284,
299,
198,
220,
220,
220,
329,
256,
287,
2837,
7,
16,
11,
299,
2599,
198,
220,
220,
220,
1303,
4225,
16104,
378,
25228,
15879,
329,
3124,
379,
262,
1459,
1988,
286,
256,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
31364,
796,
685,
493,
7,
82,
58,
73,
60,
1343,
357,
22468,
7,
83,
20679,
7,
77,
12,
16,
4008,
9,
7,
69,
58,
73,
45297,
82,
58,
73,
60,
4008,
329,
474,
287,
2837,
7,
18,
15437,
198,
220,
220,
220,
1303,
3060,
340,
284,
674,
1351,
286,
5072,
7577,
198,
220,
220,
220,
220,
220,
220,
220,
25228,
62,
4868,
13,
33295,
7,
22019,
81,
62,
31364,
8,
628,
220,
220,
220,
1441,
3124,
62,
11600,
7,
36982,
62,
4868,
8,
628,
628,
198,
4299,
17910,
62,
1462,
62,
36982,
7,
33095,
2599,
198,
220,
220,
220,
705,
7061,
25113,
29312,
5777,
1,
4613,
685,
13381,
11,
13381,
11,
13381,
60,
705,
7061,
198,
220,
1303,
6251,
1467,
284,
262,
18253,
2163,
329,
1487,
286,
2779,
198,
220,
220,
220,
1441,
685,
600,
7,
33095,
58,
72,
25,
72,
10,
17,
4357,
1467,
8,
329,
1312,
287,
2837,
7,
16,
11,
21,
11,
17,
15437,
628,
198,
4299,
25228,
62,
1462,
62,
33095,
7,
36982,
2599,
198,
220,
220,
220,
705,
7061,
685,
13381,
11,
13381,
11,
13381,
60,
4613,
25113,
29312,
5777,
1,
705,
7061,
198,
220,
1303,
36109,
761,
284,
307,
37014,
329,
17910,
284,
787,
2565,
198,
220,
220,
220,
25228,
796,
685,
600,
7,
87,
8,
329,
2124,
287,
25228,
60,
198,
220,
220,
220,
1441,
25113,
1,
10,
1,
1911,
22179,
7,
14692,
15,
90,
15,
25,
87,
92,
1911,
18982,
7,
85,
8,
611,
410,
1279,
1467,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45144,
15,
25,
87,
92,
1911,
18982,
7,
85,
8,
329,
410,
287,
25228,
12962,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.539546 | 1,277 |
#!/usr/bin/env python
import unittest
from binomial_heap import Node
from binomial_heap import Tree, insert
from binomial_heap import Heap
unittest.main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
11748,
555,
715,
395,
198,
6738,
9874,
49070,
62,
258,
499,
1330,
19081,
198,
6738,
9874,
49070,
62,
258,
499,
1330,
12200,
11,
7550,
198,
6738,
9874,
49070,
62,
258,
499,
1330,
679,
499,
628,
628,
628,
628,
628,
198,
403,
715,
395,
13,
12417,
3419,
628,
198
] | 2.929825 | 57 |
from battalion_processor import BattalionProcessor
from battalion_types import BattalionType
from battle_planner import BattlePlanner
from army import Army
from copy import deepcopy
| [
6738,
36328,
62,
41341,
1330,
29887,
18709,
273,
198,
6738,
36328,
62,
19199,
1330,
29887,
6030,
198,
6738,
3344,
62,
11578,
1008,
1330,
5838,
20854,
1008,
198,
6738,
5428,
1330,
5407,
198,
6738,
4866,
1330,
2769,
30073,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220
] | 2.959459 | 74 |
import os
import uuid
from server.utils import get_colors_colortheif
def get_colors_gen_css(filename: str, joiner: str, ex_colors=[], ex_uid=None):
"""
Pass filename, joiner, existing_colors, existing_uid
"""
temp_dir = os.path.abspath('server/tmp/')
file = os.path.abspath(f"server/img/{filename}")
colors = []
if not ex_colors:
colors = get_colors_colortheif(file)
else:
# to convert it to the format gen_css uses
colors = (ex_colors[0], ex_colors)
dataS = gen_css(colors)
uid = ex_uid
if not ex_uid:
uid = uuid.uuid1()
temp_file = os.path.join(temp_dir, f"{filename}{joiner}{uid}.css")
with open(temp_file, "w+") as cssfile:
cssfile.write(dataS)
css_file = temp_file
return uid, colors, css_file
| [
11748,
28686,
198,
11748,
334,
27112,
198,
198,
6738,
4382,
13,
26791,
1330,
651,
62,
4033,
669,
62,
4033,
419,
258,
361,
198,
198,
4299,
651,
62,
4033,
669,
62,
5235,
62,
25471,
7,
34345,
25,
965,
11,
4654,
263,
25,
965,
11,
409,
62,
4033,
669,
41888,
4357,
409,
62,
27112,
28,
14202,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6251,
29472,
11,
4654,
263,
11,
4683,
62,
4033,
669,
11,
4683,
62,
27112,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20218,
62,
15908,
796,
28686,
13,
6978,
13,
397,
2777,
776,
10786,
15388,
14,
22065,
14,
11537,
628,
220,
220,
220,
2393,
796,
28686,
13,
6978,
13,
397,
2777,
776,
7,
69,
1,
15388,
14,
9600,
14,
90,
34345,
92,
4943,
198,
220,
220,
220,
7577,
796,
17635,
628,
220,
220,
220,
611,
407,
409,
62,
4033,
669,
25,
198,
220,
220,
220,
220,
220,
220,
220,
7577,
796,
651,
62,
4033,
669,
62,
4033,
419,
258,
361,
7,
7753,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
10385,
340,
284,
262,
5794,
2429,
62,
25471,
3544,
198,
220,
220,
220,
220,
220,
220,
220,
7577,
796,
357,
1069,
62,
4033,
669,
58,
15,
4357,
409,
62,
4033,
669,
8,
628,
220,
220,
220,
1366,
50,
796,
2429,
62,
25471,
7,
4033,
669,
8,
198,
220,
220,
220,
334,
312,
796,
409,
62,
27112,
198,
220,
220,
220,
611,
407,
409,
62,
27112,
25,
198,
220,
220,
220,
220,
220,
220,
220,
334,
312,
796,
334,
27112,
13,
12303,
312,
16,
3419,
628,
220,
220,
220,
20218,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
29510,
62,
15908,
11,
277,
1,
90,
34345,
18477,
7639,
7274,
18477,
27112,
27422,
25471,
4943,
628,
220,
220,
220,
351,
1280,
7,
29510,
62,
7753,
11,
366,
86,
10,
4943,
355,
269,
824,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
824,
7753,
13,
13564,
7,
7890,
50,
8,
198,
220,
220,
220,
269,
824,
62,
7753,
796,
20218,
62,
7753,
628,
220,
220,
220,
1441,
334,
312,
11,
7577,
11,
269,
824,
62,
7753,
198
] | 2.229282 | 362 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from faker import Faker # pour créer de faux noms, adresses,...
from random import * # pour des générateurs de nombres pseudo-aléatoires
import csv # pour parcourir des fichiers csv
from pathlib import Path # pour déterminer si un fichier existe
listlogin = []
generer_csv_lycee(listlogin)
generer_csv_superieur(listlogin)
generer_csv_eleves(listlogin)
generer_csv_admin(listlogin)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
6738,
277,
3110,
1330,
376,
3110,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12797,
1067,
2634,
263,
390,
36748,
299,
3150,
11,
512,
16746,
42303,
198,
6738,
4738,
1330,
1635,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12797,
748,
308,
35942,
2634,
4873,
1834,
390,
299,
2381,
411,
24543,
12,
282,
2634,
5549,
2387,
198,
11748,
269,
21370,
220,
220,
220,
220,
220,
220,
220,
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,
12797,
1582,
43220,
343,
748,
277,
488,
3183,
269,
21370,
198,
6738,
3108,
8019,
1330,
10644,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12797,
39073,
23705,
263,
33721,
555,
277,
488,
959,
2152,
68,
628,
628,
198,
4868,
38235,
796,
17635,
220,
220,
220,
220,
198,
5235,
11882,
62,
40664,
62,
306,
344,
68,
7,
4868,
38235,
8,
198,
5235,
11882,
62,
40664,
62,
16668,
494,
333,
7,
4868,
38235,
8,
198,
5235,
11882,
62,
40664,
62,
11129,
1158,
7,
4868,
38235,
8,
198,
5235,
11882,
62,
40664,
62,
28482,
7,
4868,
38235,
8,
198
] | 2.116935 | 248 |
from .model import Model, load
from .model_base import Optimizer
__all__ = [
"Model",
"Optimizer",
"load",
]
| [
6738,
764,
19849,
1330,
9104,
11,
3440,
198,
6738,
764,
19849,
62,
8692,
1330,
30011,
7509,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
17633,
1600,
198,
220,
220,
220,
366,
27871,
320,
7509,
1600,
198,
220,
220,
220,
366,
2220,
1600,
198,
60,
198
] | 2.489796 | 49 |
from ryven.NENV import *
widgets = import_widgets(__file__)
import numpy as np
class ShowMatrix(MatrixNodeBase):
"""Displays a matrix"""
title = 'Show Matrix'
# ------------------------------------------------------------------------------
class Matrix_Node(Node):
"""Evaluates a matrix"""
title = 'Matrix'
init_inputs = []
init_outputs = [
NodeOutputBP()
]
main_widget_class = widgets.MatrixNode_MainWidget
main_widget_pos = 'below ports'
color = '#3344ff'
class Conjugate(MatrixNodeBase):
"""Conjugates a matrix"""
title = 'Conjugate'
class Transpose(MatrixNodeBase):
"""Transposes a matrix"""
title = 'Transpose'
class DetOfMatrix(MatrixNodeBase):
"""Computes the determinant of a matrix."""
title = 'Determinant'
class DotProduct(MatrixNodeBase):
"""Computes the dot product of a matrix."""
title = 'Dot Product'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class HermMatrix(MatrixNodeBase):
"""Computes the hermetian matrix."""
title = 'Herm'
class IDMatrix(MatrixNodeBase):
"""Creates an identity matrix."""
title = 'ID Matrix'
class ImagMatrix(MatrixNodeBase):
"""Extracts the imaginary parts of the matrix."""
title = 'Imag'
class RealMatrix(MatrixNodeBase):
"""Extracts the real parts of the matrix."""
title = 'Real'
class InnerProduct(MatrixNodeBase):
"""Computes the inner product of the input matrices."""
title = 'Inner'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class OuterProduct(MatrixNodeBase):
"""Creates the outer product of two matrices."""
title = 'Outer'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class InverseMatrix(MatrixNodeBase):
"""Computes the inverse matrix"""
title = 'Inverse'
class KronMatrix(MatrixNodeBase):
""""""
title = 'Kron'
class MaskLower(MatrixNodeBase):
""""""
title = 'Mask Lower'
class MaskUpper(MatrixNodeBase):
""""""
title = 'Mask Upper'
class MatMul(MatrixNodeBase):
"""Performs a matrix multiplication."""
title = 'Mult'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class MatPower(MatrixNodeBase):
"""Powers a matrix."""
title = 'Power'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class NullMatrix(MatrixNodeBase):
"""Creates a matrix of zeros."""
title = 'Null'
class OnesMatrix(MatrixNodeBase):
"""Creates a matrix of ones."""
title = 'Ones'
class RandomMatrix(MatrixNodeBase):
"""Creates a matrix with random values between 0 and 1."""
title = 'Rand'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
class SolveLEq(MatrixNodeBase):
"""Solves a linear equation system."""
title = 'Solve'
init_inputs = [
NodeInputBP(),
NodeInputBP(),
]
export_nodes(
Matrix_Node,
ShowMatrix,
Conjugate,
Transpose,
DetOfMatrix,
DotProduct,
HermMatrix,
IDMatrix,
ImagMatrix,
RealMatrix,
InnerProduct,
OuterProduct,
InverseMatrix,
KronMatrix,
MaskLower,
MaskUpper,
MatMul,
MatPower,
NullMatrix,
OnesMatrix,
RandomMatrix,
SolveLEq,
)
| [
6738,
374,
88,
574,
13,
45,
1677,
53,
1330,
1635,
198,
28029,
11407,
796,
1330,
62,
28029,
11407,
7,
834,
7753,
834,
8,
198,
198,
11748,
299,
32152,
355,
45941,
628,
198,
198,
4871,
5438,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7279,
26024,
257,
17593,
37811,
628,
220,
220,
220,
3670,
796,
705,
15307,
24936,
6,
198,
198,
2,
16529,
26171,
628,
198,
4871,
24936,
62,
19667,
7,
19667,
2599,
198,
220,
220,
220,
37227,
36,
2100,
12632,
257,
17593,
37811,
198,
220,
220,
220,
3670,
796,
705,
46912,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
17635,
198,
220,
220,
220,
2315,
62,
22915,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
26410,
20866,
3419,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
1388,
62,
42655,
62,
4871,
796,
40803,
13,
46912,
19667,
62,
13383,
38300,
198,
220,
220,
220,
1388,
62,
42655,
62,
1930,
796,
705,
35993,
14090,
6,
198,
220,
220,
220,
3124,
796,
705,
2,
2091,
2598,
487,
6,
628,
198,
4871,
1482,
31761,
378,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
3103,
31761,
689,
257,
17593,
37811,
198,
220,
220,
220,
3670,
796,
705,
3103,
31761,
378,
6,
628,
198,
4871,
3602,
3455,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
8291,
4832,
257,
17593,
37811,
198,
220,
220,
220,
3670,
796,
705,
8291,
3455,
6,
628,
198,
4871,
4614,
5189,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7293,
1769,
262,
3416,
415,
286,
257,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
35,
13221,
415,
6,
628,
198,
4871,
22875,
15667,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7293,
1769,
262,
16605,
1720,
286,
257,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
35,
313,
8721,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
18113,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7293,
1769,
262,
607,
4164,
666,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
48523,
6,
628,
198,
4871,
4522,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
16719,
274,
281,
5369,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
2389,
24936,
6,
628,
198,
4871,
39440,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
11627,
974,
82,
262,
26726,
3354,
286,
262,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
3546,
363,
6,
628,
198,
4871,
6416,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
11627,
974,
82,
262,
1103,
3354,
286,
262,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
15633,
6,
628,
198,
4871,
24877,
15667,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7293,
1769,
262,
8434,
1720,
286,
262,
5128,
2603,
45977,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
818,
1008,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
35868,
15667,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
16719,
274,
262,
12076,
1720,
286,
734,
2603,
45977,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
7975,
263,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
554,
4399,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
7293,
1769,
262,
34062,
17593,
37811,
198,
220,
220,
220,
3670,
796,
705,
818,
4399,
6,
628,
198,
4871,
44732,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
13538,
15931,
15931,
198,
220,
220,
220,
3670,
796,
705,
42,
1313,
6,
628,
198,
4871,
18007,
31426,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
13538,
15931,
15931,
198,
220,
220,
220,
3670,
796,
705,
45195,
16048,
6,
628,
198,
4871,
18007,
52,
2848,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
13538,
15931,
15931,
198,
220,
220,
220,
3670,
796,
705,
45195,
20390,
6,
628,
198,
4871,
6550,
44,
377,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
5990,
23914,
257,
17593,
48473,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
15205,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
6550,
13434,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
47,
3618,
257,
17593,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
13434,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
35886,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
16719,
274,
257,
17593,
286,
1976,
27498,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
35067,
6,
628,
198,
4871,
32606,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
16719,
274,
257,
17593,
286,
3392,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
2202,
274,
6,
628,
198,
4871,
14534,
46912,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
16719,
274,
257,
17593,
351,
4738,
3815,
1022,
657,
290,
352,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
38918,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
4871,
4294,
303,
2538,
80,
7,
46912,
19667,
14881,
2599,
198,
220,
220,
220,
37227,
50,
9010,
257,
14174,
16022,
1080,
526,
15931,
198,
220,
220,
220,
3670,
796,
705,
50,
6442,
6,
198,
220,
220,
220,
2315,
62,
15414,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
19081,
20560,
20866,
22784,
198,
220,
220,
220,
2361,
628,
198,
39344,
62,
77,
4147,
7,
198,
220,
220,
220,
24936,
62,
19667,
11,
198,
220,
220,
220,
5438,
46912,
11,
198,
220,
220,
220,
1482,
31761,
378,
11,
198,
220,
220,
220,
3602,
3455,
11,
198,
220,
220,
220,
4614,
5189,
46912,
11,
198,
220,
220,
220,
22875,
15667,
11,
198,
220,
220,
220,
18113,
46912,
11,
198,
220,
220,
220,
4522,
46912,
11,
198,
220,
220,
220,
39440,
46912,
11,
198,
220,
220,
220,
6416,
46912,
11,
198,
220,
220,
220,
24877,
15667,
11,
198,
220,
220,
220,
35868,
15667,
11,
198,
220,
220,
220,
554,
4399,
46912,
11,
198,
220,
220,
220,
44732,
46912,
11,
198,
220,
220,
220,
18007,
31426,
11,
198,
220,
220,
220,
18007,
52,
2848,
11,
198,
220,
220,
220,
6550,
44,
377,
11,
198,
220,
220,
220,
6550,
13434,
11,
198,
220,
220,
220,
35886,
46912,
11,
198,
220,
220,
220,
32606,
46912,
11,
198,
220,
220,
220,
14534,
46912,
11,
198,
220,
220,
220,
4294,
303,
2538,
80,
11,
198,
8,
198
] | 2.580923 | 1,279 |
from django.db import models
# Create your models here. | [
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
198,
2,
13610,
534,
4981,
994,
13
] | 3.733333 | 15 |
import re
f = open('input.txt')
east = 0
north = 0
waypoint = {'east': 10, 'north': 1}
for line in f:
m = re.match(r'([S|W|E|N|F|R|L]{1})(\d+)', line[:-1])
instruction = (m.group(1), int(m.group(2)))
if instruction[0] == 'F':
update_location(instruction[1])
elif instruction[0] == 'R':
times = int(instruction[1] / 90)
for time in range(times):
turn_right()
elif instruction[0] == 'L':
times = int(instruction[1] / 90)
for time in range(times):
turn_left()
elif instruction[0] == 'E':
waypoint['east'] += instruction[1]
elif instruction[0] == 'W':
waypoint['east'] -= instruction[1]
elif instruction[0] == 'S':
waypoint['north'] -= instruction[1]
else: waypoint['north'] += instruction[1]
print(abs(north) + abs(east))
| [
11748,
302,
198,
198,
69,
796,
1280,
10786,
15414,
13,
14116,
11537,
198,
198,
23316,
796,
657,
198,
43588,
796,
657,
198,
1014,
4122,
796,
1391,
6,
23316,
10354,
838,
11,
220,
705,
43588,
10354,
352,
92,
198,
198,
1640,
1627,
287,
277,
25,
198,
220,
220,
220,
285,
796,
302,
13,
15699,
7,
81,
6,
26933,
50,
91,
54,
91,
36,
91,
45,
91,
37,
91,
49,
91,
43,
60,
90,
16,
92,
5769,
59,
67,
28988,
3256,
1627,
58,
21912,
16,
12962,
198,
220,
220,
220,
12064,
796,
357,
76,
13,
8094,
7,
16,
828,
493,
7,
76,
13,
8094,
7,
17,
22305,
198,
220,
220,
220,
611,
12064,
58,
15,
60,
6624,
705,
37,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4296,
62,
24886,
7,
8625,
2762,
58,
16,
12962,
198,
220,
220,
220,
1288,
361,
12064,
58,
15,
60,
6624,
705,
49,
10354,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1661,
796,
493,
7,
8625,
2762,
58,
16,
60,
1220,
4101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
640,
287,
2837,
7,
22355,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1210,
62,
3506,
3419,
198,
220,
220,
220,
1288,
361,
12064,
58,
15,
60,
6624,
705,
43,
10354,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1661,
796,
493,
7,
8625,
2762,
58,
16,
60,
1220,
4101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
640,
287,
2837,
7,
22355,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1210,
62,
9464,
3419,
198,
220,
220,
220,
1288,
361,
12064,
58,
15,
60,
6624,
705,
36,
10354,
220,
198,
220,
220,
220,
220,
220,
220,
220,
835,
4122,
17816,
23316,
20520,
15853,
12064,
58,
16,
60,
198,
220,
220,
220,
1288,
361,
12064,
58,
15,
60,
6624,
705,
54,
10354,
220,
198,
220,
220,
220,
220,
220,
220,
220,
835,
4122,
17816,
23316,
20520,
48185,
12064,
58,
16,
60,
198,
220,
220,
220,
1288,
361,
12064,
58,
15,
60,
6624,
705,
50,
10354,
220,
198,
220,
220,
220,
220,
220,
220,
220,
835,
4122,
17816,
43588,
20520,
48185,
12064,
58,
16,
60,
198,
220,
220,
220,
2073,
25,
835,
4122,
17816,
43588,
20520,
15853,
12064,
58,
16,
60,
198,
198,
4798,
7,
8937,
7,
43588,
8,
1343,
2352,
7,
23316,
4008,
198
] | 2.15404 | 396 |
from __future__ import print_function
if __name__ == '__main__':
xs = [1, 2, 3]
if 2 in xs:
print("YES")
else:
print("NO")
if cond1() and cond2():
print("YES")
else:
print("NO")
| [
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
2124,
82,
796,
685,
16,
11,
362,
11,
513,
60,
198,
220,
220,
220,
611,
362,
287,
2124,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
43335,
4943,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
15285,
4943,
628,
220,
220,
220,
611,
1779,
16,
3419,
290,
1779,
17,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
43335,
4943,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
15285,
4943,
198
] | 1.991525 | 118 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Project: Fable Input Output
# https://github.com/silx-kit/fabio
#
# Copyright (C) European Synchrotron Radiation Facility, Grenoble, France
#
# Principal author: Jérôme Kieffer ([email protected])
#
# 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 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/>.
#
"""
# Unit tests
Jerome Kieffer, 04/12/2014
"""
from __future__ import print_function, with_statement, division, absolute_import
import unittest
import logging
logger = logging.getLogger(__name__)
from fabio.openimage import openheader
from .utilstest import UtilsTest
class Test1(unittest.TestCase):
"""openheader opening edf"""
def testcase(self):
""" check openheader can read edf headers"""
for ext in ["", ".bz2", ".gz"]:
name = self.name + ext
obj = openheader(name)
logger.debug(" %s obj = %s" % (name, obj.header))
self.assertEqual(obj.header["title"],
"ESPIA FRELON Image",
"Error on file %s" % name)
if __name__ == '__main__':
runner = unittest.TextTestRunner()
runner.run(suite)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
198,
2,
220,
220,
220,
4935,
25,
376,
540,
23412,
25235,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
18217,
87,
12,
15813,
14,
36434,
952,
198,
2,
198,
2,
220,
220,
220,
15069,
357,
34,
8,
3427,
16065,
354,
10599,
1313,
47532,
29118,
11,
19674,
672,
293,
11,
4881,
198,
2,
198,
2,
220,
220,
220,
32641,
1772,
25,
220,
220,
220,
220,
220,
220,
449,
42445,
27083,
1326,
509,
494,
36761,
357,
36134,
462,
13,
42,
494,
36761,
31,
1546,
32754,
13,
12496,
8,
198,
2,
198,
2,
220,
220,
220,
770,
1430,
318,
1479,
3788,
25,
345,
460,
17678,
4163,
340,
290,
14,
273,
13096,
198,
2,
220,
220,
220,
340,
739,
262,
2846,
286,
262,
22961,
3611,
5094,
13789,
355,
3199,
416,
198,
2,
220,
220,
220,
262,
3232,
10442,
5693,
11,
2035,
2196,
513,
286,
262,
13789,
11,
393,
198,
2,
220,
220,
220,
357,
265,
534,
3038,
8,
597,
1568,
2196,
13,
198,
2,
198,
2,
220,
220,
220,
770,
1430,
318,
9387,
287,
262,
2911,
326,
340,
481,
307,
4465,
11,
198,
2,
220,
220,
220,
475,
42881,
15529,
34764,
56,
26,
1231,
772,
262,
17142,
18215,
286,
198,
2,
220,
220,
220,
34482,
3398,
1565,
5603,
25382,
393,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
13,
220,
4091,
262,
198,
2,
220,
220,
220,
22961,
3611,
5094,
13789,
329,
517,
3307,
13,
198,
2,
198,
2,
220,
220,
220,
921,
815,
423,
2722,
257,
4866,
286,
262,
22961,
3611,
5094,
13789,
198,
2,
220,
220,
220,
1863,
351,
428,
1430,
13,
220,
1002,
407,
11,
766,
1279,
4023,
1378,
2503,
13,
41791,
13,
2398,
14,
677,
4541,
15913,
13,
198,
2,
198,
37811,
198,
2,
11801,
5254,
198,
36134,
462,
509,
494,
36761,
11,
8702,
14,
1065,
14,
4967,
198,
37811,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
11,
351,
62,
26090,
11,
7297,
11,
4112,
62,
11748,
198,
198,
11748,
555,
715,
395,
198,
11748,
18931,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
6738,
7843,
952,
13,
9654,
9060,
1330,
1280,
25677,
198,
6738,
764,
315,
11750,
395,
1330,
7273,
4487,
14402,
628,
198,
4871,
6208,
16,
7,
403,
715,
395,
13,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
9654,
25677,
4756,
1225,
69,
37811,
628,
220,
220,
220,
825,
1332,
7442,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2198,
1280,
25677,
460,
1100,
1225,
69,
24697,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1070,
287,
14631,
1600,
27071,
65,
89,
17,
1600,
27071,
34586,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
2116,
13,
3672,
1343,
1070,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26181,
796,
1280,
25677,
7,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
4064,
82,
26181,
796,
4064,
82,
1,
4064,
357,
3672,
11,
26181,
13,
25677,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
26801,
13,
25677,
14692,
7839,
33116,
198,
220,
220,
220,
220,
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,
1546,
47,
3539,
376,
16448,
1340,
7412,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12331,
319,
2393,
4064,
82,
1,
4064,
1438,
8,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
17490,
796,
555,
715,
395,
13,
8206,
14402,
49493,
3419,
198,
220,
220,
220,
17490,
13,
5143,
7,
2385,
578,
8,
198
] | 2.608187 | 684 |
num = cont = soma = igual = maior = menor = 0
r = 'a'
while r != 'N':
num = int(input('Digite um número: '))
igual = num
soma += num
cont += 1
if cont == 1:
maior = menor = num
else:
if num > maior:
maior = num
elif num < menor:
menor = num
r = str(input('Quer continuar? ')).strip().upper()
media = soma / cont
print('FIM, {}'.format(media))
print('O maior numero lido foi {} e o menor foi {}!'.format(maior, menor))
| [
22510,
796,
542,
796,
3870,
64,
796,
45329,
723,
796,
17266,
1504,
796,
1450,
273,
796,
657,
198,
81,
796,
705,
64,
6,
198,
4514,
374,
14512,
705,
45,
10354,
198,
220,
220,
220,
997,
796,
493,
7,
15414,
10786,
19511,
578,
23781,
299,
21356,
647,
78,
25,
705,
4008,
198,
220,
220,
220,
45329,
723,
796,
997,
198,
220,
220,
220,
3870,
64,
15853,
997,
198,
220,
220,
220,
542,
15853,
352,
198,
220,
220,
220,
611,
542,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17266,
1504,
796,
1450,
273,
796,
997,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
997,
1875,
17266,
1504,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17266,
1504,
796,
997,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
997,
1279,
1450,
273,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1450,
273,
796,
997,
198,
220,
220,
220,
374,
796,
965,
7,
15414,
10786,
4507,
263,
11143,
283,
30,
705,
29720,
36311,
22446,
45828,
3419,
198,
11431,
796,
3870,
64,
1220,
542,
198,
4798,
10786,
37,
3955,
11,
23884,
4458,
18982,
7,
11431,
4008,
198,
4798,
10786,
46,
17266,
1504,
997,
3529,
300,
17305,
11511,
72,
23884,
304,
267,
1450,
273,
11511,
72,
23884,
0,
4458,
18982,
7,
2611,
1504,
11,
1450,
273,
4008,
198
] | 2.102128 | 235 |
from src.creator.creator import Creator
from src.creator.luogu_creator import LuoguProblemCreator
problem_map = {
"luogu": LuoguProblemCreator
}
| [
6738,
12351,
13,
45382,
13,
45382,
1330,
21038,
198,
6738,
12351,
13,
45382,
13,
2290,
519,
84,
62,
45382,
1330,
6026,
519,
84,
40781,
16719,
273,
198,
198,
45573,
62,
8899,
796,
1391,
198,
220,
220,
220,
366,
2290,
519,
84,
1298,
6026,
519,
84,
40781,
16719,
273,
198,
92,
198
] | 2.941176 | 51 |
import inspect
from typing import Optional
from solo.server.definitions import HttpMethod
from . import predicates as default_predicates
from ..util import viewdefaults
from .routes import ViewMeta
from .util import PredicateList
from ..exceptions import ConfigurationError
from solo.server.app import App
| [
11748,
10104,
198,
6738,
19720,
1330,
32233,
198,
198,
6738,
12199,
13,
15388,
13,
4299,
50101,
1330,
367,
29281,
17410,
198,
6738,
764,
1330,
2747,
16856,
355,
4277,
62,
28764,
16856,
198,
6738,
11485,
22602,
1330,
1570,
12286,
82,
198,
6738,
764,
81,
448,
274,
1330,
3582,
48526,
198,
6738,
764,
22602,
1330,
14322,
5344,
8053,
198,
6738,
11485,
1069,
11755,
1330,
28373,
12331,
198,
6738,
12199,
13,
15388,
13,
1324,
1330,
2034,
198
] | 4.148649 | 74 |
import base64
import json
from typing import Any, ByteString, Iterable, Optional, Tuple
import aiowamp
from aiowamp import SerializerABC, build_message_from_list
__all__ = ["JSONSerializer", "JSONDecoder", "JSONEncoder"]
class JSONSerializer(SerializerABC):
"""Serializer for the JSON format.
Provides a custom `json.JSONDecoder` and `json.JSONEncoder` which handle
the special WAMP string format for binary data.
"""
__slots__ = ("decoder", "encoder")
decoder: json.JSONDecoder
"""JSON decoder used to decode incoming messages."""
encoder: json.JSONEncoder
"""JSON encoder used to encode outgoing messages."""
def __init__(self, *,
decoder: json.JSONDecoder = None,
encoder: json.JSONEncoder = None) -> None:
"""
Args:
decoder: Decoder to be used. Defaults to `JSONDecoder` which supports
binary data in strings.
encoder: Encoder to be used. Defaults to `JSONEncoder` which supports
binary data in strings.
"""
self.decoder = decoder or JSONDecoder()
self.encoder = encoder or JSONEncoder(check_circular=False)
def is_encoded_bytes(s: str) -> bool:
"""Check if the given string contains encoded binary data.
Args:
s: String to check.
Returns:
Whether the given string holds encoded binary data.
"""
return s.startswith("\0")
def encode_bytes(b: ByteString) -> str:
"""Encode the binary data to a string.
Args:
b: Binary data to encode.
Returns:
WAMP JSON string representation of the binary data.
"""
e = b"\0" + base64.b64encode(b)
return e.decode()
def decode_bytes(s: str) -> bytes:
"""Decode the bytes.
Args:
s: Encoded binary content.
Returns:
Decoded binary data.
Raises:
binascii.Error: If the data isn't valid.
"""
return base64.b64decode(s[1:])
def _get_item_iter(v: Any) -> Optional[Iterable[Tuple[Any, Any]]]:
"""Get a key-value iterable for the given object.
Args:
v: Any JSON object.
Returns:
An iterable which yields 2-tuples where the first element is the index
value and the second element is the value. `None`, if the given object
isn't a container.
"""
if isinstance(v, list):
return enumerate(v)
if isinstance(v, dict):
return v.items()
return None
def decode_bytes_in_json_obj(v: Any) -> Any:
"""Decode nested bytes in the given object.
If the given object is a container type it WILL BE MUTATED DIRECTLY.
Args:
v: Any JSON object.
Returns:
Same object with binary data decoded.
"""
if isinstance(v, str):
if is_encoded_bytes(v):
return decode_bytes(v)
return v
item_iter = _get_item_iter(v)
if not item_iter:
return v
stack = [(v, item_iter)]
while stack:
container, item_iter = stack.pop()
for key, value in item_iter:
if isinstance(value, str):
if is_encoded_bytes(value):
container[key] = decode_bytes(value)
continue
sub_item_iter = _get_item_iter(value)
if sub_item_iter:
stack.append((value, sub_item_iter))
return v
class JSONDecoder(json.JSONDecoder):
"""JSONDecoder with support for binary data."""
__slots__ = ()
class JSONEncoder(json.JSONEncoder):
"""JSONEncoder with support for binary data.
Treats all `ByteString` types as binary data.
"""
__slots__ = ()
| [
11748,
2779,
2414,
198,
11748,
33918,
198,
6738,
19720,
1330,
4377,
11,
30589,
10100,
11,
40806,
540,
11,
32233,
11,
309,
29291,
198,
198,
11748,
257,
72,
322,
696,
198,
6738,
257,
72,
322,
696,
1330,
23283,
7509,
24694,
11,
1382,
62,
20500,
62,
6738,
62,
4868,
198,
198,
834,
439,
834,
796,
14631,
40386,
32634,
7509,
1600,
366,
40386,
10707,
12342,
1600,
366,
40386,
27195,
12342,
8973,
628,
198,
4871,
19449,
32634,
7509,
7,
32634,
7509,
24694,
2599,
198,
220,
220,
220,
37227,
32634,
7509,
329,
262,
19449,
5794,
13,
628,
220,
220,
220,
47081,
257,
2183,
4600,
17752,
13,
40386,
10707,
12342,
63,
290,
4600,
17752,
13,
40386,
27195,
12342,
63,
543,
5412,
198,
220,
220,
220,
262,
2041,
370,
23518,
4731,
5794,
329,
13934,
1366,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11593,
6649,
1747,
834,
796,
5855,
12501,
12342,
1600,
366,
12685,
12342,
4943,
628,
220,
220,
220,
875,
12342,
25,
33918,
13,
40386,
10707,
12342,
198,
220,
220,
220,
37227,
40386,
875,
12342,
973,
284,
36899,
15619,
6218,
526,
15931,
628,
220,
220,
220,
2207,
12342,
25,
33918,
13,
40386,
27195,
12342,
198,
220,
220,
220,
37227,
40386,
2207,
12342,
973,
284,
37773,
28181,
6218,
526,
15931,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
1635,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
875,
12342,
25,
33918,
13,
40386,
10707,
12342,
796,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2207,
12342,
25,
33918,
13,
40386,
27195,
12342,
796,
6045,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
875,
12342,
25,
34580,
284,
307,
973,
13,
2896,
13185,
284,
4600,
40386,
10707,
12342,
63,
543,
6971,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13934,
1366,
287,
13042,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2207,
12342,
25,
14711,
12342,
284,
307,
973,
13,
2896,
13185,
284,
4600,
40386,
27195,
12342,
63,
543,
6971,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13934,
1366,
287,
13042,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12501,
12342,
796,
875,
12342,
393,
19449,
10707,
12342,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12685,
12342,
796,
2207,
12342,
393,
19449,
27195,
12342,
7,
9122,
62,
21170,
934,
28,
25101,
8,
628,
198,
4299,
318,
62,
12685,
9043,
62,
33661,
7,
82,
25,
965,
8,
4613,
20512,
25,
198,
220,
220,
220,
37227,
9787,
611,
262,
1813,
4731,
4909,
30240,
13934,
1366,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
264,
25,
10903,
284,
2198,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10127,
262,
1813,
4731,
6622,
30240,
13934,
1366,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
264,
13,
9688,
2032,
342,
7203,
59,
15,
4943,
628,
198,
4299,
37773,
62,
33661,
7,
65,
25,
30589,
10100,
8,
4613,
965,
25,
198,
220,
220,
220,
37227,
4834,
8189,
262,
13934,
1366,
284,
257,
4731,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
275,
25,
45755,
1366,
284,
37773,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
370,
23518,
19449,
4731,
10552,
286,
262,
13934,
1366,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
304,
796,
275,
1,
59,
15,
1,
1343,
2779,
2414,
13,
65,
2414,
268,
8189,
7,
65,
8,
198,
220,
220,
220,
1441,
304,
13,
12501,
1098,
3419,
628,
198,
4299,
36899,
62,
33661,
7,
82,
25,
965,
8,
4613,
9881,
25,
198,
220,
220,
220,
37227,
10707,
1098,
262,
9881,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
264,
25,
14711,
9043,
13934,
2695,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4280,
9043,
13934,
1366,
13,
628,
220,
220,
220,
7567,
2696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9874,
292,
979,
72,
13,
12331,
25,
1002,
262,
1366,
2125,
470,
4938,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
2779,
2414,
13,
65,
2414,
12501,
1098,
7,
82,
58,
16,
25,
12962,
628,
198,
4299,
4808,
1136,
62,
9186,
62,
2676,
7,
85,
25,
4377,
8,
4613,
32233,
58,
29993,
540,
58,
51,
29291,
58,
7149,
11,
4377,
11907,
5974,
198,
220,
220,
220,
37227,
3855,
257,
1994,
12,
8367,
11629,
540,
329,
262,
1813,
2134,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
410,
25,
4377,
19449,
2134,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1052,
11629,
540,
543,
19299,
362,
12,
28047,
2374,
810,
262,
717,
5002,
318,
262,
6376,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
290,
262,
1218,
5002,
318,
262,
1988,
13,
4600,
14202,
47671,
611,
262,
1813,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
2125,
470,
257,
9290,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
85,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
27056,
378,
7,
85,
8,
198,
220,
220,
220,
611,
318,
39098,
7,
85,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
410,
13,
23814,
3419,
628,
220,
220,
220,
1441,
6045,
628,
198,
4299,
36899,
62,
33661,
62,
259,
62,
17752,
62,
26801,
7,
85,
25,
4377,
8,
4613,
4377,
25,
198,
220,
220,
220,
37227,
10707,
1098,
28376,
9881,
287,
262,
1813,
2134,
13,
628,
220,
220,
220,
1002,
262,
1813,
2134,
318,
257,
9290,
2099,
340,
17682,
9348,
337,
3843,
11617,
42242,
11319,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
410,
25,
4377,
19449,
2134,
13,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16766,
2134,
351,
13934,
1366,
875,
9043,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
318,
39098,
7,
85,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
318,
62,
12685,
9043,
62,
33661,
7,
85,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
36899,
62,
33661,
7,
85,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
410,
628,
220,
220,
220,
2378,
62,
2676,
796,
4808,
1136,
62,
9186,
62,
2676,
7,
85,
8,
198,
220,
220,
220,
611,
407,
2378,
62,
2676,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
410,
628,
220,
220,
220,
8931,
796,
47527,
85,
11,
2378,
62,
2676,
15437,
198,
220,
220,
220,
981,
8931,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9290,
11,
2378,
62,
2676,
796,
8931,
13,
12924,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
1988,
287,
2378,
62,
2676,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
8367,
11,
965,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
62,
12685,
9043,
62,
33661,
7,
8367,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9290,
58,
2539,
60,
796,
36899,
62,
33661,
7,
8367,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
62,
9186,
62,
2676,
796,
4808,
1136,
62,
9186,
62,
2676,
7,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
850,
62,
9186,
62,
2676,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8931,
13,
33295,
19510,
8367,
11,
850,
62,
9186,
62,
2676,
4008,
628,
220,
220,
220,
1441,
410,
628,
198,
4871,
19449,
10707,
12342,
7,
17752,
13,
40386,
10707,
12342,
2599,
198,
220,
220,
220,
37227,
40386,
10707,
12342,
351,
1104,
329,
13934,
1366,
526,
15931,
198,
220,
220,
220,
11593,
6649,
1747,
834,
796,
7499,
628,
198,
4871,
19449,
27195,
12342,
7,
17752,
13,
40386,
27195,
12342,
2599,
198,
220,
220,
220,
37227,
40386,
27195,
12342,
351,
1104,
329,
13934,
1366,
13,
628,
220,
220,
220,
11217,
82,
477,
4600,
40778,
10100,
63,
3858,
355,
13934,
1366,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11593,
6649,
1747,
834,
796,
7499,
198
] | 2.430667 | 1,500 |
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class RSessioninfo(RPackage):
"""R Session Information.
Query and print information about the current R session. It is similar to
'utils::sessionInfo()', but includes more information about packages, and
where they were installed from."""
cran = "sessioninfo"
version('1.2.2', sha256='f56283857c53ac8691e3747ed48fe03e893d8ff348235bff7364658bcfb0c7cb')
version('1.1.1', sha256='166b04678448a7decd50f24afabe5e2ad613e3c55b180ef6e8dd7a870a1dae48')
depends_on('[email protected]:', type=('build', 'run'), when='@1.2.2:')
depends_on('r-cli', type=('build', 'run'))
depends_on('[email protected]:', type=('build', 'run'), when='@1.2.2:')
depends_on('r-withr', type=('build', 'run'), when='@:1.1.1')
| [
2,
15069,
2211,
12,
1238,
1828,
13914,
45036,
3549,
2351,
4765,
11,
11419,
290,
584,
198,
2,
1338,
441,
4935,
34152,
13,
4091,
262,
1353,
12,
5715,
27975,
38162,
9947,
2393,
329,
3307,
13,
198,
2,
198,
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
357,
25189,
4891,
12,
17,
13,
15,
6375,
17168,
8,
198,
198,
6738,
599,
441,
13,
26495,
1330,
1635,
628,
198,
4871,
19340,
2521,
10951,
7,
49,
27813,
2599,
198,
220,
220,
220,
37227,
49,
23575,
6188,
13,
628,
220,
220,
220,
43301,
290,
3601,
1321,
546,
262,
1459,
371,
6246,
13,
632,
318,
2092,
284,
198,
220,
220,
220,
705,
26791,
3712,
29891,
12360,
3419,
3256,
475,
3407,
517,
1321,
546,
10392,
11,
290,
198,
220,
220,
220,
810,
484,
547,
6589,
422,
526,
15931,
628,
220,
220,
220,
41286,
796,
366,
29891,
10951,
1,
628,
220,
220,
220,
2196,
10786,
16,
13,
17,
13,
17,
3256,
427,
64,
11645,
11639,
69,
3980,
2078,
2548,
3553,
66,
4310,
330,
23,
49541,
68,
2718,
2857,
276,
2780,
5036,
3070,
68,
49682,
67,
23,
487,
28978,
22370,
65,
487,
4790,
2414,
38431,
65,
12993,
65,
15,
66,
22,
21101,
11537,
198,
220,
220,
220,
2196,
10786,
16,
13,
16,
13,
16,
3256,
427,
64,
11645,
11639,
23055,
65,
3023,
30924,
31115,
64,
22,
12501,
67,
1120,
69,
1731,
1878,
11231,
20,
68,
17,
324,
47512,
68,
18,
66,
2816,
65,
15259,
891,
21,
68,
23,
1860,
22,
64,
46951,
64,
16,
67,
3609,
2780,
11537,
628,
220,
220,
220,
8338,
62,
261,
10786,
81,
31,
17,
13,
940,
25,
3256,
2099,
28,
10786,
11249,
3256,
705,
5143,
33809,
618,
11639,
31,
16,
13,
17,
13,
17,
25,
11537,
198,
220,
220,
220,
8338,
62,
261,
10786,
81,
12,
44506,
3256,
2099,
28,
10786,
11249,
3256,
705,
5143,
6,
4008,
198,
220,
220,
220,
8338,
62,
261,
10786,
81,
12,
44506,
31,
18,
13,
16,
13,
15,
25,
3256,
2099,
28,
10786,
11249,
3256,
705,
5143,
33809,
618,
11639,
31,
16,
13,
17,
13,
17,
25,
11537,
628,
220,
220,
220,
8338,
62,
261,
10786,
81,
12,
4480,
81,
3256,
2099,
28,
10786,
11249,
3256,
705,
5143,
33809,
618,
11639,
31,
25,
16,
13,
16,
13,
16,
11537,
198
] | 2.552279 | 373 |
"""Interface for the Database updater thread."""
# Local imports
import crawler.communication as communication
def shutdown() -> None:
"""Shutdown the database updater thread."""
command = communication.Command(
command=communication.DATABASE_UPDATER_SHUTDOWN,
data=None
)
communication.database_updater_input.put(command)
| [
37811,
39317,
329,
262,
24047,
2325,
729,
4704,
526,
15931,
628,
198,
2,
10714,
17944,
198,
11748,
27784,
1754,
13,
32560,
355,
6946,
628,
198,
4299,
18325,
3419,
4613,
6045,
25,
198,
220,
220,
220,
37227,
39079,
2902,
262,
6831,
2325,
729,
4704,
526,
15931,
198,
220,
220,
220,
3141,
796,
6946,
13,
21575,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3141,
28,
32560,
13,
35,
1404,
6242,
11159,
62,
52,
5760,
23261,
62,
9693,
3843,
41925,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
28,
14202,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6946,
13,
48806,
62,
929,
67,
729,
62,
15414,
13,
1996,
7,
21812,
8,
198
] | 3.121739 | 115 |
from core.advbase import *
from module.template import SigilAdv
variants = {None: Pinon}
| [
6738,
4755,
13,
32225,
8692,
1330,
1635,
198,
6738,
8265,
13,
28243,
1330,
21984,
346,
22856,
198,
198,
25641,
1187,
796,
1391,
14202,
25,
13727,
261,
92,
198
] | 3.214286 | 28 |
# coding=utf-8
| [
2,
19617,
28,
40477,
12,
23,
198
] | 2.142857 | 7 |
import datetime
import requests
import re
import json
class Buro(metaclass=Meta):
"""
Base interface-like class for all departments providing appointments on ...muenchen.de/termin/index.php... page
"""
appointment_types = None
appointment_type_date = None
@classmethod
def get_available_appointment_types(cls):
"""
:return: list of available appointment types
"""
# Cache appointment type results for one day
if cls.appointment_types and (datetime.datetime.now() - cls.appointment_type_date).days < 1:
return cls.appointment_types
response = requests.get(cls.get_frame_url())
# Cut not needed content making search more complicated, we need only part in (after) WEB_APPOINT_CASETYPELIST div
inner_div = \
re.findall('WEB_APPOINT_CASETYPELIST.*', response.content.decode("utf-8"), re.MULTILINE | re.DOTALL)[0]
# Search for text CASETYPES. So far the only issue was in "+" sign for CityHall in some service variable,
# that's why exclude it from the name
cls.appointment_types = re.findall('CASETYPES\[([^+]*?)\]', inner_div)
cls.appointment_type_date = datetime.datetime.now()
return cls.appointment_types
@staticmethod
def get_frame_url():
"""
:return: URL with appointments form
"""
raise NotImplementedError
@staticmethod
def _get_base_page():
"""
:return: actual external web-page containing the frame. Not really needed for implementation, but may be useful
for testing or debugging
"""
raise NotImplementedError
@staticmethod
def get_name():
"""
:return: human-readable name of the buro
"""
raise NotImplementedError
@staticmethod
def get_id():
"""
:return: machine-readable unique ID of the buro
"""
return 'baseburo'
@staticmethod
def get_typical_appointments() -> list:
"""
:return: list of tuples (<Name of appointment>, <index>)
"""
return []
@staticmethod
def get_termins(buro, termin_type):
"""
Get available appointments in the given buro for the given appointment type.
:param buro: Buro to search in
:param termin_type: what type of appointment do you want to find?
:return: dictionary of appointments, keys are possible dates, values are lists of available times
"""
# Session is required to keep cookies between requests
s = requests.Session()
# First request to get and save cookies
first_page = s.post(buro.get_frame_url())
try:
token = re.search('FRM_CASETYPES_token" value="(.*?)"', first_page.text).group(1)
except AttributeError:
token = None
termin_data = {
'CASETYPES[%s]' % termin_type: 1,
'step': 'WEB_APPOINT_SEARCH_BY_CASETYPES',
'FRM_CASETYPES_token': token,
}
response = s.post(buro.get_frame_url(), termin_data)
txt = response.text
try:
json_str = re.search('jsonAppoints = \'(.*?)\'', txt).group(1)
except AttributeError:
print('ERROR: cannot find termins data in server\'s response. See log.txt for raw text')
write_response_to_log(txt)
return None
appointments = json.loads(json_str)
# We expect structure of this JSON should be like this:
# {
# 'Place ID 1': {
# # Address
# 'caption': 'F\u00fchrerscheinstelle Garmischer Str. 19/21',
# # Some internal ID
# 'id': 'a6a84abc3c8666ca80a3655eef15bade',
# # Dictionary containing data about appointments
# 'appoints': {
# '2019-01-25': ['09:05', '09:30'],
# '2019-01-26': []
# # ...
# }
# }
# }
# So there can be several Buros located in different places in the city
return appointments
if __name__ == '__main__':
# Example for exchanging driver license
appointments = get_termins(DMV, 'FS Umschreibung Ausländischer FS')
# # Example for Anmeldung
# appointments = get_termins(CityHall, 'An- oder Ummeldung - Einzelperson')
# # Example for NE with Blue Card
# appointments = get_termins(ForeignLabor, 'Werkverträge')
# # Example for KFZ and car registration
# appointments = get_termins(KFZ, 'ZUL Fabrikneues Fahrzeug')
if appointments:
print(json.dumps(appointments, sort_keys=True, indent=4, separators=(',', ': ')))
| [
11748,
4818,
8079,
198,
198,
11748,
7007,
198,
11748,
302,
198,
11748,
33918,
628,
198,
198,
4871,
347,
1434,
7,
4164,
330,
31172,
28,
48526,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7308,
7071,
12,
2339,
1398,
329,
477,
13346,
4955,
23976,
319,
2644,
30300,
268,
6607,
13,
2934,
14,
23705,
14,
9630,
13,
10121,
986,
2443,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
12557,
62,
19199,
796,
6045,
198,
220,
220,
220,
12557,
62,
4906,
62,
4475,
796,
6045,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
651,
62,
15182,
62,
1324,
49805,
62,
19199,
7,
565,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1351,
286,
1695,
12557,
3858,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
34088,
12557,
2099,
2482,
329,
530,
1110,
198,
220,
220,
220,
220,
220,
220,
220,
611,
537,
82,
13,
1324,
49805,
62,
19199,
290,
357,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
537,
82,
13,
1324,
49805,
62,
4906,
62,
4475,
737,
12545,
1279,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
13,
1324,
49805,
62,
19199,
628,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
7007,
13,
1136,
7,
565,
82,
13,
1136,
62,
14535,
62,
6371,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9712,
407,
2622,
2695,
1642,
2989,
517,
8253,
11,
356,
761,
691,
636,
287,
357,
8499,
8,
12887,
33,
62,
2969,
16402,
12394,
62,
34,
1921,
2767,
48232,
3698,
8808,
2659,
198,
220,
220,
220,
220,
220,
220,
220,
8434,
62,
7146,
796,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
302,
13,
19796,
439,
10786,
8845,
33,
62,
2969,
16402,
12394,
62,
34,
1921,
2767,
48232,
3698,
8808,
15885,
3256,
2882,
13,
11299,
13,
12501,
1098,
7203,
40477,
12,
23,
12340,
302,
13,
44,
16724,
4146,
8881,
930,
302,
13,
35,
2394,
7036,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11140,
329,
2420,
35106,
2767,
48232,
1546,
13,
1406,
1290,
262,
691,
2071,
373,
287,
43825,
1,
1051,
329,
2254,
34194,
287,
617,
2139,
7885,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
326,
338,
1521,
19607,
340,
422,
262,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
537,
82,
13,
1324,
49805,
62,
19199,
796,
302,
13,
19796,
439,
10786,
34,
1921,
2767,
48232,
1546,
59,
58,
26933,
61,
10,
60,
9,
10091,
59,
60,
3256,
8434,
62,
7146,
8,
198,
220,
220,
220,
220,
220,
220,
220,
537,
82,
13,
1324,
49805,
62,
4906,
62,
4475,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
13,
1324,
49805,
62,
19199,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
14535,
62,
6371,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
10289,
351,
23976,
1296,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
4808,
1136,
62,
8692,
62,
7700,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4036,
7097,
3992,
12,
7700,
7268,
262,
5739,
13,
1892,
1107,
2622,
329,
7822,
11,
475,
743,
307,
4465,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4856,
393,
28769,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
3672,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1692,
12,
46155,
1438,
286,
262,
809,
305,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
312,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
4572,
12,
46155,
3748,
4522,
286,
262,
809,
305,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
8692,
65,
1434,
6,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
651,
62,
28004,
605,
62,
1324,
1563,
902,
3419,
4613,
1351,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
1351,
286,
12777,
2374,
38155,
5376,
286,
12557,
22330,
1279,
9630,
43734,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
17635,
628,
220,
220,
220,
2488,
12708,
24396,
628,
628,
628,
628,
198,
4299,
651,
62,
4354,
1040,
7,
65,
1434,
11,
5651,
62,
4906,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3497,
1695,
23976,
287,
262,
1813,
809,
305,
329,
262,
1813,
12557,
2099,
13,
198,
220,
220,
220,
1058,
17143,
809,
305,
25,
347,
1434,
284,
2989,
287,
198,
220,
220,
220,
1058,
17143,
5651,
62,
4906,
25,
644,
2099,
286,
12557,
466,
345,
765,
284,
1064,
30,
198,
220,
220,
220,
1058,
7783,
25,
22155,
286,
23976,
11,
8251,
389,
1744,
9667,
11,
3815,
389,
8341,
286,
1695,
1661,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
23575,
318,
2672,
284,
1394,
14746,
1022,
7007,
198,
220,
220,
220,
264,
796,
7007,
13,
36044,
3419,
198,
220,
220,
220,
1303,
3274,
2581,
284,
651,
290,
3613,
14746,
198,
220,
220,
220,
717,
62,
7700,
796,
264,
13,
7353,
7,
65,
1434,
13,
1136,
62,
14535,
62,
6371,
28955,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
796,
302,
13,
12947,
10786,
10913,
44,
62,
34,
1921,
2767,
48232,
1546,
62,
30001,
1,
1988,
2625,
7,
15885,
10091,
1,
3256,
717,
62,
7700,
13,
5239,
737,
8094,
7,
16,
8,
198,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
796,
6045,
628,
220,
220,
220,
5651,
62,
7890,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34,
1921,
2767,
48232,
1546,
58,
4,
82,
49946,
4064,
5651,
62,
4906,
25,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
10354,
705,
8845,
33,
62,
2969,
16402,
12394,
62,
5188,
31315,
62,
17513,
62,
34,
1921,
2767,
48232,
1546,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10913,
44,
62,
34,
1921,
2767,
48232,
1546,
62,
30001,
10354,
11241,
11,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
2882,
796,
264,
13,
7353,
7,
65,
1434,
13,
1136,
62,
14535,
62,
6371,
22784,
5651,
62,
7890,
8,
198,
220,
220,
220,
256,
742,
796,
2882,
13,
5239,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33918,
62,
2536,
796,
302,
13,
12947,
10786,
17752,
4677,
1563,
82,
796,
34373,
7,
15885,
10091,
43054,
3256,
256,
742,
737,
8094,
7,
16,
8,
198,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
24908,
25,
2314,
1064,
3381,
1040,
1366,
287,
4382,
43054,
82,
2882,
13,
4091,
2604,
13,
14116,
329,
8246,
2420,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3551,
62,
26209,
62,
1462,
62,
6404,
7,
14116,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
23976,
796,
33918,
13,
46030,
7,
17752,
62,
2536,
8,
198,
220,
220,
220,
1303,
775,
1607,
4645,
286,
428,
19449,
815,
307,
588,
428,
25,
198,
220,
220,
220,
1303,
1391,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
705,
27271,
4522,
352,
10354,
1391,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17917,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6888,
1159,
10354,
705,
37,
59,
84,
405,
69,
354,
11751,
15952,
8625,
13485,
402,
1670,
24645,
4285,
13,
678,
14,
2481,
3256,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2773,
5387,
4522,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
312,
10354,
705,
64,
21,
64,
5705,
39305,
18,
66,
23,
27310,
6888,
1795,
64,
2623,
2816,
68,
891,
1314,
65,
671,
3256,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
28261,
7268,
1366,
546,
23976,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1324,
1563,
82,
10354,
1391,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23344,
12,
486,
12,
1495,
10354,
37250,
2931,
25,
2713,
3256,
705,
2931,
25,
1270,
6,
4357,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23344,
12,
486,
12,
2075,
10354,
17635,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1303,
1782,
198,
220,
220,
220,
1303,
1406,
612,
460,
307,
1811,
347,
1434,
82,
5140,
287,
1180,
4113,
287,
262,
1748,
628,
220,
220,
220,
1441,
23976,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
17934,
329,
39167,
4639,
5964,
198,
220,
220,
220,
23976,
796,
651,
62,
4354,
1040,
7,
23127,
53,
11,
705,
10652,
471,
907,
354,
260,
571,
2150,
27545,
75,
11033,
358,
24645,
23324,
11537,
628,
220,
220,
220,
1303,
1303,
17934,
329,
1052,
1326,
335,
2150,
198,
220,
220,
220,
1303,
23976,
796,
651,
62,
4354,
1040,
7,
14941,
34194,
11,
705,
2025,
12,
267,
1082,
21039,
1326,
335,
2150,
532,
412,
259,
17396,
6259,
11537,
628,
220,
220,
220,
1303,
1303,
17934,
329,
10635,
351,
4518,
5172,
198,
220,
220,
220,
1303,
23976,
796,
651,
62,
4354,
1040,
7,
33616,
42230,
11,
705,
54,
9587,
1851,
81,
11033,
469,
11537,
628,
220,
220,
220,
1303,
1303,
17934,
329,
509,
37,
57,
290,
1097,
9352,
198,
220,
220,
220,
1303,
23976,
796,
651,
62,
4354,
1040,
7,
42,
37,
57,
11,
705,
57,
6239,
14236,
12602,
710,
947,
27361,
81,
2736,
1018,
11537,
628,
220,
220,
220,
611,
23976,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
17752,
13,
67,
8142,
7,
1324,
1563,
902,
11,
3297,
62,
13083,
28,
17821,
11,
33793,
28,
19,
11,
2880,
2024,
16193,
3256,
3256,
705,
25,
705,
22305,
198
] | 2.441413 | 1,869 |
###############################################################################################################################
# This script implements our Prior-guided Bayesian Optimization method, presented in: https://arxiv.org/abs/1805.12168. #
###############################################################################################################################
import sys
import os
import space
import models
import numpy as np
import csv
import random
import json
import datetime
from jsonschema import Draft4Validator, validators, exceptions
from utility_functions import *
from local_search import local_search
from random_scalarizations import sample_weight_flat, compute_data_array_scalarization
from scipy import stats
from sklearn.ensemble import ExtraTreesRegressor
def compute_probability_from_prior(configurations, param_space, objective_weights):
"""
Compute the probability of configurations being good according to the prior.
:param configurations: list of configurations to compute probability.
:param param_space: Space object for the optimization problem
:param objective_weights: Objective weights for multi-objective optimization. Not implemented yet.
:return: list with the probability of each configuration being good according to the prior.
"""
probabilities = []
objectives = param_space.get_optimization_parameters()
input_param_objects = param_space.get_input_parameters_objects()
prior_estimation_flag = param_space.get_estimate_prior_flags()[0]
# We have to update this for multiple objectives
if prior_estimation_flag:
for configuration in configurations:
probability = param_space.get_configuration_probability(configuration)
probabilities.append(probability)
else:
for configuration in configurations:
probability = 1
for parameter_name in configuration.keys():
for objective in objectives:
parameter_value = configuration[parameter_name]
p = input_param_objects[parameter_name].get_x_probability(parameter_value)
probability *= p**objective_weights[objective]
probabilities.append(probability)
return probabilities
def estimate_prior_limits(param_space, prior_limit_estimation_points, objective_weights):
"""
Estimate the limits for the priors provided. Limits are used to normalize the priors, if prior normalization is required.
:param param_space: Space object for the optimization problem
:param prior_limit_estimation_points: number of points to sample to estimate the limits
:param objective_weights: Objective weights for multi-objective optimization. Not implemented yet.
:return: list with the estimated lower and upper limits found for the prior.
"""
uniform_configurations = param_space.random_sample_configurations_without_repetitions({}, prior_limit_estimation_points, use_priors=False)
prior_configurations = param_space.random_sample_configurations_without_repetitions({}, prior_limit_estimation_points, use_priors=True) # will be uniform random if no prior
configurations = uniform_configurations + prior_configurations
prior = compute_probability_from_prior(configurations, param_space, objective_weights)
return [min(prior), max(prior)]
def compute_probability_from_model(
model_means,
model_stds,
param_space,
objective_weights,
threshold,
compute_bad=True):
"""
Compute the probability of a configuration being good or bad according to the model.
:param model_means: predicted means of the model for each configuration.
:param model_means: predicted std of the model for each configuration.
:param param_space: Space object for the optimization problem.
:param objective_weights: objective weights for multi-objective optimization. Not implemented yet.
:param threshold: threshold on objective values separating good points and bad points.
:param compute_bad: whether to compute the probability of being good or bad.
"""
optimization_parameters = param_space.get_optimization_parameters()
probabilities = np.ones(len(model_means[optimization_parameters[0]]))
for parameter in optimization_parameters:
parameter_means = model_means[parameter]
parameter_stds = model_stds[parameter]
if compute_bad:
p = 1 - stats.norm.cdf((threshold[parameter] - parameter_means)/parameter_stds)
else:
p = stats.norm.cdf((threshold[parameter] - parameter_means)/parameter_stds)
probabilities *= p**objective_weights[parameter]
return probabilities
def compute_EI_from_posteriors(
configurations,
param_space,
objective_weights,
objective_limits,
threshold,
iteration_number,
model_weight,
regression_models,
classification_model,
model_type,
good_prior_normalization_limits,
posterior_floor=10**-8,
posterior_normalization_limits=None,
debug=False):
"""
Compute EI acquisition function for a list of configurations based on the priors provided by the user and the BO model.
:param configurations: list of configurations to compute EI.
:param param_space: Space object for the optimization problem
:param objective_weights: objective weights for multi-objective optimization. Not implemented yet.
:param objective_limits: objective limits for multi-objective optimization. Not implemented yet.
:param threshold: threshold that separates configurations into good or bad for the model.
:param iteration_number: current optimization iteration.
:param model_weight: weight hyperparameter given to the model during posterior computation.
:param regression_models: regression models to compute the probability of a configuration being good according to BO's model.
:param classification_model: classification model to compute the probability of feasibility.
:param model_type: type of the regression model, either GP or RF for now.
:param good_prior_normalization_limits: lower and upper limits to normalize the prior. Will be updated if any value exceeds the limits.
:param posterior_floor: lower limit for posterior computation. Used when normalizing the priors and in the probability of feasibility.
:param posterior_normalization_limits:
:param debug: whether to run in debug mode.
"""
user_prior_t0 = datetime.datetime.now()
prior_good = compute_probability_from_prior(configurations, param_space, objective_weights)
# if prior is non-normalized, we have to normalize it
if good_prior_normalization_limits is not None:
good_prior_normalization_limits[0] = min(good_prior_normalization_limits[0], min(prior_good))
good_prior_normalization_limits[1] = max(good_prior_normalization_limits[1], max(prior_good))
# limits will be equal if all values are the same, in this case, just set the prior to 1 everywhere
if good_prior_normalization_limits[0] == good_prior_normalization_limits[1]:
prior_good = [1]*len(prior_good)
else:
prior_good = [posterior_floor + ((1-posterior_floor)*(x - good_prior_normalization_limits[0]))/(good_prior_normalization_limits[1] - good_prior_normalization_limits[0]) \
for x in prior_good]
prior_good = np.array(prior_good, dtype=np.float64)
prior_bad = np.array(1 - prior_good, dtype=np.float64)
prior_bad[prior_bad < posterior_floor] = posterior_floor
discrete_space = True
for parameter in param_space.get_input_parameters():
if param_space.get_type(parameter) == "real":
discrete_space = False
if discrete_space:
prior_bad = prior_bad/(param_space.get_discrete_space_size() - 1)
sys.stdout.write_to_logfile(("EI: user prior time %10.4f sec\n" % ((datetime.datetime.now() - user_prior_t0).total_seconds())))
model_t0 = datetime.datetime.now()
bufferx = dict_list_to_matrix(configurations) # prediction methods require a matrix instead of list of dictionaries
number_of_predictions = len(bufferx)
model_stds = {}
model_means, model_stds = models.compute_model_mean_and_uncertainty(bufferx, regression_models, model_type, param_space, var=False)
# If classification model is trained, there are feasibility constraints
if classification_model != None:
classification_prediction_results = models.model_probabilities(bufferx, classification_model, param_space)
feasible_parameter = param_space.get_feasible_parameter()[0]
true_value_index = classification_model[feasible_parameter].classes_.tolist().index(True) # predictor gives both probabilities (feasible and infeasible), find the index of feasible probabilities
feasibility_indicator = classification_prediction_results[feasible_parameter][:,true_value_index]
feasibility_indicator[feasibility_indicator == 0] = posterior_floor
feasibility_indicator = np.log(feasibility_indicator)
# Normalize the feasibility indicator to 0, 1.
feasibility_indicator = [posterior_floor + ((1-posterior_floor)*(x - np.log(posterior_floor)))/(np.log(1) - np.log(posterior_floor)) \
for x in feasibility_indicator]
feasibility_indicator = np.array(feasibility_indicator)
else:
feasibility_indicator = [1]*number_of_predictions # if classification model is not trained, all points are feasible
model_good = compute_probability_from_model(
model_means,
model_stds,
param_space,
objective_weights,
threshold,
compute_bad=False)
model_good = np.array(model_good, dtype=np.float64)
model_bad = compute_probability_from_model(
model_means,
model_stds,
param_space,
objective_weights,
threshold,
compute_bad=True)
sys.stdout.write_to_logfile(("EI: model time %10.4f sec\n" % ((datetime.datetime.now() - model_t0).total_seconds())))
posterior_t0 = datetime.datetime.now()
good_bad_ratios = np.zeros(len(configurations), dtype=np.float64)
with np.errstate(divide='ignore'):
log_posterior_good = np.log(prior_good) + (iteration_number/model_weight)*np.log(model_good)
log_posterior_bad = np.log(prior_bad) + (iteration_number/model_weight)*np.log(model_bad)
good_bad_ratios = log_posterior_good - log_posterior_bad
# If we have feasibility constraints, normalize good_bad_ratios to 0, 1
if posterior_normalization_limits is not None:
tmp_gbr = copy.deepcopy(good_bad_ratios)
tmp_gbr = np.array(tmp_gbr)
# Do not consider -inf and +inf when computing the limits
tmp_gbr[tmp_gbr == float("-inf")] = float("inf")
posterior_normalization_limits[0] = min(posterior_normalization_limits[0], min(tmp_gbr))
tmp_gbr[tmp_gbr == float("inf")] = float("-inf")
posterior_normalization_limits[1] = max(posterior_normalization_limits[1], max(tmp_gbr))
# limits will be equal if all values are the same, in this case, just set the prior to 1 everywhere
if posterior_normalization_limits[0] == posterior_normalization_limits[1]:
good_bad_ratios = [1]*len(good_bad_ratios)
else:
new_gbr = []
for x in good_bad_ratios:
new_x = posterior_floor + ((1-posterior_floor)*(x - posterior_normalization_limits[0]))/(posterior_normalization_limits[1] - posterior_normalization_limits[0])
new_gbr.append(new_x)
good_bad_ratios = new_gbr
good_bad_ratios = np.array(good_bad_ratios)
good_bad_ratios = good_bad_ratios + feasibility_indicator
good_bad_ratios = -1*good_bad_ratios
good_bad_ratios = list(good_bad_ratios)
sys.stdout.write_to_logfile(("EI: posterior time %10.4f sec\n" % ((datetime.datetime.now() - posterior_t0).total_seconds())))
sys.stdout.write_to_logfile(("EI: total time %10.4f sec\n" % ((datetime.datetime.now() - user_prior_t0).total_seconds())))
# local search expects the optimized function to return the values and a feasibility indicator
return good_bad_ratios, feasibility_indicator
def prior_guided_optimization(
config,
data_array,
param_space,
fast_addressing_of_data_array,
regression_models,
iteration_number,
objective_weights,
objective_limits,
classification_model=None):
"""
Run a prior-guided bayesian optimization iteration.
:param config: dictionary containing all the configuration parameters of this optimization.
:param data_array: a dictionary containing previously explored points and their function values.
:param param_space: parameter space object for the current application.
:param fast_addressing_of_data_array: dictionary for quick-access to previously explored configurations.
:param regression_models: the surrogate models used to evaluate points.
:param iteration_number: the current iteration number.
:param objective_weights: objective weights for multi-objective optimization. Not implemented yet.
:param objective_limits: estimated minimum and maximum limits for each objective.
:param classification_model: feasibility classifier for constrained optimization.
"""
local_search_starting_points = config["local_search_starting_points"]
local_search_random_points = config["local_search_random_points"]
scalarization_key = config["scalarization_key"]
function_parameters = {}
function_parameters["param_space"] = param_space
function_parameters["iteration_number"] = iteration_number
function_parameters["regression_models"] = regression_models
function_parameters['classification_model'] = classification_model
function_parameters["objective_weights"] = objective_weights
function_parameters["objective_limits"] = objective_limits
function_parameters['model_type'] = config["models"]["model"]
function_parameters["model_weight"] = config["model_posterior_weight"]
function_parameters["posterior_floor"] = config["posterior_computation_lower_limit"]
model_good_quantile = config["model_good_quantile"]
function_parameters["threshold"] = {}
optimization_metrics = param_space.get_optimization_parameters()
for objective in optimization_metrics:
function_parameters["threshold"][objective] = np.quantile(data_array[objective], model_good_quantile)
if param_space.get_prior_normalization_flag() is True:
prior_limit_estimation_points = config["prior_limit_estimation_points"]
good_prior_normalization_limits = estimate_prior_limits(param_space, prior_limit_estimation_points, objective_weights)
else:
good_prior_normalization_limits = None
function_parameters["good_prior_normalization_limits"] = good_prior_normalization_limits
if classification_model is not None:
function_parameters["posterior_normalization_limits"] = [float("inf"), float("-inf")]
_, best_configuration = local_search(
local_search_starting_points,
local_search_random_points,
param_space,
fast_addressing_of_data_array,
False, # set feasibility to false, we handle it inside the acquisition function
compute_EI_from_posteriors,
function_parameters,
scalarization_key,
previous_points=data_array)
return best_configuration
| [
29113,
29113,
29113,
14468,
7804,
4242,
21017,
198,
2,
770,
4226,
23986,
674,
14481,
12,
23657,
4696,
35610,
30011,
1634,
2446,
11,
5545,
287,
25,
3740,
1378,
283,
87,
452,
13,
2398,
14,
8937,
14,
1507,
2713,
13,
1065,
14656,
13,
220,
220,
220,
220,
220,
220,
1303,
198,
29113,
29113,
29113,
14468,
7804,
4242,
21017,
198,
11748,
25064,
198,
11748,
28686,
198,
11748,
2272,
198,
11748,
4981,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
269,
21370,
198,
11748,
4738,
198,
11748,
33918,
198,
11748,
4818,
8079,
198,
6738,
44804,
684,
2395,
2611,
1330,
13650,
19,
47139,
1352,
11,
4938,
2024,
11,
13269,
198,
6738,
10361,
62,
12543,
2733,
1330,
1635,
198,
6738,
1957,
62,
12947,
1330,
1957,
62,
12947,
198,
6738,
4738,
62,
1416,
282,
283,
4582,
1330,
6291,
62,
6551,
62,
38568,
11,
24061,
62,
7890,
62,
18747,
62,
1416,
282,
283,
1634,
198,
6738,
629,
541,
88,
1330,
9756,
198,
6738,
1341,
35720,
13,
1072,
11306,
1330,
17221,
51,
6037,
8081,
44292,
198,
198,
4299,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
3448,
273,
7,
11250,
20074,
11,
5772,
62,
13200,
11,
9432,
62,
43775,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1133,
262,
12867,
286,
25412,
852,
922,
1864,
284,
262,
3161,
13,
198,
220,
220,
220,
1058,
17143,
25412,
25,
1351,
286,
25412,
284,
24061,
12867,
13,
198,
220,
220,
220,
1058,
17143,
5772,
62,
13200,
25,
4687,
2134,
329,
262,
23989,
1917,
198,
220,
220,
220,
1058,
17143,
9432,
62,
43775,
25,
37092,
19590,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
7783,
25,
1351,
351,
262,
12867,
286,
1123,
8398,
852,
922,
1864,
284,
262,
3161,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
39522,
796,
17635,
198,
220,
220,
220,
15221,
796,
5772,
62,
13200,
13,
1136,
62,
40085,
1634,
62,
17143,
7307,
3419,
198,
220,
220,
220,
5128,
62,
17143,
62,
48205,
796,
5772,
62,
13200,
13,
1136,
62,
15414,
62,
17143,
7307,
62,
48205,
3419,
628,
220,
220,
220,
3161,
62,
395,
18991,
62,
32109,
796,
5772,
62,
13200,
13,
1136,
62,
395,
1920,
62,
3448,
273,
62,
33152,
3419,
58,
15,
60,
628,
220,
220,
220,
1303,
775,
423,
284,
4296,
428,
329,
3294,
15221,
198,
220,
220,
220,
611,
3161,
62,
395,
18991,
62,
32109,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
8398,
287,
25412,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12867,
796,
5772,
62,
13200,
13,
1136,
62,
11250,
3924,
62,
1676,
65,
1799,
7,
11250,
3924,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39522,
13,
33295,
7,
1676,
65,
1799,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
8398,
287,
25412,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12867,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
11507,
62,
3672,
287,
8398,
13,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
9432,
287,
15221,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11507,
62,
8367,
796,
8398,
58,
17143,
2357,
62,
3672,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
796,
5128,
62,
17143,
62,
48205,
58,
17143,
2357,
62,
3672,
4083,
1136,
62,
87,
62,
1676,
65,
1799,
7,
17143,
2357,
62,
8367,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12867,
1635,
28,
279,
1174,
15252,
425,
62,
43775,
58,
15252,
425,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39522,
13,
33295,
7,
1676,
65,
1799,
8,
628,
220,
220,
220,
1441,
39522,
198,
198,
4299,
8636,
62,
3448,
273,
62,
49196,
7,
17143,
62,
13200,
11,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
11,
9432,
62,
43775,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10062,
1920,
262,
7095,
329,
262,
1293,
669,
2810,
13,
44943,
389,
973,
284,
3487,
1096,
262,
1293,
669,
11,
611,
3161,
3487,
1634,
318,
2672,
13,
198,
220,
220,
220,
1058,
17143,
5772,
62,
13200,
25,
4687,
2134,
329,
262,
23989,
1917,
198,
220,
220,
220,
1058,
17143,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
25,
1271,
286,
2173,
284,
6291,
284,
8636,
262,
7095,
198,
220,
220,
220,
1058,
17143,
9432,
62,
43775,
25,
37092,
19590,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
7783,
25,
1351,
351,
262,
6108,
2793,
290,
6727,
7095,
1043,
329,
262,
3161,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8187,
62,
11250,
20074,
796,
5772,
62,
13200,
13,
25120,
62,
39873,
62,
11250,
20074,
62,
19419,
62,
260,
6449,
1756,
15090,
5512,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
11,
779,
62,
3448,
669,
28,
25101,
8,
198,
220,
220,
220,
3161,
62,
11250,
20074,
796,
5772,
62,
13200,
13,
25120,
62,
39873,
62,
11250,
20074,
62,
19419,
62,
260,
6449,
1756,
15090,
5512,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
11,
779,
62,
3448,
669,
28,
17821,
8,
1303,
481,
307,
8187,
4738,
611,
645,
3161,
198,
220,
220,
220,
25412,
796,
8187,
62,
11250,
20074,
1343,
3161,
62,
11250,
20074,
628,
220,
220,
220,
3161,
796,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
3448,
273,
7,
11250,
20074,
11,
5772,
62,
13200,
11,
9432,
62,
43775,
8,
628,
220,
220,
220,
1441,
685,
1084,
7,
3448,
273,
828,
3509,
7,
3448,
273,
15437,
198,
198,
4299,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
19849,
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,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
1326,
504,
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,
2746,
62,
301,
9310,
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,
5772,
62,
13200,
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,
9432,
62,
43775,
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,
11387,
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,
24061,
62,
14774,
28,
17821,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1133,
262,
12867,
286,
257,
8398,
852,
922,
393,
2089,
1864,
284,
262,
2746,
13,
198,
220,
220,
220,
1058,
17143,
2746,
62,
1326,
504,
25,
11001,
1724,
286,
262,
2746,
329,
1123,
8398,
13,
198,
220,
220,
220,
1058,
17143,
2746,
62,
1326,
504,
25,
11001,
14367,
286,
262,
2746,
329,
1123,
8398,
13,
198,
220,
220,
220,
1058,
17143,
5772,
62,
13200,
25,
4687,
2134,
329,
262,
23989,
1917,
13,
198,
220,
220,
220,
1058,
17143,
9432,
62,
43775,
25,
9432,
19590,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
17143,
11387,
25,
11387,
319,
9432,
3815,
27259,
922,
2173,
290,
2089,
2173,
13,
198,
220,
220,
220,
1058,
17143,
24061,
62,
14774,
25,
1771,
284,
24061,
262,
12867,
286,
852,
922,
393,
2089,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
23989,
62,
17143,
7307,
796,
5772,
62,
13200,
13,
1136,
62,
40085,
1634,
62,
17143,
7307,
3419,
198,
220,
220,
220,
39522,
796,
45941,
13,
1952,
7,
11925,
7,
19849,
62,
1326,
504,
58,
40085,
1634,
62,
17143,
7307,
58,
15,
11907,
4008,
628,
220,
220,
220,
329,
11507,
287,
23989,
62,
17143,
7307,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
62,
1326,
504,
796,
2746,
62,
1326,
504,
58,
17143,
2357,
60,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
62,
301,
9310,
796,
2746,
62,
301,
9310,
58,
17143,
2357,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
24061,
62,
14774,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
796,
352,
532,
9756,
13,
27237,
13,
66,
7568,
19510,
400,
10126,
58,
17143,
2357,
60,
532,
11507,
62,
1326,
504,
20679,
17143,
2357,
62,
301,
9310,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
796,
9756,
13,
27237,
13,
66,
7568,
19510,
400,
10126,
58,
17143,
2357,
60,
532,
11507,
62,
1326,
504,
20679,
17143,
2357,
62,
301,
9310,
8,
198,
220,
220,
220,
220,
220,
220,
220,
39522,
1635,
28,
279,
1174,
15252,
425,
62,
43775,
58,
17143,
2357,
60,
628,
220,
220,
220,
1441,
39522,
198,
198,
4299,
24061,
62,
36,
40,
62,
6738,
62,
79,
6197,
12706,
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,
220,
220,
220,
220,
25412,
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,
5772,
62,
13200,
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,
9432,
62,
43775,
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,
9432,
62,
49196,
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,
11387,
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,
24415,
62,
17618,
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,
2746,
62,
6551,
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,
20683,
62,
27530,
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,
17923,
62,
19849,
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,
2746,
62,
4906,
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,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
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,
34319,
62,
28300,
28,
940,
1174,
12,
23,
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,
34319,
62,
11265,
1634,
62,
49196,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14257,
28,
25101,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1133,
412,
40,
12673,
2163,
329,
257,
1351,
286,
25412,
1912,
319,
262,
1293,
669,
2810,
416,
262,
2836,
290,
262,
16494,
2746,
13,
198,
220,
220,
220,
1058,
17143,
25412,
25,
1351,
286,
25412,
284,
24061,
412,
40,
13,
198,
220,
220,
220,
1058,
17143,
5772,
62,
13200,
25,
4687,
2134,
329,
262,
23989,
1917,
198,
220,
220,
220,
1058,
17143,
9432,
62,
43775,
25,
9432,
19590,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
17143,
9432,
62,
49196,
25,
9432,
7095,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
17143,
11387,
25,
11387,
326,
31555,
25412,
656,
922,
393,
2089,
329,
262,
2746,
13,
198,
220,
220,
220,
1058,
17143,
24415,
62,
17618,
25,
1459,
23989,
24415,
13,
198,
220,
220,
220,
1058,
17143,
2746,
62,
6551,
25,
3463,
8718,
17143,
2357,
1813,
284,
262,
2746,
1141,
34319,
29964,
13,
198,
220,
220,
220,
1058,
17143,
20683,
62,
27530,
25,
20683,
4981,
284,
24061,
262,
12867,
286,
257,
8398,
852,
922,
1864,
284,
16494,
338,
2746,
13,
198,
220,
220,
220,
1058,
17143,
17923,
62,
19849,
25,
17923,
2746,
284,
24061,
262,
12867,
286,
40460,
13,
198,
220,
220,
220,
1058,
17143,
2746,
62,
4906,
25,
2099,
286,
262,
20683,
2746,
11,
2035,
14714,
393,
20445,
329,
783,
13,
198,
220,
220,
220,
1058,
17143,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
25,
2793,
290,
6727,
7095,
284,
3487,
1096,
262,
3161,
13,
2561,
307,
6153,
611,
597,
1988,
21695,
262,
7095,
13,
198,
220,
220,
220,
1058,
17143,
34319,
62,
28300,
25,
2793,
4179,
329,
34319,
29964,
13,
16718,
618,
3487,
2890,
262,
1293,
669,
290,
287,
262,
12867,
286,
40460,
13,
198,
220,
220,
220,
1058,
17143,
34319,
62,
11265,
1634,
62,
49196,
25,
198,
220,
220,
220,
1058,
17143,
14257,
25,
1771,
284,
1057,
287,
14257,
4235,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2836,
62,
3448,
273,
62,
83,
15,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
198,
220,
220,
220,
3161,
62,
11274,
796,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
3448,
273,
7,
11250,
20074,
11,
5772,
62,
13200,
11,
9432,
62,
43775,
8,
628,
220,
220,
220,
1303,
611,
3161,
318,
1729,
12,
11265,
1143,
11,
356,
423,
284,
3487,
1096,
340,
198,
220,
220,
220,
611,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
15,
60,
796,
949,
7,
11274,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
15,
4357,
949,
7,
3448,
273,
62,
11274,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
16,
60,
796,
3509,
7,
11274,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
16,
4357,
3509,
7,
3448,
273,
62,
11274,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
7095,
481,
307,
4961,
611,
477,
3815,
389,
262,
976,
11,
287,
428,
1339,
11,
655,
900,
262,
3161,
284,
352,
8347,
198,
220,
220,
220,
220,
220,
220,
220,
611,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
15,
60,
6624,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
16,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
11274,
796,
685,
16,
60,
9,
11925,
7,
3448,
273,
62,
11274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
11274,
796,
685,
79,
6197,
1504,
62,
28300,
1343,
14808,
16,
12,
79,
6197,
1504,
62,
28300,
27493,
7,
87,
532,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
15,
60,
4008,
29006,
11274,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
16,
60,
532,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
58,
15,
12962,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
3161,
62,
11274,
60,
628,
220,
220,
220,
3161,
62,
11274,
796,
45941,
13,
18747,
7,
3448,
273,
62,
11274,
11,
288,
4906,
28,
37659,
13,
22468,
2414,
8,
198,
220,
220,
220,
3161,
62,
14774,
796,
45941,
13,
18747,
7,
16,
532,
3161,
62,
11274,
11,
288,
4906,
28,
37659,
13,
22468,
2414,
8,
628,
198,
220,
220,
220,
3161,
62,
14774,
58,
3448,
273,
62,
14774,
1279,
34319,
62,
28300,
60,
796,
34319,
62,
28300,
628,
220,
220,
220,
28810,
62,
13200,
796,
6407,
198,
220,
220,
220,
329,
11507,
287,
5772,
62,
13200,
13,
1136,
62,
15414,
62,
17143,
7307,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5772,
62,
13200,
13,
1136,
62,
4906,
7,
17143,
2357,
8,
6624,
366,
5305,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28810,
62,
13200,
796,
10352,
628,
198,
220,
220,
220,
611,
28810,
62,
13200,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
14774,
796,
3161,
62,
14774,
29006,
17143,
62,
13200,
13,
1136,
62,
15410,
8374,
62,
13200,
62,
7857,
3419,
532,
352,
8,
628,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
62,
1462,
62,
6404,
7753,
7,
7203,
36,
40,
25,
2836,
3161,
640,
4064,
940,
13,
19,
69,
792,
59,
77,
1,
4064,
14808,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
2836,
62,
3448,
273,
62,
83,
15,
737,
23350,
62,
43012,
3419,
22305,
628,
220,
220,
220,
2746,
62,
83,
15,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
198,
220,
220,
220,
11876,
87,
796,
8633,
62,
4868,
62,
1462,
62,
6759,
8609,
7,
11250,
20074,
8,
1303,
17724,
5050,
2421,
257,
17593,
2427,
286,
1351,
286,
48589,
3166,
198,
220,
220,
220,
1271,
62,
1659,
62,
28764,
9278,
796,
18896,
7,
22252,
87,
8,
198,
220,
220,
220,
2746,
62,
301,
9310,
796,
23884,
628,
220,
220,
220,
2746,
62,
1326,
504,
11,
2746,
62,
301,
9310,
796,
4981,
13,
5589,
1133,
62,
19849,
62,
32604,
62,
392,
62,
19524,
1425,
774,
7,
22252,
87,
11,
20683,
62,
27530,
11,
2746,
62,
4906,
11,
5772,
62,
13200,
11,
1401,
28,
25101,
8,
628,
220,
220,
220,
1303,
1002,
17923,
2746,
318,
8776,
11,
612,
389,
40460,
17778,
198,
220,
220,
220,
611,
17923,
62,
19849,
14512,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17923,
62,
28764,
2867,
62,
43420,
796,
4981,
13,
19849,
62,
1676,
65,
5738,
7,
22252,
87,
11,
17923,
62,
19849,
11,
5772,
62,
13200,
8,
198,
220,
220,
220,
220,
220,
220,
220,
23498,
62,
17143,
2357,
796,
5772,
62,
13200,
13,
1136,
62,
5036,
292,
856,
62,
17143,
2357,
3419,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
62,
8367,
62,
9630,
796,
17923,
62,
19849,
58,
5036,
292,
856,
62,
17143,
2357,
4083,
37724,
44807,
83,
349,
396,
22446,
9630,
7,
17821,
8,
1303,
41568,
3607,
1111,
39522,
357,
5036,
292,
856,
290,
1167,
30412,
856,
828,
1064,
262,
6376,
286,
23498,
39522,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
796,
17923,
62,
28764,
2867,
62,
43420,
58,
5036,
292,
856,
62,
17143,
2357,
7131,
45299,
7942,
62,
8367,
62,
9630,
60,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
58,
5036,
292,
2247,
62,
521,
26407,
6624,
657,
60,
796,
34319,
62,
28300,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
796,
45941,
13,
6404,
7,
5036,
292,
2247,
62,
521,
26407,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14435,
1096,
262,
40460,
16916,
284,
657,
11,
352,
13,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
796,
685,
79,
6197,
1504,
62,
28300,
1343,
14808,
16,
12,
79,
6197,
1504,
62,
28300,
27493,
7,
87,
532,
45941,
13,
6404,
7,
79,
6197,
1504,
62,
28300,
4008,
20679,
7,
37659,
13,
6404,
7,
16,
8,
532,
45941,
13,
6404,
7,
79,
6197,
1504,
62,
28300,
4008,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
40460,
62,
521,
26407,
60,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
796,
45941,
13,
18747,
7,
5036,
292,
2247,
62,
521,
26407,
8,
628,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
40460,
62,
521,
26407,
796,
685,
16,
60,
9,
17618,
62,
1659,
62,
28764,
9278,
1303,
611,
17923,
2746,
318,
407,
8776,
11,
477,
2173,
389,
23498,
628,
220,
220,
220,
2746,
62,
11274,
796,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
19849,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
1326,
504,
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,
2746,
62,
301,
9310,
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,
5772,
62,
13200,
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,
9432,
62,
43775,
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,
11387,
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,
24061,
62,
14774,
28,
25101,
8,
198,
220,
220,
220,
2746,
62,
11274,
796,
45941,
13,
18747,
7,
19849,
62,
11274,
11,
288,
4906,
28,
37659,
13,
22468,
2414,
8,
628,
220,
220,
220,
2746,
62,
14774,
796,
24061,
62,
1676,
65,
1799,
62,
6738,
62,
19849,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
1326,
504,
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,
2746,
62,
301,
9310,
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,
5772,
62,
13200,
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,
9432,
62,
43775,
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,
11387,
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,
24061,
62,
14774,
28,
17821,
8,
198,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
62,
1462,
62,
6404,
7753,
7,
7203,
36,
40,
25,
2746,
640,
4064,
940,
13,
19,
69,
792,
59,
77,
1,
4064,
14808,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
2746,
62,
83,
15,
737,
23350,
62,
43012,
3419,
22305,
198,
220,
220,
220,
34319,
62,
83,
15,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
198,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
45941,
13,
9107,
418,
7,
11925,
7,
11250,
20074,
828,
288,
4906,
28,
37659,
13,
22468,
2414,
8,
628,
220,
220,
220,
351,
45941,
13,
8056,
5219,
7,
7146,
485,
11639,
46430,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
79,
6197,
1504,
62,
11274,
796,
45941,
13,
6404,
7,
3448,
273,
62,
11274,
8,
1343,
357,
2676,
341,
62,
17618,
14,
19849,
62,
6551,
27493,
37659,
13,
6404,
7,
19849,
62,
11274,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
79,
6197,
1504,
62,
14774,
796,
45941,
13,
6404,
7,
3448,
273,
62,
14774,
8,
1343,
357,
2676,
341,
62,
17618,
14,
19849,
62,
6551,
27493,
37659,
13,
6404,
7,
19849,
62,
14774,
8,
628,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
2604,
62,
79,
6197,
1504,
62,
11274,
532,
2604,
62,
79,
6197,
1504,
62,
14774,
628,
220,
220,
220,
1303,
1002,
356,
423,
40460,
17778,
11,
3487,
1096,
922,
62,
14774,
62,
10366,
4267,
284,
657,
11,
352,
198,
220,
220,
220,
611,
34319,
62,
11265,
1634,
62,
49196,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
62,
70,
1671,
796,
4866,
13,
22089,
30073,
7,
11274,
62,
14774,
62,
10366,
4267,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
62,
70,
1671,
796,
45941,
13,
18747,
7,
22065,
62,
70,
1671,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2141,
407,
2074,
532,
10745,
290,
1343,
10745,
618,
14492,
262,
7095,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
62,
70,
1671,
58,
22065,
62,
70,
1671,
6624,
12178,
7203,
12,
10745,
4943,
60,
796,
12178,
7203,
10745,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
34319,
62,
11265,
1634,
62,
49196,
58,
15,
60,
796,
949,
7,
79,
6197,
1504,
62,
11265,
1634,
62,
49196,
58,
15,
4357,
949,
7,
22065,
62,
70,
1671,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
62,
70,
1671,
58,
22065,
62,
70,
1671,
6624,
12178,
7203,
10745,
4943,
60,
796,
12178,
7203,
12,
10745,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
34319,
62,
11265,
1634,
62,
49196,
58,
16,
60,
796,
3509,
7,
79,
6197,
1504,
62,
11265,
1634,
62,
49196,
58,
16,
4357,
3509,
7,
22065,
62,
70,
1671,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
7095,
481,
307,
4961,
611,
477,
3815,
389,
262,
976,
11,
287,
428,
1339,
11,
655,
900,
262,
3161,
284,
352,
8347,
198,
220,
220,
220,
220,
220,
220,
220,
611,
34319,
62,
11265,
1634,
62,
49196,
58,
15,
60,
6624,
34319,
62,
11265,
1634,
62,
49196,
58,
16,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
685,
16,
60,
9,
11925,
7,
11274,
62,
14774,
62,
10366,
4267,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
70,
1671,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
922,
62,
14774,
62,
10366,
4267,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
87,
796,
34319,
62,
28300,
1343,
14808,
16,
12,
79,
6197,
1504,
62,
28300,
27493,
7,
87,
532,
34319,
62,
11265,
1634,
62,
49196,
58,
15,
60,
4008,
29006,
79,
6197,
1504,
62,
11265,
1634,
62,
49196,
58,
16,
60,
532,
34319,
62,
11265,
1634,
62,
49196,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
70,
1671,
13,
33295,
7,
3605,
62,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
649,
62,
70,
1671,
198,
220,
220,
220,
220,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
45941,
13,
18747,
7,
11274,
62,
14774,
62,
10366,
4267,
8,
628,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
922,
62,
14774,
62,
10366,
4267,
1343,
40460,
62,
521,
26407,
198,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
532,
16,
9,
11274,
62,
14774,
62,
10366,
4267,
198,
220,
220,
220,
922,
62,
14774,
62,
10366,
4267,
796,
1351,
7,
11274,
62,
14774,
62,
10366,
4267,
8,
628,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
62,
1462,
62,
6404,
7753,
7,
7203,
36,
40,
25,
34319,
640,
4064,
940,
13,
19,
69,
792,
59,
77,
1,
4064,
14808,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
34319,
62,
83,
15,
737,
23350,
62,
43012,
3419,
22305,
198,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
62,
1462,
62,
6404,
7753,
7,
7203,
36,
40,
25,
2472,
640,
4064,
940,
13,
19,
69,
792,
59,
77,
1,
4064,
14808,
19608,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
2836,
62,
3448,
273,
62,
83,
15,
737,
23350,
62,
43012,
3419,
22305,
628,
220,
220,
220,
1303,
1957,
2989,
13423,
262,
23392,
2163,
284,
1441,
262,
3815,
290,
257,
40460,
16916,
198,
220,
220,
220,
1441,
922,
62,
14774,
62,
10366,
4267,
11,
40460,
62,
521,
26407,
628,
198,
4299,
3161,
62,
23657,
62,
40085,
1634,
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,
220,
220,
220,
220,
4566,
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,
1366,
62,
18747,
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,
5772,
62,
13200,
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,
3049,
62,
2860,
11697,
62,
1659,
62,
7890,
62,
18747,
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,
20683,
62,
27530,
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,
24415,
62,
17618,
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,
9432,
62,
43775,
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,
9432,
62,
49196,
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,
17923,
62,
19849,
28,
14202,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5660,
257,
3161,
12,
23657,
15489,
35610,
23989,
24415,
13,
198,
220,
220,
220,
1058,
17143,
4566,
25,
22155,
7268,
477,
262,
8398,
10007,
286,
428,
23989,
13,
198,
220,
220,
220,
1058,
17143,
1366,
62,
18747,
25,
257,
22155,
7268,
4271,
18782,
2173,
290,
511,
2163,
3815,
13,
198,
220,
220,
220,
1058,
17143,
5772,
62,
13200,
25,
11507,
2272,
2134,
329,
262,
1459,
3586,
13,
198,
220,
220,
220,
1058,
17143,
3049,
62,
2860,
11697,
62,
1659,
62,
7890,
62,
18747,
25,
22155,
329,
2068,
12,
15526,
284,
4271,
18782,
25412,
13,
198,
220,
220,
220,
1058,
17143,
20683,
62,
27530,
25,
262,
37660,
4981,
973,
284,
13446,
2173,
13,
198,
220,
220,
220,
1058,
17143,
24415,
62,
17618,
25,
262,
1459,
24415,
1271,
13,
198,
220,
220,
220,
1058,
17143,
9432,
62,
43775,
25,
9432,
19590,
329,
5021,
12,
15252,
425,
23989,
13,
1892,
9177,
1865,
13,
198,
220,
220,
220,
1058,
17143,
9432,
62,
49196,
25,
6108,
5288,
290,
5415,
7095,
329,
1123,
9432,
13,
198,
220,
220,
220,
1058,
17143,
17923,
62,
19849,
25,
40460,
1398,
7483,
329,
31070,
23989,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1957,
62,
12947,
62,
38690,
62,
13033,
796,
4566,
14692,
12001,
62,
12947,
62,
38690,
62,
13033,
8973,
198,
220,
220,
220,
1957,
62,
12947,
62,
25120,
62,
13033,
220,
220,
796,
4566,
14692,
12001,
62,
12947,
62,
25120,
62,
13033,
8973,
198,
220,
220,
220,
16578,
283,
1634,
62,
2539,
796,
4566,
14692,
1416,
282,
283,
1634,
62,
2539,
8973,
198,
220,
220,
220,
2163,
62,
17143,
7307,
796,
23884,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
17143,
62,
13200,
8973,
796,
5772,
62,
13200,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
2676,
341,
62,
17618,
8973,
796,
24415,
62,
17618,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
2301,
2234,
62,
27530,
8973,
796,
20683,
62,
27530,
198,
220,
220,
220,
2163,
62,
17143,
7307,
17816,
4871,
2649,
62,
19849,
20520,
796,
17923,
62,
19849,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
15252,
425,
62,
43775,
8973,
796,
9432,
62,
43775,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
15252,
425,
62,
49196,
8973,
796,
9432,
62,
49196,
198,
220,
220,
220,
2163,
62,
17143,
7307,
17816,
19849,
62,
4906,
20520,
796,
4566,
14692,
27530,
1,
7131,
1,
19849,
8973,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
19849,
62,
6551,
8973,
796,
4566,
14692,
19849,
62,
79,
6197,
1504,
62,
6551,
8973,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
79,
6197,
1504,
62,
28300,
8973,
796,
4566,
14692,
79,
6197,
1504,
62,
785,
1996,
341,
62,
21037,
62,
32374,
8973,
198,
220,
220,
220,
2746,
62,
11274,
62,
40972,
576,
796,
4566,
14692,
19849,
62,
11274,
62,
40972,
576,
8973,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
400,
10126,
8973,
796,
23884,
198,
220,
220,
220,
23989,
62,
4164,
10466,
796,
5772,
62,
13200,
13,
1136,
62,
40085,
1634,
62,
17143,
7307,
3419,
198,
220,
220,
220,
329,
9432,
287,
23989,
62,
4164,
10466,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
400,
10126,
1,
7131,
15252,
425,
60,
796,
45941,
13,
40972,
576,
7,
7890,
62,
18747,
58,
15252,
425,
4357,
2746,
62,
11274,
62,
40972,
576,
8,
628,
220,
220,
220,
611,
5772,
62,
13200,
13,
1136,
62,
3448,
273,
62,
11265,
1634,
62,
32109,
3419,
318,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
796,
4566,
14692,
3448,
273,
62,
32374,
62,
395,
18991,
62,
13033,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
796,
8636,
62,
3448,
273,
62,
49196,
7,
17143,
62,
13200,
11,
3161,
62,
32374,
62,
395,
18991,
62,
13033,
11,
9432,
62,
43775,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
796,
6045,
198,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
11274,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
8973,
796,
922,
62,
3448,
273,
62,
11265,
1634,
62,
49196,
628,
220,
220,
220,
611,
17923,
62,
19849,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2163,
62,
17143,
7307,
14692,
79,
6197,
1504,
62,
11265,
1634,
62,
49196,
8973,
796,
685,
22468,
7203,
10745,
12340,
12178,
7203,
12,
10745,
4943,
60,
628,
220,
220,
220,
4808,
11,
1266,
62,
11250,
3924,
796,
1957,
62,
12947,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
12947,
62,
38690,
62,
13033,
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,
1957,
62,
12947,
62,
25120,
62,
13033,
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,
5772,
62,
13200,
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,
3049,
62,
2860,
11697,
62,
1659,
62,
7890,
62,
18747,
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,
10352,
11,
1303,
900,
40460,
284,
3991,
11,
356,
5412,
340,
2641,
262,
12673,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24061,
62,
36,
40,
62,
6738,
62,
79,
6197,
12706,
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,
2163,
62,
17143,
7307,
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,
16578,
283,
1634,
62,
2539,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
62,
13033,
28,
7890,
62,
18747,
8,
198,
220,
220,
220,
1441,
1266,
62,
11250,
3924,
198
] | 2.536888 | 6,696 |
# Generated by Django 2.1.11 on 2019-08-15 06:58
import ct.models
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
362,
13,
16,
13,
1157,
319,
13130,
12,
2919,
12,
1314,
9130,
25,
3365,
198,
198,
11748,
269,
83,
13,
27530,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.868421 | 38 |
import unittest
| [
11748,
555,
715,
395,
628
] | 3.4 | 5 |
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 10 14:30:07 2018
@author: Nzix
"""
with open('member.txt', 'r', encoding = 'utf-8') as f: data = f.readlines()
sql = ''
for line in data:
line = line.replace('\n', '')
if not line: continue
if line.startswith('#'): continue
id, name, furigana, romaji = line.split('\t')
sql += 'insert into member values({}, "{}", "{}", "{}", "{}", {}, {});\n'.format(id, romaji, name, furigana, '', 0, 0)
with open('member.sql', 'w', encoding = 'utf-8') as f: f.write(sql) | [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
3300,
2365,
838,
1478,
25,
1270,
25,
2998,
2864,
198,
198,
31,
9800,
25,
399,
89,
844,
198,
37811,
198,
198,
4480,
1280,
10786,
19522,
13,
14116,
3256,
705,
81,
3256,
21004,
796,
705,
40477,
12,
23,
11537,
355,
277,
25,
1366,
796,
277,
13,
961,
6615,
3419,
198,
198,
25410,
796,
10148,
198,
198,
1640,
1627,
287,
1366,
25,
198,
220,
220,
220,
1627,
796,
1627,
13,
33491,
10786,
59,
77,
3256,
10148,
8,
198,
220,
220,
220,
611,
407,
1627,
25,
2555,
198,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
2555,
628,
220,
220,
220,
4686,
11,
1438,
11,
9230,
328,
2271,
11,
9267,
26436,
796,
1627,
13,
35312,
10786,
59,
83,
11537,
198,
220,
220,
220,
44161,
15853,
705,
28463,
656,
2888,
3815,
15090,
5512,
45144,
92,
1600,
45144,
92,
1600,
45144,
92,
1600,
45144,
92,
1600,
1391,
5512,
1391,
22133,
59,
77,
4458,
18982,
7,
312,
11,
9267,
26436,
11,
1438,
11,
9230,
328,
2271,
11,
705,
3256,
657,
11,
657,
8,
198,
198,
4480,
1280,
10786,
19522,
13,
25410,
3256,
705,
86,
3256,
21004,
796,
705,
40477,
12,
23,
11537,
355,
277,
25,
277,
13,
13564,
7,
25410,
8
] | 2.426606 | 218 |
from PyQt5 import QtGui
from pathlib import Path
import datetime | [
6738,
9485,
48,
83,
20,
1330,
33734,
8205,
72,
198,
6738,
3108,
8019,
1330,
10644,
198,
11748,
4818,
8079
] | 3.368421 | 19 |
#!usr/bin/env python
# coding=utf-8
# Author: [email protected]
# Created: 2016-03-09 09:11:10
# Python version:2.7.10
"""
# TODO(purpose):
"""
import uuid
import time
# 操作 etf代码 成份股代码
print uuid.uuid1(01510300000001)
print uuid.uuid1(01510300000001)
print uuid.uuid1(01510300000001)
# 10 1000 5 1000 6 1000
# 9.5 900 4.9 1000 5.8 1000
print list([1])
if __name__ == "__main__":
a = A()
a.excute(a.curr_stage)
a.excute(a.curr_stage)
a.excute(a.curr_stage)
# a.excute(a.curr_stage)
# a.excute(a.curr_stage)
# print (9.5 * 900 + 4.9 * 1000 + 5.8 * 1000) / (10 * 1000 + 5 * 1000 + 6 * 1000)
# print ((9.5 * 900) / (10 * 1000) + (4.9 * 1000) / (5 * 1000) + (5.8 * 1000) / (6 * 1000)) / 3
pass
| [
2,
0,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
28,
40477,
12,
23,
198,
2,
6434,
25,
1976,
258,
89,
5303,
88,
506,
31,
24136,
13,
785,
198,
2,
15622,
25,
1584,
12,
3070,
12,
2931,
7769,
25,
1157,
25,
940,
198,
2,
11361,
2196,
171,
120,
248,
17,
13,
22,
13,
940,
198,
37811,
198,
2,
16926,
46,
7,
29983,
2599,
220,
198,
37811,
198,
198,
11748,
334,
27112,
198,
11748,
640,
198,
198,
2,
10545,
241,
235,
43291,
2123,
69,
47987,
163,
254,
223,
220,
10545,
230,
238,
20015,
121,
164,
224,
94,
47987,
163,
254,
223,
198,
4798,
334,
27112,
13,
12303,
312,
16,
7,
25150,
15197,
10535,
486,
8,
198,
4798,
334,
27112,
13,
12303,
312,
16,
7,
25150,
15197,
10535,
486,
8,
198,
4798,
334,
27112,
13,
12303,
312,
16,
7,
25150,
15197,
10535,
486,
8,
628,
198,
2,
838,
8576,
642,
8576,
718,
8576,
198,
2,
860,
13,
20,
15897,
604,
13,
24,
8576,
642,
13,
23,
8576,
198,
198,
4798,
1351,
26933,
16,
12962,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
257,
796,
317,
3419,
198,
220,
220,
220,
257,
13,
41194,
1133,
7,
64,
13,
22019,
81,
62,
14247,
8,
198,
220,
220,
220,
257,
13,
41194,
1133,
7,
64,
13,
22019,
81,
62,
14247,
8,
198,
220,
220,
220,
257,
13,
41194,
1133,
7,
64,
13,
22019,
81,
62,
14247,
8,
198,
220,
220,
220,
1303,
257,
13,
41194,
1133,
7,
64,
13,
22019,
81,
62,
14247,
8,
198,
220,
220,
220,
1303,
257,
13,
41194,
1133,
7,
64,
13,
22019,
81,
62,
14247,
8,
628,
220,
220,
220,
1303,
3601,
357,
24,
13,
20,
1635,
15897,
1343,
604,
13,
24,
1635,
8576,
1343,
642,
13,
23,
1635,
8576,
8,
1220,
357,
940,
1635,
8576,
1343,
642,
1635,
8576,
1343,
718,
1635,
8576,
8,
198,
220,
220,
220,
1303,
3601,
14808,
24,
13,
20,
1635,
15897,
8,
1220,
357,
940,
1635,
8576,
8,
1343,
357,
19,
13,
24,
1635,
8576,
8,
1220,
357,
20,
1635,
8576,
8,
1343,
357,
20,
13,
23,
1635,
8576,
8,
1220,
357,
21,
1635,
8576,
4008,
1220,
513,
198,
220,
220,
220,
1208,
198
] | 1.994565 | 368 |
"""Plot capacity factors."""
import os
from operator import itemgetter
import textwrap
import datetime
import yaml
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.cm as cm
from matplotlib.dates import date2num
import matplotlib.dates as mdates
import matplotlib.patches as mpatches
from matplotlib.collections import PatchCollection
ISOFMT = "%Y-%M-%d"
def dt(date):
"""convert date to datetime at midnight for easier plotting"""
return date2num(datetime.datetime(date.year, date.month, date.day))
colors = {
"BWR": "blue"
}
DOTWIDTH= 130
LINEHEIGHT = 0.1
STARTYEAR = 1951
ENDYEAR=1977
if __name__ == '__main__':
data = load()
plot(data)
| [
37811,
43328,
5339,
5087,
526,
15931,
198,
198,
11748,
28686,
198,
6738,
10088,
1330,
2378,
1136,
353,
198,
11748,
2420,
37150,
198,
11748,
4818,
8079,
198,
198,
11748,
331,
43695,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
2603,
29487,
8019,
13,
11215,
355,
12067,
198,
6738,
2603,
29487,
8019,
13,
19581,
1330,
3128,
17,
22510,
198,
11748,
2603,
29487,
8019,
13,
19581,
355,
285,
19581,
198,
11748,
2603,
29487,
8019,
13,
8071,
2052,
355,
285,
8071,
2052,
198,
6738,
2603,
29487,
8019,
13,
4033,
26448,
1330,
17106,
36307,
198,
198,
1797,
19238,
13752,
796,
36521,
56,
12,
4,
44,
12,
4,
67,
1,
198,
198,
4299,
288,
83,
7,
4475,
2599,
198,
220,
220,
220,
37227,
1102,
1851,
3128,
284,
4818,
8079,
379,
15896,
329,
4577,
29353,
37811,
198,
220,
220,
220,
1441,
3128,
17,
22510,
7,
19608,
8079,
13,
19608,
8079,
7,
4475,
13,
1941,
11,
3128,
13,
8424,
11,
3128,
13,
820,
4008,
198,
198,
4033,
669,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
33,
18564,
1298,
366,
17585,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
198,
35,
2394,
54,
2389,
4221,
28,
11323,
198,
24027,
13909,
9947,
796,
657,
13,
16,
198,
2257,
7227,
56,
17133,
796,
27937,
198,
10619,
56,
17133,
28,
37781,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1366,
796,
3440,
3419,
198,
220,
220,
220,
7110,
7,
7890,
8,
198
] | 2.726563 | 256 |
# -*- coding: ascii -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
from itertools import groupby
from lxml import etree
from odoo import api, fields, models
from odoo import tools
from odoo.addons.website.models import website
from odoo.http import request
_logger = logging.getLogger(__name__)
| [
2,
532,
9,
12,
19617,
25,
355,
979,
72,
532,
9,
12,
198,
2,
2142,
286,
10529,
2238,
13,
4091,
38559,
24290,
2393,
329,
1336,
6634,
290,
15665,
3307,
13,
198,
198,
11748,
18931,
198,
6738,
340,
861,
10141,
1330,
1448,
1525,
198,
6738,
300,
19875,
1330,
2123,
631,
198,
198,
6738,
16298,
2238,
1330,
40391,
11,
7032,
11,
4981,
198,
6738,
16298,
2238,
1330,
4899,
198,
198,
6738,
16298,
2238,
13,
39996,
13,
732,
12485,
13,
27530,
1330,
3052,
198,
6738,
16298,
2238,
13,
4023,
1330,
2581,
198,
198,
62,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628
] | 3.304762 | 105 |
#☆𝒐𝒎𝒂𝒋𝒊𝒏𝒂𝒊☆#
import sys
import math
from math import ceil, floor
import itertools
from functools import lru_cache
from collections import deque
inf=10**20
sys.setrecursionlimit(10000000)
input=lambda : sys.stdin.readline().rstrip()
'''''✂'''''''''''''''''''''''''''''''''''''''''''''''''''''''''
a,b,c=map(int,input().split())
k=int(input())
count=0
while a>=b:
b*=2
count+=1
while b>=c:
c*=2
count+=1
print('Yes' if count<=k else 'No') | [
2,
35283,
47728,
240,
238,
47728,
240,
236,
47728,
240,
224,
47728,
240,
233,
47728,
240,
232,
47728,
240,
237,
47728,
240,
224,
47728,
240,
232,
35283,
2,
198,
11748,
25064,
198,
11748,
10688,
198,
6738,
10688,
1330,
2906,
346,
11,
4314,
198,
11748,
340,
861,
10141,
198,
6738,
1257,
310,
10141,
1330,
300,
622,
62,
23870,
198,
6738,
17268,
1330,
390,
4188,
198,
10745,
28,
940,
1174,
1238,
198,
17597,
13,
2617,
8344,
24197,
32374,
7,
16,
24598,
8,
198,
15414,
28,
50033,
1058,
25064,
13,
19282,
259,
13,
961,
1370,
22446,
81,
36311,
3419,
198,
39115,
6,
26486,
224,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
39115,
6,
198,
198,
64,
11,
65,
11,
66,
28,
8899,
7,
600,
11,
15414,
22446,
35312,
28955,
198,
74,
28,
600,
7,
15414,
28955,
198,
198,
9127,
28,
15,
198,
4514,
257,
29,
28,
65,
25,
198,
220,
220,
220,
275,
9,
28,
17,
198,
220,
220,
220,
954,
47932,
16,
198,
4514,
275,
29,
28,
66,
25,
198,
220,
220,
220,
269,
9,
28,
17,
198,
220,
220,
220,
954,
47932,
16,
198,
4798,
10786,
5297,
6,
611,
954,
27,
28,
74,
2073,
705,
2949,
11537
] | 2.247525 | 202 |
import pickle
import numpy as np
from keras.preprocessing.sequence import pad_sequences
from keras import Sequential
from keras_contrib.layers import CRF
from keras.layers import Embedding ,Bidirectional,LSTM
from keras.models import load_model
BATCH_SIZE = 32
MODEL_PATH = "./model/crf.h5"
# 训练后保存模型 | [
11748,
2298,
293,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
41927,
292,
13,
3866,
36948,
13,
43167,
1330,
14841,
62,
3107,
3007,
198,
6738,
41927,
292,
1330,
24604,
1843,
198,
6738,
41927,
292,
62,
3642,
822,
13,
75,
6962,
1330,
8740,
37,
198,
6738,
41927,
292,
13,
75,
6962,
1330,
13302,
6048,
278,
837,
33,
312,
4154,
282,
11,
43,
2257,
44,
198,
6738,
41927,
292,
13,
27530,
1330,
3440,
62,
19849,
198,
198,
33,
11417,
62,
33489,
796,
3933,
198,
33365,
3698,
62,
34219,
796,
366,
19571,
19849,
14,
6098,
69,
13,
71,
20,
1,
628,
220,
220,
220,
1303,
5525,
106,
255,
163,
119,
225,
28938,
236,
46479,
251,
27764,
246,
162,
101,
94,
161,
252,
233
] | 2.55 | 120 |
from __future__ import annotations
import asyncio
from typing import Protocol
from fastapi import APIRouter, status
from fastapi.responses import JSONResponse, Response
class Healther(Protocol):
"""Any object implementing ^ can be checked for health status"""
class HealthCheckService(Protocol):
"""
Defines a healthcheck service interface.
Any service with this interface can be a healthcheck service.
"""
healthers: dict[str, Healther] = {}
class ConcurrentHealthCheck(HealthCheckService):
"""
Implements an asyncio healtcheck service.
Requesting health status should be as slow as the slowest health provider.
"""
router = APIRouter(tags=["healthcheck"])
healthcheck: HealthCheckService = ConcurrentHealthCheck()
@router.get("/live")
async def live() -> Response:
"""
The Kubernetes liveness probe detects that the service is no longer serving
requests and restarts the offending pod.
"""
not_live = await healthcheck.live()
if len(not_live.keys()) > 0:
return JSONResponse(not_live, status.HTTP_503_SERVICE_UNAVAILABLE)
return JSONResponse(None, status.HTTP_200_OK)
@router.get("/ready")
async def ready() -> Response:
"""
The Kubernetes readiness probe waits until the app is fully started
before it allows the to send traffic to the service.
"""
not_ready = await healthcheck.ready()
if len(not_ready.keys()) > 0:
return JSONResponse(not_ready, status.HTTP_503_SERVICE_UNAVAILABLE)
return JSONResponse(None, status.HTTP_200_OK)
| [
6738,
11593,
37443,
834,
1330,
37647,
198,
198,
11748,
30351,
952,
198,
6738,
19720,
1330,
20497,
198,
198,
6738,
3049,
15042,
1330,
3486,
4663,
39605,
11,
3722,
198,
6738,
3049,
15042,
13,
16733,
274,
1330,
19449,
31077,
11,
18261,
628,
198,
4871,
24923,
490,
7,
19703,
4668,
2599,
198,
220,
220,
220,
37227,
7149,
2134,
15427,
10563,
460,
307,
10667,
329,
1535,
3722,
37811,
628,
198,
4871,
3893,
9787,
16177,
7,
19703,
4668,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2896,
1127,
257,
1535,
9122,
2139,
7071,
13,
198,
220,
220,
220,
4377,
2139,
351,
428,
7071,
460,
307,
257,
1535,
9122,
2139,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
12035,
490,
82,
25,
8633,
58,
2536,
11,
24923,
490,
60,
796,
23884,
628,
198,
4871,
13223,
6657,
18081,
9787,
7,
18081,
9787,
16177,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1846,
1154,
902,
281,
30351,
952,
339,
2501,
9122,
2139,
13,
198,
220,
220,
220,
19390,
278,
1535,
3722,
815,
307,
355,
3105,
355,
262,
3105,
395,
1535,
10131,
13,
198,
220,
220,
220,
37227,
628,
198,
472,
353,
796,
3486,
4663,
39605,
7,
31499,
28,
14692,
13948,
9122,
8973,
8,
198,
13948,
9122,
25,
3893,
9787,
16177,
796,
13223,
6657,
18081,
9787,
3419,
628,
198,
31,
472,
353,
13,
1136,
7203,
14,
12583,
4943,
198,
292,
13361,
825,
2107,
3419,
4613,
18261,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
12554,
527,
3262,
274,
300,
6517,
12774,
39382,
326,
262,
2139,
318,
645,
2392,
7351,
198,
220,
220,
220,
7007,
290,
1334,
5889,
262,
30810,
24573,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
407,
62,
12583,
796,
25507,
1535,
9122,
13,
12583,
3419,
198,
220,
220,
220,
611,
18896,
7,
1662,
62,
12583,
13,
13083,
28955,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
19449,
31077,
7,
1662,
62,
12583,
11,
3722,
13,
40717,
62,
31938,
62,
35009,
27389,
62,
52,
4535,
11731,
4146,
17534,
8,
628,
220,
220,
220,
1441,
19449,
31077,
7,
14202,
11,
3722,
13,
40717,
62,
2167,
62,
11380,
8,
628,
198,
31,
472,
353,
13,
1136,
7203,
14,
1493,
4943,
198,
292,
13361,
825,
3492,
3419,
4613,
18261,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
383,
12554,
527,
3262,
274,
30618,
12774,
28364,
1566,
262,
598,
318,
3938,
2067,
198,
220,
220,
220,
878,
340,
3578,
262,
284,
3758,
4979,
284,
262,
2139,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
407,
62,
1493,
796,
25507,
1535,
9122,
13,
1493,
3419,
198,
220,
220,
220,
611,
18896,
7,
1662,
62,
1493,
13,
13083,
28955,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
19449,
31077,
7,
1662,
62,
1493,
11,
3722,
13,
40717,
62,
31938,
62,
35009,
27389,
62,
52,
4535,
11731,
4146,
17534,
8,
628,
220,
220,
220,
1441,
19449,
31077,
7,
14202,
11,
3722,
13,
40717,
62,
2167,
62,
11380,
8,
198
] | 3.138554 | 498 |
# Standard lib imports
from sys import argv
import os
from time import sleep
import re
import pdb
import logging
import datetime
import csv
import json
from collections import defaultdict
# Third-party imports
import pandas as pd
import requests
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
# Constants
DIR = os.path.dirname(os.path.abspath(__file__))
BASE_DIR = os.path.dirname(os.path.dirname(DIR)) # Root directory of the project
# Alter for any given race on a clarityelection.com site
CONTEST_URL = 'http://results.enr.clarityelections.com/GA/63991/182895/en/md_data.html?cid=5000&'
COUNTIES = ['CLAYTON', 'FULTON', 'GWINNETT', 'DEKALB', 'COBB']
LAST_COUNTY = 'Worth' # Used to check that all counties on the main page have loaded from AJAX request
CANDIDATES = {'dem': 'HILLARY CLINTON', 'rep': 'DONALD J. TRUMP'}
TOTAL_PRECINCTS = 914 # The number of precincts in the reapportionment office's map
PHANTOM_JS_INSTALLATION = '/Users/jcox/Desktop/phantomjs/bin/phantomjs'
# Input and output file locations. Change as needed
STATS_FILE = os.path.join(DIR, 'ajc_precincts_merged_centers.csv')
MAP_INPUT = os.path.join(DIR, '2014_income_race_centers.json')
VOTES_TMP = '/tmp/vote_data.csv'
UNMERGED_TMP = '/tmp/unmerged.csv'
MAP_OUTPUT = os.path.join(BASE_DIR, 'assets', 'data', '2014_precincts_income_raceUPDATE.json')
METADATA_OUTPUT = os.path.join(BASE_DIR, 'assets', 'data', '2014_metadata.json')
AGG_STATS_OUTPUT = os.path.join(BASE_DIR, 'assets', 'data', '2014agg_stats.json')
# End constants
# Configure logging
logging.basicConfig(level=logging.INFO)
class Parser(object):
"""
Base class that provides scraping functionality for Clarity Elections site.
Use Selenium's PhantomJS headless browser to simulate clicks and get URL of detail
pages for given counties, then gets precinct-level vote data for a given race.
"""
def _build_driver(self):
"""
Create an instance of Selenium's webdriver.PhantomJS(), used to
simulate clicks on the Clarity elections site
"""
driver = webdriver.Firefox()
driver.get(self.main_url)
return driver
def get_county_urls(self, input_counties=COUNTIES, delay=5):
"""
Use Selenium to get the dynamically generated URLs for each county's
detail page by simulating clicks, and append the URLs to self.county_urls.
"""
self.county_urls = [] # Reset county URLs each time the scraper runs
logging.info('Creating Selenium driver and accessing Clarity')
driver = self._build_driver()
try:
string_counties = (', ').join(input_counties)
except TypeError:
string_counties = 'All counties'
print 'Getting detail page URLs for {}'.format(string_counties)
# Wait until counties have loaded through AJAX to run script
# Yes it's hacky but using WebDriverWait wasn't working
sleep(2)
# Get a list of all counties on the contest summary page
selector = 'table.vts-data > tbody > tr'
all_counties = driver.find_elements_by_css_selector(selector)
# Generate a list of county names
counties = []
for i, county in enumerate(all_counties):
try:
links = county.find_elements_by_tag_name('a')
name = links[0].get_attribute('id')
counties.append(name)
# Some of the rows in the table are just headers
except:
counties.append(None)
# Have to loop through names instead of looping through DOM elements because
# Selenium will throw a StaleElementReferenceException
for i, name in enumerate(counties):
# Because the page loads through AJAX wait until the information for
# the county is loaded
if name:
if input_counties is not None and name.upper() not in input_counties:
continue
try:
check = EC.presence_of_element_located((By.ID, name))
WebDriverWait(driver, delay).until(check)
except TimeoutException:
print 'Home page took too long to load'
print 'Stopping scraper. Your data has not been added'
return
else:
continue
sleep(.5) # Because, inexplicably, it takes a second after the to load the data after the precinct name loads
# Get links from the county row
county = driver.find_elements_by_css_selector(selector)[i]
links = county.find_elements_by_tag_name('a')
county_name = name
rep_votes = county.find_elements_by_css_selector('td')[2].text
dem_votes = county.find_elements_by_css_selector('td')[3].text
# The URL for each county is generated by Clarity on each page visit
# Emulating a click is a sure bet to get to the detail page
links[1].click()
# Wait until the new page loads
try:
check = EC.presence_of_element_located((By.ID, 'precinctDetailLabel'))
WebDriverWait(driver, delay).until(check)
except TimeoutException:
print 'Page took too long to load. Trying to add precincts anyway'
# Remove cruft at the end of URL and append it to our list of URLs
split_url = driver.current_url.split('/')
base_url = ('/').join(split_url[:-2])
self.county_urls.append([county_name.upper(), base_url, rep_votes, dem_votes])
print '{} county precincts added'.format(county_name)
driver.get(self.main_url)
# After looping through all the counties, close Firefox
driver.quit()
x = pd.DataFrame(self.county_urls)
# Save the county urls to the tmp directory so they can be reused on future passes
x.to_csv('/tmp/county_urls.csv', encoding='utf-8', index=False)
return
def get_precincts(self):
"""
Get JSON data from the endpoints listed in :county_urls: and parse
the precinct-level election results from each one
"""
self.precinct_results = [] # Reset the precinct results
for county_name, base_url, rep_votes, dem_votes in self.county_urls:
logging.info('Getting precinct details from {}'.format(base_url))
# Candidate names and votes are stored in separate files. God knows
# why.
candidate_data = requests.get(base_url + '/json/sum.json')
vote_data = requests.get(base_url + '/json/details.json')
# Get the list of candidates
contests = json.loads(candidate_data.content)['Contests']
# Find out which of the contests contains the candidates we're interested in.
# Clarity sometimes includes multiple contests in the same JSON file
try:
order = [i for i, val in enumerate(contests) if CANDIDATES['rep'] in val['CH']][0]
candidates = contests[order]['CH']
except:
continue
logging.error("""The contestant names you supplied don\'t match
any in the data files. Are you sure you spelled the names
correctly?""")
#Get votes for each candidate
contests = json.loads(vote_data.content)['Contests']
contest = contests[order]
for precinct, votes in zip(contest['P'], contest['V']):
data = {'precinct': precinct, 'county': county_name}
total = 0
for candidate, count in zip(candidates, votes):
if candidate == CANDIDATES['rep']:
total += int(count)
data['rep_votes'] = int(count)
elif candidate == CANDIDATES['dem']:
data['dem_votes'] = int(count)
total += int(count)
data['total'] = total
self.precinct_results.append(data)
votes = pd.DataFrame(self.precinct_results)
votes.to_csv(VOTES_TMP, index=False, encoding='utf-8')
return
class ResultSnapshot(Parser):
"""
Class that contains utilities for cleaning Georgia election results and
merging with statistical data gathered from the US Census.
"""
def _clean(self, row):
"""
Private method for renaming the few precincts scraped from the site that
have names that don't match names in the precinct shapefiles.
"""
r = re.compile(r'\d{3} ')
precinct1 = re.sub(r, '', row['precinct'])
precinct2 = re.sub(re.compile(r'EP04-05|EP04-13'), 'EP04', precinct1)
precinct3 = re.sub(re.compile(r'10H1|10H2'), '10H', precinct2)
precinct4 = re.sub(re.compile(r'CATES D - 04|CATES D - 07'), 'CATES D', precinct3)
precinct5 = re.sub(re.compile(r'AVONDALE HIGH - 05|AVONDALE HIGH - 04'), 'AVONDALE HIGH', precinct4)
precinct6 = re.sub(re.compile(r'CHAMBLEE 2'), 'CHAMBLEE', precinct5)
precinct7 = re.sub(re.compile(r'WADSWORTH ELEM - 04'), 'WADSWORTH ELEM', precinct6)
precinct8 = re.sub(re.compile(r'CP06A'), 'CP06', precinct7)
return precinct8.strip().upper()[:20] # Restrict to 20 chars
def _clean_vote_stats(self, precincts):
"""
Private method used to calculate proportions of voters for each
candidate by precinct, clean the precinct name, put the income in bins,
and perform other operations necessary before it's ready to be
consumed by the JS app
"""
cframe = precincts
# Calculate proportion of total votes that each candidate got
cframe['rep_p'] = cframe.apply(self._get_rep_proportion, axis=1)
cframe['dem_p'] = cframe.apply(self._get_dem_proportion, axis=1)
cframe['precinct'] = cframe.apply(self._clean, axis=1)
return cframe
def merge_votes(self, statsf=STATS_FILE, outf=VOTES_TMP):
"""
Public method used to merge the election result dataset with the precinct
maps from the Reapportionment office.
"""
votes_raw = self.precinct_results
votes = pd.DataFrame(votes_raw)
stats = pd.read_csv(statsf, index_col=False)
fvotes = self._clean_vote_stats(votes)
merged = stats.merge(fvotes,
left_on='ajc_precinct',
right_on='precinct',
how='left',
indicator=True)
# Write unmerged precincts to a CSV. Check this to see why you're
# missing them
self.unmerged_precincts = merged[merged._merge != 'both']
self.unmerged_precincts.to_csv(UNMERGED_TMP, index=False)
# Drop precincts with null values for the election results
self.merged_precincts = merged[merged._merge == 'both']
logging.info('Writing precinct information to csv {}'.format(outf))
self.merged_precincts.to_csv(outf)
return
def aggregate_stats(self, statsfile=STATS_FILE):
"""
Calculate an aggregate stats file that's used to populate summary
statistics in the map
"""
just_votes = self.merged_precincts
stats = pd.read_csv(statsfile)
merged = just_votes.merge(stats, how='inner')
merged['income_bin'] = merged.apply(self._get_income, axis=1)
# Calculate aggregated stats for summary table
race = merged.groupby(['county', 'race'])['rep_votes', 'dem_votes'].sum().unstack()
income = merged.groupby(['county','income_bin'])['rep_votes', 'dem_votes'].sum().unstack()
reps = race.rep_votes.merge(income.rep_votes, left_index=True, right_index=True)
reps['party'] = 'rep_votes'
repsf = reps.reset_index()
dems = race.dem_votes.merge(income.dem_votes, left_index=True, right_index=True)
dems['party'] = 'dem_votes'
demsf = dems.reset_index()
combined = pd.concat([repsf, demsf])
# Create a nested defaultdict
data = defaultdict(lambda: defaultdict(dict))
fields = ['black',
'white',
'hispanic',
'high',
'mid',
'low']
# Create a nested JSON object
for i, row in combined.iterrows():
county = row['county']
party = row['party']
county_res = [x[2:] for x in self.county_urls if x[0] == county.upper()][0]
data[county]['all'][party] = 0
for field in fields:
# Check if val is null for precincts missing a certain group
# (eg some precincts have no Hispanics)
if pd.isnull(row[field]):
continue
data[county][field][party] = row[field]
if field in ['high', 'mid', 'low']:
data[county]['all']['rep_votes'] = float(county_res[0])
data[county]['all']['dem_votes'] = float(county_res[1])
# It's impossible to use default dict for the below, because the factory can't
# generate both dicts and ints by default
try:
data['ALL COUNTIES'][field][party] += row[field]
except KeyError:
data['ALL COUNTIES'][field][party] = 0
# Lastly, calculate summary stats for counties
data['ALL COUNTIES']['all']['rep_votes'] = sum([float(x[2]) for x in self.county_urls])
data['ALL COUNTIES']['all']['dem_votes'] = sum([float(x[3]) for x in self.county_urls])
logging.info('Writing aggregated stats to {}'.format(AGG_STATS_OUTPUT))
with open(AGG_STATS_OUTPUT, 'w') as f:
f.write(json.dumps(data, indent=4))
return
def update_map(self, vote_file=VOTES_TMP, geoJSON=MAP_INPUT):
"""
Take map JSON data and generate a new map with updated election data.
"""
logging.info('Adding latest vote information to map file {}'.format(MAP_OUTPUT))
f = open(vote_file)
votes = csv.DictReader(f)
map_data = open(geoJSON, 'r').read()
map_ = json.loads(map_data)
metadata = {}
reporting = 0
for i, feature in enumerate(map_['features']):
name = feature['properties']['PRECINCT_N']
try:
f.seek(0)
match = [x for x in votes if x['PRECINCT_N'] == name][0]
# CSV DictReader automatically parses all columns as strings,
# so we need to manually convert these back to floats
floats = [
'rep_votes',
'dem_votes',
'rep_p',
'dem_p',
'total',
'avg_income'
]
for x in floats:
match[x] = float(match[x])
map_['features'][i]['properties'] = match
if int(match['dem_votes']) != 0 or int(match['rep_votes']) != 0:
reporting += 1
# Catch cases where the map has precincts that aren't in the voter
# files
except IndexError:
continue
# Add relevant metadata
f = '%-I:%M %p, %A %b %-d' # eg: 12:30 AM, Wednesday Nov. 8
metadata['last_update'] = datetime.datetime.now().strftime(f)
metadata['precincts_reporting'] = reporting
metadata['total_precincts'] = TOTAL_PRECINCTS
with open(MAP_OUTPUT, 'w') as a, open(METADATA_OUTPUT, 'w') as b:
a.write(json.dumps(map_))
b.write(json.dumps(metadata))
if __name__ == '__main__':
p = ResultSnapshot(contest_url=CONTEST_URL)
p.get_county_urls()
p.get_precincts()
p.merge_votes()
p.aggregate_stats()
p.update_map()
| [
2,
8997,
9195,
17944,
198,
6738,
25064,
1330,
1822,
85,
198,
11748,
28686,
198,
6738,
640,
1330,
3993,
198,
11748,
302,
198,
11748,
279,
9945,
198,
11748,
18931,
198,
11748,
4818,
8079,
198,
11748,
269,
21370,
198,
11748,
33918,
198,
6738,
17268,
1330,
4277,
11600,
198,
198,
2,
10467,
12,
10608,
17944,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
7007,
198,
6738,
384,
11925,
1505,
1330,
3992,
26230,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
13,
9019,
1330,
5313,
32103,
21321,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11321,
13,
1525,
1330,
2750,
198,
6738,
384,
11925,
1505,
13,
12384,
26230,
13,
11284,
1330,
2938,
62,
17561,
1756,
355,
13182,
198,
6738,
384,
11925,
1505,
13,
11321,
13,
1069,
11755,
1330,
3862,
448,
16922,
198,
198,
2,
4757,
1187,
198,
34720,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
4008,
198,
33,
11159,
62,
34720,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
418,
13,
6978,
13,
15908,
3672,
7,
34720,
4008,
1303,
20410,
8619,
286,
262,
1628,
198,
198,
2,
32770,
329,
597,
1813,
3234,
319,
257,
16287,
14300,
13,
785,
2524,
198,
37815,
6465,
62,
21886,
796,
705,
4023,
1378,
43420,
13,
268,
81,
13,
565,
6806,
9509,
507,
13,
785,
14,
9273,
14,
5066,
2079,
16,
14,
1507,
2078,
3865,
14,
268,
14,
9132,
62,
7890,
13,
6494,
30,
66,
312,
28,
27641,
5,
6,
198,
34,
28270,
11015,
796,
37250,
5097,
4792,
11357,
3256,
705,
46476,
11357,
3256,
705,
33191,
1268,
12884,
51,
3256,
705,
7206,
42,
1847,
33,
3256,
705,
8220,
15199,
20520,
198,
43,
11262,
62,
34,
19385,
9936,
796,
705,
54,
1506,
6,
1303,
16718,
284,
2198,
326,
477,
14683,
319,
262,
1388,
2443,
423,
9639,
422,
25347,
25922,
2581,
198,
34,
6981,
2389,
29462,
796,
1391,
6,
9536,
10354,
705,
39,
8267,
13153,
7852,
46812,
3256,
705,
7856,
10354,
705,
41173,
44071,
449,
13,
42953,
6,
92,
198,
51,
27510,
62,
47,
38827,
1268,
4177,
50,
796,
860,
1415,
1303,
383,
1271,
286,
47564,
287,
262,
24578,
5817,
434,
2607,
338,
3975,
198,
11909,
8643,
2662,
62,
20120,
62,
38604,
7036,
6234,
796,
31051,
14490,
14,
73,
40359,
14,
36881,
14,
746,
11456,
8457,
14,
8800,
14,
746,
11456,
8457,
6,
198,
198,
2,
23412,
290,
5072,
2393,
7064,
13,
9794,
355,
2622,
198,
2257,
33586,
62,
25664,
796,
28686,
13,
6978,
13,
22179,
7,
34720,
11,
705,
1228,
66,
62,
3866,
66,
4612,
82,
62,
647,
2004,
62,
1087,
364,
13,
40664,
11537,
198,
33767,
62,
1268,
30076,
796,
28686,
13,
6978,
13,
22179,
7,
34720,
11,
705,
4967,
62,
12519,
62,
16740,
62,
1087,
364,
13,
17752,
11537,
198,
53,
2394,
1546,
62,
51,
7378,
796,
31051,
22065,
14,
27257,
62,
7890,
13,
40664,
6,
198,
4944,
29296,
38,
1961,
62,
51,
7378,
796,
31051,
22065,
14,
403,
647,
2004,
13,
40664,
6,
198,
198,
33767,
62,
2606,
7250,
3843,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
19668,
3256,
705,
7890,
3256,
705,
4967,
62,
3866,
66,
4612,
82,
62,
12519,
62,
16740,
16977,
13,
17752,
11537,
198,
47123,
2885,
13563,
62,
2606,
7250,
3843,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
19668,
3256,
705,
7890,
3256,
705,
4967,
62,
38993,
13,
17752,
11537,
198,
4760,
38,
62,
2257,
33586,
62,
2606,
7250,
3843,
796,
28686,
13,
6978,
13,
22179,
7,
33,
11159,
62,
34720,
11,
705,
19668,
3256,
705,
7890,
3256,
705,
4967,
9460,
62,
34242,
13,
17752,
11537,
198,
2,
5268,
38491,
198,
198,
2,
17056,
495,
18931,
198,
6404,
2667,
13,
35487,
16934,
7,
5715,
28,
6404,
2667,
13,
10778,
8,
198,
198,
4871,
23042,
263,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7308,
1398,
326,
3769,
46743,
11244,
329,
1012,
6806,
24473,
2524,
13,
198,
220,
220,
220,
5765,
15300,
47477,
338,
14407,
20120,
1182,
1203,
6444,
284,
29308,
25785,
290,
651,
10289,
286,
3703,
198,
220,
220,
220,
5468,
329,
1813,
14683,
11,
788,
3011,
28802,
12,
5715,
3015,
1366,
329,
257,
1813,
3234,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
11249,
62,
26230,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
13610,
281,
4554,
286,
15300,
47477,
338,
3992,
26230,
13,
2725,
11456,
20120,
22784,
973,
284,
220,
198,
220,
220,
220,
220,
220,
220,
220,
29308,
25785,
319,
262,
1012,
6806,
7024,
2524,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
796,
3992,
26230,
13,
13543,
12792,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
13,
1136,
7,
944,
13,
12417,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
4639,
628,
220,
220,
220,
825,
651,
62,
9127,
88,
62,
6371,
82,
7,
944,
11,
5128,
62,
9127,
444,
28,
34,
28270,
11015,
11,
5711,
28,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5765,
15300,
47477,
284,
651,
262,
32366,
7560,
32336,
329,
1123,
7968,
338,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3703,
2443,
416,
985,
8306,
25785,
11,
290,
24443,
262,
32336,
284,
2116,
13,
9127,
88,
62,
6371,
82,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9127,
88,
62,
6371,
82,
796,
17635,
1303,
30027,
7968,
32336,
1123,
640,
262,
19320,
525,
4539,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
32071,
15300,
47477,
4639,
290,
22534,
1012,
6806,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
796,
2116,
13557,
11249,
62,
26230,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4731,
62,
9127,
444,
796,
357,
3256,
705,
737,
22179,
7,
15414,
62,
9127,
444,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
5994,
12331,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4731,
62,
9127,
444,
796,
705,
3237,
14683,
6,
628,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
20570,
3703,
2443,
32336,
329,
23884,
4458,
18982,
7,
8841,
62,
9127,
444,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
16314,
1566,
14683,
423,
9639,
832,
25347,
25922,
284,
1057,
4226,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3363,
340,
338,
8156,
88,
475,
1262,
5313,
32103,
21321,
2492,
470,
1762,
198,
220,
220,
220,
220,
220,
220,
220,
3993,
7,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
257,
1351,
286,
477,
14683,
319,
262,
8414,
10638,
2443,
198,
220,
220,
220,
220,
220,
220,
220,
31870,
796,
705,
11487,
13,
85,
912,
12,
7890,
1875,
256,
2618,
1875,
491,
6,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
9127,
444,
796,
4639,
13,
19796,
62,
68,
3639,
62,
1525,
62,
25471,
62,
19738,
273,
7,
19738,
273,
8,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2980,
378,
257,
1351,
286,
7968,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
14683,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
7968,
287,
27056,
378,
7,
439,
62,
9127,
444,
2599,
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,
6117,
796,
7968,
13,
19796,
62,
68,
3639,
62,
1525,
62,
12985,
62,
3672,
10786,
64,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
6117,
58,
15,
4083,
1136,
62,
42348,
10786,
312,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14683,
13,
33295,
7,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2773,
286,
262,
15274,
287,
262,
3084,
389,
655,
24697,
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,
14683,
13,
33295,
7,
14202,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
8192,
284,
9052,
832,
3891,
2427,
286,
9052,
278,
832,
24121,
4847,
780,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
15300,
47477,
481,
3714,
257,
520,
1000,
20180,
26687,
16922,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
1438,
287,
27056,
378,
7,
9127,
444,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4362,
262,
2443,
15989,
832,
25347,
25922,
4043,
1566,
262,
1321,
329,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
7968,
318,
9639,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5128,
62,
9127,
444,
318,
407,
6045,
290,
1438,
13,
45828,
3419,
407,
287,
5128,
62,
9127,
444,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2198,
796,
13182,
13,
18302,
594,
62,
1659,
62,
30854,
62,
75,
10533,
19510,
3886,
13,
2389,
11,
1438,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5313,
32103,
21321,
7,
26230,
11,
5711,
737,
28446,
7,
9122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3862,
448,
16922,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
16060,
2443,
1718,
1165,
890,
284,
3440,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
1273,
33307,
19320,
525,
13,
3406,
1366,
468,
407,
587,
2087,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
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,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3993,
7,
13,
20,
8,
1303,
4362,
11,
33199,
41685,
11,
340,
2753,
257,
1218,
706,
262,
284,
3440,
262,
1366,
706,
262,
28802,
1438,
15989,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
6117,
422,
262,
7968,
5752,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7968,
796,
4639,
13,
19796,
62,
68,
3639,
62,
1525,
62,
25471,
62,
19738,
273,
7,
19738,
273,
38381,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6117,
796,
7968,
13,
19796,
62,
68,
3639,
62,
1525,
62,
12985,
62,
3672,
10786,
64,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7968,
62,
3672,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1128,
62,
29307,
796,
7968,
13,
19796,
62,
68,
3639,
62,
1525,
62,
25471,
62,
19738,
273,
10786,
8671,
11537,
58,
17,
4083,
5239,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1357,
62,
29307,
796,
7968,
13,
19796,
62,
68,
3639,
62,
1525,
62,
25471,
62,
19738,
273,
10786,
8671,
11537,
58,
18,
4083,
5239,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
10289,
329,
1123,
7968,
318,
7560,
416,
1012,
6806,
319,
1123,
2443,
3187,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2295,
8306,
257,
3904,
318,
257,
1654,
731,
284,
651,
284,
262,
3703,
2443,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6117,
58,
16,
4083,
12976,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16314,
1566,
262,
649,
2443,
15989,
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,
2198,
796,
13182,
13,
18302,
594,
62,
1659,
62,
30854,
62,
75,
10533,
19510,
3886,
13,
2389,
11,
705,
3866,
66,
4612,
11242,
603,
33986,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5313,
32103,
21321,
7,
26230,
11,
5711,
737,
28446,
7,
9122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3862,
448,
16922,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
9876,
1718,
1165,
890,
284,
3440,
13,
31165,
284,
751,
47564,
6949,
6,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17220,
4630,
701,
379,
262,
886,
286,
10289,
290,
24443,
340,
284,
674,
1351,
286,
32336,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6626,
62,
6371,
796,
4639,
13,
14421,
62,
6371,
13,
35312,
10786,
14,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
6371,
796,
19203,
14,
27691,
22179,
7,
35312,
62,
6371,
58,
21912,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9127,
88,
62,
6371,
82,
13,
33295,
26933,
9127,
88,
62,
3672,
13,
45828,
22784,
2779,
62,
6371,
11,
1128,
62,
29307,
11,
1357,
62,
29307,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
90,
92,
7968,
47564,
2087,
4458,
18982,
7,
9127,
88,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4639,
13,
1136,
7,
944,
13,
12417,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2293,
9052,
278,
832,
477,
262,
14683,
11,
1969,
16802,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
13,
47391,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
279,
67,
13,
6601,
19778,
7,
944,
13,
9127,
88,
62,
6371,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
12793,
262,
7968,
2956,
7278,
284,
262,
45218,
8619,
523,
484,
460,
307,
46823,
319,
2003,
8318,
198,
220,
220,
220,
220,
220,
220,
220,
2124,
13,
1462,
62,
40664,
10786,
14,
22065,
14,
9127,
88,
62,
6371,
82,
13,
40664,
3256,
21004,
11639,
40477,
12,
23,
3256,
6376,
28,
25101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
825,
651,
62,
3866,
66,
4612,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
19449,
1366,
422,
262,
886,
13033,
5610,
287,
1058,
9127,
88,
62,
6371,
82,
25,
290,
21136,
198,
220,
220,
220,
220,
220,
220,
220,
262,
28802,
12,
5715,
3071,
2482,
422,
1123,
530,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3866,
66,
4612,
62,
43420,
796,
17635,
1303,
30027,
262,
28802,
2482,
628,
220,
220,
220,
220,
220,
220,
220,
329,
7968,
62,
3672,
11,
2779,
62,
6371,
11,
1128,
62,
29307,
11,
1357,
62,
29307,
287,
2116,
13,
9127,
88,
62,
6371,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
20570,
28802,
3307,
422,
23884,
4458,
18982,
7,
8692,
62,
6371,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
40327,
3891,
290,
5690,
389,
8574,
287,
4553,
3696,
13,
1793,
4206,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1521,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4540,
62,
7890,
796,
7007,
13,
1136,
7,
8692,
62,
6371,
1343,
31051,
17752,
14,
16345,
13,
17752,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3015,
62,
7890,
796,
7007,
13,
1136,
7,
8692,
62,
6371,
1343,
31051,
17752,
14,
36604,
13,
17752,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
262,
1351,
286,
5871,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22830,
796,
33918,
13,
46030,
7,
46188,
20540,
62,
7890,
13,
11299,
8,
17816,
4264,
3558,
20520,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
9938,
503,
543,
286,
262,
22830,
4909,
262,
5871,
356,
821,
4609,
287,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1012,
6806,
3360,
3407,
3294,
22830,
287,
262,
976,
19449,
2393,
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,
1502,
796,
685,
72,
329,
1312,
11,
1188,
287,
27056,
378,
7,
3642,
3558,
8,
611,
327,
6981,
2389,
29462,
17816,
7856,
20520,
287,
1188,
17816,
3398,
20520,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5871,
796,
22830,
58,
2875,
7131,
6,
3398,
20520,
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,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
18224,
7203,
15931,
464,
44047,
3891,
345,
14275,
836,
43054,
83,
2872,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
597,
287,
262,
1366,
3696,
13,
4231,
345,
1654,
345,
32213,
262,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9380,
1701,
1,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3855,
5690,
329,
1123,
4540,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22830,
796,
33918,
13,
46030,
7,
27257,
62,
7890,
13,
11299,
8,
17816,
4264,
3558,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8414,
796,
22830,
58,
2875,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
28802,
11,
5690,
287,
19974,
7,
3642,
395,
17816,
47,
6,
4357,
8414,
17816,
53,
20520,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
1391,
6,
3866,
66,
4612,
10354,
28802,
11,
705,
9127,
88,
10354,
7968,
62,
3672,
92,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4540,
11,
954,
287,
19974,
7,
46188,
37051,
11,
5690,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4540,
6624,
327,
6981,
2389,
29462,
17816,
7856,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
15853,
493,
7,
9127,
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,
1366,
17816,
7856,
62,
29307,
20520,
796,
493,
7,
9127,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4540,
6624,
327,
6981,
2389,
29462,
17816,
9536,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
9536,
62,
29307,
20520,
796,
493,
7,
9127,
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,
2472,
15853,
493,
7,
9127,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
23350,
20520,
796,
2472,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3866,
66,
4612,
62,
43420,
13,
33295,
7,
7890,
8,
628,
220,
220,
220,
220,
220,
220,
220,
5690,
796,
279,
67,
13,
6601,
19778,
7,
944,
13,
3866,
66,
4612,
62,
43420,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5690,
13,
1462,
62,
40664,
7,
53,
2394,
1546,
62,
51,
7378,
11,
6376,
28,
25101,
11,
21004,
11639,
40477,
12,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
198,
4871,
25414,
43826,
9442,
7,
46677,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
326,
4909,
20081,
329,
12724,
7859,
3071,
2482,
290,
198,
220,
220,
220,
35981,
351,
13905,
1366,
9272,
422,
262,
1294,
20962,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
27773,
7,
944,
11,
5752,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15348,
2446,
329,
8851,
3723,
262,
1178,
47564,
15881,
276,
422,
262,
2524,
326,
198,
220,
220,
220,
220,
220,
220,
220,
423,
3891,
326,
836,
470,
2872,
3891,
287,
262,
28802,
5485,
16624,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
302,
13,
5589,
576,
7,
81,
6,
59,
67,
90,
18,
92,
705,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
16,
796,
302,
13,
7266,
7,
81,
11,
705,
3256,
5752,
17816,
3866,
66,
4612,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
17,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
8905,
3023,
12,
2713,
91,
8905,
3023,
12,
1485,
33809,
705,
8905,
3023,
3256,
28802,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
18,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
940,
39,
16,
91,
940,
39,
17,
33809,
705,
940,
39,
3256,
28802,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
19,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
34,
29462,
360,
532,
8702,
91,
34,
29462,
360,
532,
8753,
33809,
705,
34,
29462,
360,
3256,
28802,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
20,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
10116,
18672,
21358,
34677,
532,
8870,
91,
10116,
18672,
21358,
34677,
532,
8702,
33809,
705,
10116,
18672,
21358,
34677,
3256,
28802,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
21,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
3398,
2390,
19146,
36,
362,
33809,
705,
3398,
2390,
19146,
36,
3256,
28802,
20,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
22,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
54,
2885,
17887,
1581,
4221,
40342,
44,
532,
8702,
33809,
705,
54,
2885,
17887,
1581,
4221,
40342,
44,
3256,
28802,
21,
8,
198,
220,
220,
220,
220,
220,
220,
220,
28802,
23,
796,
302,
13,
7266,
7,
260,
13,
5589,
576,
7,
81,
6,
8697,
3312,
32,
33809,
705,
8697,
3312,
3256,
28802,
22,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
28802,
23,
13,
36311,
22446,
45828,
3419,
58,
25,
1238,
60,
1303,
37163,
284,
1160,
34534,
628,
198,
220,
220,
220,
825,
4808,
27773,
62,
27257,
62,
34242,
7,
944,
11,
47564,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
15348,
2446,
973,
284,
15284,
23250,
286,
4446,
329,
1123,
220,
198,
220,
220,
220,
220,
220,
220,
220,
4540,
416,
28802,
11,
3424,
262,
28802,
1438,
11,
1234,
262,
3739,
287,
41701,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
1620,
584,
4560,
3306,
878,
340,
338,
3492,
284,
307,
220,
198,
220,
220,
220,
220,
220,
220,
220,
13529,
416,
262,
26755,
598,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
269,
14535,
796,
47564,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
27131,
378,
9823,
286,
2472,
5690,
326,
1123,
4540,
1392,
198,
220,
220,
220,
220,
220,
220,
220,
269,
14535,
17816,
7856,
62,
79,
20520,
796,
269,
14535,
13,
39014,
7,
944,
13557,
1136,
62,
7856,
62,
1676,
16864,
11,
16488,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
269,
14535,
17816,
9536,
62,
79,
20520,
796,
269,
14535,
13,
39014,
7,
944,
13557,
1136,
62,
9536,
62,
1676,
16864,
11,
16488,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
269,
14535,
17816,
3866,
66,
4612,
20520,
796,
269,
14535,
13,
39014,
7,
944,
13557,
27773,
11,
16488,
28,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
269,
14535,
628,
220,
220,
220,
825,
20121,
62,
29307,
7,
944,
11,
9756,
69,
28,
2257,
33586,
62,
25664,
11,
503,
69,
28,
53,
2394,
1546,
62,
51,
7378,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5094,
2446,
973,
284,
20121,
262,
3071,
1255,
27039,
351,
262,
28802,
220,
198,
220,
220,
220,
220,
220,
220,
220,
8739,
422,
262,
797,
1324,
5817,
434,
2607,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5690,
62,
1831,
796,
2116,
13,
3866,
66,
4612,
62,
43420,
198,
220,
220,
220,
220,
220,
220,
220,
5690,
796,
279,
67,
13,
6601,
19778,
7,
29307,
62,
1831,
8,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
796,
279,
67,
13,
961,
62,
40664,
7,
34242,
69,
11,
6376,
62,
4033,
28,
25101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
277,
29307,
796,
2116,
13557,
27773,
62,
27257,
62,
34242,
7,
29307,
8,
628,
220,
220,
220,
220,
220,
220,
220,
23791,
796,
9756,
13,
647,
469,
7,
69,
29307,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1364,
62,
261,
11639,
1228,
66,
62,
3866,
66,
4612,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
826,
62,
261,
11639,
3866,
66,
4612,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
703,
11639,
9464,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16916,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19430,
555,
647,
2004,
47564,
284,
257,
44189,
13,
6822,
428,
284,
766,
1521,
345,
821,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4814,
606,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
403,
647,
2004,
62,
3866,
66,
4612,
82,
796,
23791,
58,
647,
2004,
13557,
647,
469,
14512,
705,
16885,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
403,
647,
2004,
62,
3866,
66,
4612,
82,
13,
1462,
62,
40664,
7,
4944,
29296,
38,
1961,
62,
51,
7378,
11,
6376,
28,
25101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14258,
47564,
351,
9242,
3815,
329,
262,
3071,
2482,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
647,
2004,
62,
3866,
66,
4612,
82,
796,
23791,
58,
647,
2004,
13557,
647,
469,
6624,
705,
16885,
20520,
628,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
33874,
28802,
1321,
284,
269,
21370,
23884,
4458,
18982,
7,
448,
69,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
647,
2004,
62,
3866,
66,
4612,
82,
13,
1462,
62,
40664,
7,
448,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
825,
19406,
62,
34242,
7,
944,
11,
9756,
7753,
28,
2257,
33586,
62,
25664,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
27131,
378,
281,
19406,
9756,
2393,
326,
338,
973,
284,
48040,
10638,
198,
220,
220,
220,
220,
220,
220,
220,
7869,
287,
262,
3975,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
655,
62,
29307,
796,
2116,
13,
647,
2004,
62,
3866,
66,
4612,
82,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
796,
279,
67,
13,
961,
62,
40664,
7,
34242,
7753,
8,
628,
220,
220,
220,
220,
220,
220,
220,
23791,
796,
655,
62,
29307,
13,
647,
469,
7,
34242,
11,
703,
11639,
5083,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
23791,
17816,
12519,
62,
8800,
20520,
796,
23791,
13,
39014,
7,
944,
13557,
1136,
62,
12519,
11,
16488,
28,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
27131,
378,
13262,
515,
9756,
329,
10638,
3084,
198,
220,
220,
220,
220,
220,
220,
220,
3234,
796,
23791,
13,
8094,
1525,
7,
17816,
9127,
88,
3256,
705,
16740,
6,
12962,
17816,
7856,
62,
29307,
3256,
705,
9536,
62,
29307,
6,
4083,
16345,
22446,
403,
25558,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3739,
796,
23791,
13,
8094,
1525,
7,
17816,
9127,
88,
41707,
12519,
62,
8800,
6,
12962,
17816,
7856,
62,
29307,
3256,
705,
9536,
62,
29307,
6,
4083,
16345,
22446,
403,
25558,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
20982,
796,
3234,
13,
7856,
62,
29307,
13,
647,
469,
7,
12519,
13,
7856,
62,
29307,
11,
1364,
62,
9630,
28,
17821,
11,
826,
62,
9630,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
20982,
17816,
10608,
20520,
796,
705,
7856,
62,
29307,
6,
198,
220,
220,
220,
220,
220,
220,
220,
20982,
69,
796,
20982,
13,
42503,
62,
9630,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1357,
82,
796,
3234,
13,
9536,
62,
29307,
13,
647,
469,
7,
12519,
13,
9536,
62,
29307,
11,
1364,
62,
9630,
28,
17821,
11,
826,
62,
9630,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1357,
82,
17816,
10608,
20520,
796,
705,
9536,
62,
29307,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1357,
28202,
796,
1357,
82,
13,
42503,
62,
9630,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
5929,
796,
279,
67,
13,
1102,
9246,
26933,
260,
862,
69,
11,
1357,
28202,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
28376,
4277,
11600,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
4277,
11600,
7,
50033,
25,
4277,
11600,
7,
11600,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
7032,
796,
37250,
13424,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
11186,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14363,
35843,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8929,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
13602,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9319,
20520,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
28376,
19449,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
5752,
287,
5929,
13,
2676,
8516,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7968,
796,
5752,
17816,
9127,
88,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2151,
796,
5752,
17816,
10608,
20520,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7968,
62,
411,
796,
685,
87,
58,
17,
47715,
329,
2124,
287,
2116,
13,
9127,
88,
62,
6371,
82,
611,
2124,
58,
15,
60,
6624,
7968,
13,
45828,
3419,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
9127,
88,
7131,
6,
439,
6,
7131,
10608,
60,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2214,
287,
7032,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
1188,
318,
9242,
329,
47564,
4814,
257,
1728,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
357,
1533,
617,
47564,
423,
645,
30714,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
279,
67,
13,
271,
8423,
7,
808,
58,
3245,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
9127,
88,
7131,
3245,
7131,
10608,
60,
796,
5752,
58,
3245,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2214,
287,
37250,
8929,
3256,
705,
13602,
3256,
705,
9319,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
9127,
88,
7131,
6,
439,
6,
7131,
6,
7856,
62,
29307,
20520,
796,
12178,
7,
9127,
88,
62,
411,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
58,
9127,
88,
7131,
6,
439,
6,
7131,
6,
9536,
62,
29307,
20520,
796,
12178,
7,
9127,
88,
62,
411,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
632,
338,
5340,
284,
779,
4277,
8633,
329,
262,
2174,
11,
780,
262,
8860,
460,
470,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7716,
1111,
8633,
82,
290,
493,
82,
416,
4277,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
7036,
327,
28270,
11015,
6,
7131,
3245,
7131,
10608,
60,
15853,
5752,
58,
3245,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
7036,
327,
28270,
11015,
6,
7131,
3245,
7131,
10608,
60,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
36778,
11,
15284,
10638,
9756,
329,
14683,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
7036,
327,
28270,
11015,
6,
7131,
6,
439,
6,
7131,
6,
7856,
62,
29307,
20520,
796,
2160,
26933,
22468,
7,
87,
58,
17,
12962,
329,
2124,
287,
2116,
13,
9127,
88,
62,
6371,
82,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
17816,
7036,
327,
28270,
11015,
6,
7131,
6,
439,
6,
7131,
6,
9536,
62,
29307,
20520,
796,
2160,
26933,
22468,
7,
87,
58,
18,
12962,
329,
2124,
287,
2116,
13,
9127,
88,
62,
6371,
82,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
33874,
13262,
515,
9756,
284,
23884,
4458,
18982,
7,
4760,
38,
62,
2257,
33586,
62,
2606,
7250,
3843,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
4760,
38,
62,
2257,
33586,
62,
2606,
7250,
3843,
11,
705,
86,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
17752,
13,
67,
8142,
7,
7890,
11,
33793,
28,
19,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
825,
4296,
62,
8899,
7,
944,
11,
3015,
62,
7753,
28,
53,
2394,
1546,
62,
51,
7378,
11,
40087,
40386,
28,
33767,
62,
1268,
30076,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
7214,
3975,
19449,
1366,
290,
7716,
257,
649,
3975,
351,
6153,
3071,
1366,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
32901,
3452,
3015,
1321,
284,
3975,
2393,
23884,
4458,
18982,
7,
33767,
62,
2606,
7250,
3843,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
277,
796,
1280,
7,
27257,
62,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
5690,
796,
269,
21370,
13,
35,
713,
33634,
7,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
7890,
796,
1280,
7,
469,
78,
40386,
11,
705,
81,
27691,
961,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
796,
33918,
13,
46030,
7,
8899,
62,
7890,
8,
628,
220,
220,
220,
220,
220,
220,
220,
20150,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
6447,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
3895,
287,
27056,
378,
7,
8899,
62,
17816,
40890,
20520,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
3895,
17816,
48310,
6,
7131,
6,
47,
38827,
1268,
4177,
62,
45,
20520,
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,
277,
13,
36163,
7,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2872,
796,
685,
87,
329,
2124,
287,
5690,
611,
2124,
17816,
47,
38827,
1268,
4177,
62,
45,
20520,
6624,
1438,
7131,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
44189,
360,
713,
33634,
6338,
13544,
274,
477,
15180,
355,
13042,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
523,
356,
761,
284,
14500,
10385,
777,
736,
284,
36016,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36016,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7856,
62,
29307,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9536,
62,
29307,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7856,
62,
79,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9536,
62,
79,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23350,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
615,
70,
62,
12519,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2124,
287,
36016,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2872,
58,
87,
60,
796,
12178,
7,
15699,
58,
87,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
17816,
40890,
6,
7131,
72,
7131,
6,
48310,
20520,
796,
2872,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
15699,
17816,
9536,
62,
29307,
6,
12962,
14512,
657,
393,
493,
7,
15699,
17816,
7856,
62,
29307,
6,
12962,
14512,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6447,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
25750,
2663,
810,
262,
3975,
468,
47564,
326,
3588,
470,
287,
262,
10765,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3696,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
5981,
20150,
198,
220,
220,
220,
220,
220,
220,
220,
277,
796,
705,
33963,
40,
25,
4,
44,
4064,
79,
11,
4064,
32,
4064,
65,
4064,
12,
67,
6,
1303,
29206,
25,
1105,
25,
1270,
3001,
11,
3583,
5267,
13,
807,
198,
220,
220,
220,
220,
220,
220,
220,
20150,
17816,
12957,
62,
19119,
20520,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
22446,
2536,
31387,
7,
69,
8,
198,
220,
220,
220,
220,
220,
220,
220,
20150,
17816,
3866,
66,
4612,
82,
62,
49914,
20520,
796,
6447,
198,
220,
220,
220,
220,
220,
220,
220,
20150,
17816,
23350,
62,
3866,
66,
4612,
82,
20520,
796,
36247,
62,
47,
38827,
1268,
4177,
50,
628,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
33767,
62,
2606,
7250,
3843,
11,
705,
86,
11537,
355,
257,
11,
1280,
7,
47123,
2885,
13563,
62,
2606,
7250,
3843,
11,
705,
86,
11537,
355,
275,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
13,
13564,
7,
17752,
13,
67,
8142,
7,
8899,
62,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
13,
13564,
7,
17752,
13,
67,
8142,
7,
38993,
4008,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
279,
796,
25414,
43826,
9442,
7,
3642,
395,
62,
6371,
28,
37815,
6465,
62,
21886,
8,
198,
220,
220,
220,
279,
13,
1136,
62,
9127,
88,
62,
6371,
82,
3419,
198,
220,
220,
220,
279,
13,
1136,
62,
3866,
66,
4612,
82,
3419,
198,
220,
220,
220,
279,
13,
647,
469,
62,
29307,
3419,
198,
220,
220,
220,
279,
13,
9460,
49373,
62,
34242,
3419,
198,
220,
220,
220,
279,
13,
19119,
62,
8899,
3419,
628
] | 2.252878 | 7,209 |
from datetime import timedelta
from unittest.mock import patch
from django.core.files.uploadedfile import SimpleUploadedFile
@patch('django.core.files.storage.FileSystemStorage.save')
@patch('django.core.files.storage.FileSystemStorage.save')
@patch('django.core.files.storage.FileSystemStorage.save')
| [
6738,
4818,
8079,
1330,
28805,
12514,
198,
6738,
555,
715,
395,
13,
76,
735,
1330,
8529,
198,
198,
6738,
42625,
14208,
13,
7295,
13,
16624,
13,
25850,
276,
7753,
1330,
17427,
41592,
276,
8979,
628,
628,
628,
628,
628,
628,
628,
628,
198,
198,
31,
17147,
10786,
28241,
14208,
13,
7295,
13,
16624,
13,
35350,
13,
8979,
11964,
31425,
13,
21928,
11537,
628,
198,
31,
17147,
10786,
28241,
14208,
13,
7295,
13,
16624,
13,
35350,
13,
8979,
11964,
31425,
13,
21928,
11537,
628,
198,
31,
17147,
10786,
28241,
14208,
13,
7295,
13,
16624,
13,
35350,
13,
8979,
11964,
31425,
13,
21928,
11537,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198
] | 3.035088 | 114 |
import pickle
from collections import defaultdict
from nltk.tokenize import word_tokenize
import time
import sys
import os
import operator
import preprocessing.config as config
import preprocessing.util as util
# TODO delete this one, no longer usefull since there is another one that also handles the conflicts
def tokenize_p_e_m():
'''
tokenizes the mention of the p(e|m) dictionary so that it is consistent with our
tokenized corpus (,.;' all these symbols separate from the previous word with whitespace)
it only modifies the mention and nothing else.
'''
#for dict_file in ["prob_wikipedia_p_e_m.txt", "prob_yago_crosswikis_wikipedia_p_e_m.txt",
# "prob_crosswikis_wikipedia_p_e_m.txt"]:
for dict_file in ["prob_yago_crosswikis_wikipedia_p_e_m.txt"]:
with open(config.base_folder+"data/p_e_m/"+dict_file) as fin, \
open(config.base_folder+"data/p_e_m/" + "tokenized/"+dict_file, "w") as fout:
diff_cnt = 0
for line in fin:
mention, rest = line.split('\t', 1)
if len(mention.split()) > 1:
tokenized_mention = ' '.join(word_tokenize(mention))
else:
tokenized_mention = mention
if mention != tokenized_mention:
diff_cnt += 1
#print(mention, " --------> ", tokenized_mention)
fout.write(tokenized_mention + "\t" + rest)
print(dict_file, "diff_cnt = ", diff_cnt)
def tokenize_p_e_m_and_merge_conflicts(filename, yago=False):
"""takes as input a p_e_m with absolute frequency, tokenizes the mention, handles conflicts
(same mention after tokenization) with merging. execute that on wiki, crosswiki, yago
absolute frequency files -> output again absolute frequency."""
p_e_m = defaultdict(lambda: defaultdict(int))
with open(config.base_folder+"data/p_e_m/"+filename) as fin:
diff_cnt = 0
conflicts_cnt = 0
for line in fin:
line = line.rstrip()
l = line.split("\t")
mention = l[0]
tokenized_mention = ' '.join(word_tokenize(mention))
if mention != tokenized_mention:
diff_cnt += 1
if tokenized_mention in p_e_m:
conflicts_cnt += 1
#print(mention, " --------> ", tokenized_mention)
for e in l[2:]:
if yago:
ent_id, _ = e.split(',', 1)
ent_id = ent_id.strip() # not necessary
freq = 1
else:
ent_id, freq, _ = e.split(',', 2)
ent_id = ent_id.strip() # not necessary
freq = int(freq)
p_e_m[tokenized_mention][ent_id] += freq
print("conflicts from tokenization counter: ", conflicts_cnt)
print_p_e_m_dictionary_to_file(p_e_m, config.base_folder+"data/p_e_m/tokenized/"+filename)
def merge_two_prob_dictionaries(filename1, filename2, newfilename):
"""merge two p_e_m dictionaries that are already in probabilities to a new one again
with probabilities."""
p_e_m = defaultdict(lambda: defaultdict(float))
for filename in [filename1, filename2]:
with open(config.base_folder+"data/p_e_m/tokenized/"+filename) as fin:
for line in fin:
line = line.rstrip()
l = line.split("\t")
mention = l[0]
for e in l[2:]:
ent_id, prob, _ = e.split(',', 2)
ent_id = ent_id.strip() # not necessary
prob = float(prob)
#p_e_m[mention][ent_id] = min(1, p_e_m[mention][ent_id] + prob)
p_e_m[mention][ent_id] = p_e_m[mention][ent_id] + prob # without min
# even without restricting it still the range of values is [0,2]
print_p_e_m_dictionary_to_file(p_e_m, config.base_folder+"data/p_e_m/tokenized/"
+ newfilename)
if __name__ == "__main__":
tokenize_p_e_m()
#tokenize_p_e_m_and_merge_conflicts("wikipedia_p_e_m.txt")
#tokenize_p_e_m_and_merge_conflicts("crosswikis_wikipedia_p_e_m.txt")
#tokenize_p_e_m_and_merge_conflicts("yago_p_e_m.txt", yago=True)
#from_freq_to_prob("wikipedia_p_e_m.txt")
#from_freq_to_prob("crosswikis_wikipedia_p_e_m.txt")
#from_freq_to_prob("yago_p_e_m.txt")
"""
merge_two_prob_dictionaries("prob_crosswikis_wikipedia_p_e_m.txt",
"prob_yago_p_e_m.txt",
"prob_yago_crosswikis_wikipedia_p_e_m.txt")
"""
# vocabulary_count_wiki()
# entity_count_wiki()
# load_p_e_m()
# from_freq_to_prob()
| [
11748,
2298,
293,
198,
6738,
17268,
1330,
4277,
11600,
198,
6738,
299,
2528,
74,
13,
30001,
1096,
1330,
1573,
62,
30001,
1096,
198,
11748,
640,
198,
11748,
25064,
198,
11748,
28686,
198,
11748,
10088,
198,
198,
11748,
662,
36948,
13,
11250,
355,
4566,
198,
11748,
662,
36948,
13,
22602,
355,
7736,
628,
198,
2,
16926,
46,
12233,
428,
530,
11,
645,
2392,
779,
12853,
1201,
612,
318,
1194,
530,
326,
635,
17105,
262,
12333,
198,
4299,
11241,
1096,
62,
79,
62,
68,
62,
76,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
11241,
4340,
262,
3068,
286,
262,
279,
7,
68,
91,
76,
8,
22155,
523,
326,
340,
318,
6414,
351,
674,
198,
220,
220,
220,
11241,
1143,
35789,
357,
11,
15089,
6,
477,
777,
14354,
4553,
422,
262,
2180,
1573,
351,
13216,
10223,
8,
198,
220,
220,
220,
340,
691,
953,
6945,
262,
3068,
290,
2147,
2073,
13,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
1640,
8633,
62,
7753,
287,
14631,
1676,
65,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
1600,
366,
1676,
65,
62,
88,
3839,
62,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
1600,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1676,
65,
62,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
1,
5974,
198,
220,
220,
220,
329,
8633,
62,
7753,
287,
14631,
1676,
65,
62,
88,
3839,
62,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
11250,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
30487,
10,
11600,
62,
7753,
8,
355,
957,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1280,
7,
11250,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
30487,
1343,
366,
30001,
1143,
30487,
10,
11600,
62,
7753,
11,
366,
86,
4943,
355,
277,
448,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
814,
62,
66,
429,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
957,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3068,
11,
1334,
796,
1627,
13,
35312,
10786,
59,
83,
3256,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
434,
295,
13,
35312,
28955,
1875,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11241,
1143,
62,
434,
295,
796,
705,
45302,
22179,
7,
4775,
62,
30001,
1096,
7,
434,
295,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11241,
1143,
62,
434,
295,
796,
3068,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3068,
14512,
11241,
1143,
62,
434,
295,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
814,
62,
66,
429,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
434,
295,
11,
366,
220,
24200,
29,
220,
33172,
11241,
1143,
62,
434,
295,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
448,
13,
13564,
7,
30001,
1143,
62,
434,
295,
1343,
37082,
83,
1,
1343,
1334,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
11600,
62,
7753,
11,
366,
26069,
62,
66,
429,
796,
33172,
814,
62,
66,
429,
8,
628,
198,
198,
4299,
11241,
1096,
62,
79,
62,
68,
62,
76,
62,
392,
62,
647,
469,
62,
10414,
42267,
7,
34345,
11,
331,
3839,
28,
25101,
2599,
198,
220,
220,
220,
37227,
83,
1124,
355,
5128,
257,
279,
62,
68,
62,
76,
351,
4112,
8373,
11,
11241,
4340,
262,
3068,
11,
17105,
12333,
198,
220,
220,
220,
357,
31642,
3068,
706,
11241,
1634,
8,
351,
35981,
13,
12260,
326,
319,
22719,
11,
3272,
15466,
11,
331,
3839,
198,
220,
220,
220,
4112,
8373,
3696,
4613,
5072,
757,
4112,
8373,
526,
15931,
198,
220,
220,
220,
279,
62,
68,
62,
76,
796,
4277,
11600,
7,
50033,
25,
4277,
11600,
7,
600,
4008,
198,
220,
220,
220,
351,
1280,
7,
11250,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
30487,
10,
34345,
8,
355,
957,
25,
198,
220,
220,
220,
220,
220,
220,
220,
814,
62,
66,
429,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
12333,
62,
66,
429,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
957,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
81,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
796,
1627,
13,
35312,
7203,
59,
83,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3068,
796,
300,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11241,
1143,
62,
434,
295,
796,
705,
45302,
22179,
7,
4775,
62,
30001,
1096,
7,
434,
295,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3068,
14512,
11241,
1143,
62,
434,
295,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
814,
62,
66,
429,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
11241,
1143,
62,
434,
295,
287,
279,
62,
68,
62,
76,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12333,
62,
66,
429,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
434,
295,
11,
366,
220,
24200,
29,
220,
33172,
11241,
1143,
62,
434,
295,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
304,
287,
300,
58,
17,
25,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
331,
3839,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
11,
4808,
796,
304,
13,
35312,
7,
3256,
3256,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
796,
920,
62,
312,
13,
36311,
3419,
220,
220,
1303,
407,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2030,
80,
796,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
11,
2030,
80,
11,
4808,
796,
304,
13,
35312,
7,
3256,
3256,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
796,
920,
62,
312,
13,
36311,
3419,
220,
220,
1303,
407,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2030,
80,
796,
493,
7,
19503,
80,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
62,
68,
62,
76,
58,
30001,
1143,
62,
434,
295,
7131,
298,
62,
312,
60,
15853,
2030,
80,
628,
220,
220,
220,
3601,
7203,
10414,
42267,
422,
11241,
1634,
3753,
25,
33172,
12333,
62,
66,
429,
8,
198,
220,
220,
220,
3601,
62,
79,
62,
68,
62,
76,
62,
67,
14188,
62,
1462,
62,
7753,
7,
79,
62,
68,
62,
76,
11,
4566,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
14,
30001,
1143,
30487,
10,
34345,
8,
628,
198,
198,
4299,
20121,
62,
11545,
62,
1676,
65,
62,
67,
2867,
3166,
7,
34345,
16,
11,
29472,
17,
11,
649,
34345,
2599,
198,
220,
220,
220,
37227,
647,
469,
734,
279,
62,
68,
62,
76,
48589,
3166,
326,
389,
1541,
287,
39522,
284,
257,
649,
530,
757,
198,
220,
220,
220,
351,
39522,
526,
15931,
198,
220,
220,
220,
279,
62,
68,
62,
76,
796,
4277,
11600,
7,
50033,
25,
4277,
11600,
7,
22468,
4008,
198,
220,
220,
220,
329,
29472,
287,
685,
34345,
16,
11,
29472,
17,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
11250,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
14,
30001,
1143,
30487,
10,
34345,
8,
355,
957,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
957,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
81,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
300,
796,
1627,
13,
35312,
7203,
59,
83,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3068,
796,
300,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
304,
287,
300,
58,
17,
25,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
11,
1861,
11,
4808,
796,
304,
13,
35312,
7,
3256,
3256,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
920,
62,
312,
796,
920,
62,
312,
13,
36311,
3419,
220,
220,
1303,
407,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1861,
796,
12178,
7,
1676,
65,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
79,
62,
68,
62,
76,
58,
434,
295,
7131,
298,
62,
312,
60,
796,
949,
7,
16,
11,
279,
62,
68,
62,
76,
58,
434,
295,
7131,
298,
62,
312,
60,
1343,
1861,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
62,
68,
62,
76,
58,
434,
295,
7131,
298,
62,
312,
60,
796,
279,
62,
68,
62,
76,
58,
434,
295,
7131,
298,
62,
312,
60,
1343,
1861,
220,
220,
1303,
1231,
949,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
772,
1231,
28267,
340,
991,
262,
2837,
286,
3815,
318,
685,
15,
11,
17,
60,
628,
220,
220,
220,
3601,
62,
79,
62,
68,
62,
76,
62,
67,
14188,
62,
1462,
62,
7753,
7,
79,
62,
68,
62,
76,
11,
4566,
13,
8692,
62,
43551,
10,
1,
7890,
14,
79,
62,
68,
62,
76,
14,
30001,
1143,
30487,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
649,
34345,
8,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
11241,
1096,
62,
79,
62,
68,
62,
76,
3419,
628,
220,
220,
220,
1303,
30001,
1096,
62,
79,
62,
68,
62,
76,
62,
392,
62,
647,
469,
62,
10414,
42267,
7203,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
198,
220,
220,
220,
1303,
30001,
1096,
62,
79,
62,
68,
62,
76,
62,
392,
62,
647,
469,
62,
10414,
42267,
7203,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
198,
220,
220,
220,
1303,
30001,
1096,
62,
79,
62,
68,
62,
76,
62,
392,
62,
647,
469,
62,
10414,
42267,
7203,
88,
3839,
62,
79,
62,
68,
62,
76,
13,
14116,
1600,
331,
3839,
28,
17821,
8,
628,
220,
220,
220,
1303,
6738,
62,
19503,
80,
62,
1462,
62,
1676,
65,
7203,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
198,
220,
220,
220,
1303,
6738,
62,
19503,
80,
62,
1462,
62,
1676,
65,
7203,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
198,
220,
220,
220,
1303,
6738,
62,
19503,
80,
62,
1462,
62,
1676,
65,
7203,
88,
3839,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
20121,
62,
11545,
62,
1676,
65,
62,
67,
2867,
3166,
7203,
1676,
65,
62,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1676,
65,
62,
88,
3839,
62,
79,
62,
68,
62,
76,
13,
14116,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1676,
65,
62,
88,
3839,
62,
19692,
20763,
271,
62,
31266,
62,
79,
62,
68,
62,
76,
13,
14116,
4943,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
25818,
62,
9127,
62,
15466,
3419,
198,
220,
220,
220,
1303,
9312,
62,
9127,
62,
15466,
3419,
198,
220,
220,
220,
1303,
3440,
62,
79,
62,
68,
62,
76,
3419,
198,
220,
220,
220,
1303,
422,
62,
19503,
80,
62,
1462,
62,
1676,
65,
3419,
198
] | 2.009615 | 2,392 |
import logging
import os
import random
import signal
import subprocess
import time
from parsl.executors.errors import *
from parsl.utils import RepresentationMixin
logger = logging.getLogger(__name__)
class Controller(RepresentationMixin):
"""Start and maintain a IPythonParallel controller.
Parameters
----------
public_ip : str, optional
Specific IP address of the controller, as seen from the engines. If `None`, an attempt will
be made to guess the correct value. Default is None.
interfaces : str, optional
Interfaces for ZeroMQ to listen on. Default is "*".
port : int or str, optional
Port on which the iPython hub listens for registration. If set to `None`, the IPython default will be used. Default
is None.
port_range : str, optional
The minimum and maximum port values to use, in the format '<min>,<max>' (for example: '50000,60000').
If this does not equal None, random ports in `port_range` will be selected for all HubFactory listening services.
This option overrides the port setting value for registration.
reuse : bool, optional
Reuse an existing controller.
ipython_dir : str, optional
IPython directory for IPythonParallel to store config files. This will be overriden by the auto controller
start. Default is "~/.ipython".
profile : str, optional
Path to an IPython profile to use. Default is 'default'.
mode : str, optional
If "auto", controller will be created and managed automatically. If "manual" the controller
is assumed to be created by the user. Default is auto.
"""
def start(self):
"""Start the controller."""
if self.mode == "manual":
return
if self.ipython_dir is not '~/.ipython':
self.ipython_dir = os.path.abspath(os.path.expanduser(self.ipython_dir))
if self.log:
stdout = open(os.path.join(self.ipython_dir, "{0}.controller.out".format(self.profile)), 'w')
stderr = open(os.path.join(self.ipython_dir, "{0}.controller.err".format(self.profile)), 'w')
else:
stdout = open(os.devnull, 'w')
stderr = open(os.devnull, 'w')
try:
opts = [
'ipcontroller',
'' if self.ipython_dir is '~/.ipython' else '--ipython-dir={}'.format(self.ipython_dir),
self.interfaces if self.interfaces is not None else '--ip=*',
'' if self.profile is 'default' else '--profile={0}'.format(self.profile),
'--reuse' if self.reuse else '',
'--location={}'.format(self.public_ip) if self.public_ip else '',
'--port={}'.format(self.port) if self.port is not None else ''
]
if self.port_range is not None:
opts += [
'--HubFactory.hb={0},{1}'.format(self.hb_ping, self.hb_pong),
'--HubFactory.control={0},{1}'.format(self.control_client, self.control_engine),
'--HubFactory.mux={0},{1}'.format(self.mux_client, self.mux_engine),
'--HubFactory.task={0},{1}'.format(self.task_client, self.task_engine)
]
logger.debug("Starting ipcontroller with '{}'".format(' '.join([str(x) for x in opts])))
self.proc = subprocess.Popen(opts, stdout=stdout, stderr=stderr, preexec_fn=os.setsid)
except FileNotFoundError:
msg = "Could not find ipcontroller. Please make sure that ipyparallel is installed and available in your env"
logger.error(msg)
raise ControllerError(msg)
except Exception as e:
msg = "IPPController failed to start: {0}".format(e)
logger.error(msg)
raise ControllerError(msg)
@property
def engine_file(self):
"""Specify path to the ipcontroller-engine.json file.
This file is stored in in the ipython_dir/profile folders.
Returns :
- str, File path to engine file
"""
return os.path.join(self.ipython_dir,
'profile_{0}'.format(self.profile),
'security/ipcontroller-engine.json')
@property
def client_file(self):
"""Specify path to the ipcontroller-client.json file.
This file is stored in in the ipython_dir/profile folders.
Returns :
- str, File path to client file
"""
return os.path.join(self.ipython_dir,
'profile_{0}'.format(self.profile),
'security/ipcontroller-client.json')
def close(self):
"""Terminate the controller process and its child processes.
Args:
- None
"""
if self.reuse:
logger.debug("Ipcontroller not shutting down: reuse enabled")
return
if self.mode == "manual":
logger.debug("Ipcontroller not shutting down: Manual mode")
return
try:
pgid = os.getpgid(self.proc.pid)
os.killpg(pgid, signal.SIGTERM)
time.sleep(0.2)
os.killpg(pgid, signal.SIGKILL)
try:
self.proc.wait(timeout=1)
x = self.proc.returncode
if x == 0:
logger.debug("Controller exited with {0}".format(x))
else:
logger.error("Controller exited with {0}. May require manual cleanup".format(x))
except subprocess.TimeoutExpired:
logger.warn("Ipcontroller process:{0} cleanup failed. May require manual cleanup".format(self.proc.pid))
except Exception as e:
logger.warn("Failed to kill the ipcontroller process[{0}]: {1}".format(self.proc.pid, e))
| [
11748,
18931,
198,
11748,
28686,
198,
11748,
4738,
198,
11748,
6737,
198,
11748,
850,
14681,
198,
11748,
640,
198,
198,
6738,
13544,
75,
13,
18558,
315,
669,
13,
48277,
1330,
1635,
198,
6738,
13544,
75,
13,
26791,
1330,
10858,
341,
35608,
259,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
22741,
7,
40171,
341,
35608,
259,
2599,
198,
220,
220,
220,
37227,
10434,
290,
5529,
257,
6101,
7535,
10044,
29363,
10444,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
628,
220,
220,
220,
1171,
62,
541,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
17377,
6101,
2209,
286,
262,
10444,
11,
355,
1775,
422,
262,
11874,
13,
1002,
4600,
14202,
47671,
281,
2230,
481,
198,
220,
220,
220,
220,
220,
220,
220,
307,
925,
284,
4724,
262,
3376,
1988,
13,
15161,
318,
6045,
13,
198,
220,
220,
220,
20314,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
4225,
32186,
329,
12169,
49215,
284,
6004,
319,
13,
15161,
318,
366,
9,
1911,
198,
220,
220,
220,
2493,
1058,
493,
393,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
4347,
319,
543,
262,
9736,
7535,
12575,
35019,
329,
9352,
13,
1002,
900,
284,
4600,
14202,
47671,
262,
6101,
7535,
4277,
481,
307,
973,
13,
15161,
198,
220,
220,
220,
220,
220,
220,
220,
318,
6045,
13,
198,
220,
220,
220,
2493,
62,
9521,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
383,
5288,
290,
5415,
2493,
3815,
284,
779,
11,
287,
262,
5794,
705,
27,
1084,
22330,
27,
9806,
29,
6,
357,
1640,
1672,
25,
705,
20,
2388,
11,
21,
2388,
27691,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
428,
857,
407,
4961,
6045,
11,
4738,
14090,
287,
4600,
634,
62,
9521,
63,
481,
307,
6163,
329,
477,
14699,
22810,
8680,
2594,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
3038,
23170,
1460,
262,
2493,
4634,
1988,
329,
9352,
13,
198,
220,
220,
220,
32349,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
797,
1904,
281,
4683,
10444,
13,
198,
220,
220,
220,
20966,
7535,
62,
15908,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
6101,
7535,
8619,
329,
6101,
7535,
10044,
29363,
284,
3650,
4566,
3696,
13,
770,
481,
307,
625,
6058,
268,
416,
262,
8295,
10444,
198,
220,
220,
220,
220,
220,
220,
220,
923,
13,
15161,
318,
366,
93,
11757,
541,
7535,
1911,
198,
220,
220,
220,
7034,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
281,
6101,
7535,
7034,
284,
779,
13,
15161,
318,
705,
12286,
4458,
198,
220,
220,
220,
4235,
1058,
965,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
366,
23736,
1600,
10444,
481,
307,
2727,
290,
5257,
6338,
13,
1002,
366,
805,
723,
1,
262,
10444,
198,
220,
220,
220,
220,
220,
220,
220,
318,
9672,
284,
307,
2727,
416,
262,
2836,
13,
15161,
318,
8295,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
923,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10434,
262,
10444,
526,
15931,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
14171,
6624,
366,
805,
723,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
541,
7535,
62,
15908,
318,
407,
705,
93,
11757,
541,
7535,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
541,
7535,
62,
15908,
796,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
11201,
392,
7220,
7,
944,
13,
541,
7535,
62,
15908,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
6404,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
796,
1280,
7,
418,
13,
6978,
13,
22179,
7,
944,
13,
541,
7535,
62,
15908,
11,
45144,
15,
27422,
36500,
13,
448,
1911,
18982,
7,
944,
13,
13317,
36911,
705,
86,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
336,
1082,
81,
796,
1280,
7,
418,
13,
6978,
13,
22179,
7,
944,
13,
541,
7535,
62,
15908,
11,
45144,
15,
27422,
36500,
13,
8056,
1911,
18982,
7,
944,
13,
13317,
36911,
705,
86,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14367,
448,
796,
1280,
7,
418,
13,
7959,
8423,
11,
705,
86,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
336,
1082,
81,
796,
1280,
7,
418,
13,
7959,
8423,
11,
705,
86,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
541,
36500,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10148,
611,
2116,
13,
541,
7535,
62,
15908,
318,
705,
93,
11757,
541,
7535,
6,
2073,
705,
438,
541,
7535,
12,
15908,
34758,
92,
4458,
18982,
7,
944,
13,
541,
7535,
62,
15908,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3849,
32186,
611,
2116,
13,
3849,
32186,
318,
407,
6045,
2073,
705,
438,
541,
28,
9,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10148,
611,
2116,
13,
13317,
318,
705,
12286,
6,
2073,
705,
438,
13317,
34758,
15,
92,
4458,
18982,
7,
944,
13,
13317,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
260,
1904,
6,
611,
2116,
13,
260,
1904,
2073,
705,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
24886,
34758,
92,
4458,
18982,
7,
944,
13,
11377,
62,
541,
8,
611,
2116,
13,
11377,
62,
541,
2073,
705,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
634,
34758,
92,
4458,
18982,
7,
944,
13,
634,
8,
611,
2116,
13,
634,
318,
407,
6045,
2073,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
634,
62,
9521,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
15853,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
16066,
22810,
13,
71,
65,
34758,
15,
5512,
90,
16,
92,
4458,
18982,
7,
944,
13,
71,
65,
62,
13886,
11,
2116,
13,
71,
65,
62,
79,
506,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
16066,
22810,
13,
13716,
34758,
15,
5512,
90,
16,
92,
4458,
18982,
7,
944,
13,
13716,
62,
16366,
11,
2116,
13,
13716,
62,
18392,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
16066,
22810,
13,
76,
2821,
34758,
15,
5512,
90,
16,
92,
4458,
18982,
7,
944,
13,
76,
2821,
62,
16366,
11,
2116,
13,
76,
2821,
62,
18392,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
16066,
22810,
13,
35943,
34758,
15,
5512,
90,
16,
92,
4458,
18982,
7,
944,
13,
35943,
62,
16366,
11,
2116,
13,
35943,
62,
18392,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
22851,
20966,
36500,
351,
705,
90,
92,
6,
1911,
18982,
10786,
45302,
22179,
26933,
2536,
7,
87,
8,
329,
2124,
287,
2172,
82,
60,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36942,
796,
850,
14681,
13,
47,
9654,
7,
404,
912,
11,
14367,
448,
28,
19282,
448,
11,
336,
1082,
81,
28,
301,
1082,
81,
11,
47488,
87,
721,
62,
22184,
28,
418,
13,
28709,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
9220,
3673,
21077,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
23722,
407,
1064,
20966,
36500,
13,
4222,
787,
1654,
326,
20966,
88,
1845,
29363,
318,
6589,
290,
1695,
287,
534,
17365,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7,
19662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
22741,
12331,
7,
19662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
31444,
22130,
4054,
284,
923,
25,
1391,
15,
92,
1911,
18982,
7,
68,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7,
19662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
22741,
12331,
7,
19662,
8,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
3113,
62,
7753,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
22882,
1958,
3108,
284,
262,
20966,
36500,
12,
18392,
13,
17752,
2393,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2393,
318,
8574,
287,
287,
262,
20966,
7535,
62,
15908,
14,
13317,
24512,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
965,
11,
9220,
3108,
284,
3113,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
28686,
13,
6978,
13,
22179,
7,
944,
13,
541,
7535,
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,
705,
13317,
23330,
15,
92,
4458,
18982,
7,
944,
13,
13317,
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,
705,
12961,
14,
541,
36500,
12,
18392,
13,
17752,
11537,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
5456,
62,
7753,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
22882,
1958,
3108,
284,
262,
20966,
36500,
12,
16366,
13,
17752,
2393,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
2393,
318,
8574,
287,
287,
262,
20966,
7535,
62,
15908,
14,
13317,
24512,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
965,
11,
9220,
3108,
284,
5456,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
28686,
13,
6978,
13,
22179,
7,
944,
13,
541,
7535,
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,
705,
13317,
23330,
15,
92,
4458,
18982,
7,
944,
13,
13317,
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,
705,
12961,
14,
541,
36500,
12,
16366,
13,
17752,
11537,
628,
220,
220,
220,
825,
1969,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
44798,
378,
262,
10444,
1429,
290,
663,
1200,
7767,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
532,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
260,
1904,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
40,
79,
36500,
407,
25136,
866,
25,
32349,
9343,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
14171,
6624,
366,
805,
723,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
40,
79,
36500,
407,
25136,
866,
25,
17969,
4235,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23241,
312,
796,
28686,
13,
1136,
6024,
312,
7,
944,
13,
36942,
13,
35317,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
12728,
6024,
7,
6024,
312,
11,
6737,
13,
50,
3528,
5781,
44,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
640,
13,
42832,
7,
15,
13,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
12728,
6024,
7,
6024,
312,
11,
6737,
13,
50,
3528,
42,
8267,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
36942,
13,
17077,
7,
48678,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
2116,
13,
36942,
13,
7783,
8189,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2124,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
24442,
7203,
22130,
34710,
351,
1391,
15,
92,
1911,
18982,
7,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
18224,
7203,
22130,
34710,
351,
1391,
15,
27422,
1737,
2421,
10107,
27425,
1911,
18982,
7,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
850,
14681,
13,
48031,
3109,
6474,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40539,
7203,
40,
79,
36500,
1429,
29164,
15,
92,
27425,
4054,
13,
1737,
2421,
10107,
27425,
1911,
18982,
7,
944,
13,
36942,
13,
35317,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
40539,
7203,
37,
6255,
284,
1494,
262,
20966,
36500,
1429,
58,
90,
15,
92,
5974,
1391,
16,
92,
1911,
18982,
7,
944,
13,
36942,
13,
35317,
11,
304,
4008,
198
] | 2.270866 | 2,588 |
from clld.web.assets import environment
from clldutils.path import Path
import lexirumah
environment.append_path(
Path(lexirumah.__file__).parent.joinpath('static').as_posix(), url='/lexirumah:static/')
environment.load_path = list(reversed(environment.load_path))
| [
6738,
269,
297,
67,
13,
12384,
13,
19668,
1330,
2858,
198,
6738,
269,
297,
67,
26791,
13,
6978,
1330,
10644,
198,
198,
11748,
31191,
343,
388,
993,
628,
198,
38986,
13,
33295,
62,
6978,
7,
198,
220,
220,
220,
10644,
7,
2588,
343,
388,
993,
13,
834,
7753,
834,
737,
8000,
13,
22179,
6978,
10786,
12708,
27691,
292,
62,
1930,
844,
22784,
19016,
11639,
14,
2588,
343,
388,
993,
25,
12708,
14,
11537,
198,
38986,
13,
2220,
62,
6978,
796,
1351,
7,
260,
690,
276,
7,
38986,
13,
2220,
62,
6978,
4008,
198
] | 2.924731 | 93 |
# -*- coding: utf-8 -*-
"""WEASEL+MUSE classifier.
multivariate dictionary based classifier based on SFA transform, dictionaries
and logistic regression.
"""
__author__ = ["patrickzib", "BINAYKUMAR943"]
__all__ = ["MUSE"]
import math
import warnings
import numpy as np
from numba import njit
from sklearn.feature_extraction import DictVectorizer
from sklearn.feature_selection import chi2
from sklearn.linear_model import LogisticRegression
from sklearn.pipeline import make_pipeline
from sklearn.utils import check_random_state
from sktime.classification.base import BaseClassifier
from sktime.datatypes._panel._convert import from_nested_to_3d_numpy
from sktime.transformations.panel.dictionary_based import SFA
class MUSE(BaseClassifier):
"""MUSE (MUltivariate Symbolic Extension).
Also known as WEASLE-MUSE: implementation of multivariate version of WEASEL,
referred to as just MUSE from [1].
Overview: Input n series length m
WEASEL+MUSE is a multivariate dictionary classifier that builds a
bag-of-patterns using SFA for different window lengths and learns a
logistic regression classifier on this bag.
There are these primary parameters:
alphabet_size: alphabet size
chi2-threshold: used for feature selection to select best words
anova: select best l/2 fourier coefficients other than first ones
bigrams: using bigrams of SFA words
binning_strategy: the binning strategy used to disctrtize into
SFA words.
Parameters
----------
anova: boolean, default=True
If True, the Fourier coefficient selection is done via a one-way
ANOVA test. If False, the first Fourier coefficients are selected.
Only applicable if labels are given
bigrams: boolean, default=True
whether to create bigrams of SFA words
window_inc: int, default=4
WEASEL create a BoP model for each window sizes. This is the
increment used to determine the next window size.
p_threshold: int, default=0.05 (disabled by default)
Feature selection is applied based on the chi-squared test.
This is the p-value threshold to use for chi-squared test on bag-of-words
(lower means more strict). 1 indicates that the test
should not be performed.
use_first_order_differences: boolean, default=True
If set to True will add the first order differences of each dimension
to the data.
random_state: int or None, default=None
Seed for random, integer
Attributes
----------
n_classes_ : int
The number of classes.
classes_ : list
The classes labels.
See Also
--------
WEASEL
References
----------
.. [1] Patrick Schäfer and Ulf Leser, "Multivariate time series classification
with WEASEL+MUSE", in proc 3rd ECML/PKDD Workshop on AALTD}, 2018
https://arxiv.org/abs/1711.11343
Notes
-----
For the Java version, see
`MUSE <https://github.com/uea-machine-learning/tsml/blob/master/src/main/java/tsml/
classifiers/multivariate/WEASEL_MUSE.java>`_.
Examples
--------
>>> from sktime.classification.dictionary_based import MUSE
>>> from sktime.datasets import load_unit_test
>>> X_train, y_train = load_unit_test(split="train", return_X_y=True)
>>> X_test, y_test = load_unit_test(split="test", return_X_y=True)
>>> clf = MUSE(window_inc=4, use_first_order_differences=False)
>>> clf.fit(X_train, y_train)
MUSE(...)
>>> y_pred = clf.predict(X_test)
"""
_tags = {
"capability:multivariate": True,
"capability:multithreading": True,
"coerce-X-to-numpy": False,
"coerce-X-to-pandas": True,
}
def _fit(self, X, y):
"""Build a WEASEL+MUSE classifiers from the training set (X, y).
Parameters
----------
X : nested pandas DataFrame of shape [n_instances, 1]
Nested dataframe with univariate time-series in cells.
y : array-like, shape = [n_instances]
The class labels.
Returns
-------
self :
Reference to self.
"""
y = np.asarray(y)
# add first order differences in each dimension to TS
if self.use_first_order_differences:
X = self._add_first_order_differences(X)
# Window length parameter space dependent on series length
self.col_names = X.columns
rng = check_random_state(self.random_state)
self.n_dims = len(self.col_names)
self.highest_dim_bit = (math.ceil(math.log2(self.n_dims))) + 1
self.highest_bits = np.zeros(self.n_dims)
if self.n_dims == 1:
warnings.warn(
"MUSE Warning: Input series is univariate; MUSE is designed for"
+ " multivariate series. It is recommended WEASEL is used instead."
)
self.SFA_transformers = [[] for _ in range(self.n_dims)]
# the words of all dimensions and all time series
all_words = [dict() for _ in range(X.shape[0])]
# On each dimension, perform SFA
for ind, column in enumerate(self.col_names):
X_dim = X[[column]]
X_dim = from_nested_to_3d_numpy(X_dim)
series_length = X_dim.shape[-1] # TODO compute minimum over all ts ?
# increment window size in steps of 'win_inc'
win_inc = self._compute_window_inc(series_length)
self.max_window = int(min(series_length, self.max_window))
if self.min_window > self.max_window:
raise ValueError(
f"Error in MUSE, min_window ="
f"{self.min_window} is bigger"
f" than max_window ={self.max_window}."
f" Try set min_window to be smaller than series length in "
f"the constructor, but the classifier may not work at "
f"all with very short series"
)
self.window_sizes.append(
list(range(self.min_window, self.max_window, win_inc))
)
self.highest_bits[ind] = math.ceil(math.log2(self.max_window)) + 1
for window_size in self.window_sizes[ind]:
transformer = SFA(
word_length=rng.choice(self.word_lengths),
alphabet_size=self.alphabet_size,
window_size=window_size,
norm=rng.choice(self.norm_options),
anova=self.anova,
binning_method=rng.choice(self.binning_strategies),
bigrams=self.bigrams,
remove_repeat_words=False,
lower_bounding=False,
save_words=False,
n_jobs=self._threads_to_use,
)
sfa_words = transformer.fit_transform(X_dim, y)
self.SFA_transformers[ind].append(transformer)
bag = sfa_words[0]
# chi-squared test to keep only relevant features
relevant_features = {}
apply_chi_squared = self.p_threshold < 1
if apply_chi_squared:
vectorizer = DictVectorizer(sparse=True, dtype=np.int32, sort=False)
bag_vec = vectorizer.fit_transform(bag)
chi2_statistics, p = chi2(bag_vec, y)
relevant_features_idx = np.where(p <= self.p_threshold)[0]
relevant_features = set(
np.array(vectorizer.feature_names_)[relevant_features_idx]
)
# merging bag-of-patterns of different window_sizes
# to single bag-of-patterns with prefix indicating
# the used window-length
highest = np.int32(self.highest_bits[ind])
for j in range(len(bag)):
for (key, value) in bag[j].items():
# chi-squared test
if (not apply_chi_squared) or (key in relevant_features):
# append the prefices to the words to
# distinguish between window-sizes
word = MUSE._shift_left(
key, highest, ind, self.highest_dim_bit, window_size
)
all_words[j][word] = value
self.clf = make_pipeline(
DictVectorizer(sparse=True, sort=False),
# StandardScaler(with_mean=True, copy=False),
LogisticRegression(
max_iter=5000,
solver="liblinear",
dual=True,
# class_weight="balanced",
penalty="l2",
random_state=self.random_state,
n_jobs=self._threads_to_use,
),
)
self.clf.fit(all_words, y)
return self
def _predict(self, X):
"""Predict class values of n instances in X.
Parameters
----------
X : nested pandas DataFrame of shape [n_instances, 1]
Nested dataframe with univariate time-series in cells.
Returns
-------
y : array-like, shape = [n_instances]
Predicted class labels.
"""
bag = self._transform_words(X)
return self.clf.predict(bag)
def _predict_proba(self, X):
"""Predict class probabilities for n instances in X.
Parameters
----------
X : nested pandas DataFrame of shape [n_instances, 1]
Nested dataframe with univariate time-series in cells.
Returns
-------
y : array-like, shape = [n_instances, n_classes_]
Predicted probabilities using the ordering in classes_.
"""
bag = self._transform_words(X)
return self.clf.predict_proba(bag)
@staticmethod
@njit(fastmath=True, cache=True)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
8845,
1921,
3698,
10,
44,
19108,
1398,
7483,
13,
198,
198,
16680,
42524,
22155,
1912,
1398,
7483,
1912,
319,
311,
7708,
6121,
11,
48589,
3166,
198,
392,
2604,
2569,
20683,
13,
198,
37811,
198,
198,
834,
9800,
834,
796,
14631,
29615,
89,
571,
1600,
366,
33,
1268,
4792,
42,
5883,
1503,
24,
3559,
8973,
198,
834,
439,
834,
796,
14631,
44,
19108,
8973,
198,
198,
11748,
10688,
198,
11748,
14601,
198,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
997,
7012,
1330,
299,
45051,
198,
6738,
1341,
35720,
13,
30053,
62,
2302,
7861,
1330,
360,
713,
38469,
7509,
198,
6738,
1341,
35720,
13,
30053,
62,
49283,
1330,
33166,
17,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
5972,
2569,
8081,
2234,
198,
6738,
1341,
35720,
13,
79,
541,
4470,
1330,
787,
62,
79,
541,
4470,
198,
6738,
1341,
35720,
13,
26791,
1330,
2198,
62,
25120,
62,
5219,
198,
198,
6738,
1341,
2435,
13,
4871,
2649,
13,
8692,
1330,
7308,
9487,
7483,
198,
6738,
1341,
2435,
13,
19608,
265,
9497,
13557,
35330,
13557,
1102,
1851,
1330,
422,
62,
77,
7287,
62,
1462,
62,
18,
67,
62,
77,
32152,
198,
6738,
1341,
2435,
13,
35636,
602,
13,
35330,
13,
67,
14188,
62,
3106,
1330,
311,
7708,
628,
198,
4871,
337,
19108,
7,
14881,
9487,
7483,
2599,
198,
220,
220,
220,
37227,
44,
19108,
357,
44,
16301,
42524,
41327,
4160,
27995,
737,
628,
220,
220,
220,
4418,
1900,
355,
12887,
1921,
2538,
12,
44,
19108,
25,
7822,
286,
1963,
42524,
2196,
286,
12887,
1921,
3698,
11,
198,
220,
220,
220,
6412,
284,
355,
655,
337,
19108,
422,
685,
16,
4083,
628,
220,
220,
220,
28578,
25,
23412,
299,
2168,
4129,
285,
198,
220,
220,
220,
220,
12887,
1921,
3698,
10,
44,
19108,
318,
257,
1963,
42524,
220,
22155,
1398,
7483,
326,
12188,
257,
198,
220,
220,
220,
220,
6131,
12,
1659,
12,
33279,
82,
1262,
311,
7708,
329,
1180,
4324,
20428,
290,
22974,
257,
198,
220,
220,
220,
220,
2604,
2569,
20683,
1398,
7483,
319,
428,
6131,
13,
628,
220,
220,
220,
220,
1318,
389,
777,
4165,
10007,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24830,
62,
7857,
25,
24830,
2546,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33166,
17,
12,
400,
10126,
25,
973,
329,
3895,
6356,
284,
2922,
1266,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
10071,
25,
2922,
1266,
300,
14,
17,
46287,
5277,
44036,
584,
621,
717,
3392,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1263,
9474,
25,
1262,
1263,
9474,
286,
311,
7708,
2456,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9874,
768,
62,
2536,
4338,
25,
262,
9874,
768,
4811,
973,
284,
595,
310,
17034,
1096,
656,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
311,
7708,
2456,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
281,
10071,
25,
25131,
11,
4277,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
6407,
11,
262,
34296,
5277,
35381,
6356,
318,
1760,
2884,
257,
530,
12,
1014,
198,
220,
220,
220,
220,
220,
220,
220,
3537,
41576,
1332,
13,
1002,
10352,
11,
262,
717,
34296,
5277,
44036,
389,
6163,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5514,
9723,
611,
14722,
389,
1813,
198,
220,
220,
220,
1263,
9474,
25,
25131,
11,
4277,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1771,
284,
2251,
1263,
9474,
286,
311,
7708,
2456,
198,
220,
220,
220,
4324,
62,
1939,
25,
493,
11,
4277,
28,
19,
198,
220,
220,
220,
220,
220,
220,
220,
12887,
1921,
3698,
2251,
257,
3248,
47,
2746,
329,
1123,
4324,
10620,
13,
770,
318,
262,
198,
220,
220,
220,
220,
220,
220,
220,
18703,
973,
284,
5004,
262,
1306,
4324,
2546,
13,
198,
220,
220,
220,
220,
279,
62,
400,
10126,
25,
493,
11,
4277,
28,
15,
13,
2713,
357,
47730,
416,
4277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
27018,
6356,
318,
5625,
1912,
319,
262,
33166,
12,
16485,
1144,
1332,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
318,
262,
279,
12,
8367,
11387,
284,
779,
329,
33166,
12,
16485,
1144,
1332,
319,
6131,
12,
1659,
12,
10879,
198,
220,
220,
220,
220,
220,
220,
220,
357,
21037,
1724,
517,
7646,
737,
352,
9217,
326,
262,
1332,
198,
220,
220,
220,
220,
220,
220,
220,
815,
407,
307,
6157,
13,
198,
220,
220,
220,
779,
62,
11085,
62,
2875,
62,
26069,
4972,
25,
25131,
11,
4277,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
900,
284,
6407,
481,
751,
262,
717,
1502,
5400,
286,
1123,
15793,
198,
220,
220,
220,
220,
220,
220,
220,
284,
262,
1366,
13,
198,
220,
220,
220,
4738,
62,
5219,
25,
493,
393,
6045,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
23262,
329,
4738,
11,
18253,
628,
220,
220,
220,
49213,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
299,
62,
37724,
62,
1058,
493,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1271,
286,
6097,
13,
198,
220,
220,
220,
6097,
62,
1058,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
383,
6097,
14722,
13,
628,
220,
220,
220,
4091,
4418,
198,
220,
220,
220,
24200,
198,
220,
220,
220,
12887,
1921,
3698,
628,
220,
220,
220,
31458,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
11485,
685,
16,
60,
9925,
3059,
11033,
2232,
290,
471,
1652,
11732,
263,
11,
366,
15205,
42524,
640,
2168,
17923,
198,
220,
220,
220,
220,
220,
220,
220,
351,
12887,
1921,
3698,
10,
44,
19108,
1600,
287,
13834,
513,
4372,
13182,
5805,
14,
40492,
16458,
26701,
319,
317,
1847,
21016,
5512,
2864,
198,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
283,
87,
452,
13,
2398,
14,
8937,
14,
1558,
1157,
13,
1157,
32118,
628,
220,
220,
220,
11822,
198,
220,
220,
220,
37404,
198,
220,
220,
220,
1114,
262,
7349,
2196,
11,
766,
198,
220,
220,
220,
4600,
44,
19108,
1279,
5450,
1378,
12567,
13,
785,
14,
518,
64,
12,
30243,
12,
40684,
14,
912,
4029,
14,
2436,
672,
14,
9866,
14,
10677,
14,
12417,
14,
12355,
14,
912,
4029,
14,
198,
220,
220,
220,
1398,
13350,
14,
16680,
42524,
14,
8845,
1921,
3698,
62,
44,
19108,
13,
12355,
29,
63,
44807,
628,
220,
220,
220,
21066,
198,
220,
220,
220,
24200,
198,
220,
220,
220,
13163,
422,
1341,
2435,
13,
4871,
2649,
13,
67,
14188,
62,
3106,
1330,
337,
19108,
198,
220,
220,
220,
13163,
422,
1341,
2435,
13,
19608,
292,
1039,
1330,
3440,
62,
20850,
62,
9288,
198,
220,
220,
220,
13163,
1395,
62,
27432,
11,
331,
62,
27432,
796,
3440,
62,
20850,
62,
9288,
7,
35312,
2625,
27432,
1600,
1441,
62,
55,
62,
88,
28,
17821,
8,
198,
220,
220,
220,
13163,
1395,
62,
9288,
11,
331,
62,
9288,
796,
3440,
62,
20850,
62,
9288,
7,
35312,
2625,
9288,
1600,
1441,
62,
55,
62,
88,
28,
17821,
8,
198,
220,
220,
220,
13163,
537,
69,
796,
337,
19108,
7,
17497,
62,
1939,
28,
19,
11,
779,
62,
11085,
62,
2875,
62,
26069,
4972,
28,
25101,
8,
198,
220,
220,
220,
13163,
537,
69,
13,
11147,
7,
55,
62,
27432,
11,
331,
62,
27432,
8,
198,
220,
220,
220,
337,
19108,
7,
23029,
198,
220,
220,
220,
13163,
331,
62,
28764,
796,
537,
69,
13,
79,
17407,
7,
55,
62,
9288,
8,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11128,
1799,
25,
16680,
42524,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11128,
1799,
25,
16680,
342,
25782,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1073,
263,
344,
12,
55,
12,
1462,
12,
77,
32152,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1073,
263,
344,
12,
55,
12,
1462,
12,
79,
392,
292,
1298,
6407,
11,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
825,
4808,
11147,
7,
944,
11,
1395,
11,
331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15580,
257,
12887,
1921,
3698,
10,
44,
19108,
1398,
13350,
422,
262,
3047,
900,
357,
55,
11,
331,
737,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
28376,
19798,
292,
6060,
19778,
286,
5485,
685,
77,
62,
8625,
1817,
11,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
399,
7287,
1366,
14535,
351,
555,
42524,
640,
12,
25076,
287,
4778,
13,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7177,
12,
2339,
11,
5485,
796,
685,
77,
62,
8625,
1817,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1398,
14722,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20984,
284,
2116,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
331,
796,
45941,
13,
292,
18747,
7,
88,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
751,
717,
1502,
5400,
287,
1123,
15793,
284,
26136,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
1904,
62,
11085,
62,
2875,
62,
26069,
4972,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
2116,
13557,
2860,
62,
11085,
62,
2875,
62,
26069,
4972,
7,
55,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
26580,
4129,
11507,
2272,
10795,
319,
2168,
4129,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4033,
62,
14933,
796,
1395,
13,
28665,
82,
628,
220,
220,
220,
220,
220,
220,
220,
374,
782,
796,
2198,
62,
25120,
62,
5219,
7,
944,
13,
25120,
62,
5219,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
77,
62,
67,
12078,
796,
18896,
7,
944,
13,
4033,
62,
14933,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
35323,
62,
27740,
62,
2545,
796,
357,
11018,
13,
344,
346,
7,
11018,
13,
6404,
17,
7,
944,
13,
77,
62,
67,
12078,
22305,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
35323,
62,
9895,
796,
45941,
13,
9107,
418,
7,
944,
13,
77,
62,
67,
12078,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
77,
62,
67,
12078,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14601,
13,
40539,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44,
19108,
15932,
25,
23412,
2168,
318,
555,
42524,
26,
337,
19108,
318,
3562,
329,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
366,
1963,
42524,
2168,
13,
632,
318,
7151,
12887,
1921,
3698,
318,
973,
2427,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
7708,
62,
35636,
364,
796,
16410,
60,
329,
4808,
287,
2837,
7,
944,
13,
77,
62,
67,
12078,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
2456,
286,
477,
15225,
290,
477,
640,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
10879,
796,
685,
11600,
3419,
329,
4808,
287,
2837,
7,
55,
13,
43358,
58,
15,
12962,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1550,
1123,
15793,
11,
1620,
311,
7708,
198,
220,
220,
220,
220,
220,
220,
220,
329,
773,
11,
5721,
287,
27056,
378,
7,
944,
13,
4033,
62,
14933,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
27740,
796,
1395,
30109,
28665,
11907,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
27740,
796,
422,
62,
77,
7287,
62,
1462,
62,
18,
67,
62,
77,
32152,
7,
55,
62,
27740,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2168,
62,
13664,
796,
1395,
62,
27740,
13,
43358,
58,
12,
16,
60,
220,
1303,
16926,
46,
24061,
5288,
625,
477,
40379,
5633,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
18703,
4324,
2546,
287,
4831,
286,
705,
5404,
62,
1939,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1592,
62,
1939,
796,
2116,
13557,
5589,
1133,
62,
17497,
62,
1939,
7,
25076,
62,
13664,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9806,
62,
17497,
796,
493,
7,
1084,
7,
25076,
62,
13664,
11,
2116,
13,
9806,
62,
17497,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
1084,
62,
17497,
1875,
2116,
13,
9806,
62,
17497,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
12331,
287,
337,
19108,
11,
949,
62,
17497,
796,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
944,
13,
1084,
62,
17497,
92,
318,
5749,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
621,
3509,
62,
17497,
796,
90,
944,
13,
9806,
62,
17497,
92,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
9993,
900,
949,
62,
17497,
284,
307,
4833,
621,
2168,
4129,
287,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
1169,
23772,
11,
475,
262,
1398,
7483,
743,
407,
670,
379,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
439,
351,
845,
1790,
2168,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17497,
62,
82,
4340,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
7,
9521,
7,
944,
13,
1084,
62,
17497,
11,
2116,
13,
9806,
62,
17497,
11,
1592,
62,
1939,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
35323,
62,
9895,
58,
521,
60,
796,
10688,
13,
344,
346,
7,
11018,
13,
6404,
17,
7,
944,
13,
9806,
62,
17497,
4008,
1343,
352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
4324,
62,
7857,
287,
2116,
13,
17497,
62,
82,
4340,
58,
521,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
796,
311,
7708,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
62,
13664,
28,
81,
782,
13,
25541,
7,
944,
13,
4775,
62,
13664,
82,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24830,
62,
7857,
28,
944,
13,
17307,
8380,
62,
7857,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4324,
62,
7857,
28,
17497,
62,
7857,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2593,
28,
81,
782,
13,
25541,
7,
944,
13,
27237,
62,
25811,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
10071,
28,
944,
13,
40993,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9874,
768,
62,
24396,
28,
81,
782,
13,
25541,
7,
944,
13,
8800,
768,
62,
2536,
2397,
444,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1263,
9474,
28,
944,
13,
14261,
9474,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4781,
62,
44754,
62,
10879,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2793,
62,
7784,
278,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
10879,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
43863,
28,
944,
13557,
16663,
82,
62,
1462,
62,
1904,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
13331,
62,
10879,
796,
47385,
13,
11147,
62,
35636,
7,
55,
62,
27740,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
7708,
62,
35636,
364,
58,
521,
4083,
33295,
7,
7645,
16354,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6131,
796,
264,
13331,
62,
10879,
58,
15,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
33166,
12,
16485,
1144,
1332,
284,
1394,
691,
5981,
3033,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5981,
62,
40890,
796,
23884,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4174,
62,
11072,
62,
16485,
1144,
796,
2116,
13,
79,
62,
400,
10126,
1279,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4174,
62,
11072,
62,
16485,
1144,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15879,
7509,
796,
360,
713,
38469,
7509,
7,
82,
29572,
28,
17821,
11,
288,
4906,
28,
37659,
13,
600,
2624,
11,
3297,
28,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6131,
62,
35138,
796,
15879,
7509,
13,
11147,
62,
35636,
7,
21454,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33166,
17,
62,
14269,
3969,
11,
279,
796,
33166,
17,
7,
21454,
62,
35138,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5981,
62,
40890,
62,
312,
87,
796,
45941,
13,
3003,
7,
79,
19841,
2116,
13,
79,
62,
400,
10126,
38381,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5981,
62,
40890,
796,
900,
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,
45941,
13,
18747,
7,
31364,
7509,
13,
30053,
62,
14933,
62,
38381,
49659,
62,
40890,
62,
312,
87,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
35981,
6131,
12,
1659,
12,
33279,
82,
286,
1180,
4324,
62,
82,
4340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
2060,
6131,
12,
1659,
12,
33279,
82,
351,
21231,
12739,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
973,
4324,
12,
13664,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4511,
796,
45941,
13,
600,
2624,
7,
944,
13,
35323,
62,
9895,
58,
521,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
474,
287,
2837,
7,
11925,
7,
21454,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
357,
2539,
11,
1988,
8,
287,
6131,
58,
73,
4083,
23814,
33529,
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,
33166,
12,
16485,
1144,
1332,
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,
357,
1662,
4174,
62,
11072,
62,
16485,
1144,
8,
393,
357,
2539,
287,
5981,
62,
40890,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
24443,
262,
7694,
1063,
284,
262,
2456,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
15714,
1022,
4324,
12,
82,
4340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1573,
796,
337,
19108,
13557,
30846,
62,
9464,
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,
220,
220,
220,
220,
220,
220,
220,
220,
1994,
11,
4511,
11,
773,
11,
2116,
13,
35323,
62,
27740,
62,
2545,
11,
4324,
62,
7857,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
477,
62,
10879,
58,
73,
7131,
4775,
60,
796,
1988,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
565,
69,
796,
787,
62,
79,
541,
4470,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
360,
713,
38469,
7509,
7,
82,
29572,
28,
17821,
11,
3297,
28,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8997,
3351,
36213,
7,
4480,
62,
32604,
28,
17821,
11,
4866,
28,
25101,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5972,
2569,
8081,
2234,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3509,
62,
2676,
28,
27641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1540,
332,
2625,
8019,
29127,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10668,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1398,
62,
6551,
2625,
27753,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7389,
2625,
75,
17,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
944,
13,
25120,
62,
5219,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
62,
43863,
28,
944,
13557,
16663,
82,
62,
1462,
62,
1904,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
565,
69,
13,
11147,
7,
439,
62,
10879,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
825,
4808,
79,
17407,
7,
944,
11,
1395,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
47,
17407,
1398,
3815,
286,
299,
10245,
287,
1395,
13,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
28376,
19798,
292,
6060,
19778,
286,
5485,
685,
77,
62,
8625,
1817,
11,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
399,
7287,
1366,
14535,
351,
555,
42524,
640,
12,
25076,
287,
4778,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7177,
12,
2339,
11,
5485,
796,
685,
77,
62,
8625,
1817,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14322,
5722,
1398,
14722,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6131,
796,
2116,
13557,
35636,
62,
10879,
7,
55,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
565,
69,
13,
79,
17407,
7,
21454,
8,
628,
220,
220,
220,
825,
4808,
79,
17407,
62,
1676,
7012,
7,
944,
11,
1395,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
47,
17407,
1398,
39522,
329,
299,
10245,
287,
1395,
13,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
28376,
19798,
292,
6060,
19778,
286,
5485,
685,
77,
62,
8625,
1817,
11,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
399,
7287,
1366,
14535,
351,
555,
42524,
640,
12,
25076,
287,
4778,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7177,
12,
2339,
11,
5485,
796,
685,
77,
62,
8625,
1817,
11,
299,
62,
37724,
62,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14322,
5722,
39522,
1262,
262,
16216,
287,
6097,
44807,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6131,
796,
2116,
13557,
35636,
62,
10879,
7,
55,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
565,
69,
13,
79,
17407,
62,
1676,
7012,
7,
21454,
8,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
2488,
77,
45051,
7,
7217,
11018,
28,
17821,
11,
12940,
28,
17821,
8,
198
] | 2.17352 | 4,645 |
import graphistry, os, pandas as pd, streamlit as st
from components import GraphistrySt, URLParam
from graphistry import PyGraphistry
from css import all_css
from time import sleep
from util import getChild
############################################
#
# DASHBOARD SETTINGS
#
############################################
# Controls how entrypoint.py picks it up
app_id = 'app_01'
logger = getChild(app_id)
urlParams = URLParam(app_id)
############################################
#
# CUSTOM CSS
#
############################################
# Have fun!
############################################
#
# SIDEBAR RENDER AERA
#
############################################
# Given URL params, render left sidebar form and return combined filter settings
# #https://docs.streamlit.io/en/stable/api.html#display-interactive-widgets
############################################
#
# FILTER PIPELINE
#
############################################
# Given filter settings, generate/cache/return dataframes & viz
@st.cache(suppress_st_warning=True, allow_output_mutation=True)
############################################
#
# VIZ
#
############################################
############################################
#
# MAIN RENDER AERA
#
############################################
# Given configured filters and computed results (cached), render
############################################
#
# Putting it all together
#
############################################
| [
11748,
4823,
4592,
11,
28686,
11,
19798,
292,
355,
279,
67,
11,
4269,
18250,
355,
336,
198,
6738,
6805,
1330,
29681,
4592,
1273,
11,
10289,
22973,
198,
6738,
4823,
4592,
1330,
9485,
37065,
4592,
198,
6738,
269,
824,
1330,
477,
62,
25471,
198,
6738,
640,
1330,
3993,
198,
6738,
7736,
1330,
651,
16424,
198,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
360,
11211,
8202,
9795,
25823,
51,
20754,
198,
2,
198,
29113,
7804,
4242,
198,
2,
220,
36357,
703,
5726,
4122,
13,
9078,
11103,
340,
510,
628,
198,
1324,
62,
312,
796,
705,
1324,
62,
486,
6,
198,
6404,
1362,
796,
651,
16424,
7,
1324,
62,
312,
8,
198,
6371,
10044,
4105,
796,
10289,
22973,
7,
1324,
62,
312,
8,
628,
628,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
327,
7759,
2662,
17391,
198,
2,
198,
29113,
7804,
4242,
198,
2,
8192,
1257,
0,
628,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
311,
14114,
33,
1503,
371,
10619,
1137,
317,
46461,
198,
2,
198,
29113,
7804,
4242,
198,
2,
11259,
10289,
42287,
11,
8543,
1364,
40217,
1296,
290,
1441,
5929,
8106,
6460,
198,
198,
2,
1303,
5450,
1378,
31628,
13,
5532,
18250,
13,
952,
14,
268,
14,
31284,
14,
15042,
13,
6494,
2,
13812,
12,
3849,
5275,
12,
28029,
11407,
628,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
34020,
5781,
350,
4061,
3698,
8881,
198,
2,
198,
29113,
7804,
4242,
198,
2,
11259,
8106,
6460,
11,
7716,
14,
23870,
14,
7783,
1366,
37805,
1222,
48569,
198,
198,
31,
301,
13,
23870,
7,
18608,
601,
62,
301,
62,
43917,
28,
17821,
11,
1249,
62,
22915,
62,
76,
7094,
28,
17821,
8,
628,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
13889,
57,
198,
2,
198,
29113,
7804,
4242,
628,
198,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
8779,
1268,
371,
10619,
1137,
317,
46461,
198,
2,
198,
29113,
7804,
4242,
198,
2,
11259,
17839,
16628,
290,
29231,
2482,
357,
66,
2317,
828,
8543,
628,
198,
29113,
7804,
4242,
198,
2,
198,
2,
220,
220,
39956,
340,
477,
1978,
198,
2,
198,
29113,
7804,
4242,
198
] | 4.160665 | 361 |
#
# DRAGONS
#
# cal_service
# ------------------------------------------------------------------------------
from os import path
import warnings
from importlib import import_module
from ..config import globalConf, load_config
from .userdb import UserDB
from .localdb import LocalDB
from .remotedb import RemoteDB
# ------------------------------------------------------------------------------
# BEGIN Setting up the calibs section for config files
CONFIG_SECTION = 'calibs'
# END Setting up the calibs section for config files
# ------------------------------------------------------------------------------
def get_db_path_from_config():
"""
Read the path of the local database specified in the config file. An
error will be raised if there is no such database, or more than one.
This function is used by the "caldb" script and the set_local_database()
function here.
Parameters
----------
config: str
name of the configuration file
Returns
-------
db_path : str
the path to the local database file
"""
if not globalConf.sections():
raise OSError("Cannot read config file.")
databases = parse_databases()
db_path = None
for db in databases:
if db[0] == LocalDB:
if db_path is None:
db_path = db[1]
else:
raise ValueError("Multiple local database files are listed "
"in the config file.")
if db_path is None:
raise ValueError("No local database file is listed in the config file.")
return db_path
def init_calibration_databases(inst_lookups=None, procmode=None,
ucals=None, upload=None):
"""
Initialize the calibration databases for a PrimitivesBASE object.
Parameters
----------
inst_lookups : str
local of the instrument lookups package (for the MDF lookup table)
ucals : dict
user calibrations
upload : list
things to upload (we're concerned about "calibs" and "science")
Returns
-------
A UserDB object, possibly linked to additional CalDB objects
"""
# Read the mdf_dict file and create an actual dict with the complete
# paths to each of the MDF files
try:
masks = import_module('.maskdb', inst_lookups)
mdf_dict = getattr(masks, 'mdf_dict')
except (ImportError, TypeError, AttributeError):
mdf_dict = None
else:
for k, v in mdf_dict.items():
mdf_dict[k] = path.join(path.dirname(masks.__file__),
'MDF', v)
caldb = UserDB(name="manual calibrations", mdf_dict=mdf_dict,
user_cals=ucals)
upload_calibs = upload is not None and "calibs" in upload
upload_science = upload is not None and "science" in upload
for cls, db, kwargs in parse_databases():
kwargs["procmode"] = procmode
if cls == RemoteDB:
# Actually storing to a remote DB requires that "store" is set in
# the config *and* the appropriate type is in upload
kwargs["store_science"] = kwargs["store_cal"] and upload_science
kwargs["store_cal"] &= upload_calibs
elif cls == LocalDB:
kwargs["force_init"] = False
database = cls(db, name=db, **kwargs)
caldb.add_database(database)
return caldb
def parse_databases(default_dbname="cal_manager.db"):
"""
Parse the databases listed in the global config file. This returns a list
provided information on how to build the cascase of databases, but does
not instantiate any CalDB objects, so it can be used by the caldb script
efficiently.
Parameters
----------
default_dbname : str
default name of database file (if only a directory is listed in the
config file)
Returns
-------
list of tuples (class, database name, kwargs)
"""
db_list = []
calconf = get_calconf()
if not calconf:
return db_list
upload_cookie = calconf.get("upload_cookie")
# Allow old-format file to be read
try:
databases = calconf["databases"]
except KeyError:
databases = calconf.get("database_dir")
if not databases:
return db_list
with warnings.catch_warnings():
warnings.simplefilter("always", DeprecationWarning)
warnings.warn("Use 'databases' instead of 'database_dir' in "
"config file.",
DeprecationWarning
)
for line in databases.splitlines():
if not line: # handle blank lines
continue
db, *flags = line.split()
# "get" is default if there are no flags, but if any flags are
# specified, then "get" must be there explicitly
kwargs = {"get_cal": not bool(flags),
"store_cal": False}
for flag in flags:
kwarg = f"{flag}_cal"
if kwarg in kwargs:
kwargs[kwarg] = True
else:
raise ValueError("{}: Unknown flag {!r}".format(db, flag))
expanded_db = path.expanduser(db)
if path.isdir(expanded_db):
db = path.join(db, default_dbname)
cls = LocalDB
elif path.isfile(expanded_db):
cls = LocalDB
elif "/" in expanded_db and "//" not in expanded_db:
cls = LocalDB
else: # does not check
cls = RemoteDB
kwargs["upload_cookie"] = upload_cookie
db_list.append((cls, db, kwargs))
return db_list
def set_local_database():
"""
User helper function to define a local calibration database based on
the "dragonsrc" config file.
Returns
-------
A LocalDB object
"""
load_config()
db_path = get_db_path_from_config()
db = LocalDB(db_path, log=None)
return db
| [
2,
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,
44779,
19213,
198,
2,
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,
2386,
62,
15271,
198,
2,
16529,
26171,
198,
6738,
28686,
1330,
3108,
198,
11748,
14601,
198,
6738,
1330,
8019,
1330,
1330,
62,
21412,
198,
198,
6738,
11485,
11250,
1330,
3298,
18546,
11,
3440,
62,
11250,
198,
198,
6738,
764,
7220,
9945,
1330,
11787,
11012,
198,
6738,
764,
17946,
1940,
65,
1330,
10714,
11012,
198,
6738,
764,
2787,
5191,
65,
1330,
21520,
11012,
198,
198,
2,
16529,
26171,
198,
2,
347,
43312,
25700,
510,
262,
27417,
82,
2665,
329,
4566,
3696,
198,
10943,
16254,
62,
50,
24565,
796,
705,
9948,
571,
82,
6,
198,
198,
2,
23578,
25700,
510,
262,
27417,
82,
2665,
329,
4566,
3696,
198,
2,
16529,
26171,
628,
198,
198,
4299,
651,
62,
9945,
62,
6978,
62,
6738,
62,
11250,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4149,
262,
3108,
286,
262,
1957,
6831,
7368,
287,
262,
4566,
2393,
13,
1052,
198,
220,
220,
220,
4049,
481,
307,
4376,
611,
612,
318,
645,
884,
6831,
11,
393,
517,
621,
530,
13,
198,
220,
220,
220,
770,
2163,
318,
973,
416,
262,
366,
66,
1940,
65,
1,
4226,
290,
262,
900,
62,
12001,
62,
48806,
3419,
198,
220,
220,
220,
2163,
994,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4566,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
286,
262,
8398,
2393,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
20613,
62,
6978,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
262,
3108,
284,
262,
1957,
6831,
2393,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
3298,
18546,
13,
23946,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
440,
5188,
81,
1472,
7203,
34,
34574,
1100,
4566,
2393,
19570,
198,
220,
220,
220,
20083,
796,
21136,
62,
19608,
18826,
3419,
198,
220,
220,
220,
20613,
62,
6978,
796,
6045,
198,
220,
220,
220,
329,
20613,
287,
20083,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
20613,
58,
15,
60,
6624,
10714,
11012,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
20613,
62,
6978,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
6978,
796,
20613,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
31217,
1957,
6831,
3696,
389,
5610,
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,
366,
259,
262,
4566,
2393,
19570,
198,
220,
220,
220,
611,
20613,
62,
6978,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
2949,
1957,
6831,
2393,
318,
5610,
287,
262,
4566,
2393,
19570,
198,
220,
220,
220,
1441,
20613,
62,
6978,
628,
198,
4299,
2315,
62,
9948,
571,
1358,
62,
19608,
18826,
7,
8625,
62,
5460,
4739,
28,
14202,
11,
386,
11215,
1098,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
66,
874,
28,
14202,
11,
9516,
28,
14202,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20768,
1096,
262,
36537,
20083,
329,
257,
11460,
20288,
33,
11159,
2134,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
916,
62,
5460,
4739,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
286,
262,
8875,
804,
4739,
5301,
357,
1640,
262,
337,
8068,
35847,
3084,
8,
198,
220,
220,
220,
334,
66,
874,
1058,
8633,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
33801,
602,
198,
220,
220,
220,
9516,
1058,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
1243,
284,
9516,
357,
732,
821,
5213,
546,
366,
9948,
571,
82,
1,
290,
366,
16801,
4943,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
317,
11787,
11012,
2134,
11,
5457,
6692,
284,
3224,
2199,
11012,
5563,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
4149,
262,
285,
7568,
62,
11600,
2393,
290,
2251,
281,
4036,
8633,
351,
262,
1844,
198,
220,
220,
220,
1303,
13532,
284,
1123,
286,
262,
337,
8068,
3696,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20680,
796,
1330,
62,
21412,
7,
4458,
27932,
9945,
3256,
916,
62,
5460,
4739,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
7568,
62,
11600,
796,
651,
35226,
7,
5356,
591,
11,
705,
76,
7568,
62,
11600,
11537,
198,
220,
220,
220,
2845,
357,
20939,
12331,
11,
5994,
12331,
11,
3460,
4163,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
285,
7568,
62,
11600,
796,
6045,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
479,
11,
410,
287,
285,
7568,
62,
11600,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
7568,
62,
11600,
58,
74,
60,
796,
3108,
13,
22179,
7,
6978,
13,
15908,
3672,
7,
5356,
591,
13,
834,
7753,
834,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
44,
8068,
3256,
410,
8,
198,
220,
220,
220,
269,
1940,
65,
796,
11787,
11012,
7,
3672,
2625,
805,
723,
33801,
602,
1600,
285,
7568,
62,
11600,
28,
76,
7568,
62,
11600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
66,
874,
28,
1229,
874,
8,
628,
220,
220,
220,
9516,
62,
9948,
571,
82,
796,
9516,
318,
407,
6045,
290,
366,
9948,
571,
82,
1,
287,
9516,
198,
220,
220,
220,
9516,
62,
16801,
796,
9516,
318,
407,
6045,
290,
366,
16801,
1,
287,
9516,
198,
220,
220,
220,
329,
537,
82,
11,
20613,
11,
479,
86,
22046,
287,
21136,
62,
19608,
18826,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
1676,
11215,
1098,
8973,
796,
386,
11215,
1098,
198,
220,
220,
220,
220,
220,
220,
220,
611,
537,
82,
6624,
21520,
11012,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
18689,
23069,
284,
257,
6569,
20137,
4433,
326,
366,
8095,
1,
318,
900,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
4566,
1635,
392,
9,
262,
5035,
2099,
318,
287,
9516,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
8095,
62,
16801,
8973,
796,
479,
86,
22046,
14692,
8095,
62,
9948,
8973,
290,
9516,
62,
16801,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
8095,
62,
9948,
8973,
1222,
28,
9516,
62,
9948,
571,
82,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
537,
82,
6624,
10714,
11012,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
3174,
62,
15003,
8973,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
6831,
796,
537,
82,
7,
9945,
11,
1438,
28,
9945,
11,
12429,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
269,
1940,
65,
13,
2860,
62,
48806,
7,
48806,
8,
198,
220,
220,
220,
1441,
269,
1940,
65,
628,
198,
4299,
21136,
62,
19608,
18826,
7,
12286,
62,
9945,
3672,
2625,
9948,
62,
37153,
13,
9945,
1,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2547,
325,
262,
20083,
5610,
287,
262,
3298,
4566,
2393,
13,
770,
5860,
257,
1351,
198,
220,
220,
220,
2810,
1321,
319,
703,
284,
1382,
262,
49164,
589,
286,
20083,
11,
475,
857,
198,
220,
220,
220,
407,
9113,
9386,
597,
2199,
11012,
5563,
11,
523,
340,
460,
307,
973,
416,
262,
269,
1940,
65,
4226,
198,
220,
220,
220,
18306,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4277,
62,
9945,
3672,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
1438,
286,
6831,
2393,
357,
361,
691,
257,
8619,
318,
5610,
287,
262,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
2393,
8,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
1351,
286,
12777,
2374,
357,
4871,
11,
6831,
1438,
11,
479,
86,
22046,
8,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
20613,
62,
4868,
796,
17635,
198,
220,
220,
220,
2386,
10414,
796,
651,
62,
9948,
10414,
3419,
198,
220,
220,
220,
611,
407,
2386,
10414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
20613,
62,
4868,
198,
220,
220,
220,
9516,
62,
44453,
796,
2386,
10414,
13,
1136,
7203,
25850,
62,
44453,
4943,
198,
220,
220,
220,
1303,
22507,
1468,
12,
18982,
2393,
284,
307,
1100,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20083,
796,
2386,
10414,
14692,
19608,
18826,
8973,
198,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
20083,
796,
2386,
10414,
13,
1136,
7203,
48806,
62,
15908,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
20083,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
20613,
62,
4868,
198,
220,
220,
220,
220,
220,
220,
220,
351,
14601,
13,
40198,
62,
40539,
654,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14601,
13,
36439,
24455,
7203,
33770,
1600,
2129,
8344,
341,
20361,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14601,
13,
40539,
7203,
11041,
705,
19608,
18826,
6,
2427,
286,
705,
48806,
62,
15908,
6,
287,
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,
366,
11250,
2393,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2129,
8344,
341,
20361,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
329,
1627,
287,
20083,
13,
35312,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
25,
220,
1303,
5412,
9178,
3951,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
11,
1635,
33152,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
1136,
1,
318,
4277,
611,
612,
389,
645,
9701,
11,
475,
611,
597,
9701,
389,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7368,
11,
788,
366,
1136,
1,
1276,
307,
612,
11777,
198,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
796,
19779,
1136,
62,
9948,
1298,
407,
20512,
7,
33152,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8095,
62,
9948,
1298,
10352,
92,
198,
220,
220,
220,
220,
220,
220,
220,
329,
6056,
287,
9701,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
853,
796,
277,
1,
90,
32109,
92,
62,
9948,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
479,
86,
853,
287,
479,
86,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
58,
46265,
853,
60,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
90,
38362,
16185,
6056,
1391,
0,
81,
92,
1911,
18982,
7,
9945,
11,
6056,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
9902,
62,
9945,
796,
3108,
13,
11201,
392,
7220,
7,
9945,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3108,
13,
9409,
343,
7,
11201,
12249,
62,
9945,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
796,
3108,
13,
22179,
7,
9945,
11,
4277,
62,
9945,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
796,
10714,
11012,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
3108,
13,
4468,
576,
7,
11201,
12249,
62,
9945,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
796,
10714,
11012,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
12813,
1,
287,
9902,
62,
9945,
290,
366,
1003,
1,
407,
287,
9902,
62,
9945,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
796,
10714,
11012,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
220,
1303,
857,
407,
2198,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
82,
796,
21520,
11012,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
14692,
25850,
62,
44453,
8973,
796,
9516,
62,
44453,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
4868,
13,
33295,
19510,
565,
82,
11,
20613,
11,
479,
86,
22046,
4008,
198,
220,
220,
220,
1441,
20613,
62,
4868,
628,
198,
4299,
900,
62,
12001,
62,
48806,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11787,
31904,
2163,
284,
8160,
257,
1957,
36537,
6831,
1912,
319,
198,
220,
220,
220,
262,
366,
7109,
34765,
6015,
1,
4566,
2393,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
317,
10714,
11012,
2134,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3440,
62,
11250,
3419,
198,
220,
220,
220,
20613,
62,
6978,
796,
651,
62,
9945,
62,
6978,
62,
6738,
62,
11250,
3419,
198,
220,
220,
220,
20613,
796,
10714,
11012,
7,
9945,
62,
6978,
11,
2604,
28,
14202,
8,
198,
220,
220,
220,
1441,
20613,
198
] | 2.370327 | 2,568 |
# test builtin property
# create a property object explicitly
property()
property(1, 2, 3)
# use its accessor methods
p = property()
p.getter(1)
p.setter(2)
p.deleter(3)
# basic use as a decorator
a = A(1)
print(a.x)
try:
a.x = 2
except AttributeError:
print("AttributeError")
# explicit use within a class
b = B(3)
print(b.x)
b.x = 4
print(b.x)
del b.x
# full use as a decorator
c = C(5)
print(c.x)
c.x = 6
print(c.x)
del c.x
# a property that has no get, set or del
d = D()
try:
d.prop
except AttributeError:
print('AttributeError')
try:
d.prop = 1
except AttributeError:
print('AttributeError')
try:
del d.prop
except AttributeError:
print('AttributeError')
# properties take keyword arguments
print(E().p)
| [
2,
1332,
3170,
259,
3119,
198,
198,
2,
2251,
257,
3119,
2134,
11777,
198,
26745,
3419,
198,
26745,
7,
16,
11,
362,
11,
513,
8,
198,
198,
2,
779,
663,
1895,
273,
5050,
198,
79,
796,
3119,
3419,
198,
79,
13,
1136,
353,
7,
16,
8,
198,
79,
13,
2617,
353,
7,
17,
8,
198,
79,
13,
2934,
293,
353,
7,
18,
8,
198,
198,
2,
4096,
779,
355,
257,
11705,
1352,
198,
198,
64,
796,
317,
7,
16,
8,
198,
4798,
7,
64,
13,
87,
8,
198,
198,
28311,
25,
198,
220,
220,
220,
257,
13,
87,
796,
362,
198,
16341,
3460,
4163,
12331,
25,
198,
220,
220,
220,
3601,
7203,
33682,
12331,
4943,
198,
198,
2,
7952,
779,
1626,
257,
1398,
198,
198,
65,
796,
347,
7,
18,
8,
198,
4798,
7,
65,
13,
87,
8,
198,
65,
13,
87,
796,
604,
198,
4798,
7,
65,
13,
87,
8,
198,
12381,
275,
13,
87,
198,
198,
2,
1336,
779,
355,
257,
11705,
1352,
198,
198,
66,
796,
327,
7,
20,
8,
198,
4798,
7,
66,
13,
87,
8,
198,
66,
13,
87,
796,
718,
198,
4798,
7,
66,
13,
87,
8,
198,
12381,
269,
13,
87,
198,
198,
2,
257,
3119,
326,
468,
645,
651,
11,
900,
393,
1619,
198,
67,
796,
360,
3419,
198,
28311,
25,
198,
220,
220,
220,
288,
13,
22930,
198,
16341,
3460,
4163,
12331,
25,
198,
220,
220,
220,
3601,
10786,
33682,
12331,
11537,
198,
28311,
25,
198,
220,
220,
220,
288,
13,
22930,
796,
352,
198,
16341,
3460,
4163,
12331,
25,
198,
220,
220,
220,
3601,
10786,
33682,
12331,
11537,
198,
28311,
25,
198,
220,
220,
220,
1619,
288,
13,
22930,
198,
16341,
3460,
4163,
12331,
25,
198,
220,
220,
220,
3601,
10786,
33682,
12331,
11537,
198,
198,
2,
6608,
1011,
21179,
7159,
198,
4798,
7,
36,
22446,
79,
8,
198
] | 2.436893 | 309 |
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# Copyright 2019 The Prescience-Client Authors. All rights reserved.
import copy
from abc import ABC, abstractmethod
from prescience_client.utils.table_printable import TablePrintable, DictPrintable
from prescience_client.enum.output_format import OutputFormat
class Base(TablePrintable, DictPrintable, ABC):
"""
Prescience Model metric object
Inherit from TablePrintable so that it can be easily printed as list on stdout
Inherit from DictPrintable so that it can be easily printed as single dict object on stdout
"""
@abstractmethod
@classmethod
@classmethod
def __init__(self,
json: dict):
"""
Constructor of prescience model metric object
:param json: the source JSON dict received from prescience
"""
self.json_dict = json
| [
2,
5765,
286,
428,
2723,
2438,
318,
21825,
416,
257,
347,
10305,
12,
7635,
198,
2,
5964,
326,
460,
307,
1043,
287,
262,
38559,
24290,
2393,
13,
198,
2,
15069,
13130,
383,
1763,
4234,
12,
11792,
46665,
13,
1439,
2489,
10395,
13,
198,
198,
11748,
4866,
198,
6738,
450,
66,
1330,
9738,
11,
12531,
24396,
198,
198,
6738,
906,
4234,
62,
16366,
13,
26791,
13,
11487,
62,
4798,
540,
1330,
8655,
18557,
540,
11,
360,
713,
18557,
540,
198,
6738,
906,
4234,
62,
16366,
13,
44709,
13,
22915,
62,
18982,
1330,
25235,
26227,
628,
198,
4871,
7308,
7,
10962,
18557,
540,
11,
360,
713,
18557,
540,
11,
9738,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1763,
4234,
9104,
18663,
2134,
198,
220,
220,
220,
47025,
270,
422,
8655,
18557,
540,
523,
326,
340,
460,
307,
3538,
10398,
355,
1351,
319,
14367,
448,
198,
220,
220,
220,
47025,
270,
422,
360,
713,
18557,
540,
523,
326,
340,
460,
307,
3538,
10398,
355,
2060,
8633,
2134,
319,
14367,
448,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
397,
8709,
24396,
198,
220,
220,
220,
2488,
4871,
24396,
628,
220,
220,
220,
2488,
4871,
24396,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33918,
25,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
28407,
273,
286,
906,
4234,
2746,
18663,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
33918,
25,
262,
2723,
19449,
8633,
2722,
422,
906,
4234,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17752,
62,
11600,
796,
33918,
198
] | 3.110368 | 299 |
# FROM: https://gist.github.com/Skinner927/413c0e9cc8433123f426832f9fe8d931
class classproperty(object):
"""
Similar to @property but used on classes instead of instances.
The only caveat being that your class must use the
classproperty.meta metaclass.
Class properties will still work on class instances unless the
class instance has overidden the class default. This is no different
than how class instances normally work.
Derived from: https://stackoverflow.com/a/5191224/721519
class Z(object, metaclass=classproperty.meta):
@classproperty
def foo(cls):
return 123
_bar = None
@classproperty
def bar(cls):
return cls._bar
@bar.setter
def bar(cls, value):
return cls_bar = value
Z.foo # 123
Z.bar # None
Z.bar = 222
Z.bar # 222
"""
meta = ClassPropertyMeta
_fn_types = (type(__init__), classmethod, staticmethod)
@classmethod
| [
2,
16034,
25,
3740,
1378,
70,
396,
13,
12567,
13,
785,
14,
15739,
5083,
24,
1983,
14,
44103,
66,
15,
68,
24,
535,
5705,
2091,
10163,
69,
19,
25022,
2624,
69,
24,
5036,
23,
67,
24,
3132,
628,
198,
198,
4871,
1398,
26745,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11014,
284,
2488,
26745,
475,
973,
319,
6097,
2427,
286,
10245,
13,
198,
220,
220,
220,
383,
691,
36531,
852,
326,
534,
1398,
1276,
779,
262,
198,
220,
220,
220,
1398,
26745,
13,
28961,
1138,
330,
31172,
13,
198,
220,
220,
220,
5016,
6608,
481,
991,
670,
319,
1398,
10245,
4556,
262,
198,
220,
220,
220,
1398,
4554,
468,
625,
4651,
262,
1398,
4277,
13,
770,
318,
645,
1180,
198,
220,
220,
220,
621,
703,
1398,
10245,
7685,
670,
13,
198,
220,
220,
220,
9626,
1572,
422,
25,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
64,
14,
47785,
1065,
1731,
14,
4761,
1314,
1129,
198,
220,
220,
220,
1398,
1168,
7,
15252,
11,
1138,
330,
31172,
28,
4871,
26745,
13,
28961,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
4871,
26745,
198,
220,
220,
220,
220,
220,
220,
220,
825,
22944,
7,
565,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
17031,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5657,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
4871,
26745,
198,
220,
220,
220,
220,
220,
220,
220,
825,
2318,
7,
565,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
13557,
5657,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
5657,
13,
2617,
353,
198,
220,
220,
220,
220,
220,
220,
220,
825,
2318,
7,
565,
82,
11,
1988,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
62,
5657,
796,
1988,
198,
220,
220,
220,
1168,
13,
21943,
220,
1303,
17031,
198,
220,
220,
220,
1168,
13,
5657,
220,
1303,
6045,
198,
220,
220,
220,
1168,
13,
5657,
796,
27795,
198,
220,
220,
220,
1168,
13,
5657,
220,
1303,
27795,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
13634,
796,
5016,
21746,
48526,
628,
220,
220,
220,
4808,
22184,
62,
19199,
796,
357,
4906,
7,
834,
15003,
834,
828,
1398,
24396,
11,
9037,
24396,
8,
628,
220,
220,
220,
2488,
4871,
24396,
198
] | 2.482587 | 402 |
class Hostaddr(basestring):
"""
the individual client hosts. could be a hostname or an IP
address.
"""
@staticmethod
| [
4871,
14504,
29851,
7,
12093,
395,
1806,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
262,
1981,
5456,
11453,
13,
714,
307,
257,
2583,
3672,
393,
281,
6101,
198,
220,
220,
220,
2209,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
220,
198
] | 2.491525 | 59 |
@profile
@profile
if __name__ == "__main__":
call()
| [
31,
13317,
198,
198,
31,
13317,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
869,
3419,
198
] | 2.32 | 25 |
print("Please select which presence indicator to wish to use...")
print("Press 1 to run the Teams Presence Indicator")
print("Press 2 to run the Zoom Presence Indicator")
choice = input("Indicator: ")
if choice == '1':
print("Starting the Teams Presence Indicator...")
import teamsPresence
teamsPresence.run()
if choice == '2':
print("Starting the Zoom Presence Indicator...")
import zoomPresence
zoomPresence.run()
| [
4798,
7203,
5492,
2922,
543,
4931,
16916,
284,
4601,
284,
779,
9313,
8,
198,
4798,
7203,
13800,
352,
284,
1057,
262,
24690,
46523,
1423,
26407,
4943,
198,
4798,
7203,
13800,
362,
284,
1057,
262,
40305,
46523,
1423,
26407,
4943,
198,
25541,
796,
5128,
7203,
5497,
26407,
25,
366,
8,
198,
198,
361,
3572,
6624,
705,
16,
10354,
198,
220,
220,
220,
3601,
7203,
22851,
262,
24690,
46523,
1423,
26407,
9313,
8,
198,
220,
220,
220,
1330,
3466,
25460,
594,
198,
220,
220,
220,
3466,
25460,
594,
13,
5143,
3419,
198,
198,
361,
3572,
6624,
705,
17,
10354,
198,
220,
220,
220,
3601,
7203,
22851,
262,
40305,
46523,
1423,
26407,
9313,
8,
198,
220,
220,
220,
1330,
19792,
25460,
594,
198,
220,
220,
220,
19792,
25460,
594,
13,
5143,
3419,
198
] | 3.4 | 130 |
""" module init """
__title__ = 'pair'
__version__ = '0.1.0'
__author__ = 'LIU Lu'
__contact__ = '[email protected]'
__license__ = 'MIT'
__all__ = [
'base', 'servicefactory', 'mapbox', 'ors', 'google'
]
from .servicefactory import RoutingServiceFactory
| [
37811,
8265,
2315,
37227,
198,
834,
7839,
834,
796,
705,
24874,
6,
198,
834,
9641,
834,
796,
705,
15,
13,
16,
13,
15,
6,
198,
834,
9800,
834,
796,
705,
31271,
52,
6026,
6,
198,
834,
32057,
834,
796,
705,
77,
463,
83,
15516,
84,
31,
14816,
13,
785,
6,
198,
834,
43085,
834,
796,
705,
36393,
6,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
705,
8692,
3256,
705,
15271,
69,
9548,
3256,
705,
8899,
3524,
3256,
705,
669,
3256,
705,
13297,
6,
198,
60,
198,
198,
6738,
764,
15271,
69,
9548,
1330,
371,
13660,
16177,
22810,
198
] | 2.564356 | 101 |
import rdflib
import os
import pandas as pd
import csv_db
from demosauruswebapp.demosaurus.link_thesaurus import normalize_name
| [
11748,
374,
67,
2704,
571,
198,
11748,
28686,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
269,
21370,
62,
9945,
198,
6738,
35551,
22302,
12384,
1324,
13,
9536,
47650,
13,
8726,
62,
83,
956,
22302,
1330,
3487,
1096,
62,
3672,
628,
628
] | 3.046512 | 43 |
import numpy as np
def concatenate_fill(arrays, axis=0, fill_value=None):
"""
Appends to all the arrays so that they can be concatenated along the given axis (kwargs axis=0 by default).
The fill_value will be automatically determined from the dtype of arrays. For floating point types of arrays
it will be set to NaN, for integer arrays it will be either 0 (for unsigned int) or -1 (signed int).
>>> a = np.arange(2*3).reshape(2, 3)
>>> a
array([[0, 1, 2],
[3, 4, 5]])
>>> b = np.arange(2*2).reshape(2, 2)
>>> b
array([[0, 1],
[2, 3]])
>>> np.concatenate((a, b), axis=0)
Traceback (most recent call last):
...
ValueError: all the input array dimensions except for the concatenation axis must match exactly
>>> concatenate_fill((a, b), axis=0, fill_value=9)
array([[0, 1, 2],
[3, 4, 5],
[0, 1, 9],
[2, 3, 9]])
"""
if len(arrays) == 0:
raise ValueError("Need at least one array")
if len(arrays) == 1:
return arrays[0]
if not all(a.ndim == arrays[0].ndim for a in arrays):
raise ValueError("Requires arrays with the same number of dimensions")
if len(set(a.shape for a in arrays)) == 1:
# all arrays have the same shape, can use normal concatenate
return np.concatenate(arrays, axis=axis)
if all(a.shape[axis] == 0 for a in arrays):
# all arrays are empty along the shape that we want them to be concatenated
# in this case just return the first array (it is empty anyways)
return arrays[0]
final_shape = [(sum if ax == axis else max)(a.shape[ax] for a in arrays)
for ax in range(arrays[0].ndim)]
final_dtype = np.result_type(*arrays)
if fill_value is None:
if issubclass(final_dtype.type, np.floating):
fill_value = np.nan
elif issubclass(final_dtype.type, np.integer):
fill_value = max(-1, np.iinfo(final_dtype).min)
else:
raise ValueError("cannot automatically decide for a fill_value for dtype=%s, please specify fill_value explicitely" % str(final_dtype))
concat = np.full(final_shape, fill_value, dtype=final_dtype)
i = 0
for a in arrays:
target = [slice(0, a.shape[ax], 1) for ax in range(a.ndim)]
target[axis] = slice(i, i + a.shape[axis], 1)
concat[tuple(target)] = a
i += a.shape[axis]
return concat
| [
11748,
299,
32152,
355,
45941,
198,
198,
4299,
1673,
36686,
378,
62,
20797,
7,
3258,
592,
11,
16488,
28,
15,
11,
6070,
62,
8367,
28,
14202,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2034,
2412,
284,
477,
262,
26515,
523,
326,
484,
460,
307,
1673,
36686,
515,
1863,
262,
1813,
16488,
357,
46265,
22046,
16488,
28,
15,
416,
4277,
737,
198,
220,
220,
220,
383,
6070,
62,
8367,
481,
307,
6338,
5295,
422,
262,
288,
4906,
286,
26515,
13,
1114,
12462,
966,
3858,
286,
26515,
198,
220,
220,
220,
340,
481,
307,
900,
284,
11013,
45,
11,
329,
18253,
26515,
340,
481,
307,
2035,
657,
357,
1640,
22165,
493,
8,
393,
532,
16,
220,
357,
32696,
493,
737,
628,
220,
220,
220,
13163,
257,
796,
45941,
13,
283,
858,
7,
17,
9,
18,
737,
3447,
1758,
7,
17,
11,
513,
8,
198,
220,
220,
220,
13163,
257,
198,
220,
220,
220,
7177,
26933,
58,
15,
11,
352,
11,
362,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
18,
11,
604,
11,
642,
11907,
8,
198,
220,
220,
220,
13163,
275,
796,
45941,
13,
283,
858,
7,
17,
9,
17,
737,
3447,
1758,
7,
17,
11,
362,
8,
198,
220,
220,
220,
13163,
275,
198,
220,
220,
220,
7177,
26933,
58,
15,
11,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
17,
11,
513,
11907,
8,
198,
220,
220,
220,
13163,
45941,
13,
1102,
9246,
268,
378,
19510,
64,
11,
275,
828,
16488,
28,
15,
8,
198,
220,
220,
220,
34912,
1891,
357,
1712,
2274,
869,
938,
2599,
198,
220,
220,
220,
2644,
198,
220,
220,
220,
11052,
12331,
25,
477,
262,
5128,
7177,
15225,
2845,
329,
262,
1673,
36686,
341,
16488,
1276,
2872,
3446,
628,
220,
220,
220,
13163,
1673,
36686,
378,
62,
20797,
19510,
64,
11,
275,
828,
16488,
28,
15,
11,
6070,
62,
8367,
28,
24,
8,
198,
220,
220,
220,
7177,
26933,
58,
15,
11,
352,
11,
362,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
18,
11,
604,
11,
642,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
15,
11,
352,
11,
860,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
17,
11,
513,
11,
860,
11907,
8,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
18896,
7,
3258,
592,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
23037,
379,
1551,
530,
7177,
4943,
198,
220,
220,
220,
611,
18896,
7,
3258,
592,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
26515,
58,
15,
60,
198,
220,
220,
220,
611,
407,
477,
7,
64,
13,
358,
320,
6624,
26515,
58,
15,
4083,
358,
320,
329,
257,
287,
26515,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
39618,
26515,
351,
262,
976,
1271,
286,
15225,
4943,
198,
220,
220,
220,
611,
18896,
7,
2617,
7,
64,
13,
43358,
329,
257,
287,
26515,
4008,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
477,
26515,
423,
262,
976,
5485,
11,
460,
779,
3487,
1673,
36686,
378,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
1102,
9246,
268,
378,
7,
3258,
592,
11,
16488,
28,
22704,
8,
198,
220,
220,
220,
611,
477,
7,
64,
13,
43358,
58,
22704,
60,
6624,
657,
329,
257,
287,
26515,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
477,
26515,
389,
6565,
1863,
262,
5485,
326,
356,
765,
606,
284,
307,
1673,
36686,
515,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
428,
1339,
655,
1441,
262,
717,
7177,
357,
270,
318,
6565,
32845,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
26515,
58,
15,
60,
628,
220,
220,
220,
2457,
62,
43358,
796,
47527,
16345,
611,
7877,
6624,
16488,
2073,
3509,
5769,
64,
13,
43358,
58,
897,
60,
329,
257,
287,
26515,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
7877,
287,
2837,
7,
3258,
592,
58,
15,
4083,
358,
320,
15437,
198,
220,
220,
220,
2457,
62,
67,
4906,
796,
45941,
13,
20274,
62,
4906,
46491,
3258,
592,
8,
198,
220,
220,
220,
611,
6070,
62,
8367,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1189,
549,
4871,
7,
20311,
62,
67,
4906,
13,
4906,
11,
45941,
13,
48679,
803,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6070,
62,
8367,
796,
45941,
13,
12647,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1189,
549,
4871,
7,
20311,
62,
67,
4906,
13,
4906,
11,
45941,
13,
41433,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6070,
62,
8367,
796,
3509,
32590,
16,
11,
45941,
13,
72,
10951,
7,
20311,
62,
67,
4906,
737,
1084,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
66,
34574,
6338,
5409,
329,
257,
6070,
62,
8367,
329,
288,
4906,
28,
4,
82,
11,
3387,
11986,
6070,
62,
8367,
1193,
291,
3973,
1,
4064,
965,
7,
20311,
62,
67,
4906,
4008,
628,
220,
220,
220,
1673,
265,
796,
45941,
13,
12853,
7,
20311,
62,
43358,
11,
6070,
62,
8367,
11,
288,
4906,
28,
20311,
62,
67,
4906,
8,
198,
220,
220,
220,
1312,
796,
657,
198,
220,
220,
220,
329,
257,
287,
26515,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
796,
685,
48369,
7,
15,
11,
257,
13,
43358,
58,
897,
4357,
352,
8,
329,
7877,
287,
2837,
7,
64,
13,
358,
320,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
58,
22704,
60,
796,
16416,
7,
72,
11,
1312,
1343,
257,
13,
43358,
58,
22704,
4357,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1673,
265,
58,
83,
29291,
7,
16793,
15437,
796,
257,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
15853,
257,
13,
43358,
58,
22704,
60,
628,
220,
220,
220,
1441,
1673,
265,
628
] | 2.371869 | 1,038 |
import numpy as np
import os, cv2
imgs = np.load('test_set_ck_extended_no_resize.npy')
lbls = np.load('test_labels_ck_extended_no_resize.npy')
for i in range(imgs.shape[0]):
print (lbls[i])
cv2.imshow('img', imgs[i])
cv2.waitKey(0)
| [
11748,
299,
32152,
355,
45941,
198,
11748,
28686,
11,
269,
85,
17,
198,
198,
9600,
82,
796,
45941,
13,
2220,
10786,
9288,
62,
2617,
62,
694,
62,
2302,
1631,
62,
3919,
62,
411,
1096,
13,
77,
9078,
11537,
198,
75,
2436,
82,
796,
45941,
13,
2220,
10786,
9288,
62,
23912,
1424,
62,
694,
62,
2302,
1631,
62,
3919,
62,
411,
1096,
13,
77,
9078,
11537,
198,
198,
1640,
1312,
287,
2837,
7,
9600,
82,
13,
43358,
58,
15,
60,
2599,
198,
197,
4798,
357,
75,
2436,
82,
58,
72,
12962,
198,
197,
33967,
17,
13,
320,
12860,
10786,
9600,
3256,
545,
14542,
58,
72,
12962,
198,
197,
33967,
17,
13,
17077,
9218,
7,
15,
8,
198
] | 2.043103 | 116 |
n, k = map(int, raw_input().strip().split(' '))
a = map(int, raw_input().strip().split(' '))
array_left_rotation(a, n, k);
answer = array_left_rotation(a, n, k);
print ' '.join(map(str, answer))
| [
198,
198,
77,
11,
479,
796,
3975,
7,
600,
11,
8246,
62,
15414,
22446,
36311,
22446,
35312,
10786,
705,
4008,
198,
64,
796,
3975,
7,
600,
11,
8246,
62,
15414,
22446,
36311,
22446,
35312,
10786,
705,
4008,
198,
18747,
62,
9464,
62,
10599,
341,
7,
64,
11,
299,
11,
479,
1776,
198,
41484,
796,
7177,
62,
9464,
62,
10599,
341,
7,
64,
11,
299,
11,
479,
1776,
198,
4798,
705,
45302,
22179,
7,
8899,
7,
2536,
11,
3280,
4008,
628
] | 2.475 | 80 |
import sys
if len(sys.argv) != 2:
print 'usage: [input edge pair path]'
exit(1)
node_set = set()
with open(sys.argv[1], 'r') as fi:
for line in fi:
line = line.strip('\n').strip('\r')
tmp = line.split('\t')
src = int(tmp[0])
node_set.add(src)
print 'node size: %d' % len(node_set)
| [
11748,
25064,
198,
198,
361,
18896,
7,
17597,
13,
853,
85,
8,
14512,
362,
25,
198,
220,
220,
220,
3601,
705,
26060,
25,
685,
15414,
5743,
5166,
3108,
49946,
198,
220,
220,
220,
8420,
7,
16,
8,
198,
17440,
62,
2617,
796,
900,
3419,
198,
4480,
1280,
7,
17597,
13,
853,
85,
58,
16,
4357,
705,
81,
11537,
355,
25912,
25,
198,
220,
220,
220,
329,
1627,
287,
25912,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
36311,
10786,
59,
77,
27691,
36311,
10786,
59,
81,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
45218,
796,
1627,
13,
35312,
10786,
59,
83,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
12351,
796,
493,
7,
22065,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
2617,
13,
2860,
7,
10677,
8,
198,
4798,
705,
17440,
2546,
25,
4064,
67,
6,
4064,
18896,
7,
17440,
62,
2617,
8,
198
] | 2.063291 | 158 |
import json
import logging
import os
import threading
from multiprocessing import Process, Queue
from queue import Empty
from typing import Tuple, Union
from docker import DockerClient
from docker.models.containers import Container
from casperlabs_local_net.errors import CommandTimeoutError, NonZeroExitCodeError
from casperlabs_local_net.docker_config import DockerConfig
def humanify(line):
"""
Decode json dump of execution engine's structured log and render a human friendly line,
containing, together with prefix rendered by the Python test framework, all useful
information. The original dictionary in the EE structured log looks like follows:
{'timestamp': '2019-06-08T17:51:35.308Z', 'process_id': 1, 'process_name': 'casperlabs-engine-grpc-server', 'host_name': 'execution-engine-0-mlgtn', 'log_level': 'Info', 'priority': 5, 'message_type': 'ee-structured', 'message_type_version': '1.0.0', 'message_id': '14039567985248808663', 'description': 'starting Execution Engine Server', 'properties': {'message': 'starting Execution Engine Server', 'message_template': '{message}'}}
"""
if "execution-engine-" not in line:
return line
try:
_, payload = line.split("payload=")
except Exception:
return line
d = json.loads(payload)
return " ".join(str(d[k]) for k in ("log_level", "description"))
class DockerBase:
"""
This holds the common base functionality for docker images.
Rather than constants, we build up properties based on values. Some only work in subclasses.
"""
DOCKER_BASE_NAME = "casperlabs"
@property
@property
@property
@property
@property
@property
@property
@property
@property
@property
@property
@property
@property
class LoggingDockerBase(DockerBase):
"""
This adds logging to DockerBase
"""
@property
| [
11748,
33918,
198,
11748,
18931,
198,
11748,
28686,
198,
11748,
4704,
278,
198,
6738,
18540,
305,
919,
278,
1330,
10854,
11,
4670,
518,
198,
6738,
16834,
1330,
33523,
198,
6738,
19720,
1330,
309,
29291,
11,
4479,
198,
6738,
36253,
1330,
25716,
11792,
198,
6738,
36253,
13,
27530,
13,
3642,
50221,
1330,
43101,
198,
198,
6738,
6124,
525,
75,
8937,
62,
12001,
62,
3262,
13,
48277,
1330,
9455,
48031,
12331,
11,
8504,
28667,
30337,
10669,
12331,
198,
6738,
6124,
525,
75,
8937,
62,
12001,
62,
3262,
13,
45986,
62,
11250,
1330,
25716,
16934,
628,
198,
4299,
1692,
1958,
7,
1370,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4280,
1098,
33918,
10285,
286,
9706,
3113,
338,
20793,
2604,
290,
8543,
257,
1692,
8030,
1627,
11,
198,
220,
220,
220,
7268,
11,
1978,
351,
21231,
15111,
416,
262,
11361,
1332,
9355,
11,
477,
4465,
198,
220,
220,
220,
1321,
13,
383,
2656,
22155,
287,
262,
27254,
20793,
2604,
3073,
588,
5679,
25,
628,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
16514,
27823,
10354,
705,
23344,
12,
3312,
12,
2919,
51,
1558,
25,
4349,
25,
2327,
13,
21495,
57,
3256,
705,
14681,
62,
312,
10354,
352,
11,
705,
14681,
62,
3672,
10354,
705,
66,
32981,
75,
8937,
12,
18392,
12,
2164,
14751,
12,
15388,
3256,
705,
4774,
62,
3672,
10354,
705,
18558,
1009,
12,
18392,
12,
15,
12,
4029,
13655,
77,
3256,
705,
6404,
62,
5715,
10354,
705,
12360,
3256,
705,
49336,
10354,
642,
11,
705,
20500,
62,
4906,
10354,
705,
1453,
12,
7249,
1522,
3256,
705,
20500,
62,
4906,
62,
9641,
10354,
705,
16,
13,
15,
13,
15,
3256,
705,
20500,
62,
312,
10354,
705,
15187,
31010,
3134,
42250,
23045,
28362,
45791,
3256,
705,
11213,
10354,
705,
38690,
37497,
7117,
9652,
3256,
705,
48310,
10354,
1391,
6,
20500,
10354,
705,
38690,
37497,
7117,
9652,
3256,
705,
20500,
62,
28243,
10354,
705,
90,
20500,
92,
6,
11709,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
366,
18558,
1009,
12,
18392,
21215,
407,
287,
1627,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1627,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
21437,
796,
1627,
13,
35312,
7203,
15577,
2220,
2625,
8,
198,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1627,
628,
220,
220,
220,
288,
796,
33918,
13,
46030,
7,
15577,
2220,
8,
198,
220,
220,
220,
1441,
366,
27071,
22179,
7,
2536,
7,
67,
58,
74,
12962,
329,
479,
287,
5855,
6404,
62,
5715,
1600,
366,
11213,
48774,
628,
198,
198,
4871,
25716,
14881,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
6622,
262,
2219,
2779,
11244,
329,
36253,
4263,
13,
628,
220,
220,
220,
11317,
621,
38491,
11,
356,
1382,
510,
6608,
1912,
319,
3815,
13,
220,
2773,
691,
670,
287,
850,
37724,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
360,
11290,
1137,
62,
33,
11159,
62,
20608,
796,
366,
66,
32981,
75,
8937,
1,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
198,
4871,
5972,
2667,
35,
12721,
14881,
7,
35,
12721,
14881,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
6673,
18931,
284,
25716,
14881,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
26745,
198
] | 3.07717 | 622 |
#!/usr/bin/env python3
import os
import re
import shlex
import subprocess
import sys
GENERATED_FILE_NAME = "prometheus-metrics.md"
FILE_HEADER = """<!--
{
"name": "Prometheus Metrics",
"category": "5fcfd1ede5ded705a0bf5fd0",
"priority": 1000
}
-->
<!--
============================
GENERATED FILE - DO NOT EDIT
============================
Run `python3 server/metrics/generate_docs.py` to re-generate.
-->
# BuildBuddy metrics
BuildBuddy exposes [Prometheus](https://prometheus.io) metrics that allow monitoring the
[four golden signals](https://landing.google.com/sre/sre-book/chapters/monitoring-distributed-systems/):
latency, traffic, errors, and saturation.
To view these metrics in a live-updating dashboard, we recommend using a tool
like [Grafana](https://grafana.com).
"""
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
427,
2588,
198,
11748,
850,
14681,
198,
11748,
25064,
198,
198,
35353,
1137,
11617,
62,
25664,
62,
20608,
796,
366,
16963,
36916,
12,
4164,
10466,
13,
9132,
1,
198,
198,
25664,
62,
37682,
1137,
796,
37227,
27,
28112,
198,
90,
198,
220,
366,
3672,
1298,
366,
24129,
36916,
3395,
10466,
1600,
198,
220,
366,
22872,
1298,
366,
20,
69,
12993,
67,
16,
18654,
20,
9395,
34801,
64,
15,
19881,
20,
16344,
15,
1600,
198,
220,
366,
49336,
1298,
8576,
198,
92,
198,
46904,
198,
198,
27,
28112,
198,
198,
4770,
25609,
198,
35353,
1137,
11617,
45811,
532,
8410,
5626,
48483,
198,
4770,
25609,
198,
198,
10987,
4600,
29412,
18,
4382,
14,
4164,
10466,
14,
8612,
378,
62,
31628,
13,
9078,
63,
284,
302,
12,
8612,
378,
13,
198,
198,
46904,
198,
198,
2,
10934,
33,
21584,
20731,
198,
198,
15580,
33,
21584,
32142,
685,
24129,
36916,
16151,
5450,
1378,
16963,
36916,
13,
952,
8,
20731,
326,
1249,
9904,
262,
198,
58,
14337,
10861,
10425,
16151,
5450,
1378,
1044,
278,
13,
13297,
13,
785,
14,
82,
260,
14,
82,
260,
12,
2070,
14,
354,
12126,
14,
41143,
278,
12,
17080,
6169,
12,
10057,
82,
14,
2599,
198,
15460,
1387,
11,
4979,
11,
8563,
11,
290,
36275,
13,
198,
198,
2514,
1570,
777,
20731,
287,
257,
2107,
12,
929,
38734,
30415,
11,
356,
4313,
1262,
257,
2891,
198,
2339,
685,
38,
32188,
2271,
16151,
5450,
1378,
70,
32188,
2271,
13,
785,
737,
198,
37811,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.996441 | 281 |
from django.urls import path
from . import views
urlpatterns = [
path("", views.IndexView.as_view(), name="index"),
path("hello/<str:username>", views.HelloView.as_view(), name="hello"),
path("failing", views.FailingView.as_view(), name="failing"),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
198,
6738,
764,
1330,
5009,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
7203,
1600,
5009,
13,
15732,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
9630,
12340,
198,
220,
220,
220,
3108,
7203,
31373,
14,
27,
2536,
25,
29460,
29,
1600,
5009,
13,
15496,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
31373,
12340,
198,
220,
220,
220,
3108,
7203,
69,
11608,
1600,
5009,
13,
37,
11608,
7680,
13,
292,
62,
1177,
22784,
1438,
2625,
69,
11608,
12340,
198,
60,
198
] | 2.789474 | 95 |
import os
import logging
from sqlalchemy_utils import database_exists, create_database
from datetime import datetime
from sqlalchemy.dialects import postgresql
from flask_sqlalchemy import SQLAlchemy
from config import SQLALCHEMY_DATABASE_URI
db = SQLAlchemy()
| [
11748,
28686,
198,
11748,
18931,
198,
6738,
44161,
282,
26599,
62,
26791,
1330,
6831,
62,
1069,
1023,
11,
2251,
62,
48806,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
44161,
282,
26599,
13,
38969,
478,
82,
1330,
1281,
34239,
13976,
198,
6738,
42903,
62,
25410,
282,
26599,
1330,
16363,
2348,
26599,
198,
6738,
4566,
1330,
16363,
1847,
3398,
3620,
56,
62,
35,
1404,
6242,
11159,
62,
47269,
628,
198,
9945,
796,
16363,
2348,
26599,
3419,
628,
628,
628,
628,
628,
198
] | 3.329268 | 82 |
# Capture multi video from webcam
# Display the frame 4 times on canvas
import numpy
import cv2
# 0 means 1st webcam
cap = cv2.VideoCapture(0)
face_cascade = cv2.CascadeClassifier(
cv2.data.haarcascades + "haarcascade_frontalface_default.xml")
eye_cascade = cv2.CascadeClassifier(
cv2.data.haarcascades + "haarcascade_eye.xml")
while True:
ret, frame = cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(gray, 1.3, 2)
for (x, y, w, h) in faces:
cv2.rectangle(frame,
(x, y),
(x+w, y+h),
(0, 255, 0),
5
)
roi_gray = gray[y:y+w, x:x+w]
roi_color = frame[y:y+h, x:x+w]
eyes = eye_cascade.detectMultiScale(roi_gray, 1.3, 2)
for (ex, ey, ew, eh) in eyes:
cv2.rectangle(roi_color,
(ex, ey),
(ex+ew, ey+eh),
(0, 255, 0),
5
)
cv2.imshow("Video", frame)
if cv2.waitKey(1) == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
| [
2,
31793,
5021,
2008,
422,
49823,
198,
2,
16531,
262,
5739,
604,
1661,
319,
21978,
198,
198,
11748,
299,
32152,
198,
11748,
269,
85,
17,
198,
198,
2,
657,
1724,
352,
301,
49823,
198,
11128,
796,
269,
85,
17,
13,
10798,
49630,
7,
15,
8,
198,
2550,
62,
66,
28966,
796,
269,
85,
17,
13,
34,
28966,
9487,
7483,
7,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
7890,
13,
3099,
5605,
3372,
2367,
1343,
366,
3099,
5605,
28966,
62,
8534,
1604,
558,
62,
12286,
13,
19875,
4943,
220,
198,
198,
25379,
62,
66,
28966,
796,
269,
85,
17,
13,
34,
28966,
9487,
7483,
7,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
7890,
13,
3099,
5605,
3372,
2367,
1343,
366,
3099,
5605,
28966,
62,
25379,
13,
19875,
4943,
198,
198,
4514,
6407,
25,
198,
220,
220,
220,
1005,
11,
5739,
796,
1451,
13,
961,
3419,
628,
220,
220,
220,
12768,
796,
269,
85,
17,
13,
33967,
83,
10258,
7,
14535,
11,
269,
85,
17,
13,
46786,
62,
33,
10761,
17,
38,
30631,
8,
198,
220,
220,
220,
6698,
796,
1986,
62,
66,
28966,
13,
15255,
478,
29800,
29990,
7,
44605,
11,
352,
13,
18,
11,
362,
8,
628,
220,
220,
220,
329,
357,
87,
11,
331,
11,
266,
11,
289,
8,
287,
6698,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
2554,
9248,
7,
14535,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
87,
11,
331,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
87,
10,
86,
11,
331,
10,
71,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
15,
11,
14280,
11,
657,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
686,
72,
62,
44605,
796,
12768,
58,
88,
25,
88,
10,
86,
11,
2124,
25,
87,
10,
86,
60,
198,
220,
220,
220,
220,
220,
220,
220,
686,
72,
62,
8043,
796,
5739,
58,
88,
25,
88,
10,
71,
11,
2124,
25,
87,
10,
86,
60,
628,
220,
220,
220,
220,
220,
220,
220,
2951,
796,
4151,
62,
66,
28966,
13,
15255,
478,
29800,
29990,
7,
305,
72,
62,
44605,
11,
352,
13,
18,
11,
362,
8,
628,
220,
220,
220,
220,
220,
220,
220,
329,
357,
1069,
11,
1926,
11,
304,
86,
11,
32622,
8,
287,
2951,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
85,
17,
13,
2554,
9248,
7,
305,
72,
62,
8043,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1069,
11,
1926,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1069,
10,
413,
11,
1926,
10,
17231,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
15,
11,
14280,
11,
657,
828,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
642,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
269,
85,
17,
13,
320,
12860,
7203,
10798,
1600,
5739,
8,
628,
220,
220,
220,
611,
269,
85,
17,
13,
17077,
9218,
7,
16,
8,
6624,
2760,
10786,
80,
6,
2599,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2270,
628,
198,
11128,
13,
20979,
3419,
198,
33967,
17,
13,
41659,
3237,
11209,
3419,
628
] | 1.764079 | 657 |
import items_setup
import unittest
if __name__ == "__main__":
unittest.main()
| [
11748,
3709,
62,
40406,
198,
11748,
555,
715,
395,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 2.59375 | 32 |
#!/usr/bin/env python3
############################################################################################
# #
# Program purpose: Checks whether a given string is number or not using Lambda. #
# Program Author : Happi Yvan <[email protected]> #
# Creation Date : February 04, 2020 #
# #
############################################################################################
from typing import Callable
if __name__ == "__main__":
main_str = obtain_user_data('Enter some string to check: ')
test_func = LAMBDA_is_string_int(some_str=main_str)
print(f"Is string a number: {'YES' if test_func() else 'NO'}")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
220,
21015,
18,
198,
198,
29113,
29113,
14468,
7804,
4242,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
6118,
4007,
25,
47719,
1771,
257,
1813,
4731,
318,
1271,
393,
407,
1262,
21114,
6814,
13,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
6118,
6434,
1058,
18321,
72,
575,
10438,
1279,
1469,
5714,
79,
11020,
31,
14816,
13,
785,
29,
220,
220,
220,
220,
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,
21582,
7536,
220,
1058,
3945,
8702,
11,
12131,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
29113,
29113,
14468,
7804,
4242,
198,
198,
6738,
19720,
1330,
4889,
540,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
62,
2536,
796,
7330,
62,
7220,
62,
7890,
10786,
17469,
617,
4731,
284,
2198,
25,
705,
8,
198,
220,
220,
220,
1332,
62,
20786,
796,
406,
2390,
33,
5631,
62,
271,
62,
8841,
62,
600,
7,
11246,
62,
2536,
28,
12417,
62,
2536,
8,
628,
220,
220,
220,
3601,
7,
69,
1,
3792,
4731,
257,
1271,
25,
1391,
6,
43335,
6,
611,
1332,
62,
20786,
3419,
2073,
705,
15285,
6,
92,
4943,
628
] | 2.03532 | 453 |
'''----------------------------------------------------------------------------
Name: Heroku API Commands (commands.py)
Purpose: To setup a connection with the Heroku API and denote functions
that carry out various tasks.
Author: Nicholas Chong
Created: 2020-06-24 (YYYY/MM/DD)
----------------------------------------------------------------------------'''
import heroku3
import os
import logging
if __name__=='__main__':
restart_app() | [
7061,
6,
10097,
10541,
198,
5376,
25,
220,
220,
220,
220,
220,
220,
220,
2332,
11601,
7824,
49505,
357,
9503,
1746,
13,
9078,
8,
198,
30026,
3455,
25,
220,
220,
220,
220,
1675,
9058,
257,
4637,
351,
262,
2332,
11601,
7824,
290,
42685,
5499,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
326,
3283,
503,
2972,
8861,
13,
198,
198,
13838,
25,
220,
220,
220,
220,
220,
20320,
46892,
198,
41972,
25,
220,
220,
220,
220,
12131,
12,
3312,
12,
1731,
357,
26314,
26314,
14,
12038,
14,
16458,
8,
198,
10097,
10541,
7061,
6,
198,
198,
11748,
4293,
23063,
18,
198,
11748,
28686,
220,
198,
11748,
18931,
198,
198,
361,
11593,
3672,
834,
855,
6,
834,
12417,
834,
10354,
198,
220,
220,
220,
15765,
62,
1324,
3419
] | 3.593985 | 133 |
from Helpers import Logger
from Helpers import xcrun
# This is initial setup that should be done so the xcrun helper module doesn't have to be used everywhere.
import os
DEVELOPER_DIR = os.environ.get('DEVELOPER_DIR')
if DEVELOPER_DIR:
Logger.write().info('DEVELOPER_DIR environment variable is already set, existing value "%s" will be used.' % (DEVELOPER_DIR))
else:
os.environ['DEVELOPER_DIR'] = xcrun.resolve_developer_path()
import pyXcode
import xcodeproj
import xcworkspace | [
6738,
10478,
364,
1330,
5972,
1362,
198,
6738,
10478,
364,
1330,
2124,
66,
5143,
198,
198,
2,
770,
318,
4238,
9058,
326,
815,
307,
1760,
523,
262,
2124,
66,
5143,
31904,
8265,
1595,
470,
423,
284,
307,
973,
8347,
13,
198,
11748,
28686,
198,
7206,
18697,
31054,
62,
34720,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
7206,
18697,
31054,
62,
34720,
11537,
198,
361,
5550,
18697,
31054,
62,
34720,
25,
198,
220,
220,
220,
5972,
1362,
13,
13564,
22446,
10951,
10786,
7206,
18697,
31054,
62,
34720,
2858,
7885,
318,
1541,
900,
11,
4683,
1988,
36521,
82,
1,
481,
307,
973,
2637,
4064,
357,
7206,
18697,
31054,
62,
34720,
4008,
198,
17772,
25,
198,
220,
220,
220,
28686,
13,
268,
2268,
17816,
7206,
18697,
31054,
62,
34720,
20520,
796,
2124,
66,
5143,
13,
411,
6442,
62,
16244,
263,
62,
6978,
3419,
628,
198,
11748,
12972,
55,
8189,
198,
11748,
2124,
19815,
538,
305,
73,
198,
11748,
2124,
66,
5225,
10223
] | 3.0625 | 160 |
####################
# ES-DOC CIM Questionnaire
# Copyright (c) 2017 ES-DOC. All rights reserved.
#
# University of Colorado, Boulder
# http://cires.colorado.edu/
#
# This project is distributed according to the terms of the MIT license [http://www.opensource.org/licenses/MIT].
####################
__author__ = 'allyn.treshansky'
from django.db.models.signals import post_save
from django.db.utils import ProgrammingError
from django.contrib.sites.models import Site
from Q.questionnaire.models.models_sites import QSite
from Q.questionnaire.signals.signals_base import disable_for_fixtures
from Q.questionnaire.q_utils import QError
@disable_for_fixtures
def post_save_site_handler(sender, instance, created, **kwargs):
"""
fn that gets called after a standard Django Site is saved;
if it's just been created, then the corresponding QSite needs to be setup
:param sender:
:param kwargs:
:return:
"""
if instance and created:
try:
(q_site, created_q_site) = QSite.objects.get_or_create(site=instance)
except ProgrammingError:
if instance.pk == 1:
# this might fail during initial migration b/c the full set of db tables will not have been setup yet
print("skipped creating site profile for %s" % (instance))
pass
else:
msg = "Unable to create site profile for %s" % (instance)
raise QError(msg)
post_save.connect(post_save_site_handler, sender=Site, dispatch_uid="post_save_site_handler")
| [
14468,
4242,
198,
2,
220,
220,
13380,
12,
38715,
327,
3955,
18233,
24042,
198,
2,
220,
220,
15069,
357,
66,
8,
2177,
13380,
12,
38715,
13,
1439,
2489,
10395,
13,
198,
2,
198,
2,
220,
220,
2059,
286,
7492,
11,
27437,
198,
2,
220,
220,
2638,
1378,
979,
411,
13,
8043,
4533,
13,
15532,
14,
198,
2,
198,
2,
220,
220,
770,
1628,
318,
9387,
1864,
284,
262,
2846,
286,
262,
17168,
5964,
685,
4023,
1378,
2503,
13,
44813,
1668,
13,
2398,
14,
677,
4541,
14,
36393,
4083,
198,
14468,
4242,
198,
198,
834,
9800,
834,
796,
705,
453,
77,
13,
83,
3447,
49792,
6,
198,
198,
6738,
42625,
14208,
13,
9945,
13,
27530,
13,
12683,
874,
1330,
1281,
62,
21928,
198,
6738,
42625,
14208,
13,
9945,
13,
26791,
1330,
30297,
12331,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
49315,
13,
27530,
1330,
14413,
198,
198,
6738,
1195,
13,
25652,
24042,
13,
27530,
13,
27530,
62,
49315,
1330,
1195,
29123,
198,
6738,
1195,
13,
25652,
24042,
13,
12683,
874,
13,
12683,
874,
62,
8692,
1330,
15560,
62,
1640,
62,
69,
25506,
198,
6738,
1195,
13,
25652,
24042,
13,
80,
62,
26791,
1330,
1195,
12331,
628,
198,
31,
40223,
62,
1640,
62,
69,
25506,
198,
4299,
1281,
62,
21928,
62,
15654,
62,
30281,
7,
82,
2194,
11,
4554,
11,
2727,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
24714,
326,
3011,
1444,
706,
257,
3210,
37770,
14413,
318,
7448,
26,
198,
220,
220,
220,
611,
340,
338,
655,
587,
2727,
11,
788,
262,
11188,
1195,
29123,
2476,
284,
307,
9058,
198,
220,
220,
220,
1058,
17143,
29788,
25,
198,
220,
220,
220,
1058,
17143,
479,
86,
22046,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
4554,
290,
2727,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
80,
62,
15654,
11,
2727,
62,
80,
62,
15654,
8,
796,
1195,
29123,
13,
48205,
13,
1136,
62,
273,
62,
17953,
7,
15654,
28,
39098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
30297,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4554,
13,
79,
74,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
1244,
2038,
1141,
4238,
13472,
275,
14,
66,
262,
1336,
900,
286,
20613,
8893,
481,
407,
423,
587,
9058,
1865,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
8135,
3949,
4441,
2524,
7034,
329,
4064,
82,
1,
4064,
357,
39098,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
3118,
540,
284,
2251,
2524,
7034,
329,
4064,
82,
1,
4064,
357,
39098,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1195,
12331,
7,
19662,
8,
198,
198,
7353,
62,
21928,
13,
8443,
7,
7353,
62,
21928,
62,
15654,
62,
30281,
11,
29788,
28,
29123,
11,
27965,
62,
27112,
2625,
7353,
62,
21928,
62,
15654,
62,
30281,
4943,
198
] | 2.736934 | 574 |
import os
from time import time
import torch
import torch.nn.functional as F
import numpy as np
import SimpleITK as sitk
import xlsxwriter as xw
import scipy.ndimage as ndimage
from net.ResUnet_dice import Net
os.environ['CUDA_VISIBLE_DEVICES'] = '1'
val_ct_dir = './Path of original images/'
#val_seg_dir = './Training/GT/'
organ_pred_dir = './Path to save segmentation/'
module_dir = './FINAL_spleen_net.pth'
upper = 350
lower = -upper
down_scale = 0.5
size = 48
slice_thickness = 3
organ_list = [
'spleen',
]
net = torch.nn.DataParallel(Net(training=False)).cuda()
net.load_state_dict(torch.load(module_dir))
net.eval()
for file_index, file in enumerate(os.listdir(val_ct_dir)):
start_time = time()
ct = sitk.ReadImage(os.path.join(val_ct_dir, file), sitk.sitkInt16)
ct_array_ori = sitk.GetArrayFromImage(ct)
ct_array= sitk.GetArrayFromImage(ct)
print(file)
print('size of CT: ', ct_array.shape)
ct_array[ct_array > upper] = upper
ct_array[ct_array < lower] = lower
ct_array = ndimage.zoom(ct_array, (ct.GetSpacing()[-1] / slice_thickness, down_scale, down_scale), order=3)
#ct_array = ndimage.shift(ct_array,shift=[0,360,0],mode='reflect')
flag = False
start_slice = 0
end_slice = start_slice + size - 1
ct_array_list = []
while end_slice <= ct_array.shape[0] - 1:
ct_array_list.append(ct_array[start_slice:end_slice + 1, :, :])
start_slice = end_slice + 1
end_slice = start_slice + size - 1
if end_slice is not ct_array.shape[0] - 1:
flag = True
count = ct_array.shape[0] - start_slice
ct_array_list.append(ct_array[-size:, :, :])
outputs_list = []
with torch.no_grad():
for ct_array in ct_array_list:
ct_tensor = torch.FloatTensor(ct_array).cuda()
ct_tensor = ct_tensor.unsqueeze(dim=0)
ct_tensor = ct_tensor.unsqueeze(dim=0)
outputs = net(ct_tensor)
outputs = outputs.squeeze()
outputs_list.append(outputs.cpu().detach().numpy())
del outputs
pred_seg = np.concatenate(outputs_list[0:-1], axis=1)
if flag is False:
pred_seg = np.concatenate([pred_seg, outputs_list[-1]], axis=1)
else:
pred_seg = np.concatenate([pred_seg, outputs_list[-1][:, -count:, :, :]], axis=1)
pred_seg = torch.FloatTensor(pred_seg).unsqueeze(dim=0)
pred_seg = F.upsample(pred_seg, ct_array_ori.shape, mode='trilinear').squeeze().detach().numpy()
pred_seg = np.argmax(pred_seg, axis=0)
pred_seg = np.round(pred_seg).astype(np.uint8)
print('size of pred: ', pred_seg.shape)
# 将预测的结果保存为nii数据
pred_seg = sitk.GetImageFromArray(pred_seg)
pred_seg.SetDirection(ct.GetDirection())
pred_seg.SetOrigin(ct.GetOrigin())
pred_seg.SetSpacing(ct.GetSpacing())
sitk.WriteImage(pred_seg, os.path.join(organ_pred_dir, file.replace('img', 'liver')))
del pred_seg
speed = time() - start_time
# worksheet.write(14, file_index + 1, speed)
print('this case use {:.3f} s'.format(speed))
print('-----------------------')
#workbook.close()
| [
11748,
28686,
198,
6738,
640,
1330,
640,
198,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
17427,
2043,
42,
355,
1650,
74,
198,
11748,
2124,
7278,
87,
16002,
355,
2124,
86,
198,
11748,
629,
541,
88,
13,
358,
9060,
355,
299,
67,
9060,
198,
198,
6738,
2010,
13,
4965,
3118,
316,
62,
67,
501,
1330,
3433,
198,
198,
418,
13,
268,
2268,
17816,
43633,
5631,
62,
29817,
34563,
62,
39345,
34444,
20520,
796,
705,
16,
6,
198,
198,
2100,
62,
310,
62,
15908,
796,
705,
19571,
15235,
286,
2656,
4263,
14,
6,
198,
2,
2100,
62,
325,
70,
62,
15908,
796,
705,
19571,
44357,
14,
19555,
14,
6,
198,
198,
9971,
62,
28764,
62,
15908,
796,
705,
19571,
15235,
284,
3613,
10618,
341,
14,
6,
198,
198,
21412,
62,
15908,
796,
705,
19571,
37,
17961,
62,
82,
1154,
268,
62,
3262,
13,
79,
400,
6,
198,
198,
45828,
796,
13803,
198,
21037,
796,
532,
45828,
198,
2902,
62,
9888,
796,
657,
13,
20,
198,
7857,
796,
4764,
198,
48369,
62,
400,
624,
1108,
796,
513,
628,
198,
9971,
62,
4868,
796,
685,
198,
220,
220,
220,
705,
82,
1154,
268,
3256,
198,
198,
60,
198,
198,
3262,
796,
28034,
13,
20471,
13,
6601,
10044,
29363,
7,
7934,
7,
34409,
28,
25101,
29720,
66,
15339,
3419,
198,
3262,
13,
2220,
62,
5219,
62,
11600,
7,
13165,
354,
13,
2220,
7,
21412,
62,
15908,
4008,
198,
3262,
13,
18206,
3419,
628,
198,
198,
1640,
2393,
62,
9630,
11,
2393,
287,
27056,
378,
7,
418,
13,
4868,
15908,
7,
2100,
62,
310,
62,
15908,
8,
2599,
628,
220,
220,
220,
923,
62,
2435,
796,
640,
3419,
628,
220,
220,
220,
220,
198,
220,
220,
220,
269,
83,
796,
1650,
74,
13,
5569,
5159,
7,
418,
13,
6978,
13,
22179,
7,
2100,
62,
310,
62,
15908,
11,
2393,
828,
1650,
74,
13,
48937,
74,
5317,
1433,
8,
198,
220,
220,
220,
269,
83,
62,
18747,
62,
10145,
796,
1650,
74,
13,
3855,
19182,
4863,
5159,
7,
310,
8,
198,
220,
220,
220,
269,
83,
62,
18747,
28,
1650,
74,
13,
3855,
19182,
4863,
5159,
7,
310,
8,
198,
220,
220,
220,
3601,
7,
7753,
8,
198,
220,
220,
220,
3601,
10786,
7857,
286,
16356,
25,
46083,
269,
83,
62,
18747,
13,
43358,
8,
628,
220,
220,
220,
220,
198,
220,
220,
220,
269,
83,
62,
18747,
58,
310,
62,
18747,
1875,
6727,
60,
796,
6727,
198,
220,
220,
220,
269,
83,
62,
18747,
58,
310,
62,
18747,
1279,
2793,
60,
796,
2793,
628,
220,
220,
220,
220,
198,
220,
220,
220,
269,
83,
62,
18747,
796,
299,
67,
9060,
13,
89,
4207,
7,
310,
62,
18747,
11,
357,
310,
13,
3855,
4561,
4092,
3419,
58,
12,
16,
60,
1220,
16416,
62,
400,
624,
1108,
11,
866,
62,
9888,
11,
866,
62,
9888,
828,
1502,
28,
18,
8,
198,
220,
220,
220,
1303,
310,
62,
18747,
796,
299,
67,
9060,
13,
30846,
7,
310,
62,
18747,
11,
30846,
41888,
15,
11,
15277,
11,
15,
4357,
14171,
11639,
35051,
11537,
628,
220,
220,
220,
220,
198,
220,
220,
220,
6056,
796,
10352,
198,
220,
220,
220,
923,
62,
48369,
796,
657,
198,
220,
220,
220,
886,
62,
48369,
796,
923,
62,
48369,
1343,
2546,
532,
352,
198,
220,
220,
220,
269,
83,
62,
18747,
62,
4868,
796,
17635,
628,
220,
220,
220,
981,
886,
62,
48369,
19841,
269,
83,
62,
18747,
13,
43358,
58,
15,
60,
532,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
269,
83,
62,
18747,
62,
4868,
13,
33295,
7,
310,
62,
18747,
58,
9688,
62,
48369,
25,
437,
62,
48369,
1343,
352,
11,
1058,
11,
1058,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
923,
62,
48369,
796,
886,
62,
48369,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
48369,
796,
923,
62,
48369,
1343,
2546,
532,
352,
628,
220,
220,
220,
220,
198,
220,
220,
220,
611,
886,
62,
48369,
318,
407,
269,
83,
62,
18747,
13,
43358,
58,
15,
60,
532,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6056,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
954,
796,
269,
83,
62,
18747,
13,
43358,
58,
15,
60,
532,
923,
62,
48369,
198,
220,
220,
220,
220,
220,
220,
220,
269,
83,
62,
18747,
62,
4868,
13,
33295,
7,
310,
62,
18747,
58,
12,
7857,
45299,
1058,
11,
1058,
12962,
628,
220,
220,
220,
23862,
62,
4868,
796,
17635,
198,
220,
220,
220,
351,
28034,
13,
3919,
62,
9744,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
329,
269,
83,
62,
18747,
287,
269,
83,
62,
18747,
62,
4868,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
83,
62,
83,
22854,
796,
28034,
13,
43879,
51,
22854,
7,
310,
62,
18747,
737,
66,
15339,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
83,
62,
83,
22854,
796,
269,
83,
62,
83,
22854,
13,
13271,
421,
1453,
2736,
7,
27740,
28,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
83,
62,
83,
22854,
796,
269,
83,
62,
83,
22854,
13,
13271,
421,
1453,
2736,
7,
27740,
28,
15,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23862,
796,
2010,
7,
310,
62,
83,
22854,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23862,
796,
23862,
13,
16485,
1453,
2736,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23862,
62,
4868,
13,
33295,
7,
22915,
82,
13,
36166,
22446,
15255,
620,
22446,
77,
32152,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
23862,
628,
220,
220,
220,
2747,
62,
325,
70,
796,
45941,
13,
1102,
9246,
268,
378,
7,
22915,
82,
62,
4868,
58,
15,
21912,
16,
4357,
16488,
28,
16,
8,
198,
220,
220,
220,
611,
6056,
318,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2747,
62,
325,
70,
796,
45941,
13,
1102,
9246,
268,
378,
26933,
28764,
62,
325,
70,
11,
23862,
62,
4868,
58,
12,
16,
60,
4357,
16488,
28,
16,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2747,
62,
325,
70,
796,
45941,
13,
1102,
9246,
268,
378,
26933,
28764,
62,
325,
70,
11,
23862,
62,
4868,
58,
12,
16,
7131,
45299,
532,
9127,
45299,
1058,
11,
1058,
60,
4357,
16488,
28,
16,
8,
628,
198,
220,
220,
220,
2747,
62,
325,
70,
796,
28034,
13,
43879,
51,
22854,
7,
28764,
62,
325,
70,
737,
13271,
421,
1453,
2736,
7,
27740,
28,
15,
8,
198,
220,
220,
220,
2747,
62,
325,
70,
796,
376,
13,
4739,
1403,
7,
28764,
62,
325,
70,
11,
269,
83,
62,
18747,
62,
10145,
13,
43358,
11,
4235,
11639,
2213,
346,
259,
451,
27691,
16485,
1453,
2736,
22446,
15255,
620,
22446,
77,
32152,
3419,
198,
220,
220,
220,
2747,
62,
325,
70,
796,
45941,
13,
853,
9806,
7,
28764,
62,
325,
70,
11,
16488,
28,
15,
8,
198,
220,
220,
220,
2747,
62,
325,
70,
796,
45941,
13,
744,
7,
28764,
62,
325,
70,
737,
459,
2981,
7,
37659,
13,
28611,
23,
8,
628,
220,
220,
220,
3601,
10786,
7857,
286,
2747,
25,
46083,
2747,
62,
325,
70,
13,
43358,
8,
628,
198,
220,
220,
220,
1303,
10263,
108,
228,
165,
95,
226,
38184,
233,
21410,
163,
119,
241,
162,
252,
250,
46479,
251,
27764,
246,
10310,
118,
77,
4178,
46763,
108,
162,
235,
106,
198,
220,
220,
220,
2747,
62,
325,
70,
796,
1650,
74,
13,
3855,
5159,
4863,
19182,
7,
28764,
62,
325,
70,
8,
628,
220,
220,
220,
2747,
62,
325,
70,
13,
7248,
35,
4154,
7,
310,
13,
3855,
35,
4154,
28955,
198,
220,
220,
220,
2747,
62,
325,
70,
13,
7248,
39688,
7,
310,
13,
3855,
39688,
28955,
198,
220,
220,
220,
2747,
62,
325,
70,
13,
7248,
4561,
4092,
7,
310,
13,
3855,
4561,
4092,
28955,
628,
220,
220,
220,
1650,
74,
13,
16594,
5159,
7,
28764,
62,
325,
70,
11,
28686,
13,
6978,
13,
22179,
7,
9971,
62,
28764,
62,
15908,
11,
2393,
13,
33491,
10786,
9600,
3256,
705,
75,
1428,
6,
22305,
198,
220,
220,
220,
1619,
2747,
62,
325,
70,
628,
220,
220,
220,
2866,
796,
640,
3419,
532,
923,
62,
2435,
198,
198,
2,
220,
220,
220,
2499,
25473,
13,
13564,
7,
1415,
11,
2393,
62,
9630,
1343,
352,
11,
2866,
8,
628,
220,
220,
220,
3601,
10786,
5661,
1339,
779,
46110,
13,
18,
69,
92,
264,
4458,
18982,
7,
12287,
4008,
198,
220,
220,
220,
3601,
10786,
19351,
6329,
11537,
628,
198,
198,
2,
1818,
2070,
13,
19836,
3419,
198
] | 2.150778 | 1,479 |
import doctest
import unittest
from hypothesis import given
from hypothesis.strategies import (builds, from_regex, integers, just, lists,
recursive, tuples)
from src.main import *
strat_codeline = from_regex(r"\A[a-z]{3}\Z")
strat_nochildren = just([])
strat_children = recursive(strat_nochildren, f)
@given(strat_children)
@given(recursive(from_regex(r"\A[a-z]{3}\Z"), lists))
| [
11748,
10412,
395,
198,
11748,
555,
715,
395,
198,
198,
6738,
14078,
1330,
1813,
198,
6738,
14078,
13,
2536,
2397,
444,
1330,
357,
11249,
82,
11,
422,
62,
260,
25636,
11,
37014,
11,
655,
11,
8341,
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,
45115,
11,
12777,
2374,
8,
198,
198,
6738,
12351,
13,
12417,
1330,
1635,
628,
628,
628,
628,
198,
2536,
265,
62,
19815,
4470,
796,
422,
62,
260,
25636,
7,
81,
1,
59,
32,
58,
64,
12,
89,
60,
90,
18,
32239,
57,
4943,
628,
198,
198,
2536,
265,
62,
3919,
17197,
796,
655,
26933,
12962,
198,
2536,
265,
62,
17197,
796,
45115,
7,
2536,
265,
62,
3919,
17197,
11,
277,
8,
628,
198,
31,
35569,
7,
2536,
265,
62,
17197,
8,
628,
628,
198,
31,
35569,
7,
8344,
30753,
7,
6738,
62,
260,
25636,
7,
81,
1,
59,
32,
58,
64,
12,
89,
60,
90,
18,
32239,
57,
12340,
8341,
4008,
198
] | 2.347826 | 184 |
import json
import math
import os
import sys
import time
import colorama
from colorama import Style, Fore, Back
colorama.init()
import click
@click.command()
@click.option('--fields', default='')
@click.option('--hide-inactive/--no-hide-inactive', default=False)
@click.option('--only')
@click.option('--watch', type=float, default=0.)
@click.option('--limit', type=int)
@click.option('--threshold', type=float)
@click.option('--ignore-inactive-nan/--no-ignore-inactive-nan', default=True)
@click.argument('folder', required=True)
if __name__ == '__main__':
run()
| [
11748,
33918,
198,
11748,
10688,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
640,
198,
11748,
3124,
1689,
198,
6738,
3124,
1689,
1330,
17738,
11,
4558,
11,
5157,
198,
198,
8043,
1689,
13,
15003,
3419,
198,
198,
11748,
3904,
628,
628,
628,
198,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
18076,
10786,
438,
25747,
3256,
4277,
28,
7061,
8,
198,
31,
12976,
13,
18076,
10786,
438,
24717,
12,
259,
5275,
14,
438,
3919,
12,
24717,
12,
259,
5275,
3256,
4277,
28,
25101,
8,
198,
31,
12976,
13,
18076,
10786,
438,
8807,
11537,
198,
31,
12976,
13,
18076,
10786,
438,
8340,
3256,
2099,
28,
22468,
11,
4277,
28,
15,
2014,
198,
31,
12976,
13,
18076,
10786,
438,
32374,
3256,
2099,
28,
600,
8,
198,
31,
12976,
13,
18076,
10786,
438,
400,
10126,
3256,
2099,
28,
22468,
8,
198,
31,
12976,
13,
18076,
10786,
438,
46430,
12,
259,
5275,
12,
12647,
14,
438,
3919,
12,
46430,
12,
259,
5275,
12,
12647,
3256,
4277,
28,
17821,
8,
198,
31,
12976,
13,
49140,
10786,
43551,
3256,
2672,
28,
17821,
8,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1057,
3419,
198
] | 2.924242 | 198 |
"""rename status retry
Revision ID: 6ef79b56ad4a
Revises: 94e7b91d83d5
Create Date: 2017-06-19 15:06:50.441524+00:00
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '6ef79b56ad4a'
down_revision = '94e7b91d83d5'
branch_labels = None
depends_on = None
## ref http://blog.yo1.dog/updating-enum-values-in-postgresql-the-safe-and-easy-way/
| [
37811,
918,
480,
3722,
1005,
563,
198,
198,
18009,
1166,
4522,
25,
718,
891,
3720,
65,
3980,
324,
19,
64,
198,
18009,
2696,
25,
10048,
68,
22,
65,
6420,
67,
5999,
67,
20,
198,
16447,
7536,
25,
2177,
12,
3312,
12,
1129,
1315,
25,
3312,
25,
1120,
13,
2598,
1314,
1731,
10,
405,
25,
405,
198,
198,
37811,
198,
6738,
31341,
2022,
291,
1330,
1034,
198,
11748,
44161,
282,
26599,
355,
473,
628,
198,
2,
18440,
42814,
11,
973,
416,
9300,
2022,
291,
13,
198,
260,
10178,
796,
705,
21,
891,
3720,
65,
3980,
324,
19,
64,
6,
198,
2902,
62,
260,
10178,
796,
705,
5824,
68,
22,
65,
6420,
67,
5999,
67,
20,
6,
198,
1671,
3702,
62,
23912,
1424,
796,
6045,
198,
10378,
2412,
62,
261,
796,
6045,
198,
198,
2235,
1006,
2638,
1378,
14036,
13,
8226,
16,
13,
9703,
14,
929,
38734,
12,
44709,
12,
27160,
12,
259,
12,
7353,
34239,
13976,
12,
1169,
12,
21230,
12,
392,
12,
38171,
12,
1014,
14,
198
] | 2.365269 | 167 |
"""
SparseSeriesData
"""
from __future__ import annotations
import logging
import sys
import time
import copy
from typing import Dict
# Its there not sure why pylint is unable to find it
# pylint: disable-msg=E0611 # No Name In Module
from lru import LRU
from nbdb.common.context import Context
from nbdb.common.data_point import DataPoint
from nbdb.common.data_point import FIELD
from nbdb.common.data_point import MISSING_POINT_VALUE, TOMBSTONE_VALUE
from nbdb.common.telemetry import Telemetry
from nbdb.common.tracing_config import TracingConfig
from nbdb.config.settings import Settings
from nbdb.store.sparse_store import SparseStore
from nbdb.store.sparse_series_stats_base import SeriesStatsBase
from pyformance import time_calls
logger = logging.getLogger()
# pylint: disable=R0902
class SeriesWriterBase:
"""
This class contains the common methods used in sparse series writer
and recovery series writer
"""
# pylint: disable=R0913 # Too Many Arguments
def generate_data_point_shard_by_metric(self, data_point: DataPoint,
shard: int) -> DataPoint:
"""
Generate a duplicate datapoint for the cross-cluster datasource.
Duplicating to the cross-cluster datasources enables fast cross-cluster
querying.
NOTE: We assume that the cross-cluster pattern matching has already
been done & verified before this method is called
"""
datasource_name = self.context.schema.compose_crosscluster_datasource(
shard)
dup_data_point = copy.deepcopy(data_point)
dup_data_point.datasource = datasource_name
return dup_data_point
def _run_after_interval(self, func_name, interval):
"""
Executes the function func_name if atleast interval seconds has elapsed
since last run
:param func_name:
:param interval:
:return:
"""
if func_name not in self._periodic_last_run_times:
self._periodic_last_run_times[func_name] = 0
if time.time() - self._periodic_last_run_times[func_name] < interval:
return
func = getattr(self, func_name, None)
func()
self._periodic_last_run_times[func_name] = time.time()
@time_calls
def report_stats_cache_telemetry(self) -> int:
"""
Expensive operation should be called rarely
Periodically report the stats telemetry.
This is expensive operation so should be done sparingly
:return size in bytes of the stats cache
"""
cache_size_bytes = sys.getsizeof(self.stats_cache)
stats_count = 0
transformed_count = 0
for stats_key, stats in self.stats_cache.items():
# count the items and transformations
stats_count += 1
if stats.get_pre_transform_value(-1) != -1:
transformed_count += 1
# Estimate the size of the stats entry
# add the size of key and stats primitive types
cache_size_bytes += sys.getsizeof(stats_key) + sys.getsizeof(stats)
Telemetry.inst.registry.gauge(
measurement='SparseSeriesWriter.stats_cache.size_bytes',
tag_key_values=["Topic=%s" % self.sparse_telemetry_source_id,
"ConsumerMode=%s" % self.consumer_mode]
).set_value(cache_size_bytes)
Telemetry.inst.registry.gauge(
measurement='SparseSeriesWriter.stats_cache.size',
tag_key_values=["Topic=%s" % self.sparse_telemetry_source_id,
"ConsumerMode=%s" % self.consumer_mode]
).set_value(stats_count)
Telemetry.inst.registry.gauge(
measurement='SparseSeriesWriter.stats_cache.transformed',
tag_key_values=["Topic=%s" % self.sparse_telemetry_source_id,
"ConsumerMode=%s" % self.consumer_mode]
).set_value(transformed_count)
return cache_size_bytes
def handle_series_start(self, datapoint: DataPoint, stats: SeriesStatsBase):
"""Handle additional logic when a series is created for the first time"""
# Update the cross-cluster shard value since we have encountered this
# series for the first time
cloned_tags = datapoint.tags.copy()
cloned_tags[FIELD] = datapoint.field
shard = self.context.schema.get_crosscluster_shard(cloned_tags)
if TracingConfig.TRACE_ACTIVE:
logger.info('TRACE: schema.get_crosscluster_shard() tags=%s '
'shard=%s', datapoint.tags, shard)
stats.set_crosscluster_shard(shard)
# Check if it matches one of the sparseness disabled patterns. If yes,
# store the info in a stats object
if self.context.schema.is_sparseness_disabled(cloned_tags):
stats.set_sparseness_disabled()
@time_calls
def heartbeat_scan(self, now: int = None) -> None:
"""
Expensive operation should be called rarely.
Scans the entire stats cache periodically and looks for dead series.
A dead series is explicitly marked with a tombstone value
:param now: time to compare the stats against, parameterized for
unittests
"""
if now is None:
now = time.time()
logger.info('heartbeat_scan(): now=%s', now)
# Num tombstones per datasource
num_tombstones: Dict[str, int] = dict()
for stats_key, stats in self.stats_cache.items():
# heartbeat_scan() can only be invoked in non-replay mode
replay_mode = False
tombstone = SeriesWriterBase.\
check_offline_tombstone(self.termination_detection_interval, \
self.data_gap_detection_interval, \
stats_key, stats, now)
SeriesWriterBase.\
remove_stats_cache_entry(self.stats_cache, stats_key, stats)
if tombstone is not None:
self.create_marker(tombstone, stats, replay_mode, terminate=True)
# extract datasource
datasource = DataPoint.datasource_from_series_id(stats_key)
if datasource in num_tombstones:
num_tombstones[datasource] = num_tombstones[datasource] + 1
else:
num_tombstones[datasource] = 1
for tombstones in num_tombstones.values():
Telemetry.inst.registry.meter(
'RecoverySeriesWriter.markers.tombstones').mark(tombstones)
def create_marker(self,
marker: DataPoint,
stats: SeriesStatsBase,
replay_mode: bool,
terminate: bool = False) -> None:
"""
Creates a missing / tombstone marker and updates stats appropriately
:param marker:
:param stats:
:param replay_mode:
:param terminate: IF true then series is terminated and we remove
stats object from the cache
"""
if terminate:
del self.stats_cache[marker.series_id]
self._write(marker, stats, replay_mode)
def _write_datapoint(self, data_point: DataPoint, stat: SeriesStatsBase):
"""
Write datapoint to sparse store. Write an additional cross-cluster
datapoint if series matches one of the cross-cluster rules
"""
self.sparse_store.write(data_point)
# Check if datapoint matches one of the cross-cluster patterns. If
# so, we duplicate a datapoint to the cross-cluster datasource to
# enable fast cross-cluster querying
shard = stat.get_crosscluster_shard()
if TracingConfig.TRACE_ACTIVE:
logger.info(
'TRACE: stat.get_crosscluster_shard, data_point=%s '
'shard=%s', data_point, shard)
if shard is not None:
# Datapoint matched one of the cross-cluster patterns
dup_data_point = self.generate_data_point_shard_by_metric(
data_point, shard)
self.sparse_store.write(dup_data_point)
if TracingConfig.TRACE_ACTIVE:
logger.info('TRACE: sparse_series_writer dup_cc_point: '
'data_point %s stats:%s', data_point, stat)
self.duplicated_data_points += 1
# meter.mark calls are expensive, amortize it across 1000 calls
if self.duplicated_data_points > 1000:
Telemetry.inst.registry.meter(
'MetricConsumer.duplicated_cc_data_points'
).mark(self.duplicated_data_points)
self.duplicated_data_points = 0
def _write(self, data_point: DataPoint, stat: SeriesStatsBase,
replay_mode: bool) -> None:
"""
Write the data point to store
:param data_point:
:param stat:
"""
raise NotImplementedError(
'Child class must implement the _write method')
def flush_writes(self) -> None:
"""
Flush writes. Blocks till all async writes are complete
"""
self.sparse_store.flush()
def reinitialize(self) -> None:
"""
Prepare the sparse writer to handle replayed datapoints
"""
# It is possible that the series from the older stats objects map to
# partititions that are no longer assigned to us.
#
# Instead of waiting for heartbeat scan to clean up the older object,
# which also triggers unnecessary insertions of tombstone markers, we
# clear up the entire cache and start afresh. This also helps keep our
# memory usage in check and avoid OOM
self.stats_cache.clear()
self.flush_writes()
@staticmethod
def check_offline_tombstone(termination_detection_interval,
data_gap_detection_interval,
series_id,
stats,
now):
"""
Check if a tombstone needs to be created to signal a dead series
:param series_id:
:param stats:
:param now: wall clock
:return: Returns True if tombstone was created
"""
refresh_epoch = stats.get_refresh_epoch()
if refresh_epoch <= 0:
# we cannot create a tombstone if we don't know the history
return None
time_since_last_point = now - stats.get_server_rx_time()
if time_since_last_point <= termination_detection_interval:
return None
# If we reached here, it means it has been longer than
# `termination_detection_interval` since the last point was received
if stats.is_sparseness_disabled():
# For series which have sparseness disabled, we don't generate
# tombstone values.
return None
# Generate a tombstone marker indicating series termination and
# delete stats object
tombstone_epoch = refresh_epoch + data_gap_detection_interval
tombstone = DataPoint.from_series_id(
series_id, tombstone_epoch, TOMBSTONE_VALUE,
# This is a special value. Make sure it's NOT normalized before
# storing
is_special_value=True)
return tombstone
@staticmethod
def remove_stats_cache_entry(stats_cache, series_id, stats):
"""
Remove stats cache entry which will not be used
"""
if stats.is_sparseness_disabled():
# For series which have sparseness disabled, delete the stats object
del stats_cache[series_id]
@staticmethod
def check_inline_missing_points(data_gap_detection_interval,
data_point,
stats):
"""
Checks for missing points within a single series based on the gap
between last reported point and the new point received
:param data_point:
:param stats:
"""
refresh_epoch = stats.get_refresh_epoch()
if refresh_epoch <= 0:
# we cannot create a missing point marker if we don't know the
# history
if TracingConfig.TRACE_ACTIVE:
logger.info('TRACE: sparse_series_writer.check_inline_'
'missing_points: data_point %s no missing '
'marker check due to no history stats %s',
str(data_point), str(stats))
return None
if data_point.epoch-refresh_epoch <= data_gap_detection_interval:
# The new data point came within the data gap interval
if TracingConfig.TRACE_ACTIVE:
logger.info('TRACE: sparse_series_writer.check_inline_'
'missing_points: data_point %s within '
'data_gap_detection_interval %d'
'stats %s',
str(data_point),
data_gap_detection_interval,
str(stats))
return None
missing_pt_epoch = refresh_epoch + data_gap_detection_interval
if TracingConfig.TRACE_ACTIVE:
logger.info('TRACE: sparse_series_writer.check_inline_'
'missing_points: data_point %s outside of '
'data_gap_detection_interval %d. '
'stats %s creating new missing marker at epoch=%d',
str(data_point),
data_gap_detection_interval,
str(stats),
missing_pt_epoch)
missing_pt_marker = DataPoint(data_point.datasource,
data_point.field,
data_point.tags,
missing_pt_epoch,
data_point.server_rx_epoch,
MISSING_POINT_VALUE,
# This is a special value. Make sure it's
# NOT normalized before storing
is_special_value=True,
series_id=data_point.series_id)
Telemetry.inst.registry.meter(
'SparseSeriesWriter.markers.missing_points').mark()
return missing_pt_marker
| [
37811,
198,
50,
29572,
27996,
6601,
198,
37811,
198,
6738,
11593,
37443,
834,
1330,
37647,
198,
198,
11748,
18931,
198,
11748,
25064,
198,
11748,
640,
198,
11748,
4866,
198,
6738,
19720,
1330,
360,
713,
198,
198,
2,
6363,
612,
407,
1654,
1521,
279,
2645,
600,
318,
5906,
284,
1064,
340,
198,
2,
279,
2645,
600,
25,
15560,
12,
19662,
28,
36,
3312,
1157,
220,
1303,
1400,
6530,
554,
19937,
198,
6738,
300,
622,
1330,
37491,
52,
198,
198,
6738,
299,
65,
9945,
13,
11321,
13,
22866,
1330,
30532,
198,
6738,
299,
65,
9945,
13,
11321,
13,
7890,
62,
4122,
1330,
6060,
12727,
198,
6738,
299,
65,
9945,
13,
11321,
13,
7890,
62,
4122,
1330,
18930,
24639,
198,
6738,
299,
65,
9945,
13,
11321,
13,
7890,
62,
4122,
1330,
49684,
2751,
62,
16402,
12394,
62,
39488,
11,
41526,
33,
2257,
11651,
62,
39488,
198,
6738,
299,
65,
9945,
13,
11321,
13,
46813,
41935,
1330,
14318,
41935,
198,
6738,
299,
65,
9945,
13,
11321,
13,
2213,
4092,
62,
11250,
1330,
833,
4092,
16934,
198,
6738,
299,
65,
9945,
13,
11250,
13,
33692,
1330,
16163,
198,
6738,
299,
65,
9945,
13,
8095,
13,
82,
29572,
62,
8095,
1330,
1338,
17208,
22658,
198,
6738,
299,
65,
9945,
13,
8095,
13,
82,
29572,
62,
25076,
62,
34242,
62,
8692,
1330,
7171,
29668,
14881,
198,
6738,
12972,
10367,
1330,
640,
62,
66,
5691,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
3419,
198,
198,
2,
279,
2645,
600,
25,
15560,
28,
49,
2931,
2999,
198,
4871,
7171,
34379,
14881,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
1398,
4909,
262,
2219,
5050,
973,
287,
29877,
2168,
6260,
198,
220,
220,
220,
290,
7628,
2168,
6260,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
49,
2931,
1485,
1303,
14190,
4650,
20559,
2886,
628,
220,
220,
220,
825,
7716,
62,
7890,
62,
4122,
62,
1477,
446,
62,
1525,
62,
4164,
1173,
7,
944,
11,
1366,
62,
4122,
25,
6060,
12727,
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,
427,
446,
25,
493,
8,
4613,
6060,
12727,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2980,
378,
257,
23418,
4818,
499,
1563,
329,
262,
3272,
12,
565,
5819,
19395,
1668,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49821,
12364,
284,
262,
3272,
12,
565,
5819,
19395,
2203,
13536,
3049,
3272,
12,
565,
5819,
198,
220,
220,
220,
220,
220,
220,
220,
42517,
1112,
13,
628,
220,
220,
220,
220,
220,
220,
220,
24550,
25,
775,
7048,
326,
262,
3272,
12,
565,
5819,
3912,
12336,
468,
1541,
198,
220,
220,
220,
220,
220,
220,
220,
587,
1760,
1222,
19000,
878,
428,
2446,
318,
1444,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19395,
1668,
62,
3672,
796,
2116,
13,
22866,
13,
15952,
2611,
13,
785,
3455,
62,
19692,
565,
5819,
62,
19608,
292,
1668,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
427,
446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
32597,
62,
7890,
62,
4122,
796,
4866,
13,
22089,
30073,
7,
7890,
62,
4122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
32597,
62,
7890,
62,
4122,
13,
19608,
292,
1668,
796,
19395,
1668,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
32597,
62,
7890,
62,
4122,
628,
220,
220,
220,
825,
4808,
5143,
62,
8499,
62,
3849,
2100,
7,
944,
11,
25439,
62,
3672,
11,
16654,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8393,
1769,
262,
2163,
25439,
62,
3672,
611,
379,
293,
459,
16654,
4201,
468,
42118,
198,
220,
220,
220,
220,
220,
220,
220,
1201,
938,
1057,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
25439,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16654,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
25439,
62,
3672,
407,
287,
2116,
13557,
41007,
291,
62,
12957,
62,
5143,
62,
22355,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
41007,
291,
62,
12957,
62,
5143,
62,
22355,
58,
20786,
62,
3672,
60,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
611,
640,
13,
2435,
3419,
532,
2116,
13557,
41007,
291,
62,
12957,
62,
5143,
62,
22355,
58,
20786,
62,
3672,
60,
1279,
16654,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
25439,
796,
651,
35226,
7,
944,
11,
25439,
62,
3672,
11,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25439,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
41007,
291,
62,
12957,
62,
5143,
62,
22355,
58,
20786,
62,
3672,
60,
796,
640,
13,
2435,
3419,
628,
220,
220,
220,
2488,
2435,
62,
66,
5691,
198,
220,
220,
220,
825,
989,
62,
34242,
62,
23870,
62,
46813,
41935,
7,
944,
8,
4613,
493,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5518,
2021,
4905,
815,
307,
1444,
8365,
198,
220,
220,
220,
220,
220,
220,
220,
18581,
1146,
989,
262,
9756,
5735,
41935,
13,
198,
220,
220,
220,
220,
220,
220,
220,
770,
318,
5789,
4905,
523,
815,
307,
1760,
43110,
306,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
2546,
287,
9881,
286,
262,
9756,
12940,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12940,
62,
7857,
62,
33661,
796,
25064,
13,
11407,
1096,
1659,
7,
944,
13,
34242,
62,
23870,
8,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
62,
9127,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
14434,
62,
9127,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
9756,
62,
2539,
11,
9756,
287,
2116,
13,
34242,
62,
23870,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
954,
262,
3709,
290,
38226,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
62,
9127,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
9756,
13,
1136,
62,
3866,
62,
35636,
62,
8367,
32590,
16,
8,
14512,
532,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14434,
62,
9127,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10062,
1920,
262,
2546,
286,
262,
9756,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
751,
262,
2546,
286,
1994,
290,
9756,
20049,
3858,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12940,
62,
7857,
62,
33661,
15853,
25064,
13,
11407,
1096,
1659,
7,
34242,
62,
2539,
8,
1343,
25064,
13,
11407,
1096,
1659,
7,
34242,
8,
628,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
70,
559,
469,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15558,
11639,
50,
29572,
27996,
34379,
13,
34242,
62,
23870,
13,
7857,
62,
33661,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
62,
2539,
62,
27160,
28,
14692,
33221,
28,
4,
82,
1,
4064,
2116,
13,
82,
29572,
62,
46813,
41935,
62,
10459,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
49106,
19076,
28,
4,
82,
1,
4064,
2116,
13,
49827,
62,
14171,
60,
198,
220,
220,
220,
220,
220,
220,
220,
6739,
2617,
62,
8367,
7,
23870,
62,
7857,
62,
33661,
8,
198,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
70,
559,
469,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15558,
11639,
50,
29572,
27996,
34379,
13,
34242,
62,
23870,
13,
7857,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
62,
2539,
62,
27160,
28,
14692,
33221,
28,
4,
82,
1,
4064,
2116,
13,
82,
29572,
62,
46813,
41935,
62,
10459,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
49106,
19076,
28,
4,
82,
1,
4064,
2116,
13,
49827,
62,
14171,
60,
198,
220,
220,
220,
220,
220,
220,
220,
6739,
2617,
62,
8367,
7,
34242,
62,
9127,
8,
198,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
70,
559,
469,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15558,
11639,
50,
29572,
27996,
34379,
13,
34242,
62,
23870,
13,
7645,
12214,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7621,
62,
2539,
62,
27160,
28,
14692,
33221,
28,
4,
82,
1,
4064,
2116,
13,
82,
29572,
62,
46813,
41935,
62,
10459,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
49106,
19076,
28,
4,
82,
1,
4064,
2116,
13,
49827,
62,
14171,
60,
198,
220,
220,
220,
220,
220,
220,
220,
6739,
2617,
62,
8367,
7,
7645,
12214,
62,
9127,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
12940,
62,
7857,
62,
33661,
628,
220,
220,
220,
825,
5412,
62,
25076,
62,
9688,
7,
944,
11,
4818,
499,
1563,
25,
6060,
12727,
11,
9756,
25,
7171,
29668,
14881,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
37508,
3224,
9156,
618,
257,
2168,
318,
2727,
329,
262,
717,
640,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10133,
262,
3272,
12,
565,
5819,
427,
446,
1988,
1201,
356,
423,
12956,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2168,
329,
262,
717,
640,
198,
220,
220,
220,
220,
220,
220,
220,
537,
12004,
62,
31499,
796,
4818,
499,
1563,
13,
31499,
13,
30073,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
537,
12004,
62,
31499,
58,
44603,
60,
796,
4818,
499,
1563,
13,
3245,
198,
220,
220,
220,
220,
220,
220,
220,
427,
446,
796,
2116,
13,
22866,
13,
15952,
2611,
13,
1136,
62,
19692,
565,
5819,
62,
1477,
446,
7,
565,
12004,
62,
31499,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
5446,
11598,
25,
32815,
13,
1136,
62,
19692,
565,
5819,
62,
1477,
446,
3419,
15940,
28,
4,
82,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1477,
446,
28,
4,
82,
3256,
4818,
499,
1563,
13,
31499,
11,
427,
446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
13,
2617,
62,
19692,
565,
5819,
62,
1477,
446,
7,
1477,
446,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
340,
7466,
530,
286,
262,
599,
945,
9449,
10058,
7572,
13,
1002,
3763,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3650,
262,
7508,
287,
257,
9756,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
22866,
13,
15952,
2611,
13,
271,
62,
2777,
945,
9449,
62,
47730,
7,
565,
12004,
62,
31499,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
13,
2617,
62,
2777,
945,
9449,
62,
47730,
3419,
628,
220,
220,
220,
2488,
2435,
62,
66,
5691,
198,
220,
220,
220,
825,
36051,
62,
35836,
7,
944,
11,
783,
25,
493,
796,
6045,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5518,
2021,
4905,
815,
307,
1444,
8365,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1446,
504,
262,
2104,
9756,
12940,
26034,
290,
3073,
329,
2636,
2168,
13,
198,
220,
220,
220,
220,
220,
220,
220,
317,
2636,
2168,
318,
11777,
7498,
351,
257,
22234,
6440,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
783,
25,
640,
284,
8996,
262,
9756,
1028,
11,
11507,
1143,
329,
198,
220,
220,
220,
220,
220,
220,
220,
555,
715,
3558,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
783,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
783,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
11499,
12945,
62,
35836,
33529,
783,
28,
4,
82,
3256,
783,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
31835,
22234,
28750,
583,
19395,
1668,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
83,
2381,
28750,
25,
360,
713,
58,
2536,
11,
493,
60,
796,
8633,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
9756,
62,
2539,
11,
9756,
287,
2116,
13,
34242,
62,
23870,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
36051,
62,
35836,
3419,
460,
691,
307,
24399,
287,
1729,
12,
260,
1759,
4235,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24788,
62,
14171,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22234,
6440,
796,
7171,
34379,
14881,
13,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2198,
62,
2364,
1370,
62,
83,
2381,
6440,
7,
944,
13,
41382,
62,
15255,
3213,
62,
3849,
2100,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7890,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
62,
2539,
11,
9756,
11,
783,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
34379,
14881,
13,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4781,
62,
34242,
62,
23870,
62,
13000,
7,
944,
13,
34242,
62,
23870,
11,
9756,
62,
2539,
11,
9756,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
22234,
6440,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
17953,
62,
4102,
263,
7,
83,
2381,
6440,
11,
9756,
11,
24788,
62,
14171,
11,
23654,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7925,
19395,
1668,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19395,
1668,
796,
6060,
12727,
13,
19608,
292,
1668,
62,
6738,
62,
25076,
62,
312,
7,
34242,
62,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
19395,
1668,
287,
997,
62,
83,
2381,
28750,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
83,
2381,
28750,
58,
19608,
292,
1668,
60,
796,
997,
62,
83,
2381,
28750,
58,
19608,
292,
1668,
60,
1343,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
83,
2381,
28750,
58,
19608,
292,
1668,
60,
796,
352,
628,
220,
220,
220,
220,
220,
220,
220,
329,
22234,
28750,
287,
997,
62,
83,
2381,
28750,
13,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
27231,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6690,
6560,
27996,
34379,
13,
4102,
364,
13,
83,
2381,
28750,
27691,
4102,
7,
83,
2381,
28750,
8,
628,
220,
220,
220,
825,
2251,
62,
4102,
263,
7,
944,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18364,
25,
6060,
12727,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
25,
7171,
29668,
14881,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24788,
62,
14171,
25,
20512,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23654,
25,
20512,
796,
10352,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
7921,
274,
257,
4814,
1220,
22234,
6440,
18364,
290,
5992,
9756,
20431,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
18364,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9756,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
24788,
62,
14171,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
23654,
25,
16876,
2081,
788,
2168,
318,
23083,
290,
356,
4781,
198,
220,
220,
220,
220,
220,
220,
220,
9756,
2134,
422,
262,
12940,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
23654,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
2116,
13,
34242,
62,
23870,
58,
4102,
263,
13,
25076,
62,
312,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
13564,
7,
4102,
263,
11,
9756,
11,
24788,
62,
14171,
8,
628,
220,
220,
220,
825,
4808,
13564,
62,
19608,
499,
1563,
7,
944,
11,
1366,
62,
4122,
25,
6060,
12727,
11,
1185,
25,
7171,
29668,
14881,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19430,
4818,
499,
1563,
284,
29877,
3650,
13,
19430,
281,
3224,
3272,
12,
565,
5819,
198,
220,
220,
220,
220,
220,
220,
220,
4818,
499,
1563,
611,
2168,
7466,
530,
286,
262,
3272,
12,
565,
5819,
3173,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
82,
29572,
62,
8095,
13,
13564,
7,
7890,
62,
4122,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
611,
4818,
499,
1563,
7466,
530,
286,
262,
3272,
12,
565,
5819,
7572,
13,
1002,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
523,
11,
356,
23418,
257,
4818,
499,
1563,
284,
262,
3272,
12,
565,
5819,
19395,
1668,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7139,
3049,
3272,
12,
565,
5819,
42517,
1112,
198,
220,
220,
220,
220,
220,
220,
220,
427,
446,
796,
1185,
13,
1136,
62,
19692,
565,
5819,
62,
1477,
446,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5446,
11598,
25,
1185,
13,
1136,
62,
19692,
565,
5819,
62,
1477,
446,
11,
1366,
62,
4122,
28,
4,
82,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1477,
446,
28,
4,
82,
3256,
1366,
62,
4122,
11,
427,
446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
427,
446,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16092,
499,
1563,
14451,
530,
286,
262,
3272,
12,
565,
5819,
7572,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32597,
62,
7890,
62,
4122,
796,
2116,
13,
8612,
378,
62,
7890,
62,
4122,
62,
1477,
446,
62,
1525,
62,
4164,
1173,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
4122,
11,
427,
446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
82,
29572,
62,
8095,
13,
13564,
7,
646,
79,
62,
7890,
62,
4122,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
5446,
11598,
25,
29877,
62,
25076,
62,
16002,
32597,
62,
535,
62,
4122,
25,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7890,
62,
4122,
4064,
82,
9756,
25,
4,
82,
3256,
1366,
62,
4122,
11,
1185,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
646,
489,
3474,
62,
7890,
62,
13033,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16430,
13,
4102,
3848,
389,
5789,
11,
716,
419,
1096,
340,
1973,
8576,
3848,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
646,
489,
3474,
62,
7890,
62,
13033,
1875,
8576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
27231,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9171,
1173,
49106,
13,
646,
489,
3474,
62,
535,
62,
7890,
62,
13033,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6739,
4102,
7,
944,
13,
646,
489,
3474,
62,
7890,
62,
13033,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
646,
489,
3474,
62,
7890,
62,
13033,
796,
657,
628,
220,
220,
220,
825,
4808,
13564,
7,
944,
11,
1366,
62,
4122,
25,
6060,
12727,
11,
1185,
25,
7171,
29668,
14881,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24788,
62,
14171,
25,
20512,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
19430,
262,
1366,
966,
284,
3650,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1366,
62,
4122,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1185,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16424,
1398,
1276,
3494,
262,
4808,
13564,
2446,
11537,
628,
220,
220,
220,
825,
24773,
62,
8933,
274,
7,
944,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1610,
1530,
6797,
13,
35111,
10597,
477,
30351,
6797,
389,
1844,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
82,
29572,
62,
8095,
13,
25925,
3419,
628,
220,
220,
220,
825,
6865,
6847,
1096,
7,
944,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
43426,
262,
29877,
6260,
284,
5412,
302,
21542,
4818,
499,
1563,
82,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
632,
318,
1744,
326,
262,
2168,
422,
262,
4697,
9756,
5563,
3975,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
636,
270,
1756,
326,
389,
645,
2392,
8686,
284,
514,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5455,
286,
4953,
329,
36051,
9367,
284,
3424,
510,
262,
4697,
2134,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
543,
635,
20022,
13114,
7550,
507,
286,
22234,
6440,
19736,
11,
356,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1598,
510,
262,
2104,
12940,
290,
923,
6580,
3447,
13,
770,
635,
5419,
1394,
674,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4088,
8748,
287,
2198,
290,
3368,
440,
2662,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
34242,
62,
23870,
13,
20063,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
25925,
62,
8933,
274,
3419,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2198,
62,
2364,
1370,
62,
83,
2381,
6440,
7,
41382,
62,
15255,
3213,
62,
3849,
2100,
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,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
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,
2168,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9756,
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,
783,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6822,
611,
257,
22234,
6440,
2476,
284,
307,
2727,
284,
6737,
257,
2636,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2168,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9756,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
783,
25,
3355,
8801,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
16409,
6407,
611,
22234,
6440,
373,
2727,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
14976,
62,
538,
5374,
796,
9756,
13,
1136,
62,
5420,
3447,
62,
538,
5374,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
14976,
62,
538,
5374,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
2314,
2251,
257,
22234,
6440,
611,
356,
836,
470,
760,
262,
2106,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
640,
62,
20777,
62,
12957,
62,
4122,
796,
783,
532,
9756,
13,
1136,
62,
15388,
62,
40914,
62,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
640,
62,
20777,
62,
12957,
62,
4122,
19841,
19883,
62,
15255,
3213,
62,
3849,
2100,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
356,
4251,
994,
11,
340,
1724,
340,
468,
587,
2392,
621,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4600,
41382,
62,
15255,
3213,
62,
3849,
2100,
63,
1201,
262,
938,
966,
373,
2722,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9756,
13,
271,
62,
2777,
945,
9449,
62,
47730,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
2168,
543,
423,
599,
945,
9449,
10058,
11,
356,
836,
470,
7716,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
22234,
6440,
3815,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2980,
378,
257,
22234,
6440,
18364,
12739,
2168,
19883,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
12233,
9756,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
22234,
6440,
62,
538,
5374,
796,
14976,
62,
538,
5374,
1343,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
198,
220,
220,
220,
220,
220,
220,
220,
22234,
6440,
796,
6060,
12727,
13,
6738,
62,
25076,
62,
312,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2168,
62,
312,
11,
22234,
6440,
62,
538,
5374,
11,
41526,
33,
2257,
11651,
62,
39488,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
318,
257,
2041,
1988,
13,
6889,
1654,
340,
338,
5626,
39279,
878,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
23069,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
20887,
62,
8367,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
22234,
6440,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
4781,
62,
34242,
62,
23870,
62,
13000,
7,
34242,
62,
23870,
11,
2168,
62,
312,
11,
9756,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
17220,
9756,
12940,
5726,
543,
481,
407,
307,
973,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
9756,
13,
271,
62,
2777,
945,
9449,
62,
47730,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
2168,
543,
423,
599,
945,
9449,
10058,
11,
12233,
262,
9756,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
9756,
62,
23870,
58,
25076,
62,
312,
60,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
2198,
62,
45145,
62,
45688,
62,
13033,
7,
7890,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
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,
1366,
62,
4122,
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,
9756,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
47719,
329,
4814,
2173,
1626,
257,
2060,
2168,
1912,
319,
262,
7625,
198,
220,
220,
220,
220,
220,
220,
220,
1022,
938,
2098,
966,
290,
262,
649,
966,
2722,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1366,
62,
4122,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9756,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
14976,
62,
538,
5374,
796,
9756,
13,
1136,
62,
5420,
3447,
62,
538,
5374,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
14976,
62,
538,
5374,
19841,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
2314,
2251,
257,
4814,
966,
18364,
611,
356,
836,
470,
760,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2106,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
5446,
11598,
25,
29877,
62,
25076,
62,
16002,
13,
9122,
62,
45145,
62,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
45688,
62,
13033,
25,
1366,
62,
4122,
4064,
82,
645,
4814,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4102,
263,
2198,
2233,
284,
645,
2106,
9756,
4064,
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,
220,
220,
220,
220,
965,
7,
7890,
62,
4122,
828,
965,
7,
34242,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1366,
62,
4122,
13,
538,
5374,
12,
5420,
3447,
62,
538,
5374,
19841,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
649,
1366,
966,
1625,
1626,
262,
1366,
7625,
16654,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
5446,
11598,
25,
29877,
62,
25076,
62,
16002,
13,
9122,
62,
45145,
62,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
45688,
62,
13033,
25,
1366,
62,
4122,
4064,
82,
1626,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7890,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
4064,
67,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34242,
4064,
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,
220,
220,
220,
220,
965,
7,
7890,
62,
4122,
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,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
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,
965,
7,
34242,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
4814,
62,
457,
62,
538,
5374,
796,
14976,
62,
538,
5374,
1343,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
198,
220,
220,
220,
220,
220,
220,
220,
611,
833,
4092,
16934,
13,
5446,
11598,
62,
10659,
9306,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49706,
13,
10951,
10786,
5446,
11598,
25,
29877,
62,
25076,
62,
16002,
13,
9122,
62,
45145,
62,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
45688,
62,
13033,
25,
1366,
62,
4122,
4064,
82,
2354,
286,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7890,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
4064,
67,
13,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34242,
4064,
82,
4441,
649,
4814,
18364,
379,
36835,
28,
4,
67,
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,
965,
7,
7890,
62,
4122,
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,
1366,
62,
43554,
62,
15255,
3213,
62,
3849,
2100,
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,
965,
7,
34242,
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,
4814,
62,
457,
62,
538,
5374,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4814,
62,
457,
62,
4102,
263,
796,
6060,
12727,
7,
7890,
62,
4122,
13,
19608,
292,
1668,
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,
1366,
62,
4122,
13,
3245,
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,
1366,
62,
4122,
13,
31499,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4814,
62,
457,
62,
538,
5374,
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,
1366,
62,
4122,
13,
15388,
62,
40914,
62,
538,
5374,
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,
49684,
2751,
62,
16402,
12394,
62,
39488,
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,
1303,
770,
318,
257,
2041,
1988,
13,
6889,
1654,
340,
338,
198,
220,
220,
220,
220,
220,
220,
220,
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,
5626,
39279,
878,
23069,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
20887,
62,
8367,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2168,
62,
312,
28,
7890,
62,
4122,
13,
25076,
62,
312,
8,
628,
220,
220,
220,
220,
220,
220,
220,
14318,
41935,
13,
8625,
13,
2301,
4592,
13,
27231,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
50,
29572,
27996,
34379,
13,
4102,
364,
13,
45688,
62,
13033,
27691,
4102,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
4814,
62,
457,
62,
4102,
263,
198
] | 2.160529 | 6,734 |
#!/usr/bin/env python3
import argparse
import logging
import os
import re
import sys
import time
import traceback
import Constants
import FoscamImager
import Mailer
import NetHelpers
system_healthy = True
state = dict()
message = ""
#### Helper Functions ####
# Note: For windows nodes only
# Note: For Foscam nodes only
#### Main Routine ####
if __name__ == "__main__":
parser = argparse.ArgumentParser(description = "Reboot Utility")
parser.add_argument('--mode',
help ='Foscams or Windows(i.e.:Alpha)',
choices =['foscam','windows'],
default ='foscam')
parser.add_argument('--reboot',
help ='Reboot or check only',
action ='store_true',
default =False)
parser.add_argument('--display_image',
help ='Display captured image',
action ='store_true',
default =False)
parser.add_argument('--always_email',
help ='Send email report',
action ='store_true',
default =False)
parser.add_argument('-d', '--debug', action='store_true',
help='set logging level to debug')
args = parser.parse_args()
logfile = '%s/%s.log' % (Constants.LOGGING_DIR, os.path.basename(__file__))
log_format = '%(levelname)s:%(module)s.%(lineno)d:%(asctime)s: %(message)s'
logging.basicConfig(filename=logfile, format=log_format, level=logging.INFO)
if args.debug:
logging.getLogger().setLevel(logging.DEBUG)
logging.info('============')
logging.info('Invoked command: %s' % ' '.join(sys.argv))
nodes = Constants.FOSCAM_NODES if args.mode == 'foscam' \
else Constants.WINDOWS_NODES
log_message("Checking connectivity...")
check_state(desired_up=True, attempts=5) ## Seeing intermittent nwk failures. Let's mask these
for nodeName, nodeIP in nodes.items():
if state[nodeName]:
log_message(" %s: %s online." % (args.mode, nodeName))
else:
log_message(">> ERROR %s: %s offline." % (args.mode, nodeName))
if args.reboot:
log_message("Rebooting now...")
for nodeName, nodeIP in nodes.items():
if args.mode == 'foscam':
logging.debug(reboot_foscam(nodeName))
else:
# If windows and alive, do a deep check before rebooting.
log_message(print_deep_state(nodeName))
logging.debug(reboot_windows(nodeIP))
check_state(desired_up=False, attempts=180)
for nodeName, nodeIP in nodes.items():
if state[nodeName]:
log_message(" Confirmed node is down: %s" % nodeName)
else:
log_message(">> ERROR: Oops! Node did not reboot: %s" % nodeName)
log_message("Sleep until nodes restart...")
check_state(desired_up=True, attempts=180)
for nodeName, nodeIP in nodes.items():
if state[nodeName]:
log_message(" %s: %s back online." % (args.mode, nodeName))
else:
log_message(">> ERROR: %s: %s failed online." % (args.mode, nodeName))
time.sleep(60) # generously wait for nodes to stabilize
# Do a deeper check
log_message("Check if foscams are healthy...")
for nodeName, nodeIP in nodes.items():
if state[nodeName]:
if args.mode == 'foscam':
node_healthy = check_if_can_image(nodeName, args.display_image)
system_healthy = system_healthy and node_healthy
else:
# If windows and alive, do a deep check
log_message(print_deep_state(nodeName))
# Cleanup and reporting
if not system_healthy:
log_message(">> ERROR: Node check failed!")
else:
log_message('All is well')
Mailer.sendmail(topic="[NodeCheck-%s]" %args.mode, alert=not system_healthy, \
message=message, always_email=args.always_email)
print("Done!")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
11748,
1822,
29572,
198,
11748,
18931,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
25064,
198,
11748,
640,
198,
11748,
12854,
1891,
198,
11748,
4757,
1187,
198,
11748,
376,
17500,
321,
3546,
3536,
198,
11748,
11099,
263,
198,
11748,
3433,
12621,
19276,
198,
198,
10057,
62,
22796,
796,
6407,
198,
5219,
796,
8633,
3419,
198,
20500,
796,
13538,
198,
198,
4242,
5053,
525,
40480,
1303,
21017,
628,
198,
198,
2,
5740,
25,
1114,
9168,
13760,
691,
198,
198,
2,
5740,
25,
1114,
376,
17500,
321,
13760,
691,
628,
198,
198,
4242,
8774,
371,
28399,
1303,
21017,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
796,
366,
28951,
1025,
34030,
4943,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
14171,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
220,
220,
220,
796,
6,
37,
17500,
4105,
393,
3964,
7,
72,
13,
68,
11207,
38077,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7747,
796,
17816,
69,
17500,
321,
41707,
28457,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
796,
6,
69,
17500,
321,
11537,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
260,
18769,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
220,
220,
220,
796,
6,
28951,
1025,
393,
2198,
691,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2223,
220,
796,
6,
8095,
62,
7942,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
796,
25101,
8,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
13812,
62,
9060,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
220,
220,
220,
796,
6,
23114,
7907,
2939,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2223,
220,
796,
6,
8095,
62,
7942,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
796,
25101,
8,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
33770,
62,
12888,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
220,
220,
220,
796,
6,
25206,
3053,
989,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2223,
220,
796,
6,
8095,
62,
7942,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
796,
25101,
8,
198,
220,
30751,
13,
2860,
62,
49140,
10786,
12,
67,
3256,
705,
438,
24442,
3256,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
2617,
18931,
1241,
284,
14257,
11537,
198,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
2604,
7753,
796,
705,
4,
82,
14,
4,
82,
13,
6404,
6,
4064,
357,
34184,
1187,
13,
25294,
38,
2751,
62,
34720,
11,
28686,
13,
6978,
13,
12093,
12453,
7,
834,
7753,
834,
4008,
198,
220,
2604,
62,
18982,
796,
705,
4,
7,
5715,
3672,
8,
82,
25,
4,
7,
21412,
8,
82,
13,
4,
7,
2815,
23397,
8,
67,
25,
4,
7,
292,
310,
524,
8,
82,
25,
4064,
7,
20500,
8,
82,
6,
198,
220,
18931,
13,
35487,
16934,
7,
34345,
28,
6404,
7753,
11,
5794,
28,
6404,
62,
18982,
11,
1241,
28,
6404,
2667,
13,
10778,
8,
198,
220,
611,
26498,
13,
24442,
25,
198,
220,
220,
220,
220,
220,
18931,
13,
1136,
11187,
1362,
22446,
2617,
4971,
7,
6404,
2667,
13,
30531,
8,
198,
220,
18931,
13,
10951,
10786,
25609,
11537,
198,
220,
18931,
13,
10951,
10786,
19904,
6545,
3141,
25,
4064,
82,
6,
4064,
705,
45302,
22179,
7,
17597,
13,
853,
85,
4008,
628,
220,
13760,
796,
4757,
1187,
13,
37,
2640,
34,
2390,
62,
45,
3727,
1546,
611,
26498,
13,
14171,
6624,
705,
69,
17500,
321,
6,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
4757,
1187,
13,
33207,
62,
45,
3727,
1546,
628,
220,
2604,
62,
20500,
7203,
9787,
278,
19843,
9313,
8,
198,
220,
2198,
62,
5219,
7,
8906,
1202,
62,
929,
28,
17821,
11,
6370,
28,
20,
8,
22492,
25913,
38361,
299,
43021,
15536,
13,
3914,
338,
9335,
777,
198,
220,
329,
10139,
5376,
11,
10139,
4061,
287,
13760,
13,
23814,
33529,
198,
220,
220,
220,
611,
1181,
58,
17440,
5376,
5974,
198,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
220,
220,
4064,
82,
25,
4064,
82,
2691,
526,
4064,
357,
22046,
13,
14171,
11,
10139,
5376,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
4211,
33854,
4064,
82,
25,
4064,
82,
18043,
526,
4064,
357,
22046,
13,
14171,
11,
10139,
5376,
4008,
628,
220,
611,
26498,
13,
260,
18769,
25,
198,
220,
220,
220,
2604,
62,
20500,
7203,
28951,
12494,
783,
9313,
8,
198,
220,
220,
220,
329,
10139,
5376,
11,
10139,
4061,
287,
13760,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
611,
26498,
13,
14171,
6624,
705,
69,
17500,
321,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
24442,
7,
260,
18769,
62,
69,
17500,
321,
7,
17440,
5376,
4008,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
9168,
290,
6776,
11,
466,
257,
2769,
2198,
878,
3405,
12494,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7,
4798,
62,
22089,
62,
5219,
7,
17440,
5376,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
24442,
7,
260,
18769,
62,
28457,
7,
17440,
4061,
4008,
198,
220,
220,
220,
2198,
62,
5219,
7,
8906,
1202,
62,
929,
28,
25101,
11,
6370,
28,
15259,
8,
198,
220,
220,
220,
329,
10139,
5376,
11,
10139,
4061,
287,
13760,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
611,
1181,
58,
17440,
5376,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
220,
220,
7326,
15491,
10139,
318,
866,
25,
4064,
82,
1,
4064,
10139,
5376,
8,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
4211,
33854,
25,
48002,
0,
19081,
750,
407,
20149,
25,
4064,
82,
1,
4064,
10139,
5376,
8,
198,
220,
220,
220,
2604,
62,
20500,
7203,
40555,
1566,
13760,
15765,
9313,
8,
198,
220,
220,
220,
2198,
62,
5219,
7,
8906,
1202,
62,
929,
28,
17821,
11,
6370,
28,
15259,
8,
198,
220,
220,
220,
329,
10139,
5376,
11,
10139,
4061,
287,
13760,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
611,
1181,
58,
17440,
5376,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
220,
220,
4064,
82,
25,
4064,
82,
736,
2691,
526,
4064,
357,
22046,
13,
14171,
11,
10139,
5376,
4008,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7203,
4211,
33854,
25,
4064,
82,
25,
4064,
82,
4054,
2691,
526,
4064,
357,
22046,
13,
14171,
11,
10139,
5376,
4008,
198,
220,
220,
220,
640,
13,
42832,
7,
1899,
8,
1303,
42088,
4043,
329,
13760,
284,
32411,
628,
220,
1303,
2141,
257,
9211,
2198,
198,
220,
2604,
62,
20500,
7203,
9787,
611,
277,
17500,
4105,
389,
5448,
9313,
8,
198,
220,
329,
10139,
5376,
11,
10139,
4061,
287,
13760,
13,
23814,
33529,
198,
220,
220,
220,
611,
1181,
58,
17440,
5376,
5974,
198,
220,
220,
220,
220,
220,
611,
26498,
13,
14171,
6624,
705,
69,
17500,
321,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
62,
22796,
796,
2198,
62,
361,
62,
5171,
62,
9060,
7,
17440,
5376,
11,
26498,
13,
13812,
62,
9060,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1080,
62,
22796,
796,
1080,
62,
22796,
290,
10139,
62,
22796,
198,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
9168,
290,
6776,
11,
466,
257,
2769,
2198,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
62,
20500,
7,
4798,
62,
22089,
62,
5219,
7,
17440,
5376,
4008,
628,
220,
1303,
5985,
929,
290,
6447,
198,
220,
611,
407,
1080,
62,
22796,
25,
198,
220,
220,
220,
2604,
62,
20500,
7203,
4211,
33854,
25,
19081,
2198,
4054,
2474,
8,
198,
220,
2073,
25,
198,
220,
220,
220,
2604,
62,
20500,
10786,
3237,
318,
880,
11537,
198,
220,
11099,
263,
13,
21280,
4529,
7,
26652,
2625,
58,
19667,
9787,
12,
4,
82,
30866,
4064,
22046,
13,
14171,
11,
7995,
28,
1662,
1080,
62,
22796,
11,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
20500,
11,
1464,
62,
12888,
28,
22046,
13,
33770,
62,
12888,
8,
198,
220,
3601,
7203,
45677,
2474,
8,
198
] | 2.387276 | 1,619 |
from typing import Tuple, Union
import gym.spaces as spaces
import numpy as np
from gym.spaces import Box
from autograph.lib.envs.adversarialenv import AdversarialEnv, PlayerID
from autograph.lib.envs.saveloadenv import SaveLoadEnv
from autograph.lib.util import element_add, element_neg
PATTERNS = ((0, 1), (1, 0), (1, 1), (1, -1))
| [
6738,
19720,
1330,
309,
29291,
11,
4479,
198,
198,
11748,
11550,
13,
2777,
2114,
355,
9029,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
11550,
13,
2777,
2114,
1330,
8315,
198,
198,
6738,
1960,
2384,
13,
8019,
13,
268,
14259,
13,
324,
690,
36098,
24330,
1330,
1215,
690,
36098,
4834,
85,
11,
7853,
2389,
198,
6738,
1960,
2384,
13,
8019,
13,
268,
14259,
13,
11400,
626,
1170,
24330,
1330,
12793,
8912,
4834,
85,
198,
6738,
1960,
2384,
13,
8019,
13,
22602,
1330,
5002,
62,
2860,
11,
5002,
62,
12480,
198,
198,
47,
1404,
5781,
8035,
796,
14808,
15,
11,
352,
828,
357,
16,
11,
657,
828,
357,
16,
11,
352,
828,
357,
16,
11,
532,
16,
4008,
628
] | 2.855932 | 118 |
arr = [64, 34, 25, 12, 22, 11, 90]
test_arr = [2, 1, 5, 3, 4, 7]
bubbleSort(test_arr)
print("排序后的数组:")
for i in range(len(test_arr)):
print("%d" % test_arr[i]),
print(bubble(test_arr)) | [
628,
198,
3258,
796,
685,
2414,
11,
4974,
11,
1679,
11,
1105,
11,
2534,
11,
1367,
11,
4101,
60,
198,
9288,
62,
3258,
796,
685,
17,
11,
352,
11,
642,
11,
513,
11,
604,
11,
767,
60,
198,
198,
46176,
903,
42758,
7,
9288,
62,
3258,
8,
198,
198,
4798,
7203,
162,
236,
240,
41753,
237,
28938,
236,
21410,
46763,
108,
163,
119,
226,
25,
4943,
198,
1640,
1312,
287,
2837,
7,
11925,
7,
9288,
62,
3258,
8,
2599,
198,
220,
220,
220,
3601,
7203,
4,
67,
1,
4064,
1332,
62,
3258,
58,
72,
46570,
628,
198,
4798,
7,
46176,
903,
7,
9288,
62,
3258,
4008
] | 1.839623 | 106 |
import socket
s=socket.socket()
n=int(raw_input("enter n:"))
s.connect(('127.0.0.1',2222))
for k in range(0,n):
input=raw_input()
#s.connect(('127.0.0.1',2222))
s.send(input)
k=s.recv(1024)
print k
| [
11748,
17802,
198,
82,
28,
44971,
13,
44971,
3419,
198,
77,
28,
600,
7,
1831,
62,
15414,
7203,
9255,
299,
11097,
4008,
198,
82,
13,
8443,
7,
10786,
16799,
13,
15,
13,
15,
13,
16,
3256,
1828,
1828,
4008,
198,
1640,
479,
287,
2837,
7,
15,
11,
77,
2599,
198,
197,
15414,
28,
1831,
62,
15414,
3419,
198,
197,
2,
82,
13,
8443,
7,
10786,
16799,
13,
15,
13,
15,
13,
16,
3256,
1828,
1828,
4008,
198,
197,
82,
13,
21280,
7,
15414,
8,
198,
197,
74,
28,
82,
13,
8344,
85,
7,
35500,
8,
198,
197,
4798,
479,
198
] | 2.03 | 100 |
#coding:utf-8
#
# id: functional.gtcs.external_file_04_d
# title: GTCS/tests/external-file-04-d. Test for external table with field of INTEGER datatype
# decription:
# Original test see in:
# https://github.com/FirebirdSQL/fbtcs/blob/master/GTCS/tests/EXT_REL_0_4_D.script
# Checked on: 4.0.0.2240; 3.0.7.33380
#
# tracker_id:
# min_versions: ['3.0']
# versions: 3.0
# qmid: None
import pytest
from firebird.qa import db_factory, python_act, Action
# version: 3.0
# resources: None
substitutions_1 = [('[ \t]+', ' ')]
init_script_1 = """"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
# test_script_1
#---
#
# import os
# import sys
# import subprocess
# import time
#
# tmp_file = os.path.join(context['temp_directory'],'tmp_ext_04_d.tmp')
# if os.path.isfile( tmp_file):
# os.remove( tmp_file )
#
# this_fdb = db_conn.database_name
#
# sql_cmd='''
# connect 'localhost:%(this_fdb)s' user '%(user_name)s' password '%(user_password)s';
# create table ext_table external file '%(tmp_file)s' (f01 int);
# commit;
# insert into ext_table (f01) values ( 2147483647);
# insert into ext_table (f01) values (-2147483648);
# insert into ext_table (f01) values (1);
# insert into ext_table (f01) values (-1);
# insert into ext_table (f01) values (0);
# insert into ext_table (f01) values ( 2147483648);
# insert into ext_table (f01) values (-2147483649);
# commit;
# set list on;
# set count on;
# select * from ext_table order by f01;
# ''' % dict(globals(), **locals())
#
# runProgram('isql', [ '-q' ], sql_cmd)
#
# f_sql_chk = open( os.path.join(context['temp_directory'],'tmp_ext_04_d.sql'), 'w')
# f_sql_chk.write(sql_cmd)
# f_sql_chk.close()
#
# time.sleep(1)
#
# os.remove(f_sql_chk.name)
# os.remove( tmp_file )
#
#---
act_1 = python_act('db_1', substitutions=substitutions_1)
expected_stderr_1 = """
Statement failed, SQLSTATE = 22003
arithmetic exception, numeric overflow, or string truncation
-numeric value is out of range
Statement failed, SQLSTATE = 22003
arithmetic exception, numeric overflow, or string truncation
-numeric value is out of range
"""
expected_stdout_1 = """
F01 -2147483648
F01 -1
F01 0
F01 1
F01 2147483647
Records affected: 5
"""
@pytest.mark.version('>=3.0')
@pytest.mark.xfail
| [
2,
66,
7656,
25,
40477,
12,
23,
198,
2,
198,
2,
4686,
25,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10345,
13,
13655,
6359,
13,
22615,
62,
7753,
62,
3023,
62,
67,
198,
2,
3670,
25,
220,
220,
220,
220,
220,
220,
220,
402,
4825,
50,
14,
41989,
14,
22615,
12,
7753,
12,
3023,
12,
67,
13,
6208,
329,
7097,
3084,
351,
2214,
286,
17828,
7156,
1137,
4818,
265,
2981,
198,
2,
875,
2918,
25,
220,
220,
220,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
197,
20556,
1332,
766,
287,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
12567,
13,
785,
14,
13543,
16944,
17861,
14,
69,
18347,
6359,
14,
2436,
672,
14,
9866,
14,
38,
4825,
50,
14,
41989,
14,
13918,
62,
16448,
62,
15,
62,
19,
62,
35,
13,
12048,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6822,
276,
319,
25,
604,
13,
15,
13,
15,
13,
17,
16102,
26,
513,
13,
15,
13,
22,
13,
20370,
1795,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
2,
30013,
62,
312,
25,
220,
220,
220,
198,
2,
949,
62,
47178,
25,
37250,
18,
13,
15,
20520,
198,
2,
6300,
25,
220,
220,
220,
220,
513,
13,
15,
198,
2,
10662,
13602,
25,
220,
220,
220,
220,
220,
220,
220,
220,
6045,
198,
198,
11748,
12972,
9288,
198,
6738,
2046,
16944,
13,
20402,
1330,
20613,
62,
69,
9548,
11,
21015,
62,
529,
11,
7561,
198,
198,
2,
2196,
25,
513,
13,
15,
198,
2,
4133,
25,
6045,
198,
198,
7266,
301,
270,
3508,
62,
16,
796,
685,
10786,
58,
3467,
83,
48688,
3256,
705,
705,
15437,
198,
198,
15003,
62,
12048,
62,
16,
796,
13538,
15931,
15931,
198,
198,
9945,
62,
16,
796,
20613,
62,
69,
9548,
7,
25410,
62,
38969,
478,
28,
18,
11,
2315,
28,
15003,
62,
12048,
62,
16,
8,
198,
198,
2,
1332,
62,
12048,
62,
16,
198,
2,
6329,
198,
2,
220,
198,
2,
220,
1330,
28686,
198,
2,
220,
1330,
25064,
198,
2,
220,
1330,
850,
14681,
198,
2,
220,
1330,
640,
198,
2,
220,
220,
198,
2,
220,
45218,
62,
7753,
796,
28686,
13,
6978,
13,
22179,
7,
22866,
17816,
29510,
62,
34945,
20520,
4032,
22065,
62,
2302,
62,
3023,
62,
67,
13,
22065,
11537,
198,
2,
220,
611,
28686,
13,
6978,
13,
4468,
576,
7,
45218,
62,
7753,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
7,
45218,
62,
7753,
1267,
198,
2,
220,
220,
198,
2,
220,
428,
62,
69,
9945,
796,
20613,
62,
37043,
13,
48806,
62,
3672,
198,
2,
220,
220,
198,
2,
220,
44161,
62,
28758,
28,
7061,
6,
198,
2,
220,
220,
220,
220,
220,
2018,
705,
36750,
25,
4,
7,
5661,
62,
69,
9945,
8,
82,
6,
2836,
705,
4,
7,
7220,
62,
3672,
8,
82,
6,
9206,
705,
4,
7,
7220,
62,
28712,
8,
82,
17020,
198,
2,
220,
220,
220,
220,
220,
2251,
3084,
1070,
62,
11487,
7097,
2393,
705,
4,
7,
22065,
62,
7753,
8,
82,
6,
357,
69,
486,
493,
1776,
198,
2,
220,
220,
220,
220,
220,
4589,
26,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
357,
362,
20198,
2780,
26780,
22,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
13841,
17,
20198,
2780,
26780,
23,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
357,
16,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
13841,
16,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
357,
15,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
357,
362,
20198,
2780,
26780,
23,
1776,
198,
2,
220,
220,
220,
220,
220,
7550,
656,
1070,
62,
11487,
357,
69,
486,
8,
3815,
13841,
17,
20198,
2780,
26780,
24,
1776,
198,
2,
220,
220,
220,
220,
220,
4589,
26,
198,
2,
220,
220,
220,
220,
220,
900,
1351,
319,
26,
198,
2,
220,
220,
220,
220,
220,
900,
954,
319,
26,
198,
2,
220,
220,
220,
220,
220,
2922,
1635,
422,
1070,
62,
11487,
1502,
416,
277,
486,
26,
198,
2,
220,
705,
7061,
4064,
8633,
7,
4743,
672,
874,
22784,
12429,
17946,
874,
28955,
198,
2,
220,
220,
198,
2,
220,
1057,
15167,
10786,
271,
13976,
3256,
685,
705,
12,
80,
6,
16589,
44161,
62,
28758,
8,
198,
2,
220,
220,
198,
2,
220,
277,
62,
25410,
62,
354,
74,
796,
1280,
7,
28686,
13,
6978,
13,
22179,
7,
22866,
17816,
29510,
62,
34945,
20520,
4032,
22065,
62,
2302,
62,
3023,
62,
67,
13,
25410,
33809,
705,
86,
11537,
198,
2,
220,
277,
62,
25410,
62,
354,
74,
13,
13564,
7,
25410,
62,
28758,
8,
198,
2,
220,
277,
62,
25410,
62,
354,
74,
13,
19836,
3419,
198,
2,
220,
220,
198,
2,
220,
640,
13,
42832,
7,
16,
8,
198,
2,
220,
220,
198,
2,
220,
28686,
13,
28956,
7,
69,
62,
25410,
62,
354,
74,
13,
3672,
8,
198,
2,
220,
28686,
13,
28956,
7,
45218,
62,
7753,
1267,
198,
2,
220,
220,
198,
2,
6329,
198,
529,
62,
16,
796,
21015,
62,
529,
10786,
9945,
62,
16,
3256,
21436,
3508,
28,
7266,
301,
270,
3508,
62,
16,
8,
198,
198,
40319,
62,
301,
1082,
81,
62,
16,
796,
37227,
198,
220,
220,
220,
21983,
4054,
11,
16363,
44724,
796,
362,
16088,
198,
220,
220,
220,
34768,
6631,
11,
35575,
30343,
11,
393,
4731,
40122,
341,
198,
220,
220,
220,
532,
77,
39223,
1988,
318,
503,
286,
2837,
628,
220,
220,
220,
21983,
4054,
11,
16363,
44724,
796,
362,
16088,
198,
220,
220,
220,
34768,
6631,
11,
35575,
30343,
11,
393,
4731,
40122,
341,
198,
220,
220,
220,
532,
77,
39223,
1988,
318,
503,
286,
2837,
198,
37811,
198,
198,
40319,
62,
19282,
448,
62,
16,
796,
37227,
198,
220,
220,
220,
376,
486,
532,
17,
20198,
2780,
26780,
23,
198,
220,
220,
220,
376,
486,
532,
16,
198,
220,
220,
220,
376,
486,
657,
198,
220,
220,
220,
376,
486,
352,
198,
220,
220,
220,
376,
486,
362,
20198,
2780,
26780,
22,
198,
220,
220,
220,
13407,
5676,
25,
642,
198,
37811,
198,
198,
31,
9078,
9288,
13,
4102,
13,
9641,
10786,
29,
28,
18,
13,
15,
11537,
198,
31,
9078,
9288,
13,
4102,
13,
26152,
603,
628,
198
] | 2.189094 | 1,137 |
import numpy as np
__all__ = ('_fod_dimensionality_fixer', 'iterable_data_array', 'data_array_builder')
def _fod_dimensionality_fixer(data_dict, check_key, keys_to_fix):
"""
Checks the dimensionality of data in data_dict for function on data and reshapes them if their shape is 1d.
args:
data_dict (dict): Data
check_key (str or key): The key to check the dimensionality of
keys_to_fix (str or key or array-like(str or key)): The keys to reshape
returns:
out (tuple): The reshaped data corresponding to each key in keys to fix.
example:
```python
>>> data_dict = {'R':np.array([1,2,3])}
>>> data_dict['R'].shape
> (3,)
>>> newR = _fod_dimensionality_fixer(data_dict, 'R', 'R')
>>> newR.shape
> (1, 3)
```
"""
keys_to_fix = np.array([keys_to_fix]).flatten()
out = []
checker = data_dict[check_key]
if len(checker.shape) == 1:
for key in keys_to_fix:
out.append(data_dict[key].reshape(1, len(data_dict[key])))
else:
for key in keys_to_fix:
out.append(data_dict[key])
return tuple(out)
| [
11748,
299,
32152,
355,
45941,
198,
198,
834,
439,
834,
796,
19203,
62,
69,
375,
62,
46156,
1483,
62,
13049,
263,
3256,
705,
2676,
540,
62,
7890,
62,
18747,
3256,
705,
7890,
62,
18747,
62,
38272,
11537,
628,
628,
198,
4299,
4808,
69,
375,
62,
46156,
1483,
62,
13049,
263,
7,
7890,
62,
11600,
11,
2198,
62,
2539,
11,
8251,
62,
1462,
62,
13049,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
47719,
262,
15793,
1483,
286,
1366,
287,
1366,
62,
11600,
329,
2163,
319,
1366,
290,
27179,
7916,
606,
611,
511,
5485,
318,
352,
67,
13,
220,
628,
220,
220,
220,
26498,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
11600,
357,
11600,
2599,
6060,
198,
220,
220,
220,
220,
220,
220,
220,
2198,
62,
2539,
357,
2536,
393,
1994,
2599,
383,
1994,
284,
2198,
262,
15793,
1483,
286,
198,
220,
220,
220,
220,
220,
220,
220,
8251,
62,
1462,
62,
13049,
357,
2536,
393,
1994,
393,
7177,
12,
2339,
7,
2536,
393,
1994,
8,
2599,
383,
8251,
284,
27179,
1758,
628,
220,
220,
220,
5860,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
503,
357,
83,
29291,
2599,
383,
27179,
5813,
1366,
11188,
284,
1123,
1994,
287,
8251,
284,
4259,
13,
628,
220,
220,
220,
1672,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
7559,
63,
29412,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1366,
62,
11600,
796,
1391,
6,
49,
10354,
37659,
13,
18747,
26933,
16,
11,
17,
11,
18,
12962,
92,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
1366,
62,
11600,
17816,
49,
6,
4083,
43358,
198,
220,
220,
220,
220,
220,
220,
220,
1875,
357,
18,
35751,
628,
220,
220,
220,
220,
220,
220,
220,
13163,
649,
49,
796,
4808,
69,
375,
62,
46156,
1483,
62,
13049,
263,
7,
7890,
62,
11600,
11,
705,
49,
3256,
705,
49,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
649,
49,
13,
43358,
198,
220,
220,
220,
220,
220,
220,
220,
1875,
357,
16,
11,
513,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7559,
63,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
8251,
62,
1462,
62,
13049,
796,
45941,
13,
18747,
26933,
13083,
62,
1462,
62,
13049,
35944,
2704,
41769,
3419,
628,
220,
220,
220,
503,
796,
17635,
198,
220,
220,
220,
2198,
263,
796,
1366,
62,
11600,
58,
9122,
62,
2539,
60,
198,
220,
220,
220,
611,
18896,
7,
9122,
263,
13,
43358,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
8251,
62,
1462,
62,
13049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
13,
33295,
7,
7890,
62,
11600,
58,
2539,
4083,
3447,
1758,
7,
16,
11,
18896,
7,
7890,
62,
11600,
58,
2539,
60,
22305,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
8251,
62,
1462,
62,
13049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
13,
33295,
7,
7890,
62,
11600,
58,
2539,
12962,
628,
220,
220,
220,
1441,
46545,
7,
448,
8,
628
] | 2.244782 | 527 |
from wsgiref.simple_server import make_server
from pyramid.config import Configurator
from pyramid.view import view_config
@view_config(
route_name = 'home'
renderer = 'json')
if __name__ == '__main__':
with Configurator() as config:
config.add_route('home', '/')
config.scan()
app = config.make_wsgi_app()
server = make_server('0.0.0.0', 6543, app)
server.serve_forever() | [
6738,
266,
45213,
557,
69,
13,
36439,
62,
15388,
1330,
787,
62,
15388,
198,
6738,
27944,
13,
11250,
1330,
17056,
333,
1352,
198,
6738,
27944,
13,
1177,
1330,
1570,
62,
11250,
198,
198,
31,
1177,
62,
11250,
7,
198,
220,
220,
220,
6339,
62,
3672,
796,
705,
11195,
6,
198,
220,
220,
220,
9851,
11882,
796,
705,
17752,
11537,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
351,
17056,
333,
1352,
3419,
355,
4566,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
2860,
62,
38629,
10786,
11195,
3256,
31051,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
13,
35836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
598,
796,
4566,
13,
15883,
62,
18504,
12397,
62,
1324,
3419,
198,
220,
220,
220,
4382,
796,
787,
62,
15388,
10786,
15,
13,
15,
13,
15,
13,
15,
3256,
6135,
3559,
11,
598,
8,
198,
220,
220,
220,
4382,
13,
2655,
303,
62,
754,
332,
3419
] | 2.502994 | 167 |
import logging
from libs import baseview
from rest_framework.response import Response
from django.http import HttpResponse
from core.models import (
SqlRecord,
SqlOrder
)
CUSTOM_ERROR = logging.getLogger('Yearning.core.views')
class recordorder(baseview.SuperUserpermissions):
'''
审核记录相关
'''
| [
11748,
18931,
198,
6738,
9195,
82,
1330,
2779,
1177,
198,
6738,
1334,
62,
30604,
13,
26209,
1330,
18261,
198,
6738,
42625,
14208,
13,
4023,
1330,
367,
29281,
31077,
198,
6738,
4755,
13,
27530,
1330,
357,
198,
220,
220,
220,
311,
13976,
23739,
11,
198,
220,
220,
220,
311,
13976,
18743,
198,
8,
198,
198,
34,
7759,
2662,
62,
24908,
796,
18931,
13,
1136,
11187,
1362,
10786,
17688,
768,
13,
7295,
13,
33571,
11537,
628,
198,
4871,
1700,
2875,
7,
8692,
1177,
13,
12442,
12982,
525,
8481,
2599,
628,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
10263,
106,
94,
43718,
116,
164,
106,
108,
37605,
243,
33566,
116,
17739,
111,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220
] | 2.523077 | 130 |
from app.blueprints.user.views import user | [
6738,
598,
13,
17585,
17190,
13,
7220,
13,
33571,
1330,
2836
] | 3.818182 | 11 |
"""
mobile-block
MobileNet-style blocks for PyTorch
Author: SF-Zhou
Date: 2019-01-15
"""
from setuptools import setup
name = 'mobile_block'
setup(
name=name,
version='0.0.6',
description='MobileNet-style blocks for PyTorch',
url=f'https://github.com/SF-Zhou/{name.replace("_", "-")}',
author='SF-Zhou',
author_email='[email protected]',
keywords='MobileNet Block PyTorch',
py_modules=[f'{name}'],
install_requires=['torch']
)
| [
37811,
198,
24896,
12,
9967,
198,
17066,
7934,
12,
7635,
7021,
329,
9485,
15884,
354,
198,
13838,
25,
14362,
12,
57,
15710,
198,
10430,
25,
13130,
12,
486,
12,
1314,
198,
37811,
198,
198,
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
3672,
796,
705,
24896,
62,
9967,
6,
198,
40406,
7,
198,
220,
220,
220,
1438,
28,
3672,
11,
198,
220,
220,
220,
2196,
11639,
15,
13,
15,
13,
21,
3256,
198,
220,
220,
220,
6764,
11639,
17066,
7934,
12,
7635,
7021,
329,
9485,
15884,
354,
3256,
198,
220,
220,
220,
19016,
28,
69,
6,
5450,
1378,
12567,
13,
785,
14,
20802,
12,
57,
15710,
14,
90,
3672,
13,
33491,
7203,
62,
1600,
27444,
4943,
92,
3256,
198,
220,
220,
220,
1772,
11639,
20802,
12,
57,
15710,
3256,
198,
220,
220,
220,
1772,
62,
12888,
11639,
28202,
38536,
13,
1416,
315,
31,
14816,
13,
785,
3256,
198,
220,
220,
220,
26286,
11639,
17066,
7934,
9726,
9485,
15884,
354,
3256,
198,
220,
220,
220,
12972,
62,
18170,
41888,
69,
6,
90,
3672,
92,
6,
4357,
198,
220,
220,
220,
2721,
62,
47911,
28,
17816,
13165,
354,
20520,
198,
8,
198
] | 2.463158 | 190 |
import logging
from typing import Any
from json_checker.core.base import Base
from json_checker.core.exceptions import CheckerError
from json_checker.core.checkers import Validator
from json_checker.core.reports import Report
log = logging.getLogger(__name__)
| [
11748,
18931,
198,
198,
6738,
19720,
1330,
4377,
198,
198,
6738,
33918,
62,
9122,
263,
13,
7295,
13,
8692,
1330,
7308,
198,
6738,
33918,
62,
9122,
263,
13,
7295,
13,
1069,
11755,
1330,
6822,
263,
12331,
198,
6738,
33918,
62,
9122,
263,
13,
7295,
13,
9122,
364,
1330,
48951,
1352,
198,
6738,
33918,
62,
9122,
263,
13,
7295,
13,
48922,
1330,
6358,
628,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628
] | 3.441558 | 77 |
import pytest
from ubatch.ubatch import UBatch
@pytest.fixture
| [
11748,
12972,
9288,
198,
198,
6738,
20967,
963,
13,
549,
963,
1330,
471,
33,
963,
628,
198,
198,
31,
9078,
9288,
13,
69,
9602,
198
] | 2.68 | 25 |
# coding: utf-8
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class UdpOptions(object):
"""
Optional and valid only for UDP. Use to specify particular destination ports for UDP rules.
If you specify UDP as the protocol but omit this object, then all destination ports are allowed.
"""
def __init__(self, **kwargs):
"""
Initializes a new UdpOptions object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param destination_port_range:
The value to assign to the destination_port_range property of this UdpOptions.
:type destination_port_range: oci.core.models.PortRange
:param source_port_range:
The value to assign to the source_port_range property of this UdpOptions.
:type source_port_range: oci.core.models.PortRange
"""
self.swagger_types = {
'destination_port_range': 'PortRange',
'source_port_range': 'PortRange'
}
self.attribute_map = {
'destination_port_range': 'destinationPortRange',
'source_port_range': 'sourcePortRange'
}
self._destination_port_range = None
self._source_port_range = None
@property
def destination_port_range(self):
"""
Gets the destination_port_range of this UdpOptions.
:return: The destination_port_range of this UdpOptions.
:rtype: oci.core.models.PortRange
"""
return self._destination_port_range
@destination_port_range.setter
def destination_port_range(self, destination_port_range):
"""
Sets the destination_port_range of this UdpOptions.
:param destination_port_range: The destination_port_range of this UdpOptions.
:type: oci.core.models.PortRange
"""
self._destination_port_range = destination_port_range
@property
def source_port_range(self):
"""
Gets the source_port_range of this UdpOptions.
:return: The source_port_range of this UdpOptions.
:rtype: oci.core.models.PortRange
"""
return self._source_port_range
@source_port_range.setter
def source_port_range(self, source_port_range):
"""
Sets the source_port_range of this UdpOptions.
:param source_port_range: The source_port_range of this UdpOptions.
:type: oci.core.models.PortRange
"""
self._source_port_range = source_port_range
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
2,
15069,
357,
66,
8,
1584,
11,
33160,
11,
18650,
290,
14,
273,
663,
29116,
13,
220,
1439,
2489,
10395,
13,
198,
2,
770,
3788,
318,
10668,
12,
36612,
284,
345,
739,
262,
14499,
2448,
33532,
13789,
357,
52,
6489,
8,
352,
13,
15,
355,
3402,
379,
3740,
1378,
793,
13,
273,
6008,
13,
785,
14,
677,
4541,
14,
84,
489,
393,
24843,
13789,
362,
13,
15,
355,
3402,
379,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
13,
921,
743,
3853,
2035,
5964,
13,
628,
198,
6738,
267,
979,
13,
22602,
1330,
39559,
62,
38568,
62,
11600,
11,
399,
11651,
62,
50,
3525,
1268,
3698,
11,
1988,
62,
40845,
62,
23108,
62,
273,
62,
23108,
62,
34086,
20538,
220,
1303,
645,
20402,
25,
376,
21844,
198,
6738,
267,
979,
13,
12501,
273,
2024,
1330,
2315,
62,
19849,
62,
5219,
62,
6738,
62,
46265,
22046,
628,
198,
31,
15003,
62,
19849,
62,
5219,
62,
6738,
62,
46265,
22046,
198,
4871,
471,
26059,
29046,
7,
15252,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
32233,
290,
4938,
691,
329,
36428,
13,
5765,
284,
11986,
1948,
10965,
14090,
329,
36428,
3173,
13,
198,
220,
220,
220,
1002,
345,
11986,
36428,
355,
262,
8435,
475,
42848,
428,
2134,
11,
788,
477,
10965,
14090,
389,
3142,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
20768,
4340,
257,
649,
471,
26059,
29046,
2134,
351,
3815,
422,
21179,
7159,
13,
198,
220,
220,
220,
220,
220,
220,
220,
383,
1708,
21179,
7159,
389,
4855,
357,
10215,
5546,
278,
284,
262,
651,
1010,
14,
2617,
1010,
286,
428,
1398,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10965,
62,
634,
62,
9521,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1988,
284,
8333,
284,
262,
10965,
62,
634,
62,
9521,
3119,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
10965,
62,
634,
62,
9521,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2723,
62,
634,
62,
9521,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1988,
284,
8333,
284,
262,
2723,
62,
634,
62,
9521,
3119,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
2723,
62,
634,
62,
9521,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2032,
7928,
62,
19199,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16520,
1883,
62,
634,
62,
9521,
10354,
705,
13924,
17257,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
634,
62,
9521,
10354,
705,
13924,
17257,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42348,
62,
8899,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16520,
1883,
62,
634,
62,
9521,
10354,
705,
16520,
1883,
13924,
17257,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
634,
62,
9521,
10354,
705,
10459,
13924,
17257,
6,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
16520,
1883,
62,
634,
62,
9521,
796,
6045,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10459,
62,
634,
62,
9521,
796,
6045,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
10965,
62,
634,
62,
9521,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
10965,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
10965,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
16520,
1883,
62,
634,
62,
9521,
628,
220,
220,
220,
2488,
16520,
1883,
62,
634,
62,
9521,
13,
2617,
353,
198,
220,
220,
220,
825,
10965,
62,
634,
62,
9521,
7,
944,
11,
10965,
62,
634,
62,
9521,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
10965,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
10965,
62,
634,
62,
9521,
25,
383,
10965,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
16520,
1883,
62,
634,
62,
9521,
796,
10965,
62,
634,
62,
9521,
628,
220,
220,
220,
2488,
26745,
198,
220,
220,
220,
825,
2723,
62,
634,
62,
9521,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
29620,
262,
2723,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
383,
2723,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
81,
4906,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13557,
10459,
62,
634,
62,
9521,
628,
220,
220,
220,
2488,
10459,
62,
634,
62,
9521,
13,
2617,
353,
198,
220,
220,
220,
825,
2723,
62,
634,
62,
9521,
7,
944,
11,
2723,
62,
634,
62,
9521,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
21394,
262,
2723,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2723,
62,
634,
62,
9521,
25,
383,
2723,
62,
634,
62,
9521,
286,
428,
471,
26059,
29046,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
4906,
25,
267,
979,
13,
7295,
13,
27530,
13,
13924,
17257,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
10459,
62,
634,
62,
9521,
796,
2723,
62,
634,
62,
9521,
198
] | 2.606867 | 1,165 |
# (C) Copyright 2005- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
#
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
# Python Implementation: grib_set_keys
#
# Description: how to set key values in GRIB messages
#
from __future__ import print_function
import traceback
import sys
from eccodes import *
from datetime import date
from collections import OrderedDict
INPUT = '../../data/regular_latlon_surface_constant.grib1'
OUTPUT = 'out.set.grib'
VERBOSE = 1 # verbose error reporting
if __name__ == "__main__":
sys.exit(main())
| [
2,
357,
34,
8,
15069,
5075,
12,
13182,
14326,
37,
13,
198,
2,
198,
2,
770,
3788,
318,
11971,
739,
262,
2846,
286,
262,
24843,
10483,
594,
10628,
362,
13,
15,
198,
2,
543,
460,
307,
6492,
379,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
13,
198,
2,
198,
2,
554,
11524,
428,
17098,
11,
13182,
14326,
37,
857,
407,
40307,
262,
18850,
290,
16217,
871,
198,
2,
7520,
284,
340,
416,
14675,
286,
663,
3722,
355,
281,
987,
31353,
12684,
198,
2,
4249,
857,
340,
9199,
284,
597,
12934,
13,
198,
198,
2,
11361,
46333,
25,
308,
822,
62,
2617,
62,
13083,
198,
2,
198,
2,
12489,
25,
703,
284,
900,
1994,
3815,
287,
402,
7112,
33,
6218,
198,
2,
198,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
11748,
12854,
1891,
198,
11748,
25064,
198,
198,
6738,
21399,
4147,
1330,
1635,
198,
6738,
4818,
8079,
1330,
3128,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
198,
1268,
30076,
796,
705,
40720,
40720,
7890,
14,
16338,
62,
15460,
14995,
62,
42029,
62,
9979,
415,
13,
70,
822,
16,
6,
198,
2606,
7250,
3843,
796,
705,
448,
13,
2617,
13,
70,
822,
6,
198,
5959,
33,
14058,
796,
352,
220,
1303,
15942,
577,
4049,
6447,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
25064,
13,
37023,
7,
12417,
28955,
198
] | 3.312757 | 243 |
my_host = 'localhost'
my_port = 10000
is_emulation = False
emulator_host = '0.0.0.0'
emulator_port = 4390
apis_web_host = '0.0.0.0'
apis_web_budo_emulator_port = 43830
apis_web_api_server_port = 9999
#apis_log_group_address = 'FF02:0:0:0:0:0:0:1'
apis_log_group_address = '224.2.2.4'
apis_log_port = 8888
units = [
{
'id' : 'E001',
'name' : 'E001',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E002',
'name' : 'E002',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E003',
'name' : 'E003',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E004',
'name' : 'E004',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
]
default_control_dcdc_command = 'MODE'
default_control_dcdc_mode = 'WAIT'
default_grid_voltage_v = 350
default_grid_current_a = 2.3
default_droop_ratio = 0
default_deal_grid_current_a = 2
default_deal_amount_wh = 100
default_point_per_wh = 10
default_efficient_grid_voltage_v = 330
default_error_level = 'ERROR'
default_error_extent = 'LOCAL'
default_error_category = 'HARDWARE'
default_wait_log_timeout_s = 30
default_wait_duration_s = 5
default_apis_global_operation_mode = 'Run'
default_apis_local_operation_mode = None
| [
198,
1820,
62,
4774,
796,
705,
36750,
6,
198,
1820,
62,
634,
796,
33028,
198,
198,
271,
62,
368,
1741,
796,
10352,
198,
198,
368,
8927,
62,
4774,
796,
705,
15,
13,
15,
13,
15,
13,
15,
6,
198,
368,
8927,
62,
634,
796,
604,
25964,
198,
198,
499,
271,
62,
12384,
62,
4774,
796,
705,
15,
13,
15,
13,
15,
13,
15,
6,
198,
499,
271,
62,
12384,
62,
65,
12003,
62,
368,
8927,
62,
634,
796,
604,
2548,
1270,
198,
499,
271,
62,
12384,
62,
15042,
62,
15388,
62,
634,
796,
860,
17032,
198,
198,
2,
499,
271,
62,
6404,
62,
8094,
62,
21975,
796,
705,
5777,
2999,
25,
15,
25,
15,
25,
15,
25,
15,
25,
15,
25,
15,
25,
16,
6,
198,
499,
271,
62,
6404,
62,
8094,
62,
21975,
796,
705,
24137,
13,
17,
13,
17,
13,
19,
6,
198,
499,
271,
62,
6404,
62,
634,
796,
807,
28011,
198,
198,
41667,
796,
685,
198,
197,
90,
198,
197,
197,
6,
312,
6,
1058,
705,
36,
8298,
3256,
198,
197,
197,
6,
3672,
6,
1058,
705,
36,
8298,
3256,
198,
197,
197,
6,
4774,
6,
1058,
705,
15,
13,
15,
13,
15,
13,
15,
3256,
198,
197,
197,
1549,
10210,
66,
62,
634,
6,
1058,
5946,
1795,
11,
198,
197,
197,
6,
368,
84,
62,
634,
6,
1058,
4019,
1795,
11,
198,
197,
5512,
198,
197,
90,
198,
197,
197,
6,
312,
6,
1058,
705,
36,
21601,
3256,
198,
197,
197,
6,
3672,
6,
1058,
705,
36,
21601,
3256,
198,
197,
197,
6,
4774,
6,
1058,
705,
15,
13,
15,
13,
15,
13,
15,
3256,
198,
197,
197,
1549,
10210,
66,
62,
634,
6,
1058,
5946,
1795,
11,
198,
197,
197,
6,
368,
84,
62,
634,
6,
1058,
4019,
1795,
11,
198,
197,
5512,
198,
197,
90,
198,
197,
197,
6,
312,
6,
1058,
705,
36,
11245,
3256,
198,
197,
197,
6,
3672,
6,
1058,
705,
36,
11245,
3256,
198,
197,
197,
6,
4774,
6,
1058,
705,
15,
13,
15,
13,
15,
13,
15,
3256,
198,
197,
197,
1549,
10210,
66,
62,
634,
6,
1058,
5946,
1795,
11,
198,
197,
197,
6,
368,
84,
62,
634,
6,
1058,
4019,
1795,
11,
198,
197,
5512,
198,
197,
90,
198,
197,
197,
6,
312,
6,
1058,
705,
36,
22914,
3256,
198,
197,
197,
6,
3672,
6,
1058,
705,
36,
22914,
3256,
198,
197,
197,
6,
4774,
6,
1058,
705,
15,
13,
15,
13,
15,
13,
15,
3256,
198,
197,
197,
1549,
10210,
66,
62,
634,
6,
1058,
5946,
1795,
11,
198,
197,
197,
6,
368,
84,
62,
634,
6,
1058,
4019,
1795,
11,
198,
197,
5512,
198,
60,
198,
198,
12286,
62,
13716,
62,
67,
10210,
66,
62,
21812,
796,
705,
49058,
6,
198,
12286,
62,
13716,
62,
67,
10210,
66,
62,
14171,
796,
705,
15543,
2043,
6,
198,
12286,
62,
25928,
62,
37764,
496,
62,
85,
796,
13803,
198,
12286,
62,
25928,
62,
14421,
62,
64,
796,
362,
13,
18,
198,
12286,
62,
22285,
404,
62,
10366,
952,
796,
657,
198,
198,
12286,
62,
31769,
62,
25928,
62,
14421,
62,
64,
796,
362,
198,
12286,
62,
31769,
62,
17287,
62,
1929,
796,
1802,
198,
12286,
62,
4122,
62,
525,
62,
1929,
796,
838,
198,
12286,
62,
16814,
62,
25928,
62,
37764,
496,
62,
85,
796,
25508,
198,
198,
12286,
62,
18224,
62,
5715,
796,
705,
24908,
6,
198,
12286,
62,
18224,
62,
2302,
298,
796,
705,
29701,
1847,
6,
198,
12286,
62,
18224,
62,
22872,
796,
705,
39,
9795,
33746,
6,
198,
198,
12286,
62,
17077,
62,
6404,
62,
48678,
62,
82,
796,
1542,
198,
198,
12286,
62,
17077,
62,
32257,
62,
82,
796,
642,
198,
198,
12286,
62,
499,
271,
62,
20541,
62,
27184,
62,
14171,
796,
705,
10987,
6,
198,
12286,
62,
499,
271,
62,
12001,
62,
27184,
62,
14171,
796,
6045,
198
] | 2.007825 | 639 |
from datetime import datetime, timedelta
import pytest
import pytz
from tests.assertions import assert_durations_are_eq
from garden import models
from garden.formatters import WateringStationFormatter
@pytest.mark.unit
@pytest.mark.unit
@pytest.mark.unit
@pytest.mark.unit
| [
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
198,
11748,
12972,
9288,
198,
11748,
12972,
22877,
198,
6738,
5254,
13,
30493,
507,
1330,
6818,
62,
67,
20074,
62,
533,
62,
27363,
198,
198,
6738,
11376,
1330,
4981,
198,
6738,
11376,
13,
18982,
1010,
1330,
5638,
278,
12367,
8479,
1436,
628,
198,
31,
9078,
9288,
13,
4102,
13,
20850,
628,
198,
31,
9078,
9288,
13,
4102,
13,
20850,
628,
198,
31,
9078,
9288,
13,
4102,
13,
20850,
628,
198,
31,
9078,
9288,
13,
4102,
13,
20850,
198
] | 3.215909 | 88 |
"""
Copyright 2022 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
# [START slides_create_slide]
from __future__ import print_function
import google.auth
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
def create_slide(presentation_id, page_id):
"""
Creates the Presentation the user has access to.
Load pre-authorized user credentials from the environment.
TODO(developer) - See https://developers.google.com/identity
for guides on implementing OAuth2 for the application.\n"
"""
creds, _ = google.auth.default()
# pylint: disable=maybe-no-member
try:
service = build('slides', 'v1', credentials=creds)
# Add a slide at index 1 using the predefined
# 'TITLE_AND_TWO_COLUMNS' layout and the ID page_id.
requests = [
{
'createSlide': {
'objectId': page_id,
'insertionIndex': '1',
'slideLayoutReference': {
'predefinedLayout': 'TITLE_AND_TWO_COLUMNS'
}
}
}
]
# If you wish to populate the slide with elements,
# add element create requests here, using the page_id.
# Execute the request.
body = {
'requests': requests
}
response = service.presentations() \
.batchUpdate(presentationId=presentation_id, body=body).execute()
create_slide_response = response.get('replies')[0].get('createSlide')
print(f"Created slide with ID:"
f"{(create_slide_response.get('objectId'))}")
except HttpError as error:
print(f"An error occurred: {error}")
print("Slides not created")
return error
return response
if __name__ == '__main__':
# Put the presentation_id, Page_id of slides whose list needs
# to be submitted.
create_slide("12SQU9Ik-ShXecJoMtT-LlNwEPiFR7AadnxV2KiBXCnE", "My4ndpage")
# [END slides_create_slide]
| [
37811,
198,
15269,
33160,
3012,
11419,
198,
198,
26656,
15385,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
5832,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
1639,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
198,
28042,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
17080,
6169,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
54,
10554,
12425,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
6214,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2475,
20597,
739,
262,
13789,
13,
198,
37811,
198,
198,
2,
685,
2257,
7227,
19392,
62,
17953,
62,
6649,
485,
60,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
198,
11748,
23645,
13,
18439,
198,
6738,
23645,
499,
291,
75,
1153,
13,
67,
40821,
1330,
1382,
198,
6738,
23645,
499,
291,
75,
1153,
13,
48277,
1330,
367,
29281,
12331,
628,
198,
4299,
2251,
62,
6649,
485,
7,
25579,
341,
62,
312,
11,
2443,
62,
312,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7921,
274,
262,
21662,
341,
262,
2836,
468,
1895,
284,
13,
198,
220,
220,
220,
8778,
662,
12,
19721,
2836,
18031,
422,
262,
2858,
13,
198,
220,
220,
220,
16926,
46,
7,
16244,
263,
8,
532,
4091,
3740,
1378,
16244,
364,
13,
13297,
13,
785,
14,
738,
414,
198,
220,
220,
220,
329,
17555,
319,
15427,
440,
30515,
17,
329,
262,
3586,
13,
59,
77,
1,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2600,
82,
11,
4808,
796,
23645,
13,
18439,
13,
12286,
3419,
198,
220,
220,
220,
1303,
279,
2645,
600,
25,
15560,
28,
25991,
12,
3919,
12,
19522,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2139,
796,
1382,
10786,
6649,
1460,
3256,
705,
85,
16,
3256,
18031,
28,
66,
445,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
257,
10649,
379,
6376,
352,
1262,
262,
2747,
18156,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
705,
49560,
2538,
62,
6981,
62,
34551,
46,
62,
25154,
5883,
8035,
6,
12461,
290,
262,
4522,
2443,
62,
312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7007,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17953,
11122,
485,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15252,
7390,
10354,
2443,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28463,
295,
15732,
10354,
705,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6649,
485,
32517,
26687,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
28764,
18156,
32517,
10354,
705,
49560,
2538,
62,
6981,
62,
34551,
46,
62,
25154,
5883,
8035,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
345,
4601,
284,
48040,
262,
10649,
351,
4847,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
751,
5002,
2251,
7007,
994,
11,
1262,
262,
2443,
62,
312,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
8393,
1133,
262,
2581,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8897,
3558,
10354,
7007,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2139,
13,
25579,
602,
3419,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
43501,
10260,
7,
25579,
341,
7390,
28,
25579,
341,
62,
312,
11,
1767,
28,
2618,
737,
41049,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
6649,
485,
62,
26209,
796,
2882,
13,
1136,
10786,
35666,
444,
11537,
58,
15,
4083,
1136,
10786,
17953,
11122,
485,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
41972,
10649,
351,
4522,
11097,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
7,
17953,
62,
6649,
485,
62,
26209,
13,
1136,
10786,
15252,
7390,
6,
4008,
92,
4943,
198,
220,
220,
220,
2845,
367,
29281,
12331,
355,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
1,
2025,
4049,
5091,
25,
1391,
18224,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
11122,
1460,
407,
2727,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
4049,
628,
220,
220,
220,
1441,
2882,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
5930,
262,
10470,
62,
312,
11,
7873,
62,
312,
286,
19392,
3025,
1351,
2476,
198,
220,
220,
220,
1303,
284,
307,
8948,
13,
198,
220,
220,
220,
2251,
62,
6649,
485,
7203,
1065,
50,
10917,
24,
40,
74,
12,
2484,
55,
721,
9908,
44,
83,
51,
12,
43,
75,
45,
86,
8905,
72,
10913,
22,
32,
324,
77,
87,
53,
17,
42,
72,
33,
55,
34,
77,
36,
1600,
366,
3666,
19,
358,
7700,
4943,
198,
220,
220,
220,
1303,
685,
10619,
19392,
62,
17953,
62,
6649,
485,
60,
198
] | 2.476004 | 1,021 |
import base64
from django.urls import reverse
from dcim.models import Device, DeviceRole, DeviceType, Manufacturer, Site
from secrets.models import Secret, SecretRole, SessionKey, UserKey
from utilities.testing import ViewTestCases
from .constants import PRIVATE_KEY, PUBLIC_KEY
| [
11748,
2779,
2414,
198,
198,
6738,
42625,
14208,
13,
6371,
82,
1330,
9575,
198,
198,
6738,
30736,
320,
13,
27530,
1330,
16232,
11,
16232,
47445,
11,
16232,
6030,
11,
40218,
11,
14413,
198,
6738,
13141,
13,
27530,
1330,
3943,
11,
3943,
47445,
11,
23575,
9218,
11,
11787,
9218,
198,
6738,
20081,
13,
33407,
1330,
3582,
14402,
34,
1386,
198,
6738,
764,
9979,
1187,
1330,
4810,
3824,
6158,
62,
20373,
11,
44731,
62,
20373,
628,
198
] | 3.773333 | 75 |
"""
Is One Array a Rotation of Another? (Python)
Write a function that returns True if one array is a rotation of another.
Example: [1, 2, 3, 4, 5, 6, 7] is a rotation of [4, 5, 6, 7, 1, 2, 3].
NOTE: There are no duplicates in each of these arrays.
REMINDER: We're going to use lists instead of arrays in Python for simplicity.
"""
if __name__ == '__main__':
list1 = [1, 2, 3, 4, 5, 6, 7]
list2b = [4, 5, 6, 7, 1, 2, 3]
print(is_rotation(list1, list2b)) # True
list2c = [4, 5, 6, 9, 1, 2, 3]
print(is_rotation(list1, list2c)) # False
list2d = [4, 6, 5, 7, 1, 2, 3]
print(is_rotation(list1, list2d)) # False
list2e = [4, 5, 6, 7, 0, 2, 3]
print(is_rotation(list1, list2e)) # False
list2f = [1, 2, 3, 4, 5, 6, 7]
print(is_rotation(list1, list2f)) # True
| [
37811,
198,
220,
220,
220,
1148,
1881,
15690,
257,
371,
14221,
286,
6023,
30,
357,
37906,
8,
628,
220,
220,
220,
19430,
257,
2163,
326,
5860,
6407,
611,
530,
7177,
318,
257,
13179,
286,
1194,
13,
198,
220,
220,
220,
17934,
25,
685,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
60,
318,
257,
13179,
286,
685,
19,
11,
642,
11,
718,
11,
767,
11,
352,
11,
362,
11,
513,
4083,
628,
220,
220,
220,
24550,
25,
1318,
389,
645,
14184,
16856,
287,
1123,
286,
777,
26515,
13,
198,
220,
220,
220,
22657,
12115,
1137,
25,
775,
821,
1016,
284,
779,
8341,
2427,
286,
26515,
287,
11361,
329,
21654,
13,
198,
37811,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1351,
16,
796,
685,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
60,
198,
220,
220,
220,
1351,
17,
65,
796,
685,
19,
11,
642,
11,
718,
11,
767,
11,
352,
11,
362,
11,
513,
60,
198,
220,
220,
220,
3601,
7,
271,
62,
10599,
341,
7,
4868,
16,
11,
1351,
17,
65,
4008,
1303,
6407,
628,
220,
220,
220,
1351,
17,
66,
796,
685,
19,
11,
642,
11,
718,
11,
860,
11,
352,
11,
362,
11,
513,
60,
198,
220,
220,
220,
3601,
7,
271,
62,
10599,
341,
7,
4868,
16,
11,
1351,
17,
66,
4008,
1303,
10352,
628,
220,
220,
220,
1351,
17,
67,
796,
685,
19,
11,
718,
11,
642,
11,
767,
11,
352,
11,
362,
11,
513,
60,
198,
220,
220,
220,
3601,
7,
271,
62,
10599,
341,
7,
4868,
16,
11,
1351,
17,
67,
4008,
1303,
10352,
628,
220,
220,
220,
1351,
17,
68,
796,
685,
19,
11,
642,
11,
718,
11,
767,
11,
657,
11,
362,
11,
513,
60,
198,
220,
220,
220,
3601,
7,
271,
62,
10599,
341,
7,
4868,
16,
11,
1351,
17,
68,
4008,
1303,
10352,
628,
220,
220,
220,
1351,
17,
69,
796,
685,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
60,
198,
220,
220,
220,
3601,
7,
271,
62,
10599,
341,
7,
4868,
16,
11,
1351,
17,
69,
4008,
1303,
6407,
628
] | 2.245232 | 367 |
import numpy as np
from matplotlib import pyplot as plt
from scipy.ndimage import median_filter, gaussian_filter
import epics
import time
import imageio
import logging, coloredlogs
coloredlogs.install(fmt='%(asctime)s,%(msecs)d %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s',datefmt='%H:%M:%S',level=logging.INFO)
"""
Assumes:
- RUBY In beam
- Ball bearing is centred on dynmrt rotation isocentre
- BDA centred on synch beam
- Masks are 20x20,10x10,5x5.
"""
##################
# INPUT PARAMETERS
##################
logging.critical("These input params are probably wrong. Should be read out of a cfg file.")
# Save images?
SAVE = False
# This is the left bottom top right of the field in RUBY in pixels.
l = 0
r = 2560
b = 1181
t = 944
# Pixel size (in mm) as calculated from COR script.
pixelSize = 0.008
#######################
# INTERNAL CALCULATIONS
#######################
# The row in the image to take.
_col = int((r-l)/2)
_row = int((b-t)/2)
###################################
# START RUBY ACQUISITION PARAMETERS
###################################
exposureTime = 0.1
logging.info("Setting up RUBY acquisition parameters.")
epics.caput('SR08ID01DET01:CAM:Acquire.VAL',0,wait=True)
epics.caput('SR08ID01DET01:CAM:AcquireTime.VAL',exposureTime)
epics.caput('SR08ID01DET01:CAM:AcquirePeriod.VAL',0.00)
epics.caput('SR08ID01DET01:CAM:ImageMode.VAL','Single',wait=True)
epics.caput('SR08ID01DET01:TIFF:AutoSave.VAL','No',wait=True)
epics.caput('SR08ID01DET01:CAM:Acquire.VAL',1,wait=True)
##########################
# GET BALLBEARING POSITION => MIGHT NOT BE NEEDED...???
##########################
# Open the shutter.
openShutter()
##########################
# CALCULATE MASK POSITIONS
##########################
d_v = []
# Iterate over all three masks.
for i in range(3):
# First mask.
logging.info("Selecting mask {}.".format(i))
horizontalImages = []
verticalImages = []
# Move to first mask.
logging.critical("Selecting a mask position is probably wrong. Not sure how epics does that. Check me. In fact, check ALL PV's!")
epics.caput('SR08ID01SST25:MASK_POS:{}.VAL'.format(i),1,wait=True)
logging.info("Acquiring images...")
# Move mask to +ve (right) edge and take an image.
epics.caput('SR08ID01SST25:MASK.TWV',10,wait=True)
epics.caput('SR08ID01SST25:MASK.TWF',1,wait=True)
horizontalImages.append(getImage(save=SAVE,fname='mask1-left'))
# Move mask to -ve (left) edge and take an image.
epics.caput('SR08ID01SST25:MASK.TWV',20,wait=True)
epics.caput('SR08ID01SST25:MASK.TWR',1,wait=True)
horizontalImages.append(getImage(save=SAVE,fname='mask1-right'))
# Put back to horizontal centre.
epics.caput('SR08ID01SST25:MASK_POS:{}.VAL'.format(i),1,wait=True)
# Get top edge.
epics.caput('SR08ID01SST25:Z.VAL',10,wait=True)
verticalImages.append(getImage(save=SAVE,fname='mask1-top'))
# Get bottom edge.
epics.caput('SR08ID01SST25:Z.VAL',-10,wait=True)
verticalImages.append(getImage(save=SAVE,fname='mask1-bottom'))
# Put back to veritcal centre.
epics.caput('SR08ID01SST25:Z.VAL',0,wait=True)
# Calculate centre.
logging.info("Calculating centre point...")
# Take line profile of each image.
horizontalLines = []
verticalLines = []
logging.critical("Finding the edges of the mask will need to be developed. Haven't worked that out yet.")
for i in range(len(horizontalImages)):
horizontalImages[i] = gaussian_filter(horizontalImages[i],sigma=10)
temp = horizontalImages[i][_row,:].astype(float)
horizontalLines.append(np.absolute(temp-temp.max()))
for i in range(len(verticalImages)):
horizontalImages[i] = gaussian_filter(horizontalImages[i],sigma=10)
temp = horizontalImages[i][_row,:].astype(float)
verticalLines.append(np.absolute(temp-temp.max()))
# Find the change.
for i in range(len(horizontalLines)):
# Horizontal lines
peak = np.argmax(horizontalLines[i])
peaks.append(peak)
# Vertical lines
peak = np.argmax(verticalLines[i])
peaks.append(peak)
# Calculate relative movements.
d_h = np.absolute(peaks[1]-peaks[3])*pixelSize/2
d_v.append(np.absolute(peaks[0]-peaks[2])*pixelSize/2)
# Apply horizontal adjustment and save to mask position.
logging.info("Adjusting horizontal centre point...")
current = epics.caget('SR08ID01SST25:MASK_POS:1.VAL')
epics.caput('SR08ID01SST25:MASK_POS:1.VAL',current+d_h,wait=True)
# Apply vertical adjustment (to table).
logging.info("Adjusting vertical centre point (set by the average of all three mask positions)...")
current = epics.caget('SR08ID01SST25:TABLE_Z.VAL')
epics.caput('SR08ID01SST25:TABLE_Z.VAL',current+np.average(d_v),wait=True)
# fig,ax = plt.subplots(2,4)
# ax = ax.flatten()
# ax[0].plot(line[0])
# # ax[0].scatter(line[0][peaks[0]],marker='+',color='r')
# ax[1].plot(line[1])
# # ax[1].scatter(line[1][peaks[1]],marker='+',color='r')
# ax[2].plot(line[2])
# # ax[2].scatter(line[2][peaks[2]],marker='+',color='r')
# ax[3].plot(line[3])
# # ax[3].scatter(line[3][peaks[3]],marker='+',color='r')
# ax[4].imshow(image[0],cmap='gray')
# ax[5].imshow(image[1],cmap='gray')
# ax[6].imshow(image[2],cmap='gray')
# ax[7].imshow(image[3],cmap='gray')
# plt.show()
# Finished, close the shutter.
closeShutter()
# Set rotation back to home.
logging.info("Moving back to Mask 1 position.")
epics.caput('SR08ID01SST25:MASK_POS:{}.VAL'.format(i),1,wait=True)
logging.info("Finished! Wasn't that easy?")
| [
11748,
299,
32152,
355,
45941,
198,
6738,
2603,
29487,
8019,
1330,
12972,
29487,
355,
458,
83,
198,
6738,
629,
541,
88,
13,
358,
9060,
1330,
14288,
62,
24455,
11,
31986,
31562,
62,
24455,
198,
11748,
2462,
873,
198,
11748,
640,
198,
11748,
2939,
952,
198,
198,
11748,
18931,
11,
16396,
6404,
82,
198,
25717,
6404,
82,
13,
17350,
7,
69,
16762,
11639,
4,
7,
292,
310,
524,
8,
82,
11,
4,
7,
76,
2363,
82,
8,
67,
4064,
7,
5715,
3672,
13219,
23,
82,
685,
4,
7,
34345,
8,
82,
25,
4,
7,
2815,
23397,
8,
67,
60,
4064,
7,
20500,
8,
82,
3256,
4475,
69,
16762,
11639,
4,
39,
25,
4,
44,
25,
4,
50,
3256,
5715,
28,
6404,
2667,
13,
10778,
8,
198,
198,
37811,
198,
8021,
8139,
25,
198,
197,
12,
371,
10526,
56,
554,
15584,
198,
197,
12,
6932,
14121,
318,
1247,
445,
319,
37860,
76,
17034,
13179,
318,
29421,
260,
198,
197,
12,
347,
5631,
1247,
445,
319,
6171,
354,
15584,
198,
197,
12,
337,
6791,
389,
1160,
87,
1238,
11,
940,
87,
940,
11,
20,
87,
20,
13,
198,
37811,
198,
198,
14468,
2235,
198,
2,
3268,
30076,
29463,
2390,
2767,
4877,
198,
14468,
2235,
198,
6404,
2667,
13,
34666,
7203,
4711,
5128,
42287,
389,
2192,
2642,
13,
10358,
307,
1100,
503,
286,
257,
30218,
70,
2393,
19570,
198,
2,
12793,
4263,
30,
198,
4090,
6089,
796,
10352,
198,
2,
770,
318,
262,
1364,
4220,
1353,
826,
286,
262,
2214,
287,
371,
10526,
56,
287,
17848,
13,
198,
75,
796,
657,
198,
81,
796,
1679,
1899,
198,
65,
796,
1367,
6659,
198,
83,
796,
860,
2598,
198,
2,
11349,
2546,
357,
259,
8085,
8,
355,
10488,
422,
23929,
4226,
13,
198,
32515,
10699,
796,
657,
13,
25257,
628,
198,
14468,
4242,
21017,
198,
2,
23255,
45,
1847,
33290,
34,
6239,
18421,
198,
14468,
4242,
21017,
198,
2,
383,
5752,
287,
262,
2939,
284,
1011,
13,
198,
62,
4033,
796,
493,
19510,
81,
12,
75,
20679,
17,
8,
198,
62,
808,
796,
493,
19510,
65,
12,
83,
20679,
17,
8,
198,
198,
29113,
21017,
198,
2,
33303,
371,
10526,
56,
7125,
10917,
1797,
17941,
29463,
2390,
2767,
4877,
198,
29113,
21017,
198,
1069,
26205,
7575,
796,
657,
13,
16,
198,
6404,
2667,
13,
10951,
7203,
34149,
510,
371,
10526,
56,
12673,
10007,
19570,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
34,
2390,
25,
12832,
29782,
13,
23428,
3256,
15,
11,
17077,
28,
17821,
8,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
34,
2390,
25,
12832,
29782,
7575,
13,
23428,
3256,
1069,
26205,
7575,
8,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
34,
2390,
25,
12832,
29782,
5990,
2101,
13,
23428,
3256,
15,
13,
405,
8,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
34,
2390,
25,
5159,
19076,
13,
23428,
41707,
28008,
3256,
17077,
28,
17821,
8,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
51,
29267,
25,
27722,
16928,
13,
23428,
41707,
2949,
3256,
17077,
28,
17821,
8,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
35,
2767,
486,
25,
34,
2390,
25,
12832,
29782,
13,
23428,
3256,
16,
11,
17077,
28,
17821,
8,
198,
198,
14468,
7804,
2235,
198,
2,
17151,
46433,
12473,
1503,
2751,
28069,
17941,
5218,
337,
9947,
5626,
9348,
36465,
1961,
986,
28358,
198,
14468,
7804,
2235,
198,
198,
2,
4946,
262,
31168,
13,
198,
9654,
2484,
10381,
3419,
198,
198,
14468,
7804,
2235,
198,
2,
33290,
34,
6239,
6158,
32337,
42,
28069,
2043,
11053,
198,
14468,
7804,
2235,
198,
67,
62,
85,
796,
17635,
198,
198,
2,
40806,
378,
625,
477,
1115,
20680,
13,
198,
1640,
1312,
287,
2837,
7,
18,
2599,
198,
197,
2,
3274,
9335,
13,
198,
197,
6404,
2667,
13,
10951,
7203,
17563,
278,
9335,
23884,
526,
13,
18982,
7,
72,
4008,
198,
197,
17899,
38342,
29398,
796,
17635,
198,
197,
1851,
605,
29398,
796,
17635,
198,
197,
2,
10028,
284,
717,
9335,
13,
198,
197,
6404,
2667,
13,
34666,
7203,
17563,
278,
257,
9335,
2292,
318,
2192,
2642,
13,
1892,
1654,
703,
2462,
873,
857,
326,
13,
6822,
502,
13,
554,
1109,
11,
2198,
11096,
31392,
338,
2474,
8,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
62,
37997,
29164,
27422,
23428,
4458,
18982,
7,
72,
828,
16,
11,
17077,
28,
17821,
8,
198,
197,
6404,
2667,
13,
10951,
7203,
12832,
421,
3428,
4263,
9313,
8,
198,
197,
2,
10028,
9335,
284,
1343,
303,
357,
3506,
8,
5743,
290,
1011,
281,
2939,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
13,
34551,
53,
3256,
940,
11,
17077,
28,
17821,
8,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
13,
34551,
37,
3256,
16,
11,
17077,
28,
17821,
8,
198,
197,
17899,
38342,
29398,
13,
33295,
7,
1136,
5159,
7,
21928,
28,
4090,
6089,
11,
69,
3672,
11639,
27932,
16,
12,
9464,
6,
4008,
198,
197,
2,
10028,
9335,
284,
532,
303,
357,
9464,
8,
5743,
290,
1011,
281,
2939,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
13,
34551,
53,
3256,
1238,
11,
17077,
28,
17821,
8,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
13,
51,
18564,
3256,
16,
11,
17077,
28,
17821,
8,
198,
197,
17899,
38342,
29398,
13,
33295,
7,
1136,
5159,
7,
21928,
28,
4090,
6089,
11,
69,
3672,
11639,
27932,
16,
12,
3506,
6,
4008,
198,
197,
2,
5930,
736,
284,
16021,
7372,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
62,
37997,
29164,
27422,
23428,
4458,
18982,
7,
72,
828,
16,
11,
17077,
28,
17821,
8,
198,
197,
2,
3497,
1353,
5743,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
57,
13,
23428,
3256,
940,
11,
17077,
28,
17821,
8,
198,
197,
1851,
605,
29398,
13,
33295,
7,
1136,
5159,
7,
21928,
28,
4090,
6089,
11,
69,
3672,
11639,
27932,
16,
12,
4852,
6,
4008,
198,
197,
2,
3497,
4220,
5743,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
57,
13,
23428,
3256,
12,
940,
11,
17077,
28,
17821,
8,
198,
197,
1851,
605,
29398,
13,
33295,
7,
1136,
5159,
7,
21928,
28,
4090,
6089,
11,
69,
3672,
11639,
27932,
16,
12,
22487,
6,
4008,
198,
197,
2,
5930,
736,
284,
3326,
270,
9948,
7372,
13,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
57,
13,
23428,
3256,
15,
11,
17077,
28,
17821,
8,
628,
197,
2,
27131,
378,
7372,
13,
198,
197,
6404,
2667,
13,
10951,
7203,
9771,
3129,
803,
7372,
966,
9313,
8,
198,
197,
2,
7214,
1627,
7034,
286,
1123,
2939,
13,
198,
197,
17899,
38342,
43,
1127,
796,
17635,
198,
197,
1851,
605,
43,
1127,
796,
17635,
628,
197,
6404,
2667,
13,
34666,
7203,
36276,
262,
13015,
286,
262,
9335,
481,
761,
284,
307,
4166,
13,
21425,
470,
3111,
326,
503,
1865,
19570,
198,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
17899,
38342,
29398,
8,
2599,
198,
197,
197,
17899,
38342,
29398,
58,
72,
60,
796,
31986,
31562,
62,
24455,
7,
17899,
38342,
29398,
58,
72,
4357,
82,
13495,
28,
940,
8,
198,
197,
197,
29510,
796,
16021,
29398,
58,
72,
7131,
62,
808,
11,
25,
4083,
459,
2981,
7,
22468,
8,
198,
197,
197,
17899,
38342,
43,
1127,
13,
33295,
7,
37659,
13,
48546,
7,
29510,
12,
29510,
13,
9806,
3419,
4008,
198,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
1851,
605,
29398,
8,
2599,
198,
197,
197,
17899,
38342,
29398,
58,
72,
60,
796,
31986,
31562,
62,
24455,
7,
17899,
38342,
29398,
58,
72,
4357,
82,
13495,
28,
940,
8,
198,
197,
197,
29510,
796,
16021,
29398,
58,
72,
7131,
62,
808,
11,
25,
4083,
459,
2981,
7,
22468,
8,
198,
197,
197,
1851,
605,
43,
1127,
13,
33295,
7,
37659,
13,
48546,
7,
29510,
12,
29510,
13,
9806,
3419,
4008,
628,
197,
2,
9938,
262,
1487,
13,
198,
197,
1640,
1312,
287,
2837,
7,
11925,
7,
17899,
38342,
43,
1127,
8,
2599,
198,
197,
197,
2,
6075,
38342,
3951,
198,
197,
197,
36729,
796,
45941,
13,
853,
9806,
7,
17899,
38342,
43,
1127,
58,
72,
12962,
198,
197,
197,
431,
4730,
13,
33295,
7,
36729,
8,
198,
197,
197,
2,
38937,
3951,
198,
197,
197,
36729,
796,
45941,
13,
853,
9806,
7,
1851,
605,
43,
1127,
58,
72,
12962,
198,
197,
197,
431,
4730,
13,
33295,
7,
36729,
8,
628,
197,
2,
27131,
378,
3585,
8650,
13,
198,
197,
67,
62,
71,
796,
45941,
13,
48546,
7,
431,
4730,
58,
16,
45297,
431,
4730,
58,
18,
12962,
9,
32515,
10699,
14,
17,
198,
197,
67,
62,
85,
13,
33295,
7,
37659,
13,
48546,
7,
431,
4730,
58,
15,
45297,
431,
4730,
58,
17,
12962,
9,
32515,
10699,
14,
17,
8,
628,
197,
2,
27967,
16021,
15068,
290,
3613,
284,
9335,
2292,
13,
198,
197,
6404,
2667,
13,
10951,
7203,
39668,
278,
16021,
7372,
966,
9313,
8,
198,
197,
14421,
796,
2462,
873,
13,
66,
363,
316,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
62,
37997,
25,
16,
13,
23428,
11537,
198,
197,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
62,
37997,
25,
16,
13,
23428,
3256,
14421,
10,
67,
62,
71,
11,
17077,
28,
17821,
8,
198,
198,
2,
27967,
11723,
15068,
357,
1462,
3084,
737,
198,
6404,
2667,
13,
10951,
7203,
39668,
278,
11723,
7372,
966,
357,
2617,
416,
262,
2811,
286,
477,
1115,
9335,
6116,
8,
9313,
8,
198,
14421,
796,
2462,
873,
13,
66,
363,
316,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
38148,
62,
57,
13,
23428,
11537,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
38148,
62,
57,
13,
23428,
3256,
14421,
10,
37659,
13,
23913,
7,
67,
62,
85,
828,
17077,
28,
17821,
8,
198,
198,
2,
2336,
11,
897,
796,
458,
83,
13,
7266,
489,
1747,
7,
17,
11,
19,
8,
198,
2,
7877,
796,
7877,
13,
2704,
41769,
3419,
198,
2,
7877,
58,
15,
4083,
29487,
7,
1370,
58,
15,
12962,
198,
2,
1303,
7877,
58,
15,
4083,
1416,
1436,
7,
1370,
58,
15,
7131,
431,
4730,
58,
15,
60,
4357,
4102,
263,
11639,
10,
3256,
8043,
11639,
81,
11537,
198,
2,
7877,
58,
16,
4083,
29487,
7,
1370,
58,
16,
12962,
198,
2,
1303,
7877,
58,
16,
4083,
1416,
1436,
7,
1370,
58,
16,
7131,
431,
4730,
58,
16,
60,
4357,
4102,
263,
11639,
10,
3256,
8043,
11639,
81,
11537,
198,
2,
7877,
58,
17,
4083,
29487,
7,
1370,
58,
17,
12962,
198,
2,
1303,
7877,
58,
17,
4083,
1416,
1436,
7,
1370,
58,
17,
7131,
431,
4730,
58,
17,
60,
4357,
4102,
263,
11639,
10,
3256,
8043,
11639,
81,
11537,
198,
2,
7877,
58,
18,
4083,
29487,
7,
1370,
58,
18,
12962,
198,
2,
1303,
7877,
58,
18,
4083,
1416,
1436,
7,
1370,
58,
18,
7131,
431,
4730,
58,
18,
60,
4357,
4102,
263,
11639,
10,
3256,
8043,
11639,
81,
11537,
198,
2,
7877,
58,
19,
4083,
320,
12860,
7,
9060,
58,
15,
4357,
66,
8899,
11639,
44605,
11537,
198,
2,
7877,
58,
20,
4083,
320,
12860,
7,
9060,
58,
16,
4357,
66,
8899,
11639,
44605,
11537,
198,
2,
7877,
58,
21,
4083,
320,
12860,
7,
9060,
58,
17,
4357,
66,
8899,
11639,
44605,
11537,
198,
2,
7877,
58,
22,
4083,
320,
12860,
7,
9060,
58,
18,
4357,
66,
8899,
11639,
44605,
11537,
198,
2,
458,
83,
13,
12860,
3419,
198,
198,
2,
42931,
11,
1969,
262,
31168,
13,
198,
19836,
2484,
10381,
3419,
198,
198,
2,
5345,
13179,
736,
284,
1363,
13,
198,
6404,
2667,
13,
10951,
7203,
33622,
736,
284,
18007,
352,
2292,
19570,
198,
538,
873,
13,
11128,
315,
10786,
12562,
2919,
2389,
486,
50,
2257,
1495,
25,
31180,
42,
62,
37997,
29164,
27422,
23428,
4458,
18982,
7,
72,
828,
16,
11,
17077,
28,
17821,
8,
198,
198,
6404,
2667,
13,
10951,
7203,
18467,
1348,
0,
8920,
77,
470,
326,
2562,
1701,
8,
198
] | 2.564864 | 2,089 |
S = input()
flag1 = True
flag2 = True
flag3 = True
flag1 = S[0] == "A" and S.count("A") == 1
flag2 = S.count("C") == 1 and 2 <= S.index("C") <= len(S)-2
S = S.replace("A", "")
S = S.replace("C", "")
flag3 = S.islower()
if all([flag1, flag2, flag3]):
print("AC")
else:
print("WA") | [
50,
796,
5128,
3419,
198,
32109,
16,
796,
6407,
198,
32109,
17,
796,
6407,
198,
32109,
18,
796,
6407,
198,
198,
32109,
16,
796,
311,
58,
15,
60,
6624,
366,
32,
1,
290,
311,
13,
9127,
7203,
32,
4943,
6624,
352,
198,
32109,
17,
796,
311,
13,
9127,
7203,
34,
4943,
6624,
352,
290,
362,
19841,
311,
13,
9630,
7203,
34,
4943,
19841,
18896,
7,
50,
13219,
17,
198,
50,
796,
311,
13,
33491,
7203,
32,
1600,
366,
4943,
198,
50,
796,
311,
13,
33491,
7203,
34,
1600,
366,
4943,
198,
32109,
18,
796,
311,
13,
3044,
789,
3419,
198,
198,
361,
477,
26933,
32109,
16,
11,
6056,
17,
11,
6056,
18,
60,
2599,
198,
220,
220,
220,
3601,
7203,
2246,
4943,
198,
17772,
25,
198,
220,
220,
220,
3601,
7203,
15543,
4943
] | 2.172932 | 133 |
#!/usr/bin/env python
# coding: utf-8
import os
import re
from setuptools import setup
_VERSION_RE = re.compile(r"__version__\s*?=\s*?'(.*?)'", flags=re.M)
setup(
name='pangu',
version=get_version(),
description='Paranoid text spacing for good readability, to automatically insert whitespace between CJK (Chinese, Japanese, Korean) and half-width characters (alphabetical letters, numerical digits and symbols).',
long_description=open('README.rst').read() + '\n' + open('HISTORY.rst').read(),
keywords='pangu text-spacing spacing text typesetting readability chinese japanese korean obsessive-compulsive-disorder ocd paranoia',
author='Vinta Chen',
author_email='[email protected]',
url='https://github.com/vinta/pangu.py',
license='MIT',
include_package_data=True,
py_modules=['pangu'],
test_suite='test_pangu',
entry_points={
'console_scripts': ['pangu=pangu:cli'],
},
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Chinese (Traditional)',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Japanese',
'Natural Language :: Korean',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
'Topic :: Software Development :: Internationalization',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities',
),
)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
11748,
28686,
198,
11748,
302,
198,
198,
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
62,
43717,
62,
2200,
796,
302,
13,
5589,
576,
7,
81,
1,
834,
9641,
834,
59,
82,
9,
30,
28,
59,
82,
9,
8348,
7,
15885,
10091,
6,
1600,
9701,
28,
260,
13,
44,
8,
628,
198,
198,
40406,
7,
198,
220,
220,
220,
1438,
11639,
79,
2303,
3256,
198,
220,
220,
220,
2196,
28,
1136,
62,
9641,
22784,
198,
220,
220,
220,
6764,
11639,
10044,
272,
1868,
2420,
31050,
329,
922,
1100,
1799,
11,
284,
6338,
7550,
13216,
10223,
1022,
27731,
42,
357,
23604,
11,
4960,
11,
6983,
8,
290,
2063,
12,
10394,
3435,
357,
17307,
8380,
605,
7475,
11,
29052,
19561,
290,
14354,
737,
3256,
198,
220,
220,
220,
890,
62,
11213,
28,
9654,
10786,
15675,
11682,
13,
81,
301,
27691,
961,
3419,
1343,
705,
59,
77,
6,
1343,
1280,
10786,
39,
42480,
13,
81,
301,
27691,
961,
22784,
198,
220,
220,
220,
26286,
11639,
79,
2303,
2420,
12,
2777,
4092,
31050,
2420,
3858,
35463,
1100,
1799,
442,
3762,
474,
2674,
2771,
479,
29456,
36681,
12,
5589,
22220,
12,
6381,
2875,
267,
10210,
34370,
3256,
198,
220,
220,
220,
1772,
11639,
53,
600,
64,
12555,
3256,
198,
220,
220,
220,
1772,
62,
12888,
11639,
85,
600,
64,
13,
6607,
31,
14816,
13,
785,
3256,
198,
220,
220,
220,
19016,
11639,
5450,
1378,
12567,
13,
785,
14,
85,
600,
64,
14,
79,
2303,
13,
9078,
3256,
198,
220,
220,
220,
5964,
11639,
36393,
3256,
198,
220,
220,
220,
2291,
62,
26495,
62,
7890,
28,
17821,
11,
198,
220,
220,
220,
12972,
62,
18170,
28,
17816,
79,
2303,
6,
4357,
198,
220,
220,
220,
1332,
62,
2385,
578,
11639,
9288,
62,
79,
2303,
3256,
198,
220,
220,
220,
5726,
62,
13033,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
62,
46521,
10354,
37250,
79,
2303,
28,
79,
2303,
25,
44506,
6,
4357,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
19974,
62,
21230,
28,
25101,
11,
198,
220,
220,
220,
1398,
13350,
16193,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41206,
12678,
7904,
642,
532,
19174,
14,
1273,
540,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31441,
7904,
24371,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
31441,
7904,
5313,
9344,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5317,
1631,
7591,
1240,
7904,
34152,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34156,
7904,
7294,
40,
20010,
1079,
7904,
17168,
13789,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35364,
15417,
7904,
3594,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35364,
15417,
7904,
3999,
357,
48485,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35364,
15417,
7904,
3999,
357,
8890,
489,
1431,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35364,
15417,
7904,
4960,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
35364,
15417,
7904,
6983,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
18843,
803,
4482,
7904,
7294,
13362,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
19,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
20,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
21,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15167,
2229,
15417,
7904,
11361,
7904,
513,
13,
22,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
7868,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
10442,
7712,
7904,
4037,
1634,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
10442,
7712,
7904,
46267,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
10442,
7712,
7904,
46267,
7904,
11361,
3401,
5028,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
8255,
28403,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
8255,
28403,
7904,
3611,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
8255,
28403,
7904,
406,
6680,
2569,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
33221,
7904,
41086,
3256,
198,
220,
220,
220,
10612,
198,
8,
198
] | 2.762861 | 797 |
# Generated by Django 2.2.2 on 2019-06-06 12:20
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
import model_utils.fields
import uuid
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
13,
17,
319,
13130,
12,
3312,
12,
3312,
1105,
25,
1238,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
198,
11748,
42625,
14208,
13,
9945,
13,
27530,
13,
2934,
1616,
295,
198,
11748,
42625,
14208,
13,
26791,
13,
2435,
11340,
198,
11748,
2746,
62,
26791,
13,
25747,
198,
11748,
334,
27112,
628
] | 2.984375 | 64 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.