content
stringlengths
1
1.05M
input_ids
listlengths
1
883k
ratio_char_token
float64
1
22.9
token_count
int64
1
883k
import json
[ 11748, 33918, 628, 628, 628 ]
3.4
5
import pytz import datetime from fixture import DataSet, NamedDataStyle, SQLAlchemyFixture from pmg.models import ( db, House, Committee, CommitteeMeeting, Bill, BillType, Province, Party, CommitteeMeetingAttendance, Member, CallForComment, TabledCommitteeReport, CommitteeQuestion, Minister, Event, Featured, Page, BillStatus, Post, User, Role, Membership, MembershipType, EmailTemplate, DailySchedule, Organisation, ) THIS_YEAR = datetime.datetime.today().year dbfixture = SQLAlchemyFixture( env=globals(), style=NamedDataStyle(), engine=db.engine, scoped_session=db.Session )
[ 11748, 12972, 22877, 198, 11748, 4818, 8079, 198, 6738, 29220, 1330, 6060, 7248, 11, 34441, 6601, 21466, 11, 16363, 2348, 26599, 37, 9602, 198, 198, 6738, 9114, 70, 13, 27530, 1330, 357, 198, 220, 220, 220, 20613, 11, 198, 220, 220, 2...
2.512281
285
from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.desired_capabilities import DesiredCapabilities driver = webdriver.Chrome("D:\chromedriver\chromedriver") driver.get("http://www.google.com") if not "Google" in driver.title: raise Exception("Unable to load google page!") elem = driver.find_element_by_name("q") elem.send_keys("selenium") elem.submit() print (driver.title) driver.quit()
[ 6738, 384, 11925, 1505, 1330, 3992, 26230, 198, 6738, 384, 11925, 1505, 13, 12384, 26230, 13, 11321, 13, 13083, 1330, 26363, 198, 6738, 384, 11925, 1505, 13, 12384, 26230, 13, 11321, 13, 8906, 1202, 62, 11128, 5738, 1330, 2935, 1202, 15...
3.053691
149
from PuppeteerLibrary.utils.coverter import str2bool, str2str import os import glob import shutil import time from PuppeteerLibrary.ikeywords.iformelement_async import iFormElementAsync
[ 6738, 20926, 14471, 263, 23377, 13, 26791, 13, 9631, 353, 1330, 965, 17, 30388, 11, 965, 17, 2536, 198, 11748, 28686, 198, 11748, 15095, 198, 11748, 4423, 346, 198, 11748, 640, 198, 6738, 20926, 14471, 263, 23377, 13, 522, 88, 10879, ...
3.528302
53
import shutil, os, csv, itertools, glob import math import numpy as np import torch import torch.nn as nn import torch.nn.functional as F from torch.autograd import Variable from torch.utils.data import Dataset, DataLoader import torch.optim as optim from sklearn.metrics import confusion_matrix import pandas as pd import pickle as pk cuda = torch.cuda.is_available() print("is conv1D_cuda available: ", cuda) # Utils ## 1D Variant of ResNet taking in 200 dimensional fixed time series inputs def resnet18(pretrained=False, **kwargs): """Constructs a ResNet-18 model. Arguments: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = ResNet(BasicBlock, [2, 2, 2, 2], arch='resnet18', **kwargs) return model def resnet34(pretrained=False, **kwargs): """Constructs a ResNet-34 model. Arguments: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = ResNet(BasicBlock, [3, 4, 6, 3], arch='resnet34', **kwargs) return model def resnet50(pretrained=False, **kwargs): """Constructs a ResNet-50 model. Arguments: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = ResNet(Bottleneck, [3, 4, 6, 3], arch='resnet50', **kwargs) return model def resnet101(pretrained=False, **kwargs): """Constructs a ResNet-101 model. Arguments: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = ResNet(Bottleneck, [3, 4, 23, 3], arch='resnet101', **kwargs) return model def resnet152(pretrained=False, **kwargs): """Constructs a ResNet-152 model. Arguments: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = ResNet(Bottleneck, [3, 8, 36, 3], arch='resnet152', **kwargs) return model
[ 11748, 4423, 346, 11, 28686, 11, 269, 21370, 11, 340, 861, 10141, 11, 15095, 198, 198, 11748, 10688, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, ...
2.752212
678
# Copyright (c) 2003-2012 CORE Security Technologies # # This software is provided under under a slightly modified version # of the Apache Software License. See the accompanying LICENSE file # for more information. # # $Id: serviceinstall.py 1141 2014-02-12 16:39:51Z bethus@gmail.com $ # # Service Install Helper library used by psexec and smbrelayx # You provide an already established connection and an exefile # (or class that mimics a file class) and this will install and # execute the service, and then uninstall (install(), uninstall(). # It tries to take care as much as possible to leave everything clean. # # Author: # Alberto Solino (bethus@gmail.com) # """This module has been copied from impacket.examples.serviceinstall. It exposes a class that can be used to install services on Windows devices """ import random import string from impacket.dcerpc import dcerpc from impacket.dcerpc import srvsvc from impacket.dcerpc import svcctl from impacket.dcerpc import transport from impacket import smb from impacket import smb3 from impacket import smbconnection
[ 2, 15069, 357, 66, 8, 5816, 12, 6999, 327, 6965, 4765, 21852, 198, 2, 198, 2, 770, 3788, 318, 2810, 739, 739, 257, 4622, 9518, 2196, 198, 2, 286, 262, 24843, 10442, 13789, 13, 4091, 262, 19249, 38559, 24290, 2393, 198, 2, 329, 517...
3.675768
293
from direct.directnotify import DirectNotifyGlobal from pirates.reputation. DistributedReputationAvatarAI import DistributedReputationAvatarAI from Teamable import Teamable from direct.distributed.ClockDelta import globalClockDelta from pirates.piratesbase import EmoteGlobals
[ 6738, 1277, 13, 12942, 1662, 1958, 1330, 4128, 3673, 1958, 22289, 198, 6738, 27516, 13, 260, 1996, 341, 13, 4307, 6169, 6207, 7094, 7355, 9459, 20185, 1330, 220, 4307, 6169, 6207, 7094, 7355, 9459, 20185, 198, 6738, 4816, 540, 1330, 481...
4.028986
69
from __future__ import unicode_literals from django.db.migrations.executor import MigrationExecutor from django_migrate_project.loader import ProjectMigrationLoader
[ 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 6738, 42625, 14208, 13, 9945, 13, 76, 3692, 602, 13, 18558, 38409, 1330, 36991, 23002, 38409, 198, 198, 6738, 42625, 14208, 62, 76, 42175, 62, 16302, 13, 29356, 1330,...
3.652174
46
#!/usr/bin/env python """ Script pour dployer une VM TAT1 dont on a rcupr les informations Ecrit par Benoit BARTHELEMY benoit.barthelemy2@open-groupe.com """ import atexit import datetime import re import ssl from argparse import ArgumentParser from getpass import getpass from os import path from sys import exit from threading import Thread from time import sleep import requests from pyVim import connect from pyVmomi import vim from pyVmomi import vmodl from agora_deploy import FWAP from agora_tools import tasks # todo Ajouter une fonction qui a partir d'un folder donne tout son path en string def get_args(): """ Rcupration des informations de la ligne de commande """ parser = ArgumentParser(description='Arguments for talking to vCenter') parser.add_argument('--eol', required=False, action='store', default='Perenne', help='End of life of the VM (default=Perenne)') parser.add_argument('--demandeur', required=True, action='store', help='Name of the requester') parser.add_argument('--fonction', required=True, action='store', help='Function of the VM') parser.add_argument('-s', '--vcenter', required=True, action='store', help='vCenter to connect to.') parser.add_argument('-o', '--port', type=int, default=443, action='store', help='Port to connect on.') parser.add_argument('-u', '--user', required=True, action='store', help='Username to use.') parser.add_argument('-p', '--password', required=False, action='store', help='Password to use.') parser.add_argument('--datacenter_name', required=False, action='store', default=None, help='Name of the Datacenter you\ wish to use. If omitted, the first\ datacenter will be used.') parser.add_argument('--datastore_name', required=False, action='store', default=None, help='Datastore you wish the VM to be deployed to. \ If left blank, VM will be put on the first \ datastore found.') parser.add_argument('--cluster_name', required=False, action='store', default=None, help='Name of the cluster you wish the VM to\ end up on. If left blank the first cluster found\ will be used') parser.add_argument('-v', '--vmdk_path', required=True, action='store', default=None, help='Path of the VMDK file to deploy.') parser.add_argument('-f', '--ovf_path', dest='ovf_path', required=True, action='store', default=None, help='Path of the OVF file to deploy.') parser.add_argument('-n', '--name', required=True, action='store', default=None, help='Name of the new VM.') parser.add_argument('-e', '--esxi', required=True, action='store', help='ESXi to deploy to.') args = parser.parse_args() if not args.password: args.password = getpass(prompt='Enter password: ') return args def get_ovf_descriptor(ovf_path): """ Lecture du descripteur OVF """ if path.exists(ovf_path): with open(ovf_path, 'r') as f: try: ovfd = f.read() f.close() return ovfd except: print("Could not read file: %s" % ovf_path) exit(1) def get_obj(content, vimtype, name): """ Rcupration des objets vsphere par nom """ obj = None container = content.viewManager.CreateContainerView(content.rootFolder, vimtype, True) for c in container.view: if c.name == name: obj = c break return obj def get_obj_in_list(obj_name, obj_list): """ rcupration d'un objet dans une liste par nom """ for o in obj_list: if o.name == obj_name: return o print("Unable to find object by the name of %s in list:\n%s" % (obj_name, map(lambda o: o.name, obj_list))) exit(1) def get_objects(si, datacenter=None, datastore=None, cluster=None): """ Retourne un dictionnaire contenant les informations ncessaires un dploiement d'OVF. """ # Get datacenter object. datacenter_list = [] for toplevel_entity in si.content.rootFolder.childEntity: if type(toplevel_entity) == vim.Datacenter: datacenter_list.append(toplevel_entity) if datacenter: datacenter_obj = get_obj_in_list(datacenter, datacenter_list) else: datacenter_obj = datacenter_list[0] # Get datastore object. datastore_list = [] for datacenter_entity in datacenter_list: for datastore_entity in datacenter_entity.datastoreFolder.childEntity: if type(datastore_entity) == vim.Datastore: datastore_list.append(datastore_entity) if datastore: datastore_obj = get_obj_in_list(datastore, datastore_list) elif len(datastore_list) > 0: datastore_obj = datastore_list[0] else: print("No datastores found in DC (%s)." % datacenter_obj.name) datastore_obj = None # Get cluster object. cluster_list = [] for datacenter_entity in datacenter_list: for cluster_entity in datacenter_entity.hostFolder.childEntity: if type(cluster_entity) == vim.ClusterComputeResource: cluster_list.append(cluster_entity) if cluster: cluster_obj = get_obj_in_list(cluster, cluster_list) elif len(cluster_list) > 0: cluster_obj = cluster_list[0] else: print("No clusters found in DC (%s)." % datacenter_obj.name) cluster_obj = None # Generate resource pool. resource_pool_obj = cluster_obj.resourcePool return {"datacenter": datacenter_obj, "datastore": datastore_obj, "resource pool": resource_pool_obj} def keep_lease_alive(lease): """ Garde le lease du VMDK ouvert le temps du transfert. """ while (True): sleep(5) try: # Choosing arbitrary percentage to keep the lease alive. lease.HttpNfcLeaseProgress(50) if (lease.state == vim.HttpNfcLease.State.done): return # If the lease is released, we get an exception. # Returning to kill the thread. except: return def connect_vcenter(vcenter, user, password, port=443): """ Renvoie un objet service_instance reprsentant une connexion vcenter """ # Suppression de la vrification SSL context = ssl.SSLContext(ssl.PROTOCOL_TLSv1) context.verify_mode = ssl.CERT_NONE try: service_instance = connect.SmartConnect(host=vcenter, user=user, pwd=password, port=port, sslContext=context, ) except: print("Unable to connect to %s" % vcenter) exit(1) # Dconnexion auto la fermeture atexit.register(connect.Disconnect, service_instance) return service_instance def uploadOVF(url=None, fileFullPath=None): """ Permet l'upload de l'OVF sur l'ESX voulu """ headers = {'Content-Type': 'application/x-vnd.vmware-streamVmdk'} # Upload en Streaming vu la taille des images de VMs with open(fileFullPath, 'rb') as f: r = requests.post(url=url, headers=headers, data=f, verify=False) # Gestion des erreurs r.raise_for_status() def run_command_in_guest(vm, command, arguments, guestUser, guestPassword, si): """ Permet de lancer une commande via les vmWare agora_tools dans l'OS d'une VM""" exitCode = None try: cmdspec = vim.vm.guest.ProcessManager.ProgramSpec(arguments=arguments, programPath=command) # Credentials used to login to the guest system creds = vim.vm.guest.NamePasswordAuthentication(username=guestUser, password=guestPassword) # pid de la commande pid = si.content.guestOperationsManager.processManager.StartProgramInGuest(vm=vm, auth=creds, spec=cmdspec) except vim.fault.GuestComponentsOutOfDate as e: print(e.msg) except vim.fault.InvalidGuestLogin: print('Login OS incorrect') return 1 # Code Retour while exitCode is None: try: exitCode = \ si.content.guestOperationsManager.processManager.ListProcessesInGuest(vm=vm, auth=creds, pids=pid)[ 0].exitCode # Si on ne peut plus se logger c'est que le MDP root a t chang except vim.fault.InvalidGuestLogin: exitCode = 0 sleep(1) return exitCode def list_process_pids_in_guest(vm, proc_name, guestUser, guestPassword, si): """ Permet de lister tous les processus de l'OS d'une VM correspondant un nom de process """ pids = [] try: # Credentials used to login to the guest system creds = vim.vm.guest.NamePasswordAuthentication(username=guestUser, password=guestPassword) processes = si.content.guestOperationsManager.processManager.ListProcessesInGuest(vm=vm, auth=creds) for proc in processes: if re.search(proc_name, proc.name): pids.append(proc.pid) except vim.fault.GuestComponentsOutOfDate as e: print(e.msg) return pids def kill_process_in_guest(vm, pid, guestUser, guestPassword, si): """ Permet de tuer un processus dans l'OS d'une VM :param vm: nom de la VM :param pid: PID du process tuer :param guestUser: Nom du compte dans l'OS de la VM (doit avoir les droits ncessaires) :param guestPassword: Mot de passe du compte dans l'OS de la VM :param si: :return: """ try: creds = vim.vm.guest.NamePasswordAuthentication(username=guestUser, password=guestPassword) si.content.guestOperationsManager.processManager.TerminateProcessInGuest(vm=vm, auth=creds, pid=pid) except vim.fault.GuestComponentsOutOfDate as e: print(e.msg) if __name__ == "__main__": exit(main())
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 37811, 198, 7391, 12797, 288, 1420, 263, 17809, 16990, 309, 1404, 16, 17666, 319, 257, 374, 25244, 81, 10287, 4175, 602, 198, 14003, 799, 1582, 3932, 30711, 31597, 10970, 2538, 26708, 19...
2.05962
5,468
""" A form view can have a custom form_fields but reusing those fields that were deduced automatically, using grok.AutoFields: >>> grok.testing.grok(__name__) We only expect a single field to be present in the form, as we omitted 'size': >>> from zope import component >>> from zope.publisher.browser import TestRequest >>> request = TestRequest() >>> view = component.getMultiAdapter((Mammoth(), request), name='edit') >>> len(view.form_fields) 1 >>> [w.__name__ for w in view.form_fields] ['name'] >>> view = component.getMultiAdapter((Mammoth2(), request), name='edit2') >>> len(view.form_fields) 1 >>> [w.__name__ for w in view.form_fields] ['size'] """ import grokcore.formlib as grok from zope import schema from zope.interface import Interface, implementer
[ 37811, 198, 32, 1296, 1570, 460, 423, 257, 2183, 1296, 62, 25747, 475, 302, 3500, 883, 7032, 326, 198, 22474, 4648, 19513, 6338, 11, 1262, 7128, 74, 13, 27722, 15878, 82, 25, 628, 220, 13163, 7128, 74, 13, 33407, 13, 27333, 74, 7, ...
3.199203
251
import os import sys import pandas as pd # USAGE: python cifar100_dirmap.py <path to cifar100 dataset directory> # Organized cifar100 directory can be created using cifar2png: https://github.com/knjcode/cifar2png if len(sys.argv) > 1: DATA_DIR = sys.argv[1] else: DATA_DIR = "./../data/cifar100" # Get class names class_names = [ file for file in os.listdir(os.path.join(DATA_DIR, "train")) if os.path.isdir(os.path.join(DATA_DIR, "train", file)) ] class_names.sort() class_dicts = [{"class": class_names[i], "label": i} for i in range(len(class_names))] pd.DataFrame(class_dicts).to_csv("cifar100_classes.csv", index=False) image_list = [] for train_test_idx, train_test in enumerate(["train", "test"]): for img_class in class_names: img_files = [f for f in os.listdir(os.path.join(DATA_DIR, train_test, img_class)) if f.endswith(".png")] for fname in img_files: image_list.append({ "class": img_class, "object": 0, "session": train_test_idx, "im_path": os.path.join(train_test, img_class, fname), }) img_df = pd.DataFrame(image_list) img_df = img_df.sort_values(by=["class", "object", "session", "im_path"], ignore_index=True) img_df["im_num"] = img_df.groupby(["class", "object", "session"]).cumcount() + 1 img_df.to_csv("cifar100_dirmap.csv") print(img_df.head())
[ 11748, 28686, 198, 11748, 25064, 198, 11748, 19798, 292, 355, 279, 67, 628, 198, 2, 1294, 11879, 25, 21015, 269, 361, 283, 3064, 62, 67, 2533, 499, 13, 9078, 1279, 6978, 284, 269, 361, 283, 3064, 27039, 8619, 29, 198, 2, 7221, 1143,...
2.258481
619
""" Ensures there is no data past the deactivation date for deactivated participants. Original Issue: DC-686 The intent is to sandbox and drop records dated after the date of deactivation for participants who have deactivated from the Program This test will mock calling the PS API and provide a returned value. Everything within the bounds of our team will be tested. """ # Python imports import mock import os # Third party imports import pandas as pd # Project imports from app_identity import PROJECT_ID from common import OBSERVATION from cdr_cleaner.cleaning_rules.remove_participant_data_past_deactivation_date import ( RemoveParticipantDataPastDeactivationDate) from constants.retraction.retract_deactivated_pids import DEACTIVATED_PARTICIPANTS from tests.integration_tests.data_steward.cdr_cleaner.cleaning_rules.bigquery_tests_base import BaseTest
[ 37811, 198, 4834, 82, 942, 612, 318, 645, 1366, 1613, 262, 390, 48545, 3128, 329, 390, 33106, 6809, 13, 198, 198, 20556, 18232, 25, 6257, 12, 33808, 198, 198, 464, 6824, 318, 284, 35204, 290, 4268, 4406, 14567, 706, 262, 3128, 286, ...
3.693617
235
from django.shortcuts import render,redirect from django.contrib import messages, auth from django.contrib.auth.models import User from django.http.request import HttpRequest # Create your views here.
[ 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 11, 445, 1060, 198, 6738, 42625, 14208, 13, 3642, 822, 1330, 6218, 11, 6284, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 198, 6738, 42625, 14208, 13, 4023,...
3.672727
55
from mpython import * import neopixel import time my_rgb = neopixel.NeoPixel(Pin(Pin.P13), n=24, bpp=3, timing=1) while True: flashlight() time.sleep(2)
[ 6738, 29034, 7535, 1330, 1635, 198, 11748, 497, 404, 7168, 198, 11748, 640, 198, 198, 1820, 62, 81, 22296, 796, 497, 404, 7168, 13, 8199, 78, 40809, 7, 28348, 7, 28348, 13, 47, 1485, 828, 299, 28, 1731, 11, 275, 381, 28, 18, 11, ...
2.362319
69
from checks import NaptanCheck # %%
[ 6738, 8794, 1330, 399, 2373, 272, 9787, 198, 198, 2, 43313, 628 ]
3.166667
12
"""Defines the trial class. """ from datetime import datetime from logging import getLogger logger = getLogger(__name__)
[ 37811, 7469, 1127, 262, 4473, 1398, 13, 198, 198, 37811, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 18931, 1330, 651, 11187, 1362, 198, 198, 6404, 1362, 796, 651, 11187, 1362, 7, 834, 3672, 834, 8, 628 ]
3.263158
38
#!/usr/bin/env python import ast import sys import nltk import numpy as np from review_data import read_reviews ############################################################################### if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 11748, 6468, 198, 11748, 25064, 198, 11748, 299, 2528, 74, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 2423, 62, 7890, 1330, 1100, 62, 19023, 82, 198, 198, 29113, 29113, 7...
3.714286
63
import subprocess import sys import os # This code is meant to manage running multiple instances of my KMCLib codes at the same time, # in the name of time efficiency numLambda = 512 numStepsEquilib = 1600000 numStepsAnal = 16000 numStepsSnapshot = 1000 numStepsReq = 16000 sysWidth = 32 sysLength = 32 analInterval = 1 numPasses = 100 timeInterval = 1.0 dataLocation = "dim2Runs/lambdaScan1/" lambdaMin = 0.05 lambdaMax = 1.25 rateStepSize = (lambdaMax-lambdaMin)/float(numLambda-1) runningJobs = [] for rateIndex in range(0, numLambda): currentRate = lambdaMin + rateStepSize*rateIndex botConc = 0.99 topConc = 0.01 jobInput = "2dSteadyFlow.py "+str(botConc)+" "+str(topConc)+" "+str(currentRate)+" "+str(sysWidth)+" "+str(sysLength)+" "+str(analInterval)+" "+str(numStepsEquilib)+" "+str(numStepsSnapshot)+" "+str(numStepsAnal)+" "+str(numStepsReq)+" "+str(numPasses)+" "+str(timeInterval)+" "+dataLocation+str(rateIndex)+"\n" with open("jobInputs/testInput."+str(jobIndex), 'w') as f: f.write(jobInput) jobIndex += 1
[ 11748, 850, 14681, 198, 11748, 25064, 198, 11748, 28686, 198, 198, 2, 770, 2438, 318, 4001, 284, 6687, 2491, 3294, 10245, 286, 616, 46646, 5097, 571, 12416, 379, 262, 976, 640, 11, 198, 2, 287, 262, 1438, 286, 640, 9332, 198, 22510, ...
2.57971
414
from django.contrib.auth.decorators import login_required from django.shortcuts import render
[ 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 12501, 273, 2024, 1330, 17594, 62, 35827, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 628, 628, 198 ]
3.5
28
""" Here we will show how to build a graph from a class inheritance structure. Since we will n change the class of classes (type), we will use a wrapper to do this. """ from anygraph import Many """ First we define the wrapper class; because we create instances of ClassWrapper on the flight; to detect if the class was already encountered, we need to use a custom get_id function. """ """ then we define how to get from a wrapped class to its base classes""" """ and we are ready to build the graph """ if __name__ == '__main__': """ create some class hierarchy: """ start = build(E) """ let's see what we got """ print([w.__name__ for w in ClassWrapper.base_classes(start, breadth_first=True)]) """ find the wrapper wrapping the object class """ wrapped_object = ClassWrapper.base_classes.find(start, filter=lambda w: w.wrapped is object)[0] """ and following the 'sub_classes' reverse graph """ print([w.__name__ for w in ClassWrapper.sub_classes(wrapped_object, breadth_first=True)]) """ Note that iterating over base_classes depth- or breadth-first, does not always produce the same order as the mro() algorithm used by python """
[ 37811, 198, 4342, 356, 481, 905, 703, 284, 1382, 257, 4823, 422, 257, 1398, 24155, 4645, 13, 4619, 356, 481, 299, 1487, 262, 1398, 286, 6097, 357, 4906, 828, 356, 481, 779, 257, 29908, 284, 466, 428, 13, 198, 37811, 198, 6738, 597, ...
3.430199
351
import time import numpy as np from os import path if __name__ == "__main__": time_start = time.time() n_vertex, shortest_paths = read_graph("grh1.txt") print(compute_apsp(n_vertex, shortest_paths)) print(time.time() - time_start) time_start = time.time() n_vertex, shortest_paths = read_graph("grh2.txt") print(compute_apsp(n_vertex, shortest_paths)) print(time.time() - time_start) time_start = time.time() n_vertex, shortest_paths = read_graph("grh3.txt") print(compute_apsp(n_vertex, shortest_paths)) print(time.time() - time_start)
[ 11748, 640, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 28686, 1330, 3108, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 640, 62, 9688, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 2...
2.402439
246
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas from matplotlib.figure import Figure import io import random import numpy as np # def create_figure1(data1): # fig = plt.figure() # axis = fig.add_axes([0,0,1,1]) # y1 = data1[0] # y2 = data1[1] # width = 0.30 # x=np.arange(8) # axis.bar(x-0.3, y1, width, color='cyan') # axis.bar(x, y2, width, color='orange') # # axis.bar(xs, ys) # # axis.xticks(x, ['cp','chol','fbs','exang','oldpeak','slope','ca','thal']) # # axis.xlabel("Heart health defining attributes") # axis.set_ylabel("values") # # axis.legend(["Normal", "Yours"]) # axis.set_title('Your data corresponding to normal data') # return fig
[ 6738, 2603, 29487, 8019, 13, 1891, 2412, 13, 1891, 437, 62, 9460, 1330, 11291, 6090, 11017, 46384, 355, 11291, 6090, 11017, 198, 6738, 2603, 29487, 8019, 13, 26875, 1330, 11291, 198, 198, 11748, 33245, 198, 11748, 4738, 198, 11748, 299, ...
2.266055
327
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/7/15 16:36 # @Author : bxf # @File : P_DB_OPT.py # @Software: PyCharm import pymysql import json from datetime import date, datetime from model.util import md_Config from model.util.PUB_LOG import * ''' : ''' # json jsoncls=MyEncoder # json FALSE def getJsonFromDatabase(sql): cur = DB_CONN().db_Query_Json(sql) if cur.rowcount == 0: exeLog("***") return False else: exeLog("***JSON") return cur.fetchall() def getTupleFromDatabase(sql): cur = DB_CONN().db_Query_tuple(sql) if cur.rowcount == 0: exeLog("***") return False else: exeLog("***JSON") return cur.fetchall() def insertToDatabase(table,data,**kwargs): ''' :param table: :param data: :return: ''' col_list=dict() # print(type(data)) # print(type(kwargs)) col_list.update(data) col_list.update(kwargs) col_lists=col_list.keys() col='' for j in col_lists: col=col+j+',' val=[] for i in col_lists: val_one=col_list[i] val.append(val_one) var_lists=tuple(val) sql='INSERT INTO '+table +' ( '+ col[:-1] +' ) VALUE '+str(var_lists) exeLog("******~~***") result=DB_CONN().db_Update(sql) exeLog("************") return result def updateToDatabase(table, data, col, val): ''' :param table: :param data: :param col: :param val: :return: ''' col_lists = tuple(data.keys()) list_one = "" for i in col_lists: val_one = data[i] list_one = list_one + i + '= "' + str(val_one) + '",' sql = "UPDATE " + table + ' SET ' + list_one[:-1] + ' WHERE ' + col + ' = "' + str(val) + '"' exeLog("") return sql
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 201, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 201, 198, 2, 2488, 7575, 220, 220, 220, 1058, 2864, 14, 22, 14, 1314, 1467, 25, 2623, 201, 198, 2, 2488, 13838, 220...
1.971933
962
import pybullet as p import pybullet_data cid = p.connect(p.SHARED_MEMORY) if (cid < 0): p.connect(p.GUI) p.setAdditionalSearchPath(pybullet_data.getDataPath()) p.loadURDF("plane.urdf") quadruped = p.loadURDF("quadruped/quadruped.urdf") logId = p.startStateLogging(p.STATE_LOGGING_MINITAUR, "LOG00048.TXT", [quadruped]) p.stepSimulation() p.stepSimulation() p.stepSimulation() p.stepSimulation() p.stepSimulation() p.stopStateLogging(logId)
[ 11748, 12972, 15065, 1616, 355, 279, 198, 11748, 12972, 15065, 1616, 62, 7890, 628, 198, 66, 312, 796, 279, 13, 8443, 7, 79, 13, 9693, 1503, 1961, 62, 44, 3620, 15513, 8, 198, 361, 357, 66, 312, 1279, 657, 2599, 198, 220, 279, 13,...
2.37037
189
#!/usr/bin/env python3 from setuptools import setup fuse_reqs = [ 'fuse-python >= 0.3.1; python_version < "3"', 'fuse-python >= 1.0.0; python_version > "3"', ] readme = open('README.md', 'r').read() readme = readme.replace( '(FUSE.md)', '(https://github.com/drougge/wellpapp-pyclient/blob/master/FUSE.md)' ) setup( name='wellpapp', version='CHANGEME.dev', # set this for each release packages=[ 'wellpapp', 'wellpapp.shell', ], entry_points={ 'console_scripts': [ 'wp = wellpapp.__main__:main', ], }, install_requires=[ 'Pillow >= 3.1.2', 'PyGObject >= 3.20', ], extras_require={ 'fuse': fuse_reqs, 'all': fuse_reqs, }, python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', author='Carl Drougge', author_email='bearded@longhaired.org', url='https://github.com/drougge/wellpapp-pyclient', license='MIT', description='Client library and application for the wellpapp image tagging system.', long_description=readme, long_description_content_type='text/markdown', )
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 6738, 900, 37623, 10141, 1330, 9058, 198, 198, 69, 1904, 62, 42180, 82, 796, 685, 198, 197, 6, 69, 1904, 12, 29412, 18189, 657, 13, 18, 13, 16, 26, 21015, 62, 9641, 1279, ...
2.31377
443
from django.db import models from django.contrib.auth.models import User from datetime import datetime # Create your models here. # create a new attribute in your model
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 2, 13610, 534, 4981, 994, 13, 198, 2, 2251, 257, 649, 11688, 287, 534, ...
3.863636
44
import socket import threading conn = socket.socket(socket.AF_INET,socket.SOCK_STREAM) conn.bind (('', 7070)) conn.listen() clients = [] print ('Start Server') threading.Thread(target=new_client()).start()
[ 11748, 17802, 198, 11748, 4704, 278, 198, 198, 37043, 796, 17802, 13, 44971, 7, 44971, 13, 8579, 62, 1268, 2767, 11, 44971, 13, 50, 11290, 62, 2257, 32235, 8, 198, 37043, 13, 21653, 357, 10786, 3256, 4317, 2154, 4008, 198, 37043, 13, ...
2.824324
74
from qtpy.QtCore import Signal from qtpy.QtWidgets import QDialog, QDialogButtonBox, QListWidget, QVBoxLayout
[ 6738, 10662, 83, 9078, 13, 48, 83, 14055, 1330, 26484, 198, 6738, 10662, 83, 9078, 13, 48, 83, 54, 312, 11407, 1330, 1195, 44204, 11, 1195, 44204, 21864, 14253, 11, 1195, 8053, 38300, 11, 1195, 53, 14253, 32517, 628 ]
2.846154
39
# Importing required libraries from tkinter import * from tkinter import messagebox as mb from tkinter import ttk import random # function to create screen for the game total =0 #function when bomb is clicked board()
[ 2, 17267, 278, 2672, 12782, 198, 6738, 256, 74, 3849, 1330, 1635, 198, 6738, 256, 74, 3849, 1330, 3275, 3524, 355, 285, 65, 198, 6738, 256, 74, 3849, 1330, 256, 30488, 198, 11748, 4738, 198, 198, 2, 2163, 284, 2251, 3159, 329, 262, ...
3.564516
62
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt4 (Qt v4.8.7) # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore qt_resource_data = "\ \x00\x00\x05\x96\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x05\x5d\x49\x44\x41\x54\x78\xda\x95\x96\x69\x4c\x54\x57\ \x14\xc7\xff\xf7\xbd\x37\xf3\x66\x65\x66\x80\x8a\xa0\x42\xb1\x0c\ \x28\x08\x28\x0a\x55\x03\x56\xfd\x60\xda\x6a\xa3\x69\xb4\x19\xd2\ \x98\xa6\x68\xfb\xa1\xbb\xdd\xd2\x6a\x93\x7e\xeb\x87\xda\x34\xa6\ \x36\x26\xd5\x82\xda\x46\x99\x44\x53\x63\x6c\x6c\x62\x23\xae\x31\ \xad\x5a\x97\x28\x08\x6e\xd0\x61\x5f\xc2\xc0\x2c\x0c\xcc\x5b\x6e\ \xcf\x1b\x90\x92\x8a\x45\x4f\x66\xf2\x26\xf3\xe6\x9d\xdf\xfd\x9f\ \xff\xb9\xe7\x0e\xc3\x23\x22\x32\xa7\xb8\x1a\x29\xee\x2a\x26\xcb\ \xf8\xbf\xe0\x8a\x02\xf4\x06\x6b\x1c\x8d\xd7\x36\x4d\x76\x9f\x4d\ \xf6\x65\x38\xb7\xa8\x56\x2c\xce\xf3\x99\xde\x5c\x03\x74\x06\x00\ \x81\x8d\xff\x92\x89\x0c\x5c\x4b\x7c\x00\x74\x15\x30\x49\x88\xef\ \x3e\x0e\xbd\x23\xec\x77\xde\xba\x5a\x39\x25\x20\xe4\x2d\xa4\xe4\ \xb9\x3e\xf3\xe6\x17\xa1\x9e\x3e\x01\x1e\x0a\x41\x1b\xa1\x8c\xaa\ \x8e\x98\x39\x07\x7a\x6b\x03\x6c\xd3\x2d\x88\x75\x04\xe1\x5a\xec\ \x05\xd7\xe9\x21\x8b\x19\xda\xc9\xfb\xd0\x3b\x43\xfe\xa4\xc6\x6b\ \x95\x8f\x04\x04\x29\xb9\x89\x92\xcb\x6f\x50\xf2\xba\xdf\xa0\x76\ \xf6\x81\x95\x6c\x84\xb0\x60\x2e\x06\xb6\x7e\x84\xf4\xf3\x17\xd0\ \xb6\xc0\x0b\xeb\xd6\x1d\x48\xd9\xb0\x1a\x9d\xeb\x56\x20\xb9\x38\ \x9d\x14\x31\x30\x59\x84\x52\xd7\x02\xad\x2b\xec\x77\x4f\x80\x8c\ \x03\x06\xc6\x56\x2e\x6f\x7a\x1e\xda\xb9\x93\xe0\xb1\x28\x94\x9b\ \x01\xd8\xbe\x3b\x02\x69\x4e\x36\x5a\x0b\x4a\x30\xab\xfe\x4a\x02\ \xe0\x3e\x70\x1c\x8e\x7c\x2f\xfa\xbf\xfa\x14\xf6\xc1\xbf\xc1\xd9\ \x68\x2a\x66\x16\x11\x3f\x1b\x80\xde\x1d\x19\x87\x24\x6e\xf5\xe5\ \xcc\xab\x35\x15\x79\x7d\xd6\xd7\x5f\x80\x76\xe1\x24\xd0\x13\x03\ \x7b\xee\x35\x0c\xff\xf4\x23\xec\xdf\x7e\x03\xa9\x30\x1f\x2d\x79\ \x85\x78\xba\xe9\x46\x02\xe0\xda\x77\x14\xce\xe2\x7c\xf4\x7f\xf9\ \x21\xec\xe1\x66\x70\x41\x1c\x5b\xae\x01\x11\x30\x7c\xbe\x03\x5a\ \x77\xd8\x9f\xd2\x74\xbd\x92\xf5\xe6\x16\x56\x9b\x0b\x66\x57\x59\ \xab\x56\x41\x3b\x73\x8a\x8c\x53\x20\x78\xbc\x30\x7f\xb1\x1d\x03\ \x15\xcb\x61\xdb\xb5\x0b\x66\x03\x30\x87\x00\x8d\x63\x80\xbd\x04\ \x98\x4f\x80\x6d\xef\xc3\x1e\x69\x19\x03\xe8\x89\x97\xb1\x64\x43\ \xc9\xf0\x1f\xdd\x50\xfa\xa2\x35\xac\x6f\x71\x39\x77\x7d\xe6\x83\ \x7a\x96\x92\x53\x7b\xf0\xb8\x02\x66\x4b\x87\xe5\xeb\x3d\x08\x2e\ \x2e\x87\x73\xcf\x0f\xa4\xa0\x00\x81\x82\xf9\xc8\xac\xbf\x36\x06\ \x38\x42\x80\x79\x04\x78\x0f\xf6\xe0\x7d\xea\x32\x09\x9c\xf3\xd1\ \xec\x86\xeb\xa4\x44\x20\x25\xa1\x33\x6d\x60\xbd\xcb\x56\x70\xd7\ \x2b\xa5\xd0\x9a\x6e\x52\x7e\x81\xba\x66\x10\xcc\x3a\x13\xd6\xdd\ \x07\xd1\xbf\xe8\x59\x24\xed\xdf\x07\xa9\x60\x2e\xda\xcb\xca\x31\ \xe3\xe2\x79\x74\x6e\x5c\x0d\xe7\x27\xdb\xe1\x28\xca\x47\xf0\xf3\ \x77\xe1\xe8\xbf\x8b\x50\x57\x08\xce\x34\x37\x79\xc1\x61\x70\x38\ \x99\xc2\x24\x01\x91\x8b\x5d\x60\x3d\x15\xcb\xb9\xfb\x65\x02\x34\ \x36\x10\x40\x87\x16\x0c\x42\xb0\xa6\xc3\xf6\xf3\x2f\xe8\x2f\x5d\ \x42\x80\x1a\x48\xf9\x73\xd1\x9a\x91\x8d\x59\x1d\xcd\xe8\xae\x5a\ \x07\xeb\xe6\x6d\x48\x5a\x5a\x8a\xee\x0d\x6b\xd0\xdb\xdc\x85\x8c\ \xc3\x47\x31\xb8\x65\x13\xd2\x3d\xc0\xa8\x10\x02\x88\xa4\xe0\xaf\ \x6e\xb0\xae\x65\x2b\xb9\x67\x6d\x09\xf8\xbd\x26\x68\x1d\x54\xb7\ \xe6\x76\x40\x11\xe0\xaa\x0f\x20\x38\x7f\x11\x6c\xdf\xef\x84\x5c\ \xbe\x04\x3d\x4b\x57\x62\xda\x85\x3a\xc4\x4f\x9d\x03\xcf\x7b\x06\ \x72\x46\x06\xae\xb8\xac\x28\x19\x8c\x25\xfc\xbd\x5b\xec\x45\x7a\ \x3c\x0c\xfe\x94\x07\xd2\x8c\x34\x30\x97\x1d\xfd\x97\xa9\xcd\xdb\ \x16\x96\xf1\xd4\xd2\x54\xc4\xeb\x2e\xd1\xc6\x24\x05\x51\xea\x20\ \xc9\x0c\x4f\x5b\x10\x5a\x1b\x49\x4c\x75\x43\xb0\x58\x26\x1d\x13\ \x13\x01\xb7\xb2\xa7\x61\x7a\x34\x0a\x41\x36\x91\x27\xb4\xc1\x9d\ \x36\xf4\x0d\x88\x60\x4d\x8e\x24\x9e\xb9\xc2\x0b\xb5\x91\xfa\x97\ \x4c\x56\x23\x23\x24\xcf\x00\xf4\x63\xaa\x98\x08\xb8\x9a\xe6\x44\ \x96\xaa\x81\x59\x4c\x10\x65\x09\x22\x95\xa9\xad\x3d\x0a\x76\x2b\ \xc9\xc3\xb3\x2a\xb2\xc9\x83\x16\x52\xc0\xa0\x0c\xc5\x20\x98\x64\ \x78\xda\x9f\x0c\x70\x39\xd9\x86\x6c\x5d\x27\xb5\x66\x88\x66\x02\ \x08\x02\x02\x5d\x43\x60\x37\x92\xdc\x3c\x67\x49\x16\x94\xa6\x56\ \x52\xa0\x27\x14\x08\x92\x05\x9e\xae\xa9\x01\x86\xc9\x69\x87\x7e\ \x1d\x05\x10\x2c\x9b\x1c\x16\x65\x33\x2d\x50\x84\x48\x5d\x74\xbf\ \x87\x00\xd7\x1d\x6e\x9e\x5b\x96\x09\xe5\x0e\x01\xa8\x8b\xd4\xe1\ \x38\x04\xa3\x44\x3d\x03\x53\x02\xfe\xab\x66\x16\x3d\x2f\x9a\x0d\ \x05\x04\x60\x02\xee\x05\xc9\xcf\x4b\x56\x07\x2f\x2a\x9b\x8d\xf8\ \xed\x00\x68\x9b\x51\x89\xc8\x03\x2a\x51\x4a\xef\x93\x01\xf6\x52\ \xcd\xd7\x3a\x64\x6a\x10\xf2\x80\x5a\xd4\x44\xef\x9b\x06\xe0\x04\ \x93\xaa\xd3\x93\x3d\x55\x39\x2e\x9a\x21\xa1\x21\xa8\x23\x2a\xe2\ \xe1\x18\x32\x12\x0d\xfd\x78\x31\x14\x89\xe0\x8a\xd3\x89\x7c\x87\ \x8d\x1a\x44\x84\x85\xca\x73\x27\x12\x47\xb7\xa2\xd5\x24\x86\xdd\ \x31\x88\xb5\x33\x53\x93\x7d\x79\xd4\x8d\x43\x83\x51\x0c\x87\x87\ \xe0\xd9\xbe\x13\xb6\x8f\xdf\x79\x2c\xc0\x31\xa7\x0b\xcb\x46\xa2\ \xd0\x65\x0b\x64\x02\x34\xc5\xe2\x68\x57\x54\xff\x4b\x5c\xad\x1c\ \x1f\xd7\x87\x09\x92\x45\x90\x02\x51\xc7\xc0\xe0\x20\xe2\xc3\x2a\ \xb2\x1e\x43\x45\xfd\xdb\x5b\x60\xd9\x45\xe7\x83\xdd\x06\xda\x01\ \x68\x50\x34\x04\x14\xdd\xbf\x9e\x2b\xff\x8e\xeb\x07\x71\x00\xac\ \x36\xdb\xe3\xf1\x15\x71\x95\x20\x61\x44\x08\x90\x79\xf0\x10\xac\ \x95\xeb\x1f\xee\xa0\xdf\x4f\xa3\x61\xd5\x4a\x64\x90\x6f\xa9\xe4\ \x99\x2c\x49\xb8\xa1\xaa\x68\x56\x14\xff\xab\xd0\x1f\x3e\x70\x1e\ \xc4\x6e\x08\xb5\xb3\x93\x9c\xbe\x85\xba\x86\x30\xed\xcc\x38\x41\ \x14\xe3\x86\x24\x63\x44\xe7\x30\x8e\xe3\x11\x3d\x0e\x2b\x5d\xa7\ \x1b\x33\x87\x4c\xb5\x53\x59\xae\xd2\xca\xef\x6a\xaa\xbf\x6a\x42\ \xf2\x49\x01\x46\xec\x04\x6a\x73\x9d\x2e\x5f\x05\xa5\x1b\xa1\xb6\ \x4d\x14\x8a\x36\x91\x9e\xb8\xcb\x21\xd0\xb4\xe4\x46\x72\x18\xdd\ \xc2\xf0\x27\xad\xfc\xb6\xae\xf9\xdf\x02\x9f\xfa\xd0\x7f\x10\x3b\ \x80\xea\x64\xd1\x54\xc5\x34\x8d\x30\x0c\x2a\x8d\x62\x7d\xc2\x43\ \xc6\x5b\x32\x8e\x49\xba\x06\xb9\x5e\xf3\x01\xf8\xa4\x7f\x5b\xfe\ \x01\xb5\x1d\x53\x25\x7d\xa2\x87\x28\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x03\x02\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x02\xc9\x49\x44\x41\x54\x78\xda\xad\x94\x4d\x68\x13\x41\ \x14\xc7\xff\xb3\x49\x8a\xe8\xc1\x63\x41\xea\x07\x22\x6a\x15\x15\ \x44\xa1\xa0\x08\x11\x41\x28\x88\xb5\xc4\x52\xb1\x85\x2a\x1e\x6a\ \x15\xa9\xa0\xe2\xc1\x9b\xe7\x82\x20\x8a\x20\xf4\xe4\x41\x45\x8b\ \xb4\xe0\x49\xad\x9a\x46\x4d\x3f\x63\x69\x8a\x96\x8a\x5a\xa5\xc4\ \x36\xdb\xcd\x47\xa3\x6d\x36\xb3\xe3\xdb\xd9\x6c\x92\x05\xdb\x08\ \xdd\xc0\xf0\x26\x6f\xdf\xfc\x7f\xef\x63\x76\x19\xca\xfc\x0e\x76\ \x6e\x11\x95\xeb\x57\xc1\x5b\xe1\x73\xf8\x73\x59\x1d\xbf\x7e\x2c\ \xa0\xef\xec\x24\x5b\xee\xfc\xb2\x0f\x6d\x40\x7b\x7d\x2d\x36\xaf\ \xad\x72\xf8\xbf\xa7\x63\xe8\x78\xd2\xbd\x72\xc0\xde\x7b\x1b\xc4\ \xf5\xc6\x3a\x44\xe7\x1e\x38\xfc\xc9\x8c\x82\xb7\xa1\xd5\x18\x6e\ \x9d\x72\x01\xd0\x70\x02\x13\xa9\xc7\x0e\xbf\x96\x02\x7a\xdf\xf9\ \xdc\x01\x5c\x0b\xd4\x63\x72\xfe\x91\xfc\x2f\x68\x19\x06\x10\x4f\ \x02\xa1\xb0\x4b\x80\x2b\x04\xf8\x42\x00\x53\x98\xd3\x32\x84\x82\ \x78\x02\xe8\x1f\xf2\xb8\x04\xa8\x3f\x8e\x4f\xa9\x2e\x12\xb6\x2a\ \x30\x21\x71\x0d\x18\x8e\xb8\x04\xb8\x74\xac\x0e\x9f\xe7\x9f\x92\ \x38\x93\x10\xb3\x92\x19\x95\x63\x2c\xfa\x1f\x2d\x32\xaf\x61\x39\ \xc8\xb9\xa3\xb5\x18\x4f\x77\xe5\xdb\x43\x55\x90\x9d\x4b\x70\x9a\ \xc1\x62\xb9\xa3\x60\xfe\xce\x9d\xe2\xc6\x19\x3f\xa6\x13\xdf\x20\ \x98\x42\x22\xcc\x1a\xa4\x14\x52\x20\xb8\x82\x71\x35\x44\xb9\x7b\ \xa5\xb0\x01\x45\x5a\x9d\x02\x16\xb9\xc0\xee\xca\x1a\xf2\x19\x85\ \xca\xe4\x59\x0e\x78\x7d\x1e\x3c\x7c\x1e\x06\x3b\x74\xbf\x5a\x9c\ \x3f\xb5\x15\x91\xe9\x10\x1d\xf5\x58\x41\x82\x41\xa7\x20\x32\x72\ \xcf\x68\xa8\x06\x3d\x2b\x54\x00\x4b\xcc\x10\x02\x9c\x96\x41\x20\ \x23\xef\x13\x26\x88\xf6\x0a\x25\x34\xf8\x21\x0d\x76\xe0\x6e\xb5\ \x68\x6b\xda\x41\x80\x3e\xca\xd2\xe7\x08\xe2\x32\x23\x25\x2f\x56\ \x14\xb6\x67\x21\x81\xb0\x5a\x06\x51\xdc\x9b\xf6\x4f\x56\xc1\xd8\ \x40\x12\xac\xe6\xf6\x76\xd1\xd6\xbc\x0b\x23\x3f\x83\x50\x98\xb7\ \x28\x6c\x28\x56\x56\xa5\xc2\x54\x0d\xb7\xb3\xb7\xdb\x91\x9f\x60\ \xce\xb0\x6e\x8c\x95\x9c\x02\xfa\x54\xe1\xe3\x7b\x02\xec\xbf\x65\ \x01\x86\x09\xc0\x94\x8a\x42\x06\xa5\xc2\x5c\xb0\x62\x5b\x4a\x84\ \xed\x58\x94\x08\x1b\xd2\xc1\x91\xe3\x74\x85\x83\x04\xd8\xd7\xb1\ \x4d\x1c\xf1\x6f\x44\x74\x3a\xba\xe4\x4d\xd8\x53\xe9\xc7\x94\x11\ \x74\x08\xc7\x62\x39\xf9\x6c\x4d\xc5\xbf\xcf\x64\xb2\xc0\xc4\x68\ \x06\xac\xfa\xe6\x26\x91\x4e\x65\x97\x14\xd7\x7e\xcf\xe1\x72\x4b\ \x00\x5f\x79\xd0\x91\xf1\x0c\x01\xc2\x2f\xd5\xf2\xd7\xb4\x5c\x40\ \xd5\xd5\x75\xa2\xa5\xe1\x30\x26\x75\xbb\x02\x45\x52\xd4\xd9\xac\ \x04\x64\xee\x2c\xac\xec\x4d\x36\x01\xed\x2d\x27\x11\x4e\x74\x17\ \xfa\x6b\xf6\x5b\x55\x0d\x0c\xbe\x88\xbb\x03\xb8\xd0\x1c\xc0\x60\ \xf2\x59\x7e\x90\x1e\x59\x89\x36\xab\x63\xe8\x95\x4b\x80\xb6\xd3\ \x01\xf4\xa7\x7a\xa4\xb0\x3d\x04\x95\x00\x23\xaf\x5d\x02\xb4\x36\ \x05\x30\xa0\xf5\xc0\xd6\x37\x87\xad\xc5\x75\x44\xde\xb8\x05\xa0\ \x0a\xc2\x89\x1e\xc7\x2d\xd2\x66\x74\x8c\x06\x5d\x02\x5c\x6c\x6e\ \x44\x88\x66\x20\x2b\xc8\xbf\xb9\x09\x02\x44\x7a\x67\xdd\x01\x98\ \x36\x9d\x4d\x16\x5a\x24\x6d\x8e\x4b\x5b\x0e\xf0\x17\xa5\x35\xdf\ \xe4\xdf\x81\x57\x9f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x05\x22\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\xe9\x49\x44\x41\x54\x78\xda\x9d\x56\x6b\x6c\x53\x65\ \x18\x7e\xbe\xf6\xb4\x5d\xef\xa7\xed\x56\xba\x75\x1d\xbb\x50\x2e\ \x9d\x4a\x40\xa3\x3f\x1c\x24\x24\xc4\x7f\xc4\x04\x95\x0d\x13\x60\ \x9b\x89\x9a\x2c\x42\x14\xff\x29\xa8\xc4\x7f\x5e\xc0\x31\x88\x44\ \x13\xfc\xe7\x06\xf8\xd7\x7f\x26\x46\x47\xcc\x12\x20\x92\xb1\x0d\ \x84\xb1\x31\x18\x5b\xef\xf7\x7b\xd7\xcf\xf7\xb4\xdd\x59\x0f\x4e\ \x49\xfc\x92\xf6\xf4\xbc\x97\xe7\x79\x9f\xf7\xfb\xde\x73\xca\x40\ \x2b\x39\x30\x38\x4a\x97\x5e\x08\x2a\xfc\xdf\xc5\xe5\x2f\x5a\xa5\ \x15\xe9\x7b\xcc\xf2\xc3\xc5\x3e\x16\x1f\x18\x18\x55\xbb\xc5\x5e\ \x95\xcb\xfc\x14\x04\xfe\x14\x54\x65\xdc\x8a\x3f\x85\xd2\x62\x7c\ \x4c\x22\xe0\x9a\x9d\xad\xca\x98\x54\x01\xdc\x9f\x84\xaa\xd3\xbe\ \x6e\x32\x97\x40\xeb\x70\x79\xba\x00\xe4\x4b\x60\x36\xbd\x22\xbc\ \xf0\xe7\x12\x58\xec\xad\x41\xae\xdd\xde\x2c\x27\x48\xc1\x2b\x93\ \xcb\x24\xb3\x0c\xe6\x34\x41\xe5\x75\xfc\x87\x02\xa2\xca\x14\x51\ \x9e\x0a\x54\x6e\x55\xbe\x26\x30\x83\x46\x56\x97\x9f\x0e\x80\x45\ \x25\x82\x67\x36\xc8\xe0\xa5\x5b\x01\x68\x77\xbd\x0c\xc1\xe7\x43\ \xe6\xfc\x05\xa8\x9a\x8c\x50\x6f\xb2\x2b\x09\x56\x8b\xc9\x50\xfc\ \x74\x08\x6a\x8f\x07\xea\xf6\x36\x14\x7e\x1f\x87\xb0\xad\x11\x4c\ \x5f\x25\xc9\xcd\x04\xc1\x22\x83\x03\x5c\xd7\xed\x44\x39\x92\x45\ \x69\x36\x02\x6d\x4f\x0f\x0c\x43\xef\x54\x25\xfe\xfa\x1b\xd2\xe7\ \x2e\x40\xd8\x28\x42\xed\x32\x2a\xdb\x42\x95\x17\x67\xaa\xe0\xa6\ \x4f\x3f\x06\x33\x1a\x90\xa1\x58\x89\x44\xb3\xd5\x41\x24\x02\x32\ \xb7\xc3\x60\xa1\x81\x7e\xae\x27\x69\xe5\x74\x11\xf9\x5a\x82\xb5\ \x96\x20\xad\x3c\x91\xa4\x28\x51\xd3\x21\x42\x70\x54\x6d\x65\x02\ \xcf\xdf\x09\x43\xb7\xab\x07\xa6\x5a\x31\xf5\xb1\x82\xd3\x00\x8d\ \xdb\x8c\xf4\xdd\x08\x58\xa0\xbf\x9f\x1b\x49\x96\x54\x5d\x99\x24\ \x67\x89\x55\x22\xb1\x7d\x76\x42\x26\xc9\x51\x62\x62\xe4\x5b\xe8\ \xda\x49\x09\x55\x96\xfd\x2b\x02\xdd\xee\x1e\x58\x86\xde\x95\xc1\ \x57\x63\x34\x76\x3d\x74\x6d\x96\x8a\x2d\x79\x2f\x0a\xe6\xef\x3f\ \xc2\x4d\x9b\x1d\x72\x73\x57\x32\x25\xa4\x09\xa0\x81\x00\xc4\x3a\ \x80\x2c\x01\xc4\x08\x40\x5a\x86\x3d\xbb\x61\x5d\xc7\xa7\xb5\x35\ \x40\xef\x31\xcb\xdb\x95\xbc\x1f\x03\x5b\x3a\x72\x84\x5b\xbc\xca\ \x4d\x5c\xa1\x16\x24\x66\xa3\xd0\xef\xde\x05\x7b\x1d\x50\xec\xfb\ \x8b\xd4\xca\x0c\xec\xc7\x86\x64\x5b\x9a\xc0\xa3\x04\x6e\x74\x9b\ \xa0\x15\x1b\x14\x73\x11\x9f\x8b\x83\x2d\x1e\x3e\xcc\xc5\x2e\x51\ \x71\x12\x79\x32\x86\x62\x30\x86\xd0\xf5\x05\x18\xf7\xee\x45\xcb\ \x99\x2f\xd6\x9d\xbd\xd8\xd8\x15\xf8\x3f\xf9\x1c\xf6\x6e\x17\x55\ \x4e\x47\xd4\x6c\x55\x4c\x61\x74\x3e\x09\xf6\xf0\xd0\x21\x6e\xa3\ \x0d\x44\x31\x8f\x72\x38\x80\x72\x34\x42\x12\x4a\xd5\x53\x44\x1b\ \xef\x9f\x0a\xc1\xfa\xda\x7e\x78\xce\x7c\xa9\x00\x7f\x7c\xf2\x14\ \x42\xdf\x5d\x84\xa3\xd3\x0a\x53\xa3\xbe\x5a\xb9\x4a\x0d\x26\x3a\ \xa0\x6a\x6c\x02\x34\x5a\x44\x16\x88\x60\xfe\xc0\x01\x6e\x37\x66\ \x50\x8e\x85\xd7\x46\xbf\xa6\x24\x11\xcc\x20\x38\x1b\x87\xf3\xed\ \x41\xb4\x9e\x3a\xa9\x20\x78\x70\xec\x43\x84\x49\x81\xdb\x67\x87\ \xce\x20\x28\x87\x51\xe2\xb2\x39\x10\x2e\x98\xc1\xa6\xbc\x5e\xee\ \xde\x66\xaf\xf9\xd6\xc0\xe3\xa1\x2c\xfc\xf7\xe3\xe8\x1c\xfe\x0a\ \x8d\xbd\xaf\xaf\xdb\xa2\xfb\xc7\x8e\x23\x72\xf9\x27\x78\xbc\x22\ \x74\x0d\xff\x24\x79\x44\xf9\x6c\xb2\x6b\x13\x6f\xdd\x22\x2a\x26\ \x34\xec\x4f\x63\xf9\x51\x0a\x5e\x02\x77\xf6\xbe\x21\x03\xde\x3d\ \xfa\x41\xe5\xea\x1d\xfe\x5a\xb6\xdd\x3b\x7a\x1c\xa1\xcb\x57\xd0\ \x4e\xad\x6a\xd0\x29\x49\x1e\xcc\x27\xc0\x6e\x76\x76\xf2\xb6\x4d\ \x36\xd9\xb8\xb0\x90\x40\x94\xa6\x7a\xeb\xf0\x69\x6c\xe8\x5b\x03\ \xbf\x4d\xe0\xa1\x4b\x57\xb0\x52\x2e\x63\x0b\xf9\x5c\x75\xbe\x3b\ \xe4\x0b\x92\xaf\x8b\xce\x7f\x85\xa4\xd6\x8d\xb9\x87\xb4\x07\x37\ \xda\x3b\x78\x47\x47\x55\xc1\xdc\xa3\x38\xc2\xd1\x1c\xba\xcf\x9e\ \x46\x73\xdf\x01\x19\x60\xea\xbd\xf7\x09\xe0\x32\x36\xb7\x89\xc8\ \xe4\x4a\x98\x5f\x4e\xc2\x47\x31\x2d\x75\x31\x13\x7b\x5e\x41\x66\ \x7a\x1a\x9b\xdd\x16\x18\xb4\x55\x92\xd9\x25\x52\x70\x6d\x63\x3b\ \xef\x6a\xb3\x62\x8e\x92\x96\xc3\x19\x3c\x37\xf2\x0d\xdc\x07\xab\ \x89\xc5\x78\x02\x33\x1f\x9d\xc0\x32\x81\x77\xbb\x45\x18\x6a\x2d\ \x08\xc6\x73\x98\x0d\x24\xf1\xec\xc8\x19\xb4\x1e\xec\xad\xd8\x4a\ \x14\x3b\xf1\xea\x7e\xa4\xa7\xa6\xe1\x73\x59\x61\xd4\x08\xb8\x4b\ \x31\x6c\xc2\xb3\x91\x7b\x5b\x2c\x48\xd3\xf3\xfc\xe6\xc3\x28\x9a\ \xa9\xe7\x3b\xcf\x0d\x13\x78\x1c\x57\xf7\x51\x02\x55\xb5\xbd\x59\ \x84\x71\x55\x7a\x6d\x9f\xfc\xc9\x2c\xee\x84\x93\xd8\x31\x32\x8c\ \xb6\x37\xab\x24\x37\x86\x8e\x62\x69\x94\x8a\x69\x34\xc3\xaa\xd5\ \xe0\x36\xf9\xd9\x1f\xee\x36\xbe\xc5\x65\xa9\x24\xa6\xf2\x45\x5c\ \x7f\x1c\x85\x9b\xa4\xc7\x26\x6f\x55\xaa\x79\xde\x25\xc2\x44\xc1\ \x95\x3d\x5a\x1d\xd2\xda\x75\x26\x9c\xc0\xe3\x4c\x0e\x2f\x9c\x3f\ \x8b\xe0\xf8\x55\x2c\xfe\x78\x09\x3b\x1b\xad\x30\x0b\xea\x6a\x6b\ \xa3\x29\xb0\xf1\x66\x0f\xf7\x35\x99\xe5\xa4\x24\x91\x4c\xf8\xa3\ \x95\xdf\x2f\x39\x6d\x30\x6b\x84\xba\xe9\x5f\x23\xe1\x35\x35\xb7\ \x62\x09\x2c\x66\xf3\xf4\x3a\x67\x78\xd1\x26\x81\x0b\x72\xdc\x64\ \x82\x08\x7e\x71\xb6\xf0\x1d\x0e\xab\x22\x39\x94\x2b\x40\xc3\x18\ \x2c\xf5\xe0\x4f\x92\xd4\xd9\xa7\x52\x29\x78\x74\x3a\x58\x84\xfa\ \x36\x72\x5c\x4b\x55\x09\x46\x5d\x3a\x6d\xaf\x8b\x02\xd6\x4b\x7e\ \x72\x78\x9e\x9c\x76\x25\x79\xdd\xa3\xa4\x58\x90\x3e\x63\x4c\xba\ \xf9\xd9\xbe\xa1\xf2\xb7\x45\xa0\xaa\x15\x6f\x2d\xf0\x7f\x05\x59\ \x07\x53\xb6\x97\xaa\x05\x8d\xed\x8b\x05\xfa\xfe\x06\x70\x77\x62\ \x0a\x02\xba\x37\x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x06\x2c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x05\xf3\x49\x44\x41\x54\x78\xda\x8d\x56\x6b\x6c\x14\x55\ \x14\xfe\xee\xdc\x99\x9d\x99\xed\x63\xb7\x2d\x6d\x2d\x10\xb4\x56\ \xc1\x3e\x10\x23\xa8\x04\x2c\x20\x51\x13\x50\x13\x05\x1a\x1e\x4a\ \x79\x44\x05\x0b\x8a\x44\x30\x10\xf9\x81\xd1\x04\xa2\x12\x84\xd0\ \xb5\x88\x68\x45\xd0\x6a\x2b\x26\x62\x20\x02\x51\x94\xa2\x51\x54\ \x52\xdb\xa2\x68\xd3\xaa\x20\xd0\x07\x6d\x77\xed\xb2\x3b\xbb\x33\ \x73\x3d\x33\xdb\x07\x0d\x56\xbd\xd9\x99\xd9\x9d\x7b\xee\x77\xce\ \xf9\xce\x77\xcf\x5d\x86\x7f\x19\x7c\x85\x52\x6c\x99\xd6\x3c\x84\ \xec\x19\x88\x20\x17\xc3\x7a\x27\x3a\xe8\xd2\xd1\x82\x54\xe9\x10\ \x97\x79\x95\x55\x1e\x3f\x3e\x14\x06\xfb\xa7\x97\xf2\x4a\xa5\xc8\ \xec\x8e\xd7\xf9\xb2\x93\xa4\x7b\x6e\x1d\x8d\x3b\xf3\x0b\x70\x43\ \xc6\x70\xf8\xf5\x34\x77\xbe\x3b\xd2\x85\xa6\x4b\xe7\x51\xfb\xd3\ \x69\x1c\xf9\xe1\x17\x04\x5b\xc3\xb6\xec\x57\xc6\x99\x3b\xe2\x0d\ \xff\xed\xa0\xcc\x53\x8e\xcb\xb1\xb2\x35\x8f\xdc\x8b\x07\x0a\x27\ \x23\x43\xcb\x02\x13\x1c\xa6\x6d\xc1\x86\x70\x4d\x24\x5a\x26\x4b\ \x1c\x82\x59\xb8\x14\x6d\xc3\x81\xc6\x13\x78\x65\xef\x61\xc0\xeb\ \x09\x20\x10\x5b\x31\xb4\x83\xc7\x50\x9d\x9d\xe1\x9b\xf3\xea\x63\ \xa5\x28\x4a\x2b\x24\x50\x06\x5b\x08\x28\xcc\x43\x80\x32\x01\x4b\ \xe8\x11\x31\x24\x33\x05\x61\x7a\xc2\x36\xc1\x19\x03\x97\x6c\x34\ \x74\x35\xe2\xe9\x5d\x7b\xd0\x7a\x29\x58\x83\x5d\x28\xb9\xca\x01\ \x7b\x4a\x29\xcf\xf6\x25\x95\xed\x59\xb9\x0a\xd7\x78\x46\xc1\xb0\ \x28\x5e\x61\x22\x2a\xce\xa3\xd3\xe8\xee\x37\xec\x7b\x3a\xb9\xa4\ \xa9\x7e\xe8\x6c\x24\x18\x39\x57\x25\x86\x0b\xb1\xdf\x51\xba\x63\ \x1b\x5a\x83\xe1\x80\xd8\x1e\x5f\xd1\x6f\xaf\xae\x56\x8b\x8c\xb0\ \x51\xbf\x7f\xc3\x7a\xe4\xa5\xe4\x23\x6a\xf6\xa0\x35\xfa\x33\x5a\ \xad\x26\x68\x48\x23\x23\x76\x35\x99\xc2\xf9\x08\xc4\x58\x10\xa3\ \xd4\x31\xc8\xf4\x14\x40\xe1\x3a\xce\x04\xeb\x31\xeb\xc5\x4d\x50\ \x93\xd4\xb1\xc6\x56\xa3\x21\xb1\x6c\x19\xac\x75\x0f\xcf\x92\x4a\ \xc7\xcd\xc5\xf9\x48\x13\x7e\x8f\x9e\x82\x02\xa2\x85\xa8\x10\xbd\ \xbc\xff\xd3\x90\x88\x1e\x9f\xa6\x63\xe6\xdb\x15\x58\x38\x21\x0f\ \xcd\xed\x2a\x2a\x67\xbc\x80\xdd\xa7\xf6\x61\xf3\xbe\xfd\x36\x76\ \x12\x83\xda\x1a\xb5\x58\x97\xd9\x97\xc7\xd6\xbd\x8e\xdf\xc2\x3f\ \xa2\x9d\xd2\x94\x25\x9d\x02\x96\xdc\x30\xe5\x21\x1c\x38\xdc\xab\ \xb2\x8c\x87\xde\xd9\x0d\xf1\x2c\xd9\x44\x1c\x2a\x80\xb9\x47\x27\ \xe2\xb9\x3b\x56\x60\xda\xe6\xc7\x11\x31\xc5\x14\x26\xad\x56\xca\ \x17\x4d\x9f\x5a\xb6\x64\xd2\x0c\xfc\xda\x73\x12\x1a\xf7\x82\x59\ \xa6\x0b\x3b\xc0\xf7\x95\xbf\x12\x91\xcb\x5c\x42\xc9\xde\xb7\x5c\ \xf0\x48\x38\x02\x93\xea\x95\x92\x9c\x82\x8c\x0a\x1d\x07\xe7\xbf\ \x84\x9d\xc7\x3f\xc6\xdb\x9f\x7d\x11\x60\x78\x12\xcd\x6f\xae\x5a\ \x9d\x2b\x94\x76\x97\x96\x48\x2c\x84\x34\x3d\x05\xb6\x2d\x5c\x60\ \xc3\x14\xe0\xf0\x82\xcb\x91\x7e\x89\xa6\x6a\x2a\x66\xee\xde\x09\ \xb1\x8e\x6a\x60\xc4\x48\x0c\x36\x54\x8f\x86\x23\x17\xf6\xe3\xfe\ \x9a\xd9\xd8\x35\x67\x21\xac\xe8\x30\x2c\xdd\xb6\xb5\x85\x61\x39\ \xc4\xbb\x1b\x97\x23\x1a\x31\x48\xc6\x1e\x78\xb9\x85\xf7\x1a\x4e\ \x60\xe2\x88\x31\xd0\x25\xd5\x95\x29\x7a\x33\xa0\xc0\xa1\x79\x24\ \x2c\xfa\xa0\xca\x8d\xdc\x8c\x53\xa6\xf4\x4e\x21\xaa\x0e\x9f\xab\ \x21\xf0\x12\x54\x96\x2c\x83\x11\x8f\x41\xd3\x55\x2c\xd8\x58\x01\ \xa6\xaf\xe7\xa2\x72\xd5\x13\x08\x5d\x8e\x40\xe5\x1c\xa5\xd5\xaf\ \xe3\x8f\xd9\x17\x31\x6a\xff\x35\x78\x60\x4a\x06\x74\x55\xa1\x6c\ \xe0\x82\xcb\x1e\x81\xf7\x0e\xb4\x42\xac\xa5\xdc\x2c\xe1\xa4\x43\ \xef\x19\x0e\x9f\xad\xc1\x83\x1f\x95\x60\xea\xcd\x05\x28\xbd\x71\ \x3a\xc2\xb1\x08\x52\xbd\x3a\x16\x6f\x7b\x0d\x2c\x7d\x93\x57\xec\ \x58\xb2\x14\x46\x54\x60\xd9\x27\x01\x18\xf3\x6d\x84\x8c\x10\x52\ \x7d\xa9\x60\xaf\x31\x2c\xbe\x7f\x24\x2c\x53\x22\x8a\x6c\x54\x1e\ \x38\x07\xb1\xc6\x01\x27\x60\x29\x51\x96\x4f\x09\x7c\x16\x81\xdf\ \x5a\x90\x81\x6b\x73\x74\xe4\xa8\xc3\x50\xa8\x4c\x86\xaa\x31\x3c\ \x51\xf1\x26\x98\xb6\x41\x12\x7b\x9e\x5a\x8b\x13\xed\x47\xb0\xb7\ \xb6\x0e\x1d\xf3\x4c\xfc\x11\x3a\x0b\x5d\xd1\x90\xe9\xcb\x04\xa3\ \x32\x15\xde\x04\x34\x9e\x46\x2f\xb8\x00\xe3\x89\x82\x0f\x80\x0f\ \x43\x5e\x0e\x47\x9c\xe6\x4c\x11\x47\xa6\x3c\x12\x53\xb3\x66\xa2\ \x74\xfb\xcb\x60\x29\xcf\x6b\xcd\x0b\x67\xe7\xe7\xb6\x1a\xe7\xd1\ \xd5\x69\xe3\xd8\xe9\x76\x58\x4b\x04\xda\x22\xed\xf0\x70\x05\xfe\ \x64\x7f\xa2\x04\x1e\xea\x0c\xc4\x95\x03\xee\xd0\x32\x08\x7c\x38\ \xf5\x2a\x02\x77\xca\xc5\x98\x86\x9e\x58\x18\x23\xb4\x51\x78\xe7\ \xc3\x9f\x5a\x58\xf6\x66\x6f\xf9\x98\xf1\x49\x65\xc3\x33\x55\x97\ \xe7\x33\x4d\x7f\xa1\xee\x5c\x10\xe6\xe3\x02\x5d\x97\xbb\x88\x1a\ \x4e\x92\x94\xc1\x79\xef\x53\xe1\x38\x72\xf6\x23\xe2\x7c\x16\xc6\ \x13\x2d\xd7\x65\x7b\xdd\xc8\x5d\x85\x71\xc0\x22\xfa\x24\xa2\xef\ \xcf\x36\x03\x67\xbe\x0f\x07\xd8\xf0\x2d\x29\xc5\x49\xe9\xd2\x97\ \x13\x6e\xf3\x23\x16\xb3\xa1\x28\x0c\x0d\x0d\x41\x34\x5e\x0c\xc2\ \x5e\x29\xa8\xf8\xd4\x87\x08\x5c\x93\x35\x28\x54\xf0\x2f\x2e\x1c\ \xc4\xcc\xea\xfb\x30\x81\xc0\x7d\x59\xc9\x04\x38\xb0\x11\x9d\x6f\ \x5e\x4a\x43\xd5\x38\x4e\x7e\xdb\x85\x70\xa7\x3d\xc5\x25\x33\x67\ \x4b\x92\x35\x6e\x52\xaa\xe4\xd5\x14\x57\xff\x5c\x66\x44\x57\x14\ \x9f\x9f\x6a\x83\xbd\x8a\xb4\x1e\x33\xe1\xd1\x64\x7c\xd3\x76\x14\ \xd3\xaa\xee\xc1\xed\x05\xe9\xf0\x67\xa5\xf4\x83\x3b\x77\x55\xf4\ \x65\x21\x21\x1c\x89\xa1\xee\xab\x90\x7d\xe1\x99\x70\xa2\x5a\xb9\ \x81\x94\x22\xc6\x51\x7f\xf3\xc4\x74\xca\x31\xc1\x25\xa7\xa9\xf6\ \xb6\x30\x6a\x1b\x3b\x60\x3f\x2d\xf0\x5d\xc7\x31\x14\xef\xbb\x0b\ \x77\xdf\x52\x48\x6d\xb4\x27\x21\xd3\x2b\x22\x57\x44\x42\xca\x8c\ \x82\xab\xfb\xba\xd3\x51\xda\xd8\x96\xb2\xbf\x1a\xfa\xf7\xff\xf5\ \x15\xc9\xe5\xa9\xe9\x4a\x59\x5e\xbe\x8f\x36\x90\xed\x3a\x91\xb9\ \x0d\xa3\xdb\x87\xda\xfa\x46\xb7\x33\x4d\x1e\xeb\x80\x87\x68\x31\ \x1b\x04\xee\x0c\xc5\xb9\x3c\x1c\x4d\xa7\xbb\x11\xea\x8c\x07\x9a\ \x97\xf7\x0c\xb4\xeb\xbe\x71\xe3\x1b\x49\xd5\xc9\xe9\xca\x9c\x6b\ \xf3\x7c\x24\x19\x5a\x4c\x74\x49\x92\x80\xc5\x25\x77\xde\x51\x91\ \xb0\x07\x83\x7b\x9c\xc8\x9d\x79\xb2\xfb\xad\x29\x88\x9e\xce\x78\ \xcd\xaf\x8f\x86\xaf\x3e\x70\xfa\xc6\x98\xca\xd4\x72\xaa\x69\xd9\ \x88\xd1\x3e\x68\x2a\x1d\x8b\x42\xb8\x97\xe3\x70\x70\xaf\x4e\xec\ \x62\x46\x07\x4d\x34\x6a\xe1\xcf\x5f\x82\x8e\x82\x02\x67\x16\x87\ \xfe\xe5\xc8\xec\x1d\x63\xdf\xf5\x15\x59\x71\xbb\x4e\xf7\xcb\x52\ \x5a\xba\x0a\x4f\x92\x4a\x74\x31\xf4\xd6\xd1\xe5\xda\xd1\x7d\x2c\ \x6c\x90\x18\x0c\x44\xba\x4d\x9b\x2b\xd2\xb8\xfa\x05\xc1\xff\x71\ \xe8\x5f\xe9\xe8\x7d\x7f\xb1\x04\x31\x8f\x90\x67\x50\xc3\xcc\xe5\ \x5a\xc2\xdc\xa2\xb6\x42\xad\xa2\x85\x3c\x1d\xa2\xad\x57\x55\x3f\ \xb7\x7b\xc8\xbf\x2d\x7f\x03\x43\x92\x8a\xfa\xc0\x7b\xcf\x8c\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x9b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x03\x62\x49\x44\x41\x54\x78\xda\xed\x94\x4b\x48\x14\x71\ \x1c\xc7\xbf\xff\x99\xdd\x71\xd7\x5d\x8b\xa4\x17\x6a\xba\x26\x44\ \xa1\x1d\xb2\x94\x5e\x52\x41\xf4\x84\xc8\x3c\xc4\xf6\x38\x16\xe5\ \x5a\x87\x3a\xf4\xb8\x14\x74\x29\x29\x42\xa5\xdd\x20\xa2\x42\x9a\ \x4d\xb0\x43\xa7\xea\xd0\x25\x4b\x83\x1e\xd0\x03\x2a\x2b\xdd\x72\ \xdd\x56\x2c\x4d\xdb\x99\xd9\xdd\x99\x9d\xe9\x37\xbb\x62\x5a\xbe\ \x20\xeb\xd4\x1f\x66\x0e\xc3\xfc\x3f\x9f\xdf\xeb\xff\x67\xf8\xcb\ \x8b\xfd\x17\xfc\x3b\xc1\x45\xa7\x95\xde\x5b\xb0\x2f\x72\xf3\xef\ \x08\xbc\x76\x11\x89\x84\x1b\x16\xab\x1b\xfb\xa5\x1b\x93\x2b\xb8\ \x60\x17\x67\x4c\x9b\xe9\x3e\xb4\xad\x0a\xc7\x2e\x1d\x07\x2c\x82\ \x9f\x24\x3b\x26\x47\xe0\x4d\xaf\x82\x9e\xa8\xab\xf7\x5c\xc5\xed\ \xde\x3b\x68\x0a\x3e\x40\xf8\xe9\x17\xa8\x8a\x26\xa2\x52\xda\xf9\ \x67\x02\x6f\xba\x1b\x86\x21\x9e\xdd\x7b\x1a\x9f\xf5\x10\xc4\x77\ \x0d\xb0\xf1\x36\x70\x1c\xd0\xf1\x28\x8c\xb8\xac\xbe\x1f\x2e\xf0\ \x39\xf2\xa0\xeb\x01\xfa\x63\x23\xa5\x78\x67\x4c\xb8\xcf\xb1\x0e\ \x51\xe9\xee\xb9\x03\x35\x08\x25\x3e\xe3\xfa\xbb\x1b\xb0\x71\x69\ \x60\x8c\x81\x91\x20\x98\x12\x5c\x61\x43\x36\xb8\xa1\x6a\xa2\x7b\ \xd9\x1a\xf8\x9b\xef\x01\x82\xe0\x22\xc9\xc7\x51\xe0\x79\x88\xc9\ \x01\xcf\xd6\x03\x48\xcf\x72\xa0\xbe\xd5\x3f\x08\xe7\xac\x1c\xba\ \x9e\x77\x23\xd2\x25\x07\xa8\x44\xf9\x6c\x10\x1e\xd7\xc4\xc3\x9b\ \x16\xa3\x30\x57\x41\x77\x4f\x29\x8e\x34\x5c\x06\xd2\xd2\xf2\x49\ \x12\xf8\x05\x9e\x8f\x78\xb4\xad\xaa\xbc\x12\xf3\xe7\x2c\xc0\xa9\ \x57\x67\x60\xa7\xb2\x24\xe1\x16\x82\xbf\x20\x78\x58\x6e\x87\x47\ \x9a\x9b\x6a\xb2\xcf\x59\x41\x91\x37\x9a\xf0\xdc\xe9\x1f\xd0\x1f\ \x67\xc8\xb0\x67\xe1\x5b\x5f\x11\x4e\x36\x8a\x24\x11\x86\x4b\x6a\ \xad\x7d\x1b\x4b\xd6\x4f\x29\x5f\xba\x01\xd5\xaf\x6b\xa1\xd2\x27\ \x8e\x6a\xc2\x78\x86\xde\x0f\xfd\xe8\x6d\xeb\x05\x3c\xf2\x60\x65\ \x18\xbc\x0e\x63\xed\x82\x2c\x54\x94\x48\x88\xc4\x18\x64\x9d\x21\ \xa6\x9b\xbb\x04\x68\x91\x52\x54\xdf\xba\x69\x4a\x72\x49\xd2\x81\ \x3a\xa1\xbd\xac\x68\x99\x6b\xcf\xea\xed\x38\xfd\xba\x06\x31\x18\ \x48\x10\x9c\xe3\x18\xa4\x2e\x39\x59\x1a\x58\x38\x0a\x28\x12\xf8\ \x29\xf0\x39\xb3\xa1\xe9\xc1\x5d\x2b\x9d\x28\x99\x2b\xa0\x2f\x0e\ \x44\x13\x1c\x24\xdd\x6c\x96\x00\xa6\x2c\xc1\xf9\x5b\x8d\x2a\x6d\ \x7c\x5b\x90\x5d\x50\xe4\xdd\x7a\x02\x47\x5b\x8f\x43\x31\x78\xc4\ \x0d\xce\x0c\x1f\xf2\x97\x28\xc2\xcf\xc2\x04\xe7\xa9\x6f\x91\x61\ \x7d\x1b\xe8\x81\xd3\x05\xd5\x68\x77\x97\x39\xb0\xd0\x95\x86\x7e\ \xca\x24\xaa\x73\x94\x0d\x60\x50\xf3\x04\x65\x11\xfc\x0f\x9b\x70\ \x6d\xf7\x29\x78\x3f\x5d\x44\x48\xf9\x8a\xa8\x61\x85\x46\xf0\xb8\ \xac\xa1\xa3\x25\x44\x24\xb6\x93\xe0\xe2\xaf\xf3\x30\x64\x8a\x4c\ \x89\xde\x5e\xbe\x22\x03\x85\x79\xb6\x64\x2f\xa2\x94\x85\xac\xe9\ \x48\xf0\x02\xb6\xe5\x54\xa2\x21\x28\xe2\x93\xdc\x43\xa5\xe1\x11\ \xa3\xe8\x23\x04\x0f\x3e\x4a\xc2\x87\x5d\x0f\x23\x0b\x86\x48\x36\ \x2f\xcf\xc0\xbc\xec\x74\x7c\xd7\x90\xec\x87\x92\x60\xf8\xae\xeb\ \x14\x35\x9f\x7a\xe8\x57\x53\xd0\x7a\xbf\x13\xba\xa6\xd7\x11\xfc\ \xe0\x68\xc7\xe5\xf7\x93\x3c\x20\x59\xb7\x74\x2a\x5c\x39\x76\xc8\ \x2a\x83\x42\x12\xd9\x48\x95\x4c\x36\x58\x52\xf8\xa6\x25\x0c\x4d\ \xd1\xfc\x34\xeb\x3b\xc6\x3a\x8f\x23\x5f\x15\x03\x92\x55\xa5\xa6\ \xc4\x81\x3e\xd5\x48\x36\xde\x14\xc4\x2c\x3c\x5e\x34\x87\xa1\xf4\ \xab\x77\x09\xbe\x01\xe3\xac\xd1\xef\x22\x9f\xb3\x98\xa6\xeb\xe9\ \xf2\x25\x99\x98\x95\x65\x83\x44\x99\xc4\x38\x1e\x2f\x9f\x7f\x45\ \x4f\x88\x4e\xa9\x47\xca\x1f\x0f\x3e\xb6\x20\x25\x71\x93\x44\x2c\ \x2e\xce\xc4\xec\x5c\x07\x1e\x3f\xe9\x41\x77\xa7\xdc\x86\x2a\xa9\ \x60\x22\xf0\xf1\x05\x43\x24\xd9\xae\x0c\x74\x7e\x8c\x00\x3c\x2b\ \xa0\x71\x6c\x9b\x3c\x41\x4a\x52\x41\xd7\x72\x23\x8d\x63\x0e\xc1\ \x3b\x27\x0a\x37\xd7\x0f\xc2\xf5\x84\xe5\x60\x82\x52\x9b\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x03\xf8\x49\x44\x41\x54\x78\xda\x95\x95\xeb\x6f\x14\x55\ \x18\xc6\x9f\x5d\x76\xb7\x14\xba\x17\x68\xb7\x96\x5e\xc1\x44\xa5\ \xda\xaa\xf1\x5b\x6d\x15\x83\x8d\x31\x48\x42\xa2\x18\xf8\x40\xd4\ \xaf\x26\xc6\x3f\xc1\x4f\x7e\xd0\x14\xeb\x35\x7e\x50\xa3\x95\x82\ \x20\x8b\xa2\x31\x6a\xd4\xc4\xc4\x20\x35\x92\x50\x5a\xaf\x40\x35\ \xd6\xd6\xdd\xd9\x96\x6d\xbb\x3b\xf7\xcb\x99\x39\xbe\x67\x86\x35\ \xab\x76\xdb\xce\x24\x27\x33\x9b\xec\x79\x7e\xef\xf3\xbc\xef\x99\ \x89\xa0\xce\xd5\x7b\x7c\x89\x1b\x36\xc7\xf6\x2d\xd0\xe4\x8a\x03\ \xc7\x71\xc1\x0d\x0f\xdc\x61\x70\x2d\x06\x46\x77\xf1\xec\x59\x6c\ \xab\xab\x58\x28\xbf\x33\x10\x59\x4d\x27\x52\x0f\xd0\xf9\xc6\x22\ \x7f\x6e\x7f\x06\xb7\xa5\xe3\xf8\x78\xd9\x85\xc1\x23\xe0\x8c\xc3\ \x70\x68\x31\x8f\xee\x1e\x18\x03\xf2\x79\x13\x53\xa7\x7f\x86\x7a\ \x62\x28\x1c\xa0\xfd\xf5\x22\x7f\xe5\x60\x33\xee\x48\xc5\xf0\xa5\ \x0c\x50\xf1\xb0\x5d\x01\x00\x4c\x02\x69\xb4\x4c\xd7\xc3\xac\xe4\ \xe0\xfb\xb7\x2e\x42\x3b\x75\x6f\x78\xc0\xe8\xc3\xcd\xe8\x23\xc0\ \xe7\x65\x0e\xdd\x25\x61\x02\x58\x54\xb9\x4e\x2e\x74\x83\xc3\xa6\ \xdd\x73\x92\x85\xe9\xf1\x49\x02\xdc\x17\x12\xf0\x9a\xc4\x47\x1f\ \x69\x41\x7f\x3a\x86\x8f\x56\x3c\x1f\xc0\x48\x5c\xb5\x41\x00\xfa\ \x6d\x91\x03\xda\x5d\xa0\x88\x7e\x39\x3e\x0d\x2d\xb7\x27\x1c\x60\ \xc7\xab\x12\x7f\xe1\xd1\x66\xf4\x27\xe3\xc8\x2d\x51\xe5\x4c\x2c\ \x0f\x9a\x15\xb8\x50\x44\x1f\x58\x04\x52\xde\xc2\xcc\xe9\x49\xe8\ \xb9\xbd\xe1\x00\x6d\x2f\x15\xf8\xe8\x21\x8a\x28\x99\xc0\x99\x52\ \x20\x68\x53\xfe\x9a\xed\xf9\x0e\x54\x5b\xf4\x00\x28\x92\x83\xd9\ \xdc\x25\xe8\x1f\xdc\x1f\xd2\xc1\x8b\x05\x3e\x42\x80\x5b\x09\x70\ \xaa\x14\x88\xda\x54\xbd\x72\x1d\xa0\xd3\x04\x19\xe4\x6a\xf1\x4f\ \x03\xf3\x9f\x4c\xc1\x38\x33\x1c\xd2\xc1\xcb\x79\x3e\x72\xb0\x05\ \xbb\x09\x70\x72\xd1\xf1\xb3\x37\x6d\x51\x39\x45\x43\xcf\xe2\xae\ \xd3\x7d\xa5\x60\xa0\xf8\xe9\x34\x39\x08\x0b\x38\xfa\x17\x7f\xfe\ \x70\x16\x37\x13\xe0\xc4\x02\x83\xaa\x7b\xfe\x19\xd0\x41\x23\xaa\ \x8b\x26\x53\x3f\x68\x92\x96\x8b\x26\x96\xbe\x98\x82\xf9\xe1\x03\ \xe1\x00\x2d\x23\x73\xfc\xe8\xe1\x56\xf4\xa6\x1a\x30\x96\x67\x28\ \xd3\x18\x99\x1e\x01\x28\x7b\x21\xae\x9a\xd4\x17\x72\x20\x4b\x3a\ \x94\xaf\x7e\x80\x71\xb6\x0e\xe0\xa6\x67\x7e\xe4\x0d\xfd\x1d\x48\ \x6c\x8d\xc3\xd6\x1c\x24\x1b\x63\x50\x0c\x06\x67\x41\xc7\x53\x0f\ \x65\xd1\xd3\x14\xc3\x59\x89\x41\x21\x41\x9b\x72\x57\x2c\x97\x9e\ \x09\x42\x2e\x34\xea\x85\xbc\x64\xc2\x98\xf8\x0d\x2c\x12\x01\x33\ \x4c\x20\x16\xff\x37\xa0\xed\xc9\x0b\x3c\x99\x6d\xc4\xde\x03\x37\ \x62\xb8\x67\x33\x06\x32\x51\xbc\x57\xa2\xe6\x51\xa5\x0e\x55\x2a\ \x8b\x79\xf7\x9b\x4a\x8b\x84\x45\x2c\x2a\xb9\xd1\x08\xa8\x5e\x77\ \xa2\xd1\x29\x87\x61\x00\xd1\x4d\x18\xb8\x2b\x8d\xef\x26\x4a\x68\ \x9b\x97\x50\x2c\xd9\x41\x44\xb5\x90\xfd\xdd\x71\xec\x24\x37\xe3\ \x92\x8b\x92\x78\xb9\xb9\x22\x16\x02\x55\xa3\x11\x00\x53\x00\x5c\ \x1f\xa0\xd3\x7f\x6c\xdd\xf2\xab\xed\xbd\x3d\x8d\x5f\x2f\xad\x20\ \xf3\xfb\x02\xca\x32\xb9\x79\x7f\x4f\xe4\x9f\xdc\x3a\x9f\xbe\xc8\ \x1b\x33\x09\x1f\xb2\xaf\x63\x13\xd2\x8d\x09\xbc\xf9\x87\xed\xcf\ \xbe\xc3\x3d\x54\x48\xd8\xf4\x01\x9e\x5f\xbd\x88\x4c\x38\x31\xc4\ \xcb\x89\xfe\xd4\x75\x4b\x0a\xf3\x57\x64\xa4\x67\x16\x50\x51\x03\ \xf1\xff\x35\x39\xf5\xf8\x79\x7e\x43\x4f\xca\x87\x1c\xda\xd5\x80\ \x6f\x8a\x36\x26\x95\x08\x09\x07\xa7\xb7\x5a\x7d\xe0\x80\xfb\xbd\ \xf2\x34\x13\xed\xbb\xb7\xa1\x70\x99\x2a\x27\xf1\x72\x8d\xf8\xaa\ \x53\x54\x85\x64\xee\xd9\x85\x67\xef\x4c\x60\xe2\x1a\xc3\x67\x79\ \x0f\xae\x13\xf4\xa4\x62\x06\xf9\x8b\x65\x56\x0c\x24\xbb\x93\x50\ \xe6\xe4\x55\xc5\xeb\x8e\x69\xea\x09\x82\x74\x07\x90\x7d\x1d\x51\ \x7c\xbd\xec\xa1\x50\xa0\x0f\x4c\x34\x78\x8b\xfa\x2e\x4a\x3a\x1a\ \xda\xb7\xc0\x2a\xe8\x68\xbd\x32\x8b\x45\xea\xf1\x7f\xc5\xd7\x3c\ \x07\x55\x88\xd7\xd7\x85\x23\x7d\x09\x1f\xf2\xd3\x8c\x05\x4e\xfd\ \x28\xcb\x1c\xd1\x74\x14\x5e\x51\xf3\xc5\xad\x68\x02\x95\xb7\x43\ \x7e\xd1\x6a\xe3\xaa\x85\x9c\x9b\x58\x06\x9a\x36\x83\xba\xee\x8b\ \x9b\x88\x43\x1e\xbb\xbb\xae\xce\x9a\x80\x5a\xc8\xf6\xae\x14\x1e\ \x1c\xcc\x22\x57\xf4\xb0\x8d\x4e\xdc\xd5\x93\x53\xb0\x84\xf8\xbb\ \x83\x6b\x6a\xac\x0b\xa8\x85\xb4\x76\xa6\x30\x3c\x94\xc5\xb1\xb1\ \xab\xb8\x46\xf1\xa8\xc7\x06\xd7\xdd\xbf\x21\x80\xb8\x9a\x1e\xfb\ \x96\xef\xd8\x99\xf6\x21\xd3\xe7\xe6\xa1\x8e\x0f\x6d\x68\xef\x86\ \x01\x55\x27\x62\x87\x3c\xb6\x7e\xe5\xd5\xeb\x6f\x13\x96\xa7\x65\ \x0a\x94\x8d\x23\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x04\xe4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\xab\x49\x44\x41\x54\x78\xda\x9d\x96\x71\x4c\x94\x75\ \x18\xc7\xbf\xbf\xf7\xf7\x1e\x70\x7a\x20\x70\x70\xc0\xc1\x29\x78\ \xdc\x81\x0a\x8d\x0c\x21\x56\x64\xae\xcc\x55\x6c\x8c\x74\x6b\x93\ \x42\x36\x75\xa3\xe5\x1f\xfd\x97\x0a\x12\xd0\x5a\xa1\xce\x9a\x2b\ \xc7\xda\x5a\x5b\x6b\x4e\xe7\x66\x2b\x56\x73\x2d\x66\x9a\x53\xb2\ \x69\x02\x39\x13\xe4\x2c\x15\x84\x3b\x36\x20\x4e\xe1\xbd\xbb\xf7\ \xfd\xf5\xbc\xef\xdd\x05\x47\xc1\x92\xe7\x1d\x7b\x8f\xdb\xef\xf7\ \x7c\x7e\xdf\xe7\x79\x7e\xcf\x73\x0c\x64\x1d\x7d\xef\x09\x2e\x85\ \xc0\x19\x16\x36\xf1\x3f\xbe\x8e\xfc\xa3\xd2\x5b\x55\x65\xbc\x51\ \xd2\xc8\xd8\x87\x57\x0f\x08\x57\x8a\x8c\xa4\x04\x01\x4d\x2c\xec\ \x9f\x31\x0d\x21\x7d\x01\x13\x10\x82\x41\xa2\x47\x3f\x0f\xc3\xec\ \xa9\xd4\xc8\x5b\x62\x0c\x93\xd3\xc0\xdd\x49\x0e\xd6\xd1\xd3\x2a\ \xd6\xda\x04\x54\x0d\xd0\x16\x39\xad\x4a\x80\x7e\x5f\x00\x19\x96\ \x10\x12\x64\x90\xda\x78\x70\x49\x26\xb0\x14\xb3\x27\xba\x55\x26\ \xee\x4d\x5f\x08\xec\xd3\x6b\x07\x84\xd3\xc6\xa1\x69\xb1\xf1\x11\ \x31\x1f\x34\x92\x1d\x42\xef\xf0\x14\x46\x27\xa6\x90\x97\x61\x42\ \x76\x92\x05\x71\x3c\x81\x40\xa6\x59\xc8\x5c\xa3\xaf\x3c\x5e\x52\ \x78\xec\xd7\x56\x51\x60\x03\xc9\xff\xf7\xe9\x85\xf1\xd0\x5b\x90\ \x42\xa1\xa0\xdb\xe3\x43\x45\xe6\x4b\x38\xd1\xf3\x05\xd6\xbb\xd3\ \x91\x9b\x9c\x0c\x59\x4a\x80\xa4\x2b\x89\x86\x2a\xb2\x5f\x22\xc0\ \xa0\x57\x05\xfb\xe4\x4a\xb3\x70\x65\xe8\x0a\xc2\xce\x34\x23\xae\ \xb4\x4e\x0b\x03\x34\xfa\xa0\x3f\xaa\xa6\xe0\x42\xff\x7d\xb4\x3c\ \xd3\x81\x11\xff\x30\xda\xba\xf6\xa2\xa2\xc0\x0e\x7b\xb2\x85\x20\ \xf1\x86\x0a\x1d\xa2\x45\x8e\x2f\x49\x0c\x83\x23\x0a\xd8\xd1\x5f\ \x9a\x45\x7e\xa6\x04\x41\x49\x20\x77\xe1\xd4\xd1\x62\x61\x38\x55\ \x49\x59\xc8\x08\x8f\x86\x00\x2e\xde\xf0\xa2\x69\xe3\xc7\x48\x4b\ \x4c\xc7\xad\xd1\x01\xb4\x9e\x6d\x42\x99\xdb\x06\x7b\xca\x0a\x4a\ \xac\x4c\x7f\xfc\x1f\x25\x8c\x12\xed\xd1\x01\x1f\x5d\x6e\x16\x05\ \x04\xe8\xbb\x3f\x83\xb1\xbf\xfc\xa4\x44\xa5\xb8\x72\x0a\x0b\xa0\ \x84\x02\x50\x14\x05\x4a\x80\x20\x04\x7a\x30\x3d\x89\xa3\xd5\x9f\ \xc1\x6e\xb5\x1b\x4e\x3c\x04\x39\x78\xfe\x20\x0a\x56\x9a\x91\x93\ \x6e\x01\x47\x1c\x79\xe6\x86\x73\x5d\x81\x67\x78\x06\xec\xf0\xa5\ \x46\xe1\xce\x96\x71\x65\xd0\x87\xad\xce\xdd\x28\x76\x94\xe0\x51\ \x2c\x18\x0c\xe2\xcd\x53\x0d\x70\x39\x97\xc1\x91\x9e\x08\x2e\x4c\ \x86\x1a\xce\x25\x0c\xe8\x80\x43\x17\x1b\x45\xbe\x5d\x42\x77\xff\ \x28\xaa\x57\xbf\x86\x0a\x67\xe5\x23\x01\x74\x53\x94\x20\x1a\x4e\ \xee\x86\x23\xdb\x8c\xc2\xdc\x54\x48\x04\x31\xc9\x32\x3c\x43\x14\ \xa2\x0f\x7e\xda\x2f\x9c\x0e\x09\x97\x6e\x8c\x60\x9b\xab\x6e\x49\ \x80\xa8\x92\x86\xe3\x0d\xb0\xdb\xcd\x28\x76\xa5\x11\x44\xc6\xe0\ \x3d\x02\xbc\x7f\x7e\xbf\x70\xe7\x70\xfc\xfc\x3b\x85\x68\x4d\x3d\ \xca\x72\xcb\x97\x04\x30\x6e\x0b\xd5\xfa\xdb\xdf\xec\x43\x8a\x55\ \x82\x7b\x95\x05\xb7\xee\x3c\x04\x6b\x3f\xd7\x24\x5c\xb9\x32\x8e\ \x7d\x77\x06\xb5\x8f\xef\x44\x7d\xf9\xae\x25\x03\x74\xdb\xd8\xbe\ \x09\x71\xcb\x38\x76\x55\x6d\xc2\xed\x7b\x41\xb0\x86\xaf\x6a\xc5\ \x74\x46\x2f\xce\x7d\xeb\x45\x6b\x75\x3b\xea\x36\xec\x58\xb2\xf3\ \xd2\xb6\x72\x8c\xfa\x86\x50\xb1\xd5\x8a\x78\x0e\x98\xbd\x45\x60\ \x45\xef\x3a\x45\xf9\xe6\x24\xfc\xd8\xe9\x43\xdb\x2b\xed\xd8\xbe\ \x7e\xfb\xd2\x9c\xbf\x53\x86\xd1\xb1\x11\x3c\xfd\xaa\x55\xef\x87\ \x46\x53\xbc\xd6\xe5\x07\x2b\x6e\x73\x8b\xd2\x2d\x89\xb8\xd0\x39\ \x86\xd7\x2b\x77\x62\xcf\x53\x7b\x10\xa0\xfa\x37\x2c\x7a\xfb\x23\ \xd7\x3f\xa8\x06\xe9\x52\x65\x19\xf7\x24\x6a\x8a\x32\x83\xf2\x96\ \x4a\x3c\x94\xbd\x28\x7b\x31\x0d\x21\x45\x18\xeb\x99\x89\xe1\xba\ \x0e\x28\x6a\x75\x8b\x27\x5e\x58\x8e\xee\xaf\xfd\x18\x1f\xf2\x43\ \x51\x03\x46\xef\x31\x4c\x9d\xd3\x22\x09\xe6\x9f\xf1\xe3\x8f\xcf\ \x07\xe1\x48\x75\x44\x2a\x27\x00\xeb\x36\x1b\xd2\x0b\x93\x50\x5a\ \x65\x85\xa6\xcc\x36\x4c\x4e\x80\xbe\x1f\x08\xb0\xb6\xd9\x2d\x4a\ \x9e\xb7\x84\x7d\x48\x73\x5a\xf6\x3c\xe3\x34\x8d\xba\x8e\xdf\xc1\ \xd5\x96\x1e\x64\xa5\x66\x19\xce\x93\xab\xd2\x90\xe6\x4c\xc4\x63\ \x35\xd4\xf4\x34\x6a\x15\xd4\xe1\xf4\x5b\xac\x9f\x4f\x07\xfc\x66\ \x00\x9a\xdc\xa2\x98\x00\x6a\x30\x76\x08\xcc\x1f\x09\x32\x6d\x38\ \x7b\xe2\x2e\x6e\x1e\x1a\x80\x46\xb3\x21\xa7\x66\x15\xb2\x9f\xb4\ \x60\xf5\x86\x44\xea\xfd\xe1\x8b\xc5\xb8\x14\xa3\xe0\xfa\xf7\x04\ \x58\xb3\x8f\x00\x5b\xc2\x00\xb1\xc8\x44\x03\x0d\x99\xcb\xa7\xbc\ \xa8\xdd\x5c\x8f\x23\x87\x8f\xc0\xf9\xb2\x15\xf6\x75\x66\xca\x87\ \x8c\x38\x72\x2e\x71\x6e\x4c\xb2\x58\xc0\x14\x58\xe1\x5e\x97\x58\ \x47\x49\x9e\xaf\x20\x46\x8d\x9e\x34\x02\xf4\x9c\x1e\xc7\x78\xff\ \x03\xe4\x3c\x67\x86\xad\x90\xe6\x80\xa0\xf6\x66\xd2\xfb\x0e\x35\ \x38\x29\x76\x60\x19\x80\x33\x04\xc8\x7f\x2b\x5f\x94\xd4\xac\x40\ \x70\x46\x5b\x18\x00\xa3\x49\xa2\xb7\x73\x12\x69\x85\x1c\x29\x0e\ \x13\xa8\xe9\xc2\x44\x8e\x75\xe7\xd2\x3c\xe7\x7a\x41\xc8\xf1\xd4\ \xa1\x4f\x4f\x80\x39\xea\xf2\xc4\xca\x67\x97\x23\xd3\x19\x4f\x9b\ \x16\x56\xa1\x17\x40\x20\x20\xc0\x65\x61\xac\x33\x06\x3e\x25\x75\ \x6e\x58\xa2\x26\x51\x41\x8c\x78\x14\xfc\xd9\xf5\x20\x5c\xe9\x39\ \x3b\xf2\x44\x42\x0a\x55\xc0\xa2\xbf\x5b\x66\xc3\xa5\x6b\x62\x11\ \xc7\xff\x95\x37\x41\x07\x99\x99\xd0\x30\xf4\xe5\x6d\xf6\x37\x8a\ \x46\xda\x39\xa3\x36\x76\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x05\xb0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x05\x77\x49\x44\x41\x54\x78\xda\x95\x55\x0d\x4c\x55\x65\ \x18\x7e\xce\xb9\x87\x0b\x22\x78\x41\xd8\x55\x02\x25\x53\x74\xe2\ \xcf\x6c\x96\xae\xd0\x9a\xff\xd6\x1a\xa1\x4b\x57\xe4\x48\x33\x5a\ \x98\x6b\xac\x66\xcb\x42\x5b\x2b\x7f\x58\x9a\xa3\xa5\x6d\x96\xe6\ \xcf\x56\x99\x8b\xdc\xd2\xdc\x82\xc4\x24\x51\xf9\x93\x19\x08\xe2\ \xf5\x02\x17\x2e\x70\xe1\x5e\xb8\xdc\xbf\x73\xcf\x7f\xef\x39\x26\ \x13\x81\x9a\xdf\xdd\x77\xef\x39\xe7\x7e\xdf\xfb\x7c\xef\xf3\x3c\ \xef\x7b\x18\x8c\x32\xf6\x15\x5f\xd4\x34\x95\x81\xac\xa8\xd0\xe8\ \x9e\xa5\xc9\x30\x0c\x58\x06\xf0\xf2\x2a\x4c\xf4\x60\x40\xe0\xe1\ \xf1\xfa\x60\x77\xfa\x51\xf1\xc5\x9b\xcc\x48\x71\x98\xff\x02\x58\ \x97\x31\xd7\xb8\x96\x44\x15\xbe\x70\x08\x81\xb0\x8c\xa0\x20\xa1\ \x2f\x18\x44\xbf\x5f\x01\x1f\x16\x61\xeb\xee\x42\x73\x97\x07\x02\ \xcf\x8c\x08\x32\x2a\x40\xe1\xe9\x0b\xda\xcb\xcf\xcc\xc3\x64\x6b\ \x3c\x65\xa0\x21\x14\x12\xe1\x0f\x2b\xf0\xf1\x3c\x7c\xfe\x00\x5c\ \x41\x11\x12\xdd\x37\xba\xdc\x28\xa9\xbd\x89\xa7\xa7\x4f\x45\x45\ \xb3\x03\x65\xbb\x5e\x67\x1e\x1a\x20\x20\xf1\x04\x60\xa2\x13\x4b\ \x08\x8b\x01\x84\x29\x0b\x4f\x50\x82\xa4\xaa\x68\xec\xe8\x43\x93\ \xc3\x81\xec\x45\xb3\x51\x7c\xed\x0e\x6e\x38\x5c\x43\x40\x06\x2f\ \x96\x9e\x76\x67\xa5\xcf\x8c\x5b\x32\x81\x53\x72\x26\x46\x98\x63\ \x3a\x06\x44\xae\x37\x1c\x46\xb8\x47\x45\xba\x59\xc2\x96\x15\x09\ \x08\xd3\x3d\x1f\x0c\xc1\xcf\x2b\x44\x97\x06\x51\x91\xd0\xd4\xe1\ \xc6\x35\x9b\x1d\x3b\xb2\x57\x42\x11\x65\x14\x9e\xa9\x40\x63\x7b\ \xcf\x20\x08\xb3\xa1\x46\xb2\xa4\x45\xe3\xe8\xf3\x29\xdc\xda\x69\ \x51\x80\x5b\x04\x1c\x32\x40\x74\x1b\x82\x4e\x89\x05\x6e\xba\x15\ \xec\xfe\xb6\x01\x6c\x5b\x33\x34\x49\x82\xaa\x28\xd0\x54\xcd\x38\ \x98\xd7\xe3\xc4\xfa\xec\x05\xd8\x93\xb3\x14\xce\x7e\x3f\x6e\xb5\ \xf6\xe0\xfc\x75\x1b\x6a\xec\x9d\x06\x08\x53\x78\x47\xa9\xdc\x92\ \xca\x3e\x59\xe5\x07\xec\x21\x80\x8c\x83\x31\x34\x15\xda\xaf\x50\ \x00\x3f\xfd\x26\x47\x02\xdd\x21\x19\x3e\x9b\x0f\x5b\x33\xc6\x22\ \x48\xe8\xb2\xa8\x80\xd5\x48\x83\x76\x0f\xfe\xa8\x77\x18\x00\x03\ \xbe\x00\x02\xb4\xd1\xe1\xec\x46\x71\xa5\x1d\xbf\x55\x35\x81\x59\ \x7f\x99\x3f\x5c\x30\x37\x2a\xb7\x82\x00\x52\xa3\xe9\x44\x14\xd0\ \x2b\x00\x09\x14\xb4\x37\x00\x70\x64\x47\x72\x25\xe2\xe9\xbf\x5f\ \xae\xf4\xe3\xd4\xea\x18\xf0\x64\x5d\x5d\x60\x9d\xa2\x20\x69\x51\ \x52\xd7\x6c\x64\xe3\xa7\xd3\x04\x34\xd1\xb8\xae\xbe\xdd\x89\x16\ \x67\x0f\x98\xd5\x25\x81\x0f\xb6\xcf\x8f\xde\x73\x47\x60\x70\xd1\ \x1e\x0e\xf7\x78\xf9\xbd\x92\x88\xab\x13\xe2\xd8\x13\x2f\xcd\xb5\ \x58\x5b\x82\x80\x89\x36\x68\xf4\xf5\x67\xc3\x00\x5c\xa7\x4a\x0c\ \xe5\xa8\x48\x40\x4c\x11\x55\x12\x4d\x85\x68\xd3\x68\xca\x90\x04\ \x01\x45\x3b\x57\xa2\xbe\xad\x13\x45\x67\x2b\xef\x8a\xfc\xc2\xf9\ \x81\xb7\x29\xed\x60\xd9\x9a\x84\x63\x83\xa2\x1f\x77\x2d\xde\xb7\ \xd6\x7a\xe9\xa7\x5e\xc0\xc2\xdc\xa5\xee\x52\xb5\x07\xbf\x66\x8e\ \x33\x36\x69\x2c\x4b\x85\x26\x41\x14\x49\x13\x49\x46\x48\x77\x18\ \xe9\xe3\xf6\x86\x61\x19\x17\x89\x6b\xb7\x3b\xb0\xf7\xc7\xf2\xd1\ \x6d\xfa\x5e\x69\x9f\x2b\x6f\x51\xbc\xf5\x9b\x56\x0d\x56\xb3\x06\ \x39\x86\xc5\xc5\x33\x0e\x9c\xdd\x98\x34\xb8\x46\x56\x58\x08\xaa\ \x80\xa0\x2c\x40\x08\x30\x90\xb4\x30\x01\xf0\x48\x1a\x1f\x8f\xcb\ \xb7\x1c\xd8\x76\xf4\xfc\xc8\x00\x2f\x16\xf7\x1e\x3b\x92\x99\xf8\ \xda\x61\x07\xd0\xe2\x97\xc1\x26\x70\xf8\xbb\xd4\x03\xf1\xca\x55\ \x44\xc8\x3c\xb4\x7b\x1e\xd7\x77\x93\x9b\x14\x4d\xa7\x88\x84\x22\ \xaa\x24\x49\x40\xc9\xd7\xd9\xa8\xb6\x39\xb1\xa9\xe8\xe7\xe1\x00\ \x93\x3e\x6f\xff\xf0\x5c\x5e\xf2\xae\x43\xad\x44\x89\x53\xc2\xd8\ \x44\x33\xda\x6a\x42\xd8\x22\xdb\x91\x9f\x33\x0d\x26\x86\x54\xd7\ \x68\x9b\x99\x6c\x4c\xba\x70\x0a\x43\x5a\x30\x64\x04\x09\x32\x09\ \xdf\xeb\x0f\x62\x56\xaa\x15\x97\xeb\xdb\xb1\x66\xf7\xc9\x07\x00\ \xe6\x97\xc5\x6d\xda\x9e\xde\x98\xb4\xd0\x3a\xf1\x48\x9d\x00\xab\ \xc5\x0c\xf7\x8d\x10\x36\xab\xcd\xc8\xdf\x38\x83\xc4\x54\x8d\xda\ \x8c\x00\x87\x48\xd2\x40\x24\x10\xba\x41\x94\x0e\x28\x33\x08\xea\ \x1a\xf8\x78\xa4\x3d\x12\x8f\x3a\x5b\x27\x96\x17\x7c\xf7\x00\x40\ \x5e\xd3\xbb\x87\xb6\x3e\xba\xff\xa4\xcb\x84\x2e\xaf\x0c\x8e\x33\ \x23\xea\xfb\x32\x58\x62\xbd\x43\x96\x69\xff\x76\x56\x46\xf7\x97\ \x5e\x8d\xe4\x28\xfd\x21\x43\xd9\x49\x64\xc1\xd2\xaf\xb2\xa8\x85\ \x74\x63\x55\xc1\xf1\xa1\x00\xcf\x9e\x70\x7d\x32\x31\x3d\x61\xe7\ \x0d\x2a\x06\x81\xe1\x10\x68\xea\xc7\x47\x31\x3d\xd8\xb0\x66\xd2\ \x50\x00\x0a\x66\x36\x73\x14\x4c\xa2\xb6\xcd\x51\xad\x70\x24\x85\ \x4a\x58\x26\xa3\x9d\x24\x50\xd1\x54\x36\x77\x60\xf5\x8e\x07\x00\ \x9e\x38\xd8\x59\x28\x8e\x1f\xf3\x7e\x6b\x17\x6d\x94\x23\xa0\xf4\ \x0d\xe0\xd3\xd9\x02\x36\x64\xa6\x0c\x33\x82\xc9\x64\x22\x17\xd1\ \x3a\xfa\x44\x90\x18\x3a\x4b\x3a\x81\x22\xd5\x42\x62\xec\x28\x00\ \x58\x74\x2e\x95\x49\x18\x97\x92\x9e\x91\xda\x6d\xf1\x94\xdb\xf2\ \x57\x65\xa0\xc7\xc3\xe3\x87\xdf\x1b\x30\xfa\x18\x1a\x42\xa5\x4f\ \x49\x51\x16\x6e\xb6\x13\x45\xc3\x00\xf4\xe5\xcb\x4a\x0f\x2e\xd9\ \x34\xe7\xb9\xf6\xeb\x2d\x53\xb6\x2d\x8c\x46\xee\xba\x39\xe8\xf3\ \x87\x46\x0d\xaf\x9f\x5a\x26\x01\x18\x43\x7c\x6a\x2b\x54\xde\xc9\ \x71\xb1\xa8\xa2\x0c\x86\x01\x4c\xcb\xaf\xbd\xf4\xce\xc7\x8f\x2f\ \x3e\x51\x27\xc2\x2d\x70\xb0\x74\x06\xf0\x6a\xa0\x16\x6f\x6c\x5c\ \x30\xe2\xb9\x55\x72\x92\xa2\x43\x90\x45\x4d\x2a\x4b\xa6\xe0\xc0\ \x53\x13\x9c\x10\x1f\x83\x2a\xaa\xe4\xa1\x22\x67\xfe\x35\x2f\x37\ \x2f\xed\x7a\xad\x10\x8f\x9a\x72\x72\x8d\x85\xfc\xae\x98\xb1\xa0\ \xad\x9c\x04\xf4\x8e\x7c\x7a\xe2\xdb\x48\x41\xaf\x38\xc3\x55\xf4\ \x0e\x97\xa9\x91\x1d\xcb\x41\x03\x51\xb4\x7c\xfb\x7d\x36\x1d\xbb\ \xae\xe2\xa9\xc7\xb2\xa6\x56\x74\x49\xb1\x70\x37\x7a\xc8\xdc\xfa\ \x53\x16\xcb\x06\x9a\x50\x7a\x60\x29\x1e\x76\xe8\xef\x86\x79\xb9\ \xfb\xef\xcb\x20\xf9\xcb\xe8\xb4\xcd\x8b\xab\xfd\xd3\x67\xcd\xec\ \xae\x77\x12\x80\xee\xef\x48\xbc\x15\xd3\x82\x82\xcd\xb3\x1f\x1a\ \xc0\xa0\xfc\x95\xcf\x86\x6a\x60\x9a\x71\x60\xb2\x9a\x94\x72\x41\ \x1b\x9f\x38\x95\x72\x85\xb9\xbf\x16\x6c\x1c\xbd\x28\x06\xbb\xcf\ \xff\x0f\x8d\x8a\x84\xa1\xee\x7a\x6f\xfc\x03\x0c\xd8\xd3\x26\xba\ \x32\x67\xc3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x80\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\x47\x49\x44\x41\x54\x78\xda\xa5\x96\x6b\x6c\x14\x55\ \x14\xc7\xff\x33\xb3\x5b\xd4\x58\x65\x95\x40\xd4\x44\x3f\xf8\xf8\ \xa0\xc6\x10\x4c\xf8\xe0\x2b\x41\x2b\x3e\x88\xb5\x68\x30\x50\x62\ \x89\x20\xc6\x0f\x04\x8d\x06\x03\xb2\xab\xa2\xb5\x82\x51\x62\x23\ \x51\x13\x4d\x29\x62\xb5\xa8\x54\x49\xd4\x4a\xb6\xa0\x89\xa1\xda\ \x16\x94\x98\xda\x17\x6b\xc5\xdd\xee\xd2\x96\x6e\xbb\xec\xee\xec\ \xbc\xef\xf5\xdc\xd9\x6d\xe9\x32\x6d\x03\xf5\x4e\x66\xe7\xb9\xf7\ \x37\xe7\xff\x3f\xe7\xcc\x48\x98\x34\xde\x69\xfa\x99\x73\x26\xc1\ \x76\x18\x38\xe7\x80\x24\x41\x86\xd8\xd0\x56\x02\x52\x1a\x83\x42\ \x27\xce\x18\x1a\x92\xa9\x34\xfa\xe3\x19\xb4\xee\x7c\x46\xc2\x0c\ \x43\x3a\x17\xb0\xe2\xce\xdb\xdc\x7d\xbf\x5f\x41\x4e\xb5\x90\xd6\ \x73\xc8\xea\x36\x54\xc3\xc2\xa8\xaa\x62\x2c\xe3\x40\xd3\x4d\x44\ \x06\x4f\xa1\xef\x54\x12\x86\x26\xcd\x08\x29\xba\xb0\xe3\xab\xc3\ \x7c\xe5\x3d\x0b\x71\xed\xfc\x80\x7b\xcc\x69\xc9\xe5\x4c\x64\x74\ \x07\x69\x4d\x43\x3a\x93\xc5\x90\x6a\xc2\xa2\xe3\xee\xa1\x11\x84\ \x7f\xef\xc2\x1d\x37\x5d\x8f\xd6\xbe\x28\x7e\x7a\x73\xad\x74\x41\ \x00\xc7\xb2\xa0\xc1\x26\x80\x42\x4f\x6c\x41\x37\xb3\xd0\x29\x8a\ \x24\x45\x65\x31\x86\xee\x81\x51\xf4\x44\xa3\xa8\xbc\xeb\x56\x34\ \xb5\xfd\x8d\x3f\xa3\x43\x53\x42\x8a\x4e\xd4\x34\x1e\xe6\xab\x97\ \x14\x00\x8e\x43\x21\x30\x98\x50\xa0\xeb\x3a\x34\x35\x87\x8c\xe6\ \x90\x5c\x1c\xa6\x63\xa1\x67\x60\x04\x6d\x91\x7e\x84\x2a\x97\xc2\ \x31\x6d\xec\xf8\xb6\x15\xdd\xb1\x61\x0f\xa4\xe8\xa0\xba\xa1\x85\ \x3f\x59\xb6\x08\x17\xe7\x7e\xc5\xdc\xc6\x65\xee\xb9\xd4\xca\xef\ \xf1\x48\x75\x16\xcc\x76\xc0\x08\xca\x19\xcf\x9f\x4f\xc6\xf1\x44\ \xe5\x62\xbc\x55\x75\x2f\xe2\x63\x19\xf4\x9e\x1c\x46\xf3\x1f\x11\ \x1c\xeb\x4f\x14\x41\x8a\x00\xaf\x7f\xde\xc2\xd7\xdc\xb7\xa8\x10\ \x81\x0e\xc6\x14\x91\x48\xe0\xb4\x6a\x94\x59\x2a\x99\x6d\x9b\x0e\ \x64\x4e\x1e\xc4\x92\x38\xd4\x19\x75\x01\x67\xd2\x59\x64\x1d\x8e\ \x68\x7c\x10\x4d\xed\xfd\xf8\xa1\xa3\x07\x5d\x1f\x3d\x2f\x79\x00\ \xa1\xcf\xc2\xfc\xe9\xfb\x6f\x2f\x00\x4c\x02\xe4\x2f\x8b\x14\x75\ \x0a\x10\x61\xb0\x90\x48\x25\x2f\xc2\xc7\xfb\xdc\xeb\x99\x0c\x47\ \x96\x9b\xee\xfe\xd1\x13\x09\xfc\x13\x1f\x46\xef\xc7\x2f\x78\x01\ \x9b\xea\x7e\xe4\x1b\x96\x2d\xf6\x48\xf4\x68\x75\x6e\x22\x5e\x2a\ \x14\xe4\xed\xb1\x68\x15\xb2\x71\x5a\x6d\x58\x86\x81\xda\x57\x96\ \xa2\xf3\xdf\x04\x6a\xbf\x6b\xc7\xc9\xba\x4d\x5e\xc0\xc6\x5d\x07\ \xf8\x8b\x2b\xee\x76\x23\xb0\x69\x16\x93\xb2\xa5\xa4\x70\x8d\x17\ \x6e\xe6\xb2\x4c\x85\x66\xc1\x34\x2d\x30\x8b\xb2\x4c\x64\x18\x65\ \xdc\x48\x4a\xc7\xe5\x97\xcd\x41\xdb\x89\x01\x6c\x6f\xfc\x05\xb1\ \x4f\x5f\xf2\x02\xd6\xef\x6c\xe0\xc1\xd5\x0f\xe5\x25\x82\x90\x82\ \x81\x89\xa2\xa3\x1f\xdf\xa4\xfb\x6c\x47\x86\xc1\x0c\xa8\xb6\x01\ \x23\x2b\xc1\xe2\x3a\x01\x34\x5c\x75\x45\x00\x47\x7a\xa3\xa4\x44\ \x33\x12\x7b\x37\x7b\x01\xab\x6a\xea\xf9\xf6\x75\xe5\x1e\x89\xca\ \xdf\xc8\xe5\xcd\x1e\xcf\x0c\xf1\x2f\xca\x26\x87\x0b\x89\x88\x4e\ \x52\x59\x96\x81\xf0\x87\x95\x38\x1a\x89\xe3\xa9\xda\xfd\x18\x6a\ \xd8\xe2\x05\x94\x87\x3e\xe1\xef\x6f\x78\xcc\x8d\x20\xa9\xea\x50\ \xc4\x24\x34\xad\x8f\x64\x51\x24\x39\x9f\x4e\xa4\x99\xac\x50\x44\ \xe4\xba\x43\xab\x46\x5e\xd8\x64\xfc\xe9\x8c\x8a\x5b\xae\x9b\x8f\ \x23\x9d\x31\x2c\xaf\xd9\x8b\xd3\x5f\x6c\xf5\x02\x96\x6c\xad\xe3\ \xf5\x1b\x2b\x5c\xc0\x68\x36\xe7\x3e\xb2\x78\x6a\xce\x98\x7b\xab\ \x9f\x84\x9a\x43\x30\x53\x18\xe3\x07\x2e\x12\x40\x5b\x82\x2a\x3c\ \x48\x6b\xb8\xf1\xea\x00\x8e\x47\x12\x28\x0b\xee\x46\x72\x5f\x70\ \x7a\x80\x9c\xfc\x06\x0b\x0e\xac\x9b\x90\x68\x79\x8d\x76\xd6\x68\ \xd2\x47\xa2\xea\x76\x73\x97\x32\x0a\x6e\xd3\x95\x49\x22\x13\x2d\ \xbb\x2a\xa8\x85\x0c\xe2\x81\xe0\x1e\x8c\x7e\x19\x3c\xbf\x08\x26\ \x0f\xd1\xc1\x4b\x4a\x7c\x34\x99\x45\x6d\xdb\x47\xd2\xf9\xc8\x0a\ \x46\xac\x7c\x3b\xb9\x32\x70\x09\xda\xfb\x06\xf0\x60\x68\x0f\xc6\ \x66\x03\x10\x43\x51\x14\xca\x22\x02\xd0\xe2\x27\x33\x84\x4a\x42\ \x40\x93\x6a\x61\x5e\xe9\x79\x02\xa6\x93\xa8\x78\x14\x37\x4e\x91\ \xd0\xe1\xda\x0a\x74\xc5\x48\xa2\xff\x13\xc1\xd9\x09\xc9\x5f\xba\ \x41\x72\xcd\x17\x6d\xc4\xc1\x35\x73\x4b\xd1\x41\x11\x4c\x0b\xb8\ \xf9\xd9\xf7\x78\xf3\xb6\xaa\x09\x80\x34\x05\xc0\x2d\x01\xca\x24\ \x47\x20\x28\x45\x15\x26\xc3\xe7\xf3\x41\xa3\x26\xb8\x20\x70\x29\ \x3a\xa8\x92\x85\xc9\x33\x02\xce\x2d\xb4\x87\x5f\x4b\x15\x3f\x3d\ \xe9\xed\x86\x20\x2a\xce\xcd\x2a\x7a\x8f\xdb\x26\x7e\xab\xaf\xc2\ \x5f\x24\x51\xd9\x96\xdd\x48\x7d\x1d\xf2\x02\xe6\x3d\xfe\x2a\x3f\ \xf6\xc1\x73\x13\xaf\xcc\xd9\x0c\xf1\x6e\x58\xb8\xfe\x5d\x8c\xec\ \xdf\xe6\x05\x94\x96\xbf\xcc\xbb\xeb\x37\xcf\x7a\xf2\xf1\x71\xc3\ \xaa\x6a\xe8\x07\xdf\x9e\x1a\x20\xb6\x16\x17\x1f\x2b\xfc\x82\x26\ \x15\x9f\x39\x12\x75\xd7\xf1\x31\x0e\xf8\x0f\x7f\x52\x9c\x37\x52\ \x7b\xdf\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xb1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x03\x78\x49\x44\x41\x54\x78\xda\xad\xd4\x79\x4c\x93\x67\ \x00\xc7\xf1\xdf\xdb\x83\xde\x8d\x4e\x2d\x4e\x97\x25\x76\x52\xaa\ \xc6\x60\x4a\x74\x32\xc5\xe1\x74\x44\x99\xd1\xf8\x57\x9d\x2e\xcb\ \x50\xa3\xc6\x23\x9e\xdb\xfc\xc7\x7f\x97\x4d\x23\x1e\x33\x71\xd1\ \x8d\x7a\xcc\xa0\x6f\xc4\xe0\x41\x24\xc4\xa0\xbb\x40\xa9\x28\x60\ \xab\xa5\x41\x51\xa8\x80\xe5\x6c\x6b\x4b\xdb\xf7\x78\xf6\xd0\x44\ \x22\x42\x29\x87\x4f\xf2\x26\x6f\xde\x37\xcf\xe7\xfb\x9e\x0f\x83\ \xf7\x34\x5a\x0e\xa5\x05\x15\x1f\xc8\xd5\xc1\xaa\x8e\x57\xde\xa0\ \x30\x3b\xfd\x6c\x63\x5b\xef\x71\xe6\x7d\xe0\xd5\xfb\x53\x5c\x69\ \x8b\x8d\xa9\x5c\x6d\x33\x88\xbb\x0b\xfe\x97\x61\x34\x4d\xd5\x4e\ \xb5\x9c\x7e\xde\x3c\xe6\x80\xef\x59\xf9\xc9\xf3\x6c\xd1\x96\xa5\ \x8e\xd3\x98\xae\x51\x23\xe2\x0e\x42\xa8\x0f\xa3\x47\x21\x83\xe7\ \x8b\x89\x86\x31\x05\xae\xfc\x9c\x6b\x5b\xfd\x63\xfe\x77\xbd\xfb\ \xc7\xf7\x6f\xc0\x92\xcb\xf9\x30\x0a\x2a\xf0\x01\x01\x8c\x08\x74\ \x4c\xd7\xbc\x1a\x75\xc0\x95\x67\x2e\x15\x97\xfb\xbf\x2c\x2e\xce\ \xc0\xde\xbd\x97\x63\xc7\x7e\xdd\xfc\x0d\x16\x9d\xba\x00\xf3\xa4\ \x24\x70\x04\x08\xeb\x93\x46\xf7\x0e\x28\x7e\xd7\xb8\x4d\xfd\xa9\ \x44\xac\x45\x9d\x9d\xc7\xb5\x92\x55\xd8\x7e\xa0\x08\x49\x4a\xe0\ \xd4\x86\xb5\xc8\xb4\x15\x60\xc6\x78\x39\x3c\x26\xdd\xc8\x03\x14\ \x2f\xa7\x78\x06\x1f\xae\x05\x7a\x04\x28\x5b\x08\x9e\xdb\x81\xb3\ \x4f\x56\x62\xeb\x81\xab\x50\x8f\x03\xce\x6c\xfa\x16\x19\x05\xe7\ \x41\xb2\x93\x7f\x19\x51\x80\xe2\xff\x50\x7c\x61\x0c\x0f\x09\x90\ \x34\x11\x48\x79\x40\x12\x96\xa0\xcc\x26\xc5\x75\x92\x83\x3d\x79\ \x45\x50\xc2\x07\xe7\x9a\x64\x76\x49\x59\xc4\x3a\xec\x00\xc5\x2b\ \x8c\xdb\x34\xf3\xf9\x70\x4d\x1f\x2e\xe1\x00\x31\x20\x85\xe7\xfe\ \x64\xc8\x23\x01\xd4\x38\xfc\x78\xa8\xce\x44\x0e\xe7\x62\xe7\xb2\ \x6d\xd6\xde\x79\xc3\x0a\x50\xdc\x69\xdc\xa1\x9d\xc9\x87\xaa\x07\ \xe2\xf6\xc9\x10\x83\x01\x10\xc2\x83\x89\x32\xe8\x76\xcb\xd9\x79\ \xc5\xdd\xd6\x37\x73\x13\x06\x28\x5e\xf7\xc9\xae\xf1\x26\x2e\x60\ \x8f\x8b\x8b\x02\x07\xa5\x4e\x8b\xe6\x1a\x19\xfb\x59\x61\x8b\xf5\ \xed\xf9\x43\x06\x1e\xe7\x99\xea\x52\x77\x1b\x4c\x91\xc0\x3d\x20\ \xc8\xc7\xc5\x55\x14\xf7\x54\x32\xec\x82\x1b\x5e\xeb\xbb\x46\xdc\ \x80\xf3\xb0\xe9\x89\x79\x8f\xc1\x1c\xa5\x38\x19\x02\x57\x6a\x35\ \x68\xba\xcb\xb0\x99\x37\xdb\xac\x83\x39\x83\x06\x1c\x87\x52\xaa\ \x66\xec\x4b\xb6\x24\xc4\x75\x1a\x34\x96\x83\x5d\x54\xd2\x6e\x8d\ \x77\xa1\x03\x02\xce\x23\xa6\x9b\xe6\x5d\x86\x65\x89\x70\x15\xc5\ \x1b\xfe\x26\x6c\xd6\xad\x8e\xb8\xf8\x80\x80\x7d\xe7\xb4\x3f\x2d\ \x47\xa7\xac\x8b\x06\x2a\x13\x3e\x96\xfa\xbf\x08\xbb\xb4\x6c\x68\ \xbc\x5f\xa0\x70\x16\xd6\x66\x97\xe6\x5f\x90\xe9\xd7\x83\xbc\xa6\ \x3f\x4f\x23\xdd\xf8\xc1\x71\xf7\x1d\x91\xcd\xbe\xdd\x99\x10\xef\ \x17\xa8\x58\x6f\xaa\x9a\xff\x47\x9d\x45\xf4\x1d\x06\xdf\xf0\x3d\ \x98\x10\xe9\xff\x9d\x53\x5c\x41\x1f\x8b\xab\x54\x60\x97\xfd\xdb\ \x35\x2c\xbc\x2f\x70\x29\x15\x73\xb2\x7e\x3f\xfa\xd0\x60\xf9\x0a\ \x78\xdd\x09\xe2\xdd\x8a\xa8\xa7\x8a\xe2\x53\x20\x86\xe8\xed\x10\ \x8e\x2e\x64\x5a\x38\x6e\x45\xd8\x15\xff\xf9\x87\x8d\xf7\x05\x6e\ \xe7\x18\xaa\xb3\x8a\xdd\x69\xf0\xde\xa7\x6b\x6c\x33\x20\x74\x23\ \xda\xf5\x08\x4f\xcf\x9d\x83\x4c\x25\x85\x18\x4d\x42\x7d\x05\x61\ \x57\x54\xf8\x46\x84\xc7\x02\x57\xd2\x55\xd2\x36\x5e\xc2\x7f\x6d\ \xfb\x09\xba\x8f\x3e\x04\xf1\x37\x80\x89\xb4\xd2\x33\x5d\x88\xbe\ \xb0\xc3\x71\xb1\x09\x2e\x3b\xb7\x63\xdd\xe3\x9e\x13\x23\xc5\x63\ \x81\x82\x34\xe5\x6f\x95\xad\x91\xcd\xa1\x4e\x82\x83\x25\xb9\xd0\ \xa7\xd0\x48\xab\x13\xcf\x0a\x1f\xe0\xe9\x3d\x5f\x41\xbb\x97\xeb\ \xa4\xf8\xf6\xd1\xe0\xb1\x80\xcd\xa2\x27\x8e\xd6\x20\x44\x91\xe0\ \x63\xbd\x0c\x8b\x3f\x4f\xee\x79\x50\xe2\xf9\x41\xa1\x53\xa6\x53\ \x38\x77\xb4\x70\x5f\xe0\x98\x49\xde\xae\x56\x29\x26\x28\x45\x9e\ \x95\x08\x4c\x80\xa2\x1b\xc7\x8a\xbe\x3d\xfe\x07\x5e\x55\xf2\x96\ \x8f\xaa\x45\xa0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x04\x79\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\x40\x49\x44\x41\x54\x78\xda\xad\x96\x6b\x68\x1c\x55\ \x14\xc7\xff\x77\x66\x36\x91\x68\xd4\xb5\xb5\xb5\x0a\x55\xb0\xfa\ \x41\x45\x82\x82\x1f\x7c\x41\x35\x5a\x45\x08\x3e\x28\xd8\x16\x2b\ \x3e\x2a\x7e\x28\x55\x94\x4a\x6b\xb3\x48\xa5\xc6\x56\xb4\x58\x14\ \x11\x94\x34\xb5\x46\xeb\xa3\x41\x41\x8d\x92\x52\x05\x6d\x20\xa9\ \x69\x8a\x48\x5e\xdd\x6e\xc3\x66\x37\xcd\x26\xbb\xc9\x66\x67\x67\ \xe7\x7d\xaf\xe7\xce\x6e\x62\xb6\x1b\xa2\x0d\xbd\xb3\x33\x73\x1f\ \xb3\xf3\xbb\xe7\xfc\xcf\x3d\x77\x18\xe6\x94\x77\xdb\x7e\x13\x82\ \x33\x78\x3e\x87\x10\x02\x60\x0c\x0a\xe4\x8d\xee\x0c\xc8\x9a\x1c\ \x2a\x75\x4c\xdb\x26\x32\xd9\x1c\x62\x49\x1d\x9d\x7b\x5f\x60\x58\ \xa0\xb0\x73\x01\x6b\xef\xba\x35\xa8\x87\x42\x2a\x0a\x86\x8b\x9c\ \x55\x40\xde\xf2\x60\xd8\x2e\x26\x0d\x03\x53\xba\x0f\xd3\x72\x10\ \x1d\x3b\x8b\xa1\xb3\x19\xd8\x26\x5b\x10\x52\x36\xb0\xe7\x9b\xa3\ \xe2\xc9\x7b\xeb\xb0\x72\x59\x38\x68\x0b\x3a\x0a\x05\x07\xba\xe5\ \x23\x67\x9a\xc8\xe9\x79\xa4\x0c\x07\x2e\xb5\xfb\x53\x69\x74\x9c\ \xe8\xc3\x9d\x37\x5e\x8f\xce\xa1\x38\x7e\x7d\xeb\x59\x76\x5e\x00\ \xdf\x75\x61\xc2\x23\x80\x4a\x33\x76\x61\x39\x79\x58\x64\x45\x86\ \xac\x72\x39\x47\x7f\x62\x12\x03\xf1\x38\xd6\xdf\x7d\x0b\xda\xba\ \x4e\xe3\xaf\x78\x6a\x5e\x48\x59\x47\xd3\xa1\xa3\x62\xc3\xea\x12\ \xc0\xf7\xc9\x04\x0e\x07\x2a\x2c\xcb\x82\x69\x14\xa0\x9b\x3e\xb9\ \x4b\xc0\xf1\x5d\x0c\x24\xd2\xe8\x8a\xc6\x10\x59\xff\x20\x7c\xc7\ \xc3\x9e\xef\x3a\xd1\x3f\x32\x5e\x01\x29\x6b\xec\x6a\x3d\x22\x9e\ \xaa\xbf\xad\x04\x70\x20\x05\x67\x8a\x02\xcb\x27\x4b\x4c\x17\x05\ \xdb\x83\xe3\x88\xc0\x79\xbd\xb1\x04\x7a\x87\xd3\x78\x7b\xe3\x7d\ \x48\x4e\xe9\x18\x1c\x1e\x47\x7b\x6f\x14\x3d\xb1\xd1\x32\x48\x19\ \xe0\xcd\x2f\x8e\x88\xa7\xef\x9f\x01\x58\xe0\x5c\x95\x81\x04\x41\ \xa7\x49\x91\x65\x90\xd8\x9e\xe3\x43\x11\x3e\xce\x8c\xe7\xf0\x63\ \xcf\xe9\x00\x30\x9d\xcb\x23\xef\x0b\xc4\x93\x63\x68\xeb\x8e\xe1\ \xa7\xe3\x03\xe8\xfb\xf8\x65\x56\x01\x88\x7c\xde\x21\x9e\x7f\xe0\ \xf6\x59\x0b\x38\x2f\x0e\xcb\x10\xf5\x4b\x10\x29\xb0\x74\x91\x41\ \x5a\x74\x9c\x1c\x0a\xc6\x75\x5d\x20\x2f\x9c\xa0\xfe\xe7\xa9\x51\ \x9c\x49\x8e\x63\xf0\x93\x57\x2a\x01\x5b\x9b\x7f\x16\x9b\x1f\xb9\ \x63\x56\x03\x4e\x62\xce\x3c\xc4\x4a\x10\xb9\x46\x72\xb6\x80\xe7\ \x3a\xc5\x40\xb0\x38\x69\xe4\x62\x2c\x6b\xa0\xa6\x46\xc3\x89\xe8\ \x08\xf6\xfd\xd0\x8d\xe1\xe6\xad\x95\x80\x2d\x1f\x7e\x2f\x5e\x5d\ \x7b\x4f\x00\xf0\x08\xe0\x10\xa0\xaa\x34\x26\x4a\x0f\x0b\xd2\x64\ \x9a\xa2\xc9\x71\x5c\x70\x97\xb4\x91\x11\x46\xa0\x74\xd6\xc2\x65\ \x97\x56\xa3\xeb\x54\x02\xbb\x0f\xfd\x8e\x91\xcf\x5e\xab\x04\x6c\ \xda\xdb\x2a\x1a\x37\x3c\x5c\xb4\x00\xd2\x15\x1c\xd2\x86\x10\x5d\ \xb4\x39\xcf\x79\xbe\x02\x9b\xdb\x30\x3c\x1b\x76\x9e\xc1\x15\x16\ \x01\x4c\xac\xb8\x22\x8c\x63\x83\x71\xf2\x44\x3b\x46\x0f\x6e\xab\ \x04\xac\x6b\x6a\x11\xbb\x9f\x6b\x08\x00\x06\xcd\x4e\x90\x05\x74\ \x45\x35\x25\x8c\x10\xf9\xc8\xa7\x3a\xa7\x54\x51\x25\xeb\x1e\x89\ \xee\x91\x05\x36\xf5\x7a\x2e\x26\x72\x05\xac\x5a\x71\x25\xfe\xe8\ \x8b\xe3\x99\x7d\x87\x91\x6a\xdd\x5e\x09\x68\x88\x7c\x2a\x3e\xd8\ \xfc\x78\x00\xc8\x18\x16\x54\x2e\x82\x97\x6a\xe4\x16\x95\x29\xc5\ \x70\x22\x9f\x29\x2a\x59\x44\x82\xf8\x74\x9a\xdc\x85\x47\xc2\x4f\ \xe8\x06\x6e\xbe\x76\x19\x8e\xfd\x3d\x82\xc7\x9a\x0e\x62\xe2\xcb\ \x1d\x95\x80\xd5\x3b\x9a\x45\xcb\x96\x47\x03\xc0\x64\xbe\x10\x38\ \x3e\x88\xfa\x40\x6c\x86\x10\x39\xaa\x9a\x60\x8e\x14\x26\x04\x5c\ \x24\x81\x1e\x23\x6b\x49\x83\x9c\x89\x1b\xae\x0e\xe3\x64\x74\x14\ \xf5\x8d\xfb\x91\xf9\xaa\xf1\xff\x01\xe6\x16\xd9\x54\x29\x9d\xaa\ \x52\x11\x8d\x15\xc1\xf4\x0b\x11\x74\x82\x2c\x5e\xb9\xe4\x62\x0a\ \xd3\x04\xd6\x34\x1e\xc0\xe4\xd7\x8b\x01\x50\xbb\xaa\x4a\x83\x4b\ \x33\x56\x15\x8d\x5c\xa7\x81\x53\x3a\x51\x58\x31\x9d\x2c\x09\xd7\ \xa0\x7b\x28\x81\x87\x22\x07\x30\xb5\x18\x00\x02\x0b\x54\x8a\x22\ \x02\xd0\x11\x22\x31\xa4\x97\xa4\x03\x1d\x4a\x27\x4b\x6b\x2f\x00\ \xe0\xdf\x1c\xc3\x4a\x2b\x10\xc1\xa6\x64\x72\x1f\x57\xd5\x5e\x82\ \xe3\x04\x58\x73\x21\x00\x72\xd6\x32\x84\x59\x20\xbe\x4c\x23\x3e\ \xae\xb9\xbc\x76\x61\xc0\x4d\x2f\xbe\x2f\xda\x77\x6e\x9c\x05\xb0\ \x79\x00\xf2\x0f\x9c\x44\xf5\x25\x82\x42\x54\xa5\x85\xa1\x69\x1a\ \x4c\x4a\x82\xcb\xc3\x64\x41\x49\xe4\xff\x04\xa4\xa6\x75\x5a\xa1\ \xc5\x7e\xe5\x1c\x88\x69\x53\x22\xa4\xdc\xc6\x54\x9a\x3f\x45\x95\ \x46\x0b\x6f\xaa\x60\xa1\xee\xba\xe5\xe8\x89\x26\x51\xbf\x7d\x3f\ \xb2\xdf\x46\x2a\x01\x4b\x9f\x78\x43\xf4\x7c\xf4\xd2\xec\x96\xb9\ \x98\x22\xf7\x86\xba\x4d\xef\x21\x7d\x78\x67\x25\xa0\xb6\xe1\x75\ \xd1\xdf\xb2\x6d\xd1\x2f\x9f\x29\xab\xd6\xed\x82\xf5\xcb\x3b\xf3\ \x03\xe4\xdd\x15\xd2\x29\xe2\xbc\x5e\x2a\x3f\x73\x18\xe5\xaf\x99\ \x32\x03\xf8\x07\x33\xbf\x9c\x37\x4a\x11\x78\x43\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x90\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x05\x57\x49\x44\x41\x54\x78\xda\xa5\x95\x7b\x50\x54\x55\ \x1c\xc7\xbf\xf7\xb1\xbb\x80\xe2\x63\x8a\x0c\xcc\x4c\xb0\x10\x04\ \x76\x1d\x27\x95\xd0\x41\x89\x12\x01\x51\x0a\x43\x12\xc7\x71\xd2\ \x51\x69\xa6\x3f\x6c\xa6\xd2\xa9\xd1\x46\xcb\xc9\xb2\x1a\xc7\xb1\ \x89\x19\xf3\x91\x23\x43\x60\x8a\xaf\x60\x5a\x07\x57\x5c\xe3\x31\ \x92\x92\xc3\x40\x20\x88\xca\x02\xe2\x03\x13\x77\xef\x73\x4f\xbf\ \x7b\x79\x4c\x35\x6e\x0f\x3b\xf7\xde\x73\xcf\x39\x7b\xce\xf9\xec\ \xef\xf7\x3b\xdf\xdf\xe5\x52\x8a\x3b\x59\x48\x10\x8f\x31\x21\x22\ \xc0\xe8\xe6\x80\x51\xd0\x60\x14\x5e\x14\xcc\xb1\xbf\x2d\x34\xdf\ \xaf\xe9\xe8\xef\x97\xe1\x0d\x0e\xc1\xad\x3e\xad\xc9\xb5\x34\x22\ \x66\xf8\xe7\x05\xa5\x1e\xb6\x65\x5e\x18\xac\x1c\x87\x3b\x2a\x83\ \xce\x8b\x48\xf8\xad\x15\x8f\x47\x3e\x43\x2b\xfd\x01\x36\xa5\x5d\ \x39\xcb\x9f\x86\x6e\xb7\xb7\xa2\x79\xf4\x64\xec\xbf\x74\x1b\x4d\ \x1e\x9f\xe7\x6c\xfe\x84\xf1\xe6\xd4\xbc\xe3\x1e\xf6\x5e\x52\x18\ \x9c\xbd\x2a\xee\x13\x40\xe3\x44\xe4\xdc\x6f\x40\x54\x5c\x0c\x74\ \x5d\x7f\xe8\xfe\x56\x9b\x15\xdf\x1d\x38\x04\x0b\x59\xa8\x69\x1a\ \xa6\x27\x26\x82\x49\x32\x8a\x47\x4c\xc5\x58\x91\xa1\xa6\xb5\x0f\ \x5d\xbd\xb2\xa7\x6a\xc5\xc4\xf1\x5c\xce\x91\x1b\xac\x20\x31\x0c\ \x95\x04\x30\xac\x50\x20\x60\xf1\xbd\x8b\x88\x9c\x3a\x25\x20\x20\ \x34\x24\x08\xd9\xeb\x3f\x47\xf4\xa2\x3c\xc8\xaa\x1f\x33\xbb\xcf\ \x61\xba\x3d\x01\xc5\x21\x71\xb0\x71\x3a\x6c\x22\x8f\xea\x96\x3e\ \x74\x77\xf9\x9a\xb8\x57\x4a\xae\xb1\x82\xd9\xe1\x70\xdd\x94\x21\ \x1a\x00\xb2\x20\xab\xb7\x06\x91\x09\xb1\x81\x01\xc1\x56\xac\xfc\ \xe2\x38\x1c\xaf\x2f\x07\x19\x8d\x89\xce\x42\x38\xec\x0e\x94\x8c\ \x72\xc0\xca\x34\x23\x2c\x08\xb6\x09\x28\xaf\xe9\x06\x97\x5d\x7c\ \x95\xad\x4b\x8a\x40\x65\xcf\x20\x80\xb7\x60\x61\x4f\x15\x01\xe2\ \x02\x03\x82\xac\x58\xb5\xf3\x04\xe2\x72\xf3\xa1\x30\x1e\x91\x67\ \xbe\x86\x3d\x2e\x1e\xa5\x63\x66\xc0\xea\x57\xcd\x39\x16\x0b\x8f\ \xb3\xf5\x3d\xe0\xb2\x0e\xb5\xb1\x82\xe4\xf1\x70\x7a\x24\x58\x78\ \xc3\x02\x0b\x32\x3d\x2e\x44\xd9\x03\x03\x46\x92\x05\x6b\xbe\x72\ \x22\x3e\x2f\x1f\x2a\x4d\x99\x54\xb1\x13\xb1\x09\x76\x7c\x3f\x76\ \x26\x59\x30\x08\x20\x37\x9d\xab\x27\x0b\x32\xf7\xb5\xb0\x75\xa9\ \x13\xf0\xe3\x0d\x19\x16\xb2\x4d\x11\xac\xc8\xb8\xe6\xc4\xe4\x69\ \xf1\x81\x01\x14\x83\xd7\xd6\x6d\x46\xc4\xf4\x79\x50\x74\x86\xd4\ \x31\x77\x10\xfb\xdc\xb3\x38\x3a\x2e\x19\x56\x5d\x19\xb6\xc0\x7d\ \xa1\x8b\x8e\xe9\x9e\x66\x56\x90\xfa\x34\x2a\x3a\x87\x00\x36\x2c\ \x68\x3f\x89\xc9\x0e\x7b\x40\x80\x28\x08\xb8\xda\xd6\x0e\x81\xe6\ \x33\x3f\x43\x58\xc4\x93\xe8\xbc\xd2\x86\x53\x13\xd2\x08\x20\x0f\ \x03\xce\xd7\x79\xc0\xcd\x2f\x6c\x64\x6b\x5f\x9e\x84\xf2\xeb\x03\ \x2e\x52\xc9\x82\x17\x1b\x4b\x61\x7f\x61\x06\x34\x55\x0b\xa8\x03\ \x9e\xe7\x4d\x39\x18\x3a\x14\x68\xdd\x25\x77\x2d\x9c\xb1\x39\xb0\ \x0c\x5a\x20\xd2\x11\xae\xad\xed\x00\x97\xba\xfb\x32\x5b\x3b\x3f\ \x12\x3f\x74\x48\x10\x2d\x22\x74\x4b\x10\x46\xbb\x4a\x30\x2e\xfc\ \x31\xd2\x59\x00\xa1\xfd\xa5\x18\xb0\x9e\xae\xdb\xb8\x97\xbc\x04\ \x82\x2a\x81\x23\xcb\x45\x8a\x41\x5d\x1d\x01\x52\x76\x35\xb0\xb5\ \x69\x51\x38\x76\x5d\x45\xe8\x2f\xd5\xe0\xbb\x9a\xa1\xf1\x56\xfc\ \xbb\xad\xff\x00\x31\xfe\xb5\x5f\x81\x3f\x3c\x1a\x8a\x7d\x96\xe9\ \xee\x0b\xd5\xed\xe0\xe6\x7e\x79\x91\xad\x4e\x8f\x42\xc9\x55\x15\ \xab\x6f\x95\x23\x3d\x2f\x0f\xff\x9c\x80\x02\x15\x0e\xa7\x8a\x8a\ \xb0\xff\x89\x05\x18\x21\x30\x34\xd4\x10\x60\xce\x8e\x0b\xec\x8d\ \x8c\x68\x14\x5f\x51\xb0\x81\xaf\xc6\xcc\x94\x54\x33\xb8\x82\xc0\ \x9b\x0b\xcc\xb4\x63\x54\xa6\x7c\x06\xd2\x90\x51\x71\x83\xfd\xa1\ \x97\x9f\xd6\x30\xc6\x50\x7d\xda\x89\x1d\x98\x85\x91\x94\x32\x1a\ \x6b\xaf\x80\x4b\xfc\xa4\x8e\xad\xca\x9a\x82\xa2\x16\x19\x1b\xf4\ \xf3\x48\xca\x98\x8f\xda\xf3\xf5\xe8\xe9\xb9\x05\x55\x51\x21\x2b\ \x32\xe5\x1b\x19\xb2\xa4\x42\xa3\xbe\x4a\x7d\x45\x53\xa0\xca\xd4\ \x96\x35\xd2\x81\x04\x9f\x24\x61\x52\x54\x24\xde\x7a\xfb\x4d\xb8\ \xca\x4e\xe2\x33\x6b\x12\x42\x2d\x7e\x34\x55\x19\x80\x8f\x6a\xd8\ \x8a\xc5\x31\x38\xd4\x2c\x63\xa3\xe6\xc2\x9c\x8c\x74\x33\x68\x8f\ \x5a\x5c\xc7\x4f\xe0\x53\xdb\x5c\x13\xd0\xea\x6e\x05\xf7\xfc\x96\ \x9f\x4c\xc0\xc1\x26\x19\xef\x6b\x95\x98\x9d\x9e\x66\x4e\x14\x44\ \x91\x40\x9c\xe9\x1e\x6e\xc8\x25\xd4\xe7\x87\xde\x43\x63\xdc\x80\ \x8f\x54\x45\x81\x2c\x2b\xa8\x3a\x79\x0a\xdb\x6d\x29\x26\xa0\xed\ \x5c\x0b\x01\x36\xb9\xd9\xb2\x9c\x38\x1c\xb8\xec\xc5\x07\xea\x69\ \x24\x67\x65\xc2\x59\x7e\x16\x1d\xed\x9d\xe4\x16\x09\xb2\xd7\x0b\ \xaf\x22\x41\x7a\xe0\x83\x24\x4b\x50\x24\x2f\xb9\x44\x36\xdb\xaa\ \x4c\xee\xa2\xe7\x81\xaf\x1f\xd1\xd1\x31\xd8\xbd\x77\x27\x9c\x87\ \x8f\x62\x7b\xd0\x4b\x08\x15\x75\x74\xb8\x7f\x05\x37\x6d\x63\x15\ \x5b\x96\x1b\x8f\xbd\x0d\x5e\x6c\x52\x2a\x90\xbc\x70\x21\xee\xf5\ \xf5\x41\xf7\x93\x8a\xfd\x1c\x7d\xe1\xe8\xc0\x1a\x37\x05\xd0\xb8\ \xcc\xb6\x51\x19\x5f\x3f\xe3\x32\xc6\x75\x3f\x04\x8b\x80\xf0\x88\ \x08\x9c\x29\x3b\x86\x6d\xc1\x69\xa6\x05\xdd\xee\x66\x70\x8e\x77\ \x2b\xd9\x92\xa5\x0e\xec\xfb\xd9\x8b\xcd\xea\x09\x02\x64\xfe\xaf\ \x18\x54\x12\xe0\xe3\xa0\x2c\x84\x5a\x75\xdc\x74\x37\x81\x8b\x7f\ \xe7\x34\x7b\x35\x77\x1a\xbe\xa9\xf7\x62\x8b\x5c\x86\x94\xec\x45\ \xa8\xaa\xac\x43\x77\x67\x2f\xb9\x88\xdc\x32\xe4\x22\xaf\xcf\xec\ \x1b\xcf\xb0\x8b\x8c\x13\x45\x6d\xaf\xf4\x00\x91\x51\x51\xd8\xb1\ \x6b\x3b\x2a\x4a\x4a\xb1\x35\x64\x31\x1d\x53\x1d\x77\x6b\x08\x30\ \x65\xbd\x93\x65\xe7\x3a\xb0\xe7\xa2\x0f\xdb\xbc\x87\x29\x06\x59\ \xd0\x0c\x1d\xf0\x02\x38\x1e\xc3\x81\x34\xf5\xf0\xb0\xf6\xa0\x10\ \x34\x5d\x33\x13\xdf\x99\xb2\xa3\xd8\x1c\x9a\x83\x11\xa2\x86\xfe\ \xea\x46\x70\x4f\xad\x3c\xc2\xb2\xd7\x24\xa3\xa8\xc1\x87\x0f\x6f\ \x16\x62\x51\xfe\x72\x0a\x9c\xf2\x48\xee\x31\xbe\xd5\x65\x07\xbf\ \xc5\xd6\xf0\x35\x08\x26\x7d\x78\x5d\xf5\x03\x00\x45\x1a\xc8\x9a\ \xd6\x20\x11\x63\x43\x05\x52\xf2\x7f\xcd\x44\x03\xc5\x50\xff\xdd\ \xfb\x3a\x09\x52\xa7\x43\xc2\xcc\x2c\xfb\x3b\xb0\x5f\x8b\x1a\x04\ \xce\x89\x28\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xed\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x03\xb4\x49\x44\x41\x54\x78\xda\xbd\x55\xdd\x6b\x5c\x45\ \x14\xff\x9d\xbb\xd9\x8d\xdd\x24\xfd\x48\x2a\x36\xa2\x0f\x8a\x68\ \x91\xaa\xb5\x50\x42\x2b\x48\x91\x12\x29\xe8\x83\xa2\x60\x11\x9f\ \xfc\x1f\xfa\x62\x8b\x8a\x54\x2c\xd2\x26\x29\xb1\x29\x22\xd6\x98\ \x54\x09\xa6\xd2\x62\x82\xf8\x49\xe9\x83\xa2\x0f\x5a\xda\x20\x29\ \xad\x49\x6d\x9b\x74\x37\xd9\x6c\x9a\xdd\x7c\x9a\x3b\x73\x7a\xe6\ \xe3\xde\xbd\x29\x56\x6b\x8a\x0e\x77\x98\x7b\xe7\xce\x9c\xdf\x39\ \xbf\xdf\x99\x33\x84\xff\xb8\xd1\xff\x02\x70\x6e\x27\xb1\x0e\x19\ \xe0\xa5\xb0\x41\x9a\xf0\xd0\x27\x7c\x5b\x4e\xd0\xc0\x8b\xc4\xf5\ \x4f\x3d\x8f\xfa\xe6\x9d\xe0\xc5\x05\x07\xa2\x19\x54\x55\x85\xe2\ \xb7\x3d\x28\x9e\x3c\x8e\x0d\x9f\x2d\x1f\x84\x7e\x79\x16\xbc\xbe\ \xa5\x17\x2b\xee\x6d\x04\xe6\xf2\xd6\x38\x58\x8b\xfb\x84\xd9\xe1\ \x21\x9c\x7b\x73\x17\x36\x9d\x58\x3e\x95\xf4\xd3\x0e\xf0\x86\x77\ \xbb\x91\xbd\x67\x05\x78\xae\x64\xdc\x07\x42\x0d\x4a\xa5\x30\x3d\ \xfc\x3b\x7e\x7b\x7b\x2f\x9a\xfa\x6f\x03\xe0\x87\x66\xf0\xa3\x07\ \xba\x51\xd3\x58\x0d\x5e\x98\xb2\xf6\xa1\x15\x28\x08\x50\x3a\x3f\ \x88\xd3\x7b\xf6\xa3\xaa\xe6\xef\x14\xfc\xeb\x69\xaa\x02\xb6\xf4\ \x81\xe8\xfb\xed\xe0\xcd\x07\xba\x50\xdb\x98\x91\x08\x04\xc0\x88\ \xa0\x0d\x8a\x80\x54\xaf\xc1\x7c\x31\x8d\x70\x76\x0a\x64\x64\x20\ \x76\x0e\x98\x91\xa5\x2b\x6d\xe9\x64\x63\xd2\x7c\x1b\xcb\x66\x14\ \xe7\xa6\x06\x4f\xe3\x42\xef\xfb\xa0\x6f\xb6\x81\x9b\xda\x3e\x46\ \xdd\xba\xb4\x00\x5c\x73\x00\xd1\x66\x79\xa8\x3a\x1b\x1b\xb2\xf3\ \x09\xc3\xf1\x9c\x71\x88\x95\x50\xeb\xf5\x13\x7a\xcb\x97\x2e\xe2\ \xe7\xb6\xf7\x40\x5f\x3e\x09\xde\xda\xda\x89\x95\x8d\x06\x60\xd2\ \x47\xc0\x96\x26\xbb\xd8\x6c\x56\xd1\x37\x57\x0c\x47\x20\xda\x03\ \xe8\xc4\x77\x00\x94\x46\x46\xf1\xe3\xe1\x2e\xd0\xf1\x2d\xe0\x6d\ \xed\x1f\x61\xd5\xba\x94\x68\x70\xcd\x6f\x84\x37\x24\x31\x2b\x55\ \xf1\xdc\x52\x27\x63\xa8\xdc\xa8\xbc\x13\x2a\xb4\x0e\xb0\x5f\x13\ \x48\x06\x4e\x5e\x1e\xc5\xa9\x8e\x6e\xd0\xb1\x26\xf0\xf6\xf6\x0f\ \xb1\xd2\x00\x58\x0d\x0c\x9f\xb2\x61\x7e\x42\x00\xa7\x01\x0b\xaa\ \xdc\x9c\xa5\x4d\xb9\x6e\xe6\xd2\xf5\x42\x87\xa8\x19\x48\x16\x64\ \xea\x64\x5e\xd6\x84\x8b\x92\xe1\x84\xe2\x95\x11\x9c\xec\xf8\x14\ \xd4\xb3\x19\xdc\x7c\xe8\x08\x56\xaf\xd5\xd0\x93\x67\xc4\xa0\x80\ \x2c\x94\x13\x3a\x78\x7a\xe4\x9d\x2d\x15\x11\x90\xe9\x8b\xf2\xcb\ \x44\xb0\x28\x7e\xa5\x11\x64\x56\x83\x6a\xee\x16\xbc\x3b\x31\x71\ \xe9\x32\xbe\xeb\x38\x0a\x3a\xba\x09\xbc\xa3\x6d\x1f\xd6\x64\x2f\ \x42\xcf\x16\x1d\xdf\xfe\x2c\x38\x5e\x43\x79\x22\x83\xde\x73\x1b\ \x85\x76\xc6\x0d\xa0\xf9\x67\x68\x13\x40\x43\x57\x10\x64\x30\x39\ \xb7\x0a\x5f\x77\x9d\x02\x75\x6e\x04\x3f\xd3\xf2\x16\xea\xeb\xae\ \x42\x4f\x17\xe2\xcd\xb1\xd7\x91\x41\x8e\x40\x5d\x04\x5a\x27\xe8\ \x4a\xac\x37\x9d\xc4\xa9\x89\xb1\x19\x7c\xd5\x3f\x0a\xfa\xe0\x11\ \xf0\x73\xad\x02\x50\x3b\x02\x5d\x1e\xf3\x99\x70\x33\x4a\x94\x3c\ \x09\x83\x3a\x12\xd8\xfd\x67\x1f\x51\x20\x09\x30\x91\x9f\x43\x7f\ \xdf\x55\xd0\xe1\x87\xc1\x2f\xb4\xbd\x81\x86\x9a\x2b\x02\x90\xb3\ \xec\x70\x94\x76\x3a\x29\xec\x0d\x94\x2c\x11\xdc\x38\xe3\xd6\x90\ \xe9\x72\x26\x0a\x63\xf3\x38\xd1\x97\x03\xb5\xaf\x07\xbf\xd4\xfa\ \x3a\x1a\x6a\xff\x80\x2e\xe5\x6d\x00\x71\xb8\x09\x03\x4b\x28\x51\ \xc9\x08\x54\xc5\xb8\x07\x32\x11\x14\xc6\x17\xf0\x79\x5f\x1e\xd4\ \xf2\x20\xf8\x95\xd6\x3d\x68\xc8\x0e\x43\x95\xc7\x2b\x87\xc8\x47\ \xa0\x63\xb1\x95\xd3\x80\x13\x94\x24\xbf\x63\xea\xb4\x4d\xd3\x71\ \x01\xe8\xf9\x42\x00\xf6\xdf\x0f\x7e\xf9\xe0\x6e\xdc\x95\x1d\x82\ \x2a\xe5\xe2\x62\xe7\x28\x49\x88\x78\x53\x4a\x94\x4f\x04\x9f\xd2\ \xd2\x52\x72\xd0\xf2\x05\x01\x38\x26\x00\xef\xdc\x07\x7e\xf5\xd0\ \x6e\xac\xcd\x0c\xc9\xf9\x1e\x8d\xf3\x5f\xeb\x5b\xe0\x3b\x34\xef\ \xa1\xbf\x43\x38\xae\xae\x52\x8a\x90\xcb\xfd\x89\xce\x5e\xd1\x60\ \xdf\x03\xe0\xc7\x9e\x7e\x02\x8f\x6f\xbc\x03\x6a\xa6\x20\x1b\x28\ \xce\x7f\x57\x36\xb8\x52\x93\x4c\xe5\x0c\x5d\xe9\xb0\x9e\xb3\xaf\ \x53\x37\xb4\x54\x8a\xf0\xeb\xc0\x0c\xce\x0e\x96\x1d\xe6\x5e\x89\ \x22\x0c\xff\xa1\xce\xff\x9b\x2b\x47\xd6\xca\x8d\x8b\xd7\x2e\xc8\ \x7d\xb0\xdc\x9b\xea\x56\xdb\x75\x05\x0e\xde\xc3\xbd\xe0\xf7\xe2\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x31\xce\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\xa2\x00\x00\x05\xa2\ \x01\x76\x73\x95\x66\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\ \x9d\x09\x90\x1c\xe7\x75\xdf\x5f\x77\xcf\xb5\x73\xec\x7d\x03\x8b\ \x5d\x2c\x2e\x02\x20\x71\x50\x20\x69\x1e\x32\xa1\xc3\x2e\x53\x8c\ \x42\x96\xe3\x24\x92\x22\xb9\xa8\x72\xca\x65\x47\x4e\x49\x39\x2a\ \xde\xb2\x2b\x15\xa5\x2a\x0e\xd7\xae\xca\xa1\x24\xb6\xa4\x4a\x5c\ \x46\xc5\x71\xa4\xc4\xb2\x45\x8b\xa2\xa8\x92\x28\x8b\xb0\x78\xc4\ \x22\x28\x02\x24\x00\x82\x00\x09\x72\xb1\xc0\x2e\xf6\xde\xd9\x99\ \xd9\x9d\xab\xa7\x53\xef\x9b\xee\xdd\x9e\x9e\xee\x99\xee\x9e\xee\ \x41\xf7\xcc\xfb\x55\x6d\x01\xbb\x3b\x3b\x3d\xd7\xff\xff\xbd\xef\ \x7d\xef\x7b\x1f\x27\x49\x12\x34\x9b\xc4\xf4\xf4\x09\x00\xc0\xaf\ \x09\x00\x38\x0d\x00\xdd\x00\x70\xbc\xe9\x0f\x84\x20\xee\x1c\x17\ \x00\x60\x1d\x00\x5e\x04\x80\x0f\xf0\xdf\xd4\xd4\xd4\x07\xcd\x7e\ \x34\x4d\x33\x80\xc4\xf4\xf4\x93\x00\xa0\x7c\x75\x35\xe5\xa2\x04\ \xe1\x2f\x92\x00\xf0\x0c\x7e\xa5\xa6\xa6\x9e\x69\xc6\x23\x77\xd5\ \x00\x12\xd3\xd3\x38\xba\x3f\x45\xa2\x27\x08\xcb\x28\x66\x70\x26\ \x35\x35\xf5\xa2\x5b\x2f\x9f\x2b\x06\x90\x98\x9e\x46\xd1\x7f\x89\ \xc2\x7a\x82\x70\x84\xb3\xb2\x11\x9c\x71\xfa\xe5\x74\xd4\x00\xe4\ \x11\x1f\x1f\xe4\xb8\x63\x77\x4a\x10\x84\xc2\x0c\x46\xd4\x4e\x46\ \x04\x8e\x18\x40\x62\x7a\x7a\x42\x16\xfe\xa3\x8e\x3c\x2a\x82\x20\ \x6a\x71\x56\x36\x82\x86\x93\x86\x7c\xa3\x77\x90\x98\x9e\xc6\x50\ \xff\x3c\x89\x9f\x20\x9a\x06\x6a\xed\xbc\xac\xbd\x86\xb0\x1d\x01\ \x24\xa6\xa7\xbb\xe5\x51\xff\x09\x7a\xdf\x09\xe2\x8e\xf1\x57\x72\ \x34\xb0\x6e\xe7\x01\xd8\x32\x00\x79\x1d\xff\x19\x9a\xeb\x13\x84\ \x27\xc0\xdc\xc0\x93\xa9\xa9\xa9\xf3\x56\x1f\x8c\xe5\x29\x80\x9c\ \xe8\x7b\x91\xc4\x4f\x10\x9e\x01\xb5\xf8\xa2\xac\x4d\x4b\x58\x32\ \x00\x79\x79\xef\xc7\xb4\xa6\x4f\x10\x9e\x03\x35\xf9\x63\x59\xa3\ \xa6\x31\x6d\x00\xf2\x1d\xff\x09\xbd\xef\x04\xe1\x69\xfe\xc4\x8a\ \x09\x98\xca\x01\xc8\xa1\xc5\x8f\xe9\x7d\x27\x08\xdf\xf0\x11\x33\ \xf5\x02\x75\x23\x00\x55\xc2\x8f\x20\x08\xff\xf0\x8c\xac\xdd\x9a\ \xd4\x8c\x00\xe4\xa5\xbe\xf3\x94\xf0\x23\x08\x5f\x82\xab\x03\x27\ \x6a\x2d\x11\xd6\x8b\x00\xa8\xac\x97\x20\xfc\xcb\xb8\xac\x61\x43\ \x0c\x0d\x40\xae\x32\xa2\x22\x1f\x82\xf0\x37\x4f\xd4\xaa\x18\xd4\ \x9d\x02\xc8\xb5\xfd\xe7\x69\xb9\x8f\x20\x5a\x82\xa4\x3c\x15\xa8\ \xda\x3b\x60\x14\x01\x9c\x21\xf1\x13\x44\xcb\xd0\x65\x34\x15\xa8\ \x32\x00\x79\xc9\x8f\x36\xf6\x10\x44\x6b\xf1\xa8\x5e\xa5\xa0\x5e\ \x04\xe0\x78\xd3\x01\x82\x20\x3c\x41\x95\xb6\x2b\x0c\x40\xae\x20\ \xa2\xac\x3f\x41\xb4\x26\xe3\xda\x2a\x41\x6d\x04\xd0\xf0\xfe\x62\ \x82\x20\x3c\x4d\x85\xc6\xb7\x0d\x40\x9e\x1f\x50\x0f\x3f\x82\x68\ \x6d\x8e\xab\x73\x01\xea\x08\xc0\xd2\x2e\x22\x82\x20\x7c\xcb\xb6\ \xd6\xd5\x06\xf0\x24\xbd\x9f\x04\xd1\x16\x6c\x6b\x9d\x19\x80\x7c\ \x68\x07\xad\xfb\x13\x44\x7b\xd0\x25\x6b\x7e\x3b\x02\xa0\xd1\x9f\ \x20\xda\x0b\x32\x00\x82\x68\x63\x98\xe6\xb9\xf8\xd3\x4f\xe3\x9e\ \xe1\x37\xe8\x93\x40\x10\x6d\xc7\x5e\x5e\x3e\xa5\x97\x20\x88\xf6\ \xe3\x34\x2f\x1f\xd1\x4d\x10\x44\xfb\x31\xc1\xcb\xe7\xf3\x13\x04\ \xd1\xa6\x11\x40\xb7\x07\x1e\x08\x41\x10\xcd\xa7\x9b\xa7\xf2\x5f\ \x82\x68\x5b\x8e\x37\x7c\x38\x28\x41\x10\xfe\x85\x0c\x80\x20\xda\ \x98\x00\xbd\xf9\x44\x2b\x30\x10\x0a\xc1\xa9\x44\x02\x62\x82\x00\ \x47\x62\x31\xb8\x9c\xc9\x40\x46\x14\xe1\x5c\x2a\x05\x4b\xf9\x3c\ \xbd\xc7\x06\x90\x01\x10\xbe\x06\x85\xff\x9b\xbb\x76\xc1\xe1\x58\ \xac\xe2\x69\x28\xdf\xff\xea\xc8\x08\xbc\x9d\xc9\xc0\x57\x6f\xdd\ \x22\x23\xd0\x81\xa6\x00\x84\x6f\x39\xd5\xd9\x09\xd3\xfb\xf6\x55\ \x89\x5f\x0b\xfe\x1e\x6f\xf7\x68\x4f\x0f\xbd\xd9\x1a\x28\x02\x20\ \x7c\x09\x8a\xf9\x37\x76\xed\x32\xfd\xd0\xa3\x82\xb0\x7d\xfb\xb3\ \x6b\x6b\xf4\xa6\xcb\x90\x01\x10\xae\x32\x24\x8a\xd0\x5f\x12\x21\ \x2a\x8a\x90\x07\x0e\xd6\x83\x41\x98\x11\x84\x86\x2e\x69\x55\xfc\ \x6a\xc8\x04\x2a\x21\x03\x20\x5c\xe1\x68\x21\x0f\x63\xc9\x24\xf0\ \x85\x42\xc5\xdd\xa3\xfc\x0e\xf3\x02\x64\xe2\x51\x78\x2d\x1a\x87\ \x2c\xc7\x59\xba\x7c\x23\xe2\x57\x20\x13\xd8\x81\x0c\x80\x70\x94\ \x88\x24\xc1\x23\xc9\x24\x84\xb6\x36\x0d\xef\x96\x2f\x89\x90\xd8\ \x48\xc1\xe9\xf4\x26\xbc\xd7\xd7\x07\xd7\x02\xe6\x3e\x86\x4e\x88\ \x5f\x81\x4c\xa0\x0c\x25\x01\x09\xc7\x40\xf1\x7f\x78\x6d\xb5\xa6\ \xf8\xd5\xa0\x11\x1c\x58\x5a\x64\xd1\x42\x3d\x9c\x14\xbf\x02\xde\ \x5f\xbb\x27\x06\xc9\x00\x08\x47\x50\xc4\x1f\xcc\xe5\x2c\xdf\xdd\ \xf8\xf2\x72\x4d\x13\x70\x43\xfc\x0a\xed\x6e\x02\x64\x00\x44\xc3\ \x34\x22\x7e\x05\x23\x13\x70\x53\xfc\x0a\xed\x6c\x02\x94\x03\x68\ \x23\x3a\x8b\x45\xd8\xb5\xb6\x06\xfc\x66\x06\x0a\xe9\x0c\x48\x62\ \x11\x82\xf1\x38\x40\x34\x06\xa9\xce\x4e\x98\x8d\x46\x2d\xbf\x18\ \x4e\x88\x5f\x01\x4d\x00\xfa\xfb\xe1\x52\x30\xc4\x7e\xd2\x0c\xf1\ \x2b\xb4\x6b\x4e\x80\x0c\xa0\x0d\x08\x4b\x12\x4c\x2e\x2f\x43\x71\ \x7e\x0e\x8a\x9a\xa7\x5b\x48\xa7\x01\xd2\x69\x88\x2c\x2e\xc0\x91\ \x78\x1c\x16\x77\x8f\xc1\x72\x28\x64\xea\x45\x71\x52\xfc\x0a\x8a\ \x09\xf4\x0f\x0e\x35\x4d\xfc\x0a\xed\x68\x02\x34\x05\x68\x71\x50\ \xfc\xfb\xde\xbf\xce\xc4\x5f\x0f\x34\x83\xde\x6b\xd7\x60\x12\x4d\ \xa1\x0e\x6e\x88\x5f\xe1\xa3\xa1\x50\xd3\xc5\xaf\xd0\x6e\xd3\x01\ \x32\x80\x16\x46\x11\x7f\xc1\x84\xa0\x15\x70\x5a\x20\x5c\x7f\xaf\ \xa6\x09\xb8\x29\xfe\x7d\xa3\xa3\xf0\xd0\xd1\xbb\x1d\xbf\x5f\x2b\ \xb4\x93\x09\xd0\x14\xa0\x45\xb1\x23\x7e\x35\xcc\x04\x26\xf7\xc1\ \x75\xcc\x11\xa8\xf0\xa2\xf8\x3b\x3b\x3b\xa1\xaf\xaf\x0f\x82\xc1\ \xe0\xf6\xcf\x6e\xdf\xbe\x0d\x1b\x1b\x1b\xb6\x1f\x4b\xbb\x4c\x07\ \xc8\x00\x5a\x90\x46\xc5\xaf\xa0\x35\x01\xaf\x89\x7f\x6c\x6c\x0c\ \x0e\x1e\x3c\x08\x1d\x1d\x1d\x55\xbf\xc3\x9f\xaf\xac\xac\xc0\xa5\ \x4b\x97\x6c\x1b\x41\x3b\x98\x80\x10\xfa\xf8\xc7\xbf\xec\x81\xc7\ \x41\x38\x84\x53\xe2\x57\xe0\xd7\xd6\xa0\x3b\x16\x87\xad\x60\xd0\ \x33\xe2\x8f\x46\xa3\x70\xea\xd4\x29\xd8\xbb\x77\x6f\xc5\xa8\xaf\ \x77\xbb\x5d\xbb\x76\xc1\xda\xda\x1a\x6c\x6d\x6d\xd9\x7a\x6c\xb8\ \xe3\x70\xb9\x50\x80\x99\x6c\xd6\xd6\xdf\x7b\x1d\x32\x80\x16\xc2\ \x69\xf1\x2b\x84\x37\x36\xe0\x01\xac\xd9\xd7\xd4\xf5\x3b\x81\x55\ \xf1\x63\xb8\xff\xc8\x23\x8f\x40\x5c\x33\x35\xb9\x91\x4c\xc2\x77\ \xaf\x5d\x63\x5f\x3f\xb9\x71\x03\x92\xd9\x2c\x0c\xc5\x62\x10\x0d\ \x85\x60\x64\x64\x04\x66\x66\x66\xa0\x54\x2a\xd9\x7a\xc4\xad\x6c\ \x02\x34\x05\x68\x11\xdc\x12\x7f\x50\x10\xe0\x60\x3c\x0e\x5c\x2a\ \x05\xa1\x70\x18\xf2\xbc\xb9\xbc\x71\x47\x34\x0a\xe1\x70\x18\x42\ \xf2\x92\x22\x8a\x2f\x9b\xcd\x42\x76\x6b\x0b\x8a\xc5\xf2\x62\xa4\ \x9d\x91\xff\xa1\x87\x1e\x82\x80\x6a\xef\x00\x0a\xff\x5f\xbd\xf0\ \x02\x3c\x77\xed\x5a\xd5\xed\x3b\xc3\x61\xf8\xc2\x7d\xf7\xc1\xef\ \x3c\xf2\x08\x8b\x16\xae\x5e\xbd\x6a\xfa\x5a\x5a\x5a\x75\x3a\x40\ \x06\xd0\x02\xb8\x2e\x7e\x51\x64\xdf\x73\xb9\x5c\x5d\x13\x88\x27\ \x12\x6c\x94\x0e\xe8\x6c\xf0\x89\xca\x85\x46\xc9\xf5\x24\xf4\xc7\ \xa2\x96\xe7\xfc\xc7\x8f\x1f\xaf\xb8\xdf\x3f\x7b\xeb\x2d\xf8\x8d\ \xe7\x9e\x33\xbc\xfd\x46\x2e\x07\x4f\xbf\xf4\x12\x8b\x06\x7e\xf7\ \xfe\xfb\x1b\x32\x00\x68\x51\x13\xa0\x65\x40\x9f\xd3\x2c\xf1\x2b\ \x30\x13\xd0\x09\xa5\x39\x9e\x87\xc1\xa1\x21\xe8\xed\xed\xd5\x15\ \xbf\x9a\x7d\xbb\x77\xd9\x4a\xf8\x61\xa6\x5f\xe1\x0f\x5f\x7b\xad\ \xa6\xf8\xd5\xfc\xd1\xb9\x73\xf0\x81\xcd\x1c\x80\x96\x56\x5b\x22\ \xa4\x08\xc0\xc7\x34\x5b\xfc\x0a\xda\x48\x00\xc5\x3f\x34\x34\xb4\ \x1d\xee\x2b\xdc\x58\x4f\xc2\x7c\x3a\x0d\x2b\xd9\xb2\xf8\x12\xc1\ \x20\x1c\xe8\xeb\x83\x87\xf7\x1f\xb0\xfc\x98\x30\xab\xaf\xf0\xdd\ \xab\x57\x61\xea\x47\x3f\xb2\xf4\xf7\x18\x2d\x7c\xd8\xf2\x55\xf5\ \x69\xa5\x48\x80\x0c\xc0\xa7\xdc\x29\xf1\x2b\x28\x26\x50\x08\x04\ \xaa\xc4\x8f\xa2\xff\xc9\xcc\x0c\x64\x34\x49\xc3\x05\x00\xf8\x95\ \x13\x27\x21\x60\x32\x8f\xa0\x80\x53\x0a\xf5\x52\xdf\x6f\x5b\x14\ \x3f\xf2\xe6\xe2\x22\x7c\xb8\xb3\xd3\xf2\xdf\x19\xd1\x2a\x26\x40\ \x06\xe0\x43\xec\x88\x1f\x47\xe9\x40\x40\x00\x81\x17\x80\xe3\xcb\ \x5d\x78\x4a\x62\x09\x44\x51\xdc\x4e\xca\x99\x15\xff\xf6\x7d\xe6\ \x72\x30\xd8\xd3\x53\x21\xfe\x6b\x2b\x2b\xf0\xd2\xec\xac\xee\xed\ \xfb\x63\x31\xb8\x6b\x60\xc0\xf2\x0b\xae\x0e\xfd\x71\x24\xc7\xc4\ \x9f\x55\x0a\x2e\xac\x60\xb4\x82\x09\x90\x01\xf8\x0c\x45\xfc\x62\ \x2a\x05\xbd\xb9\x3c\x44\x44\x11\x78\x49\x82\x12\xc7\x41\x56\x10\ \x60\x3d\x1c\x62\xff\x57\xe0\x38\x8e\x65\xe3\x75\xd7\xcb\xe5\xd6\ \x7c\x22\x1a\x41\xa1\x00\xfb\xa3\x1d\xa6\xc5\x8f\xe0\x5c\xbf\x13\ \xc5\x2f\x8a\x90\x13\x84\x9a\xe2\x47\xee\xb5\x59\xdf\xaf\x7e\xec\ \xcf\xda\x4c\xe4\xe5\x5d\x6a\x09\xee\x77\x13\x20\x03\xf0\x11\x6a\ \xf1\x0f\x6c\x65\x21\xa8\x4a\xc6\xa1\x09\x44\x8b\x45\xf6\xb3\xa5\ \x8e\x08\x33\x01\x14\x68\x24\x12\x61\x26\x50\x0b\x41\xe0\x61\x6f\ \xac\x0b\x38\x8b\x89\xb2\x44\x22\x51\xfe\x4f\x2e\x07\xe9\x52\xa9\ \xa6\xf8\x41\x8e\x00\x1a\x05\xd7\xf8\xed\x70\x28\x12\x71\xed\x8d\ \xf6\xb3\x09\x90\x01\xf8\x84\x5a\xe2\x57\x83\x3f\xc7\xdf\xaf\x75\ \x26\x20\xac\x29\x91\xcd\x8b\x22\x24\x73\x39\xd8\x54\x85\xc3\x41\ \x9e\x87\x91\x78\x1c\x02\xf9\x3c\x48\x3c\x6f\xa9\x58\x46\x3d\x2f\ \xff\xe9\xf5\xeb\x10\x96\x23\x01\x23\xf6\x74\x37\x9e\x3d\xdf\xb0\ \x59\x89\xf8\x90\x03\xe6\x53\x0b\xbf\x9a\x00\x2d\x03\xba\x44\x28\ \x93\x81\xae\xb9\x39\x18\xb8\x7e\x1d\xa2\xeb\xeb\x0d\x5d\xc4\xac\ \xf8\x15\xf0\xf7\x7d\x99\x0c\x70\xf2\xed\x44\xa9\x04\xb7\x33\x69\ \x78\x6f\x6d\x0d\x96\x37\x37\x99\x01\x28\x5f\x68\x08\x81\x52\x09\ \x0a\xa5\x52\xdd\x48\x41\x8b\xb2\xdc\x97\xce\xe7\x61\x21\x9d\x66\ \x39\x81\x70\x8d\x29\xc4\x8d\x75\x7b\xe2\xc0\x8d\x3d\x0a\x7b\xba\ \xba\x2c\xff\xfd\xe9\xde\x5e\x76\x82\x90\xdb\xf8\x71\x89\x90\x22\ \x00\x17\x18\xba\x72\x05\xa2\x73\x3b\xfb\xef\xe3\x1f\x7c\x00\x62\ \x47\x04\x96\x0f\x1f\x81\xcd\xee\x6e\x4b\x17\xb4\x2a\x7e\x05\xa1\ \x50\x84\xd8\xea\x2a\x6c\xf4\xf4\xc0\xcc\x46\x0a\x72\xa2\xb6\x15\ \xc8\x0e\x9d\x82\x00\xc5\x52\x89\x8d\x06\x68\x02\x92\x24\x59\x7a\ \x8c\x33\xaa\xa4\x1c\x33\x81\x70\x58\x37\x12\x58\xce\x64\x2c\xdd\ \xaf\x02\x6e\xe6\xc1\x2f\x5c\x0d\xf8\xf0\x9e\x3d\x2c\x11\x68\x16\ \x3c\x2b\xf0\x73\x43\x43\xb6\xae\x6b\x07\xbf\x45\x02\x14\x01\x38\ \xcc\xe8\x9b\xe7\x2b\xc4\xaf\x20\x6c\x65\x61\xf0\xfc\x79\xcb\xd1\ \xc0\xfe\x1b\x33\x35\xc5\xff\xec\xb3\xcf\xc2\xf7\xbf\xff\x7d\xdd\ \x1d\x6f\x68\x02\x91\xa5\x65\x10\x6b\x88\x1f\x76\x72\x81\x2c\x0a\ \xb0\x43\x41\xa7\x58\x48\x2f\x12\xf8\xd9\xad\x5b\xb6\xee\x1f\x39\ \x7f\xfe\x3c\xfb\xf7\x1f\xdd\x73\x8f\xe9\xbf\x41\xf1\xff\xeb\xbd\ \x7b\xd9\xa9\x40\xcd\xc4\x4f\x91\x00\x19\x80\x83\xa0\xf8\xc3\xcb\ \xab\x86\x77\x88\x21\xb9\x15\x13\xc0\xa6\x1c\xc5\xf5\xf5\x9a\x23\ \x3f\x8e\x8a\xb8\xc4\xf5\xca\x2b\xaf\xe8\x9a\x40\x87\x24\xc1\x91\ \xa2\x68\x2a\xd4\x93\xe4\x2f\xb3\xd4\x8a\x14\xf4\x4c\x00\x23\x80\ \x2b\x4b\x4b\x16\xae\xb0\x03\x3e\xb7\x73\xe7\xce\xc1\x83\xa3\xa3\ \xf0\x4f\x4e\x9d\xaa\x7b\xfb\x89\x8e\x0e\x26\xfe\x71\x17\x93\x7f\ \xb5\xf0\x8b\x09\xd0\x6e\x40\x87\xa8\x27\x7e\x05\x4e\x92\x20\xb6\ \xb0\x00\xf9\xee\x6e\x28\xd4\xf9\x70\x8e\x5e\xbf\x0e\x7d\xe9\x74\ \xcd\xb0\x1f\xb7\xbb\x2e\x2e\x2e\xb2\xed\xae\x73\x73\x73\x30\x38\ \x38\xc8\x42\x70\x35\xb8\x88\xd6\x2d\x49\xb0\x82\x49\x3e\x9d\xfb\ \x18\x8f\x46\x41\x90\xc5\xcc\xa6\x01\x26\x5f\x12\x5c\x9e\xc3\x1a\ \x80\x15\xbc\x76\x2a\x55\xfd\x5c\x45\x11\x04\x9e\x07\x51\x55\xf8\ \x83\x79\x80\x9f\xdb\x33\xce\x6a\x0e\xac\x92\x4e\xa7\xd9\xae\xbe\ \x8f\x4e\x4c\xc0\x03\x13\x13\x70\x7e\x69\x89\xe5\x30\xd4\xec\x8d\ \x46\xe1\x53\x83\x83\xf0\x6b\xa3\xa3\xd0\x6d\xf2\xc0\x11\x05\x34\ \x53\xdc\x65\x88\x7b\x16\xf0\x0b\xeb\x23\xec\xee\x20\x04\x79\x17\ \x21\xee\x20\x9c\x73\x61\x0b\xb5\x53\x70\xf1\xa7\x9f\xb6\x36\xe1\ \xf3\x39\xa1\x4c\x1a\x62\xb7\x17\x80\x2b\x96\x33\xe1\xb9\x9e\x5e\ \xc8\x0c\x0e\x36\xf4\xa4\xf4\xc4\x8f\x1f\x1e\xfc\xc0\x46\x63\x51\ \x08\x05\xab\x13\x50\x98\x71\x5f\x3c\x71\xc2\x30\x27\x30\xb4\xb5\ \x05\x07\x2e\x5c\x30\x35\xe7\x57\x47\x00\x28\x4a\xdc\x31\xd7\xa9\ \x53\xf5\x36\x23\xf0\x30\xaf\x53\x85\x77\xb2\xb7\x17\x94\xb1\x2a\ \xc8\x71\xa6\x0d\x00\x93\x80\xb8\xd5\x16\x2b\xfe\xbe\x75\xf9\xb2\ \xe1\xed\x24\x4d\x4e\xe0\xf1\xfd\xfb\xe1\xef\xdf\xfb\x21\x93\x57\ \xa9\x0d\x0a\x2c\x23\x47\x1a\x03\xc1\xa0\xa5\x64\x1f\x1e\x17\xfe\ \xc3\x8d\x0d\x78\x3d\x95\x82\x39\x55\x7e\xe2\x9e\xc1\x41\xb6\x83\ \xf0\xef\x1c\x3c\xc8\x12\x90\xb8\x89\xc8\x6e\x53\x91\x4d\x51\x84\ \x7f\x7a\xf5\x2a\xfb\xd7\x8b\xb4\x55\x04\xd0\x35\x33\x03\xd1\x2b\ \x6f\x03\x97\x4c\x02\x87\x59\xeb\x74\x1a\x02\xcb\x4b\x10\xdb\x48\ \xc2\xe6\xd0\xb0\xad\xfb\x34\x1a\xf9\xb1\xf0\x64\x65\x75\x05\x36\ \x37\x37\xd9\x72\x99\xa0\x19\xf1\x6a\x45\x02\x81\x62\x11\x8e\x5d\ \xba\x04\x21\x93\xd5\x6b\x78\xdf\x66\x22\x01\x89\x03\x16\x05\x68\ \xd9\x12\x45\x18\x95\x85\x13\xb0\xb0\x12\x80\xa3\x23\x56\x12\x76\ \xcb\xf5\x00\xb7\x0d\x2a\x13\xd5\x91\xc0\x70\x28\x04\xbd\xc5\x22\ \x64\xb2\x5b\x30\xd6\xa0\xf1\x22\x38\xca\xa3\xe8\xf1\x2b\x66\x21\ \xaa\xf8\xd6\xe2\x22\xfc\xc7\x1b\x37\xe0\x6a\x3a\x0d\x29\xcd\xeb\ \xbc\x98\xc9\xc0\x5f\xbc\xfd\x36\xab\x38\xfc\xd4\xbd\xf7\xb2\xd7\ \x16\xcd\x3c\x6d\xa3\xec\x1a\x97\x59\x8b\x92\x04\x97\x6d\x26\x40\ \xdd\xa6\x6d\x0c\x00\xc5\x1f\xf8\xe0\x7d\xfd\x49\x6e\x36\x6b\xcb\ \x04\x6a\x85\xfd\x38\x3a\x8a\xc5\x22\xe4\xf2\xf9\xba\x26\xb0\x39\ \x30\x00\xa2\x22\xc0\x62\x11\x4e\x5e\xba\x04\x1d\x9a\xa2\x1c\x6c\ \x6f\x35\x3b\x3b\xcb\x42\x6e\xad\xb0\x41\xc7\x04\xf0\x36\xfd\xfd\ \xfd\x15\xb7\x49\x73\x1c\xac\xe9\x18\x40\x4e\x14\x61\x30\x16\x63\ \x2d\xbf\x78\x8b\x4b\x81\x18\x7d\xe0\x3e\xff\xdd\xdd\xdd\x20\x72\ \x1c\x5b\x66\xd4\x03\x23\x99\x23\x89\x04\x9b\x6e\x20\x6b\xa9\x14\ \x33\x81\xd1\xbe\x3e\xe0\x2d\xee\x0d\x68\x94\xaf\xde\xbc\x09\xdf\ \x5f\x59\xa9\x7b\x2f\x6f\x2d\x2e\xc2\x78\x57\x17\x9c\x18\x19\x61\ \x86\x8a\xc6\x6a\xa7\xa4\x78\x22\x12\x81\xef\x60\xbb\x73\x0f\xd2\ \x16\x06\xb0\x2d\xfe\x5a\x58\x34\x01\x33\x73\x7e\x9c\x47\x9a\x31\ \x81\x08\x8e\x42\xa3\xa3\xdb\xe2\x8f\xeb\x8c\x16\x28\x7e\x0c\x45\ \x8d\x46\x77\x50\x99\x00\x0a\x0a\xc5\x1f\xd5\x1c\xf4\x71\x9b\xe7\ \x61\xd3\x40\xe0\x2b\xb9\x1c\x8c\xc7\x62\xac\xa2\xd0\x2a\x18\x05\ \x64\x32\x19\xe8\x0b\x06\x61\xa2\xb3\x13\x42\xf2\x73\x0c\x0b\x02\ \x0b\xcb\x31\x11\x87\x67\x0e\x24\xe4\xc7\x28\xca\x8f\x61\xa4\xb3\ \x0b\xa4\x62\x51\xf7\x75\x71\x0b\x14\xff\xdf\x58\x58\x89\xc1\x4d\ \x44\xd8\x54\x04\x5f\x53\x9c\x5e\xa9\x6b\x12\xcc\x82\x51\xc0\xb9\ \x8d\x0d\x48\x16\x6b\xaf\xc6\xdc\x09\x5a\x7e\x15\xc0\x94\xf8\x65\ \xa4\xb5\x35\xe8\x7f\xf3\x42\xdd\xdb\x99\x4d\xf8\x01\xdb\xc8\xd2\ \x0f\xf1\x58\x8c\x85\xcb\x0b\x18\xf2\xeb\x1c\x7f\x15\x4a\x26\x6b\ \x8a\x1f\x99\x9c\x9c\xac\x9b\xf1\x07\x39\x31\x77\xe8\xd0\xa1\x8a\ \x0d\x34\xc8\x06\xc7\xc1\x52\x8d\x91\x16\xd3\x65\xf3\xf9\x1c\x48\ \x16\x23\x00\x35\x38\xed\x29\x65\xb3\x30\xca\xf3\x70\x2c\x1a\x85\ \x93\xb1\x18\x1c\x88\x46\x2b\xe6\xe5\x4a\x3f\x81\x23\xbb\x76\xc3\ \x48\x77\x37\x8b\x38\x16\x16\x17\x5d\xd9\xac\xa3\x05\x45\x68\x45\ \xfc\x20\x77\x1c\x4a\xca\xad\xc0\x86\x87\xed\x4d\x13\x41\x5e\x92\ \xf4\x22\x2d\x6d\x00\x46\xe2\xc7\xd1\x18\xe7\x73\x7a\x19\xde\x7a\ \x26\x60\x94\xf0\xcb\xd6\xe8\x17\xa7\x35\x01\x2d\x28\x82\x5a\xe2\ \x07\x59\xd8\x4a\x72\xaf\x9e\x09\x54\x3d\x5f\x8e\x83\xab\x01\xe3\ \x0f\x60\x88\xe3\xd9\x5c\x7a\x3d\x9b\x83\x5b\x85\x7c\x43\x26\x60\ \x86\x43\xa3\xa3\x4c\xfc\x0a\xf8\xfc\x6f\x37\xc1\x04\xfe\x54\xe7\ \xb5\x37\x03\x46\x01\xa0\x6c\x7e\x72\x70\x4b\xb1\x17\x68\x59\x03\ \xa8\x35\xf2\xb3\x79\xae\x24\x31\x23\xb0\x62\x02\x46\x23\x3f\x9a\ \xc9\xc2\xe2\x02\xac\xac\x18\xcf\xf3\xd0\x04\x70\xf3\x4c\x48\xb3\ \x2b\x0f\x1f\x0b\x26\xc6\x6a\x89\x5f\xc1\x8e\x09\xa0\xf8\x2f\x07\ \x84\xed\x23\xc1\x30\x2c\xff\x87\x07\x0f\xc2\xc7\xc6\xc6\xd8\xf7\ \x71\x41\x80\xc1\xd0\xce\x63\x42\x13\xc8\xe4\xf3\x55\xc5\x3d\x4e\ \x71\x70\xef\x5e\x18\xec\xeb\xaf\xba\x37\x81\xe3\x60\x7e\x61\xc1\ \x35\x13\xc0\xd5\x82\x45\x9b\xcb\x71\x5d\xaa\xe9\x56\xad\x2e\xc4\ \x7e\xa4\x25\x0d\xa0\x5e\xd8\x8f\x3b\xe4\x78\x5e\xa8\x6b\x02\x7d\ \x97\x2e\x6e\x7f\x5f\x2b\xec\x0f\x85\xcb\x21\x6e\x3a\x93\xa9\x69\ \x02\xbd\x3d\xbd\x30\xa4\xca\x31\x28\xe2\x0f\x69\x46\x5c\xa5\xf4\ \x55\x0f\x3d\x13\x30\xa2\x28\x08\xb0\xd2\x99\x00\x41\x28\xaf\x87\ \xa3\xf8\x9f\xdc\xb7\x0f\xfa\x23\x1d\x70\x57\x4f\x2f\x3c\x3e\x3e\ \x5e\xb5\x56\xbe\x27\x14\x06\xbe\x50\x80\x42\x2e\x57\x65\x02\x4a\ \xa1\x10\x96\x0b\x2b\x5f\x56\x30\x12\xbf\x02\x36\x0a\x71\xcb\x04\ \x5e\x6b\xe0\x90\x90\x63\x0e\x94\x12\x7b\x75\x15\xa0\xe5\x0c\xc0\ \xd4\x9c\x9f\xe3\x20\x1a\xed\xa8\x6b\x02\xb0\xbc\x0c\x42\x3e\x5f\ \x77\xce\x1f\xed\x88\x42\x5f\x6f\x79\xce\x5d\xcf\x04\x14\x8c\xc4\ \x8f\x5c\xbc\x78\x11\xce\x9e\x3d\xcb\x12\x7f\x7a\x28\x26\x80\x73\ \x52\xa3\x90\xb4\x80\x75\x06\x91\x30\x5b\x82\x1b\x08\x08\x30\xde\ \xd1\x01\xbf\xb2\x6f\x3f\x13\xbf\xc2\x44\x57\x37\xdc\x3b\x3c\xb2\ \xfd\x3d\x8a\x3f\x50\xdc\x11\x1f\x33\x81\x62\x91\x2d\x63\x15\x54\ \x5f\xb9\x52\x09\xf2\xa5\x12\x33\x03\x4c\xde\x99\xc9\xe2\xd7\x13\ \xbf\x82\x5b\x26\xa0\x97\x34\x35\xc3\xe3\x07\x2a\xdb\x97\xad\x98\ \x58\x3d\xd0\x62\x35\xef\xd0\x4c\x5a\x6a\x33\x90\x95\x84\x9f\x62\ \x02\x9b\x9b\x5b\x50\x2a\x89\xcc\x04\x30\x6b\xae\xfd\x30\xef\xfe\ \xd9\xeb\xc0\x6f\xd6\xdf\x27\xaf\xf4\xa9\xc7\xb5\xff\xb4\xec\xf6\ \x7d\x06\x1f\xf8\x5a\xe2\x67\xcf\xa3\xab\x8b\x7d\xd0\x94\xfa\xf7\ \x31\x39\x5c\x57\x83\x26\x70\xdf\x7d\xf7\xe9\xfe\x3d\x8a\x5f\xe9\ \x09\x00\x2c\x0b\x2d\xc0\xc3\x7b\xf6\x54\x84\xb2\x0a\x63\xf2\xee\ \xba\xe5\xd5\xd5\x0a\xf1\x03\xdb\x45\x28\x41\x3e\x9b\x65\x4b\x8f\ \x01\x4d\xe8\x8b\xe2\x47\x13\x08\x48\x12\xab\xea\xe3\xd9\x56\x62\ \xfd\x62\x62\xb3\xe2\x57\x50\x4c\x60\x64\x68\xc8\xb1\x90\x5b\xb0\ \xb9\xd4\xf8\x05\xd5\x6b\x6c\x67\x05\x00\xf9\x9e\x47\x97\x00\xa1\ \x95\x22\x80\x5a\x09\x3f\xec\x45\x0f\x7a\xcb\x5b\x9a\x48\xa0\x58\ \xa8\x5c\xa6\xe9\xda\xdc\x82\x80\x4e\x89\xab\x11\x68\x02\xea\x48\ \x60\x75\xad\x3a\x6a\xa8\x27\x7e\xe4\xe8\xd1\xa3\xdb\xa2\x47\x13\ \x30\x8a\x04\xf4\xb0\x22\x7e\x05\x34\x81\x09\xcd\xaa\x01\x8e\xfa\ \xa2\xfc\x9a\x61\x76\xbf\x68\x30\x22\x2b\xb7\xc3\xe9\x00\xcf\x57\ \x3f\x27\xab\xe2\x57\x70\x3a\x12\x18\xb2\xb1\x27\x00\x47\x7f\xdc\ \x7d\xa8\xa0\x97\xc0\xad\xc7\x5f\x2c\x2e\x7a\xfa\x40\x91\x96\x30\ \x80\x5a\x23\x3f\x86\xf6\x98\xa5\xc7\x91\xbe\x96\x09\xe0\x41\x16\ \xc1\xd0\x4e\x40\x84\xe2\x17\x8a\x05\x28\x09\x95\x41\xd2\xcc\x8d\ \x19\x98\xbd\x39\xab\xbb\x9c\x07\x1a\x13\x28\x68\xda\x50\x99\x11\ \xbf\xc2\x89\x13\x27\x2c\x9b\x80\x1d\xf1\x2b\xf4\x74\x76\xc2\x6e\ \x39\x3f\x81\x82\x2e\x69\x5e\xab\x5a\x26\x20\xca\xd3\x27\x6d\x5e\ \xc0\xae\xf8\x15\x9c\x34\x81\x87\xfa\xfb\xd9\x41\x21\x66\xc1\x72\ \xe0\xaf\x3f\xfe\xf8\xf6\xad\xb1\xb8\xca\x8a\x11\x83\x1c\xfa\x7f\ \x4b\x5e\x41\xf0\x2a\xbe\x2f\x04\xaa\x17\xf6\xe3\xd2\x0d\xce\x63\ \x25\x09\x8d\x40\x84\x60\x30\xc0\x44\x5f\x01\x1b\xbd\xf8\xed\x0f\ \x2f\x13\x7f\x21\x0f\xa5\x8e\x0e\x56\xb3\xaf\x66\x4b\x3e\xd9\xc6\ \xa8\xb0\x07\xc1\x90\xb9\xbb\xab\xbb\xe2\xf8\x2a\x2b\xe2\x57\xc0\ \x39\x3e\x5e\x0f\x13\x82\x18\x7e\xe2\x14\xa5\xcb\xa0\x21\x46\x23\ \xe2\x57\xe8\xc0\x93\x7c\x82\x01\x58\x35\x88\x7a\xb0\xe0\x87\x8d\ \xf4\xda\x62\x26\x6c\x3f\x26\xbf\x4e\xca\x0e\xc1\x46\xc5\xaf\x80\ \xaf\xdb\x06\xee\xa9\x68\xb0\x58\x88\x2f\x95\xe0\xe8\xa1\x43\xf0\ \xc2\xfb\xf5\xa7\x88\x28\xfe\xe7\x3f\xf3\x19\xe8\x52\x45\x0d\xb8\ \x13\xd1\xca\xf9\x82\x28\x7e\x2c\x3a\xf2\x3a\xbe\x36\x00\x33\x73\ \x7e\x4e\xee\x8d\x57\xd7\x04\x94\xfb\x54\x89\x5f\x3d\xfa\x07\x31\ \x1a\xe0\x05\x26\x42\x5c\xf3\xaf\x67\x02\x6a\x6a\x65\xfb\x5f\x7f\ \xfd\x75\xf6\xef\xa0\x41\x5d\xbc\xda\x04\x70\x24\xd4\xcb\x07\x38\ \x21\x7e\x85\x8e\x70\x04\xc2\xc1\x20\xac\x1b\xd4\xbd\xeb\x99\x00\ \x27\x8f\xd6\x0a\x07\x26\x26\x1c\x11\xbf\x82\x13\x26\x80\x91\xe0\ \x63\xc7\x8e\xb1\x48\xef\x25\x83\xbe\x82\x18\x21\xfc\xf3\x07\x1f\ \x84\x33\x4f\x3c\x01\x11\xd5\xea\xc8\x85\x0b\x17\x2c\xcd\xff\xfd\ \x22\x7e\xf0\xf3\x6e\x40\x4b\x09\x3f\xf9\x03\x80\x82\xc5\x69\x00\ \xcf\x84\xdc\x51\x65\x02\x46\xe2\x0f\xe5\x72\x20\x89\x05\xe0\x84\ \x20\xe4\xc3\x61\x10\x4b\x22\xab\xb9\xc7\xb0\x98\x57\x0e\xc5\xd0\ \xd9\xf1\x07\x75\x46\x7e\x14\x35\x66\xfb\x41\x4e\xf4\x61\xd8\x6f\ \x04\x26\x05\x31\x21\xa6\xcd\xfa\x3b\x29\x7e\x35\x2b\xc9\x24\x7c\ \x70\x7b\xde\xf0\xf7\xea\xc4\x20\x3e\xc7\xb0\x2c\xcc\x7d\x7b\xc6\ \x61\x50\x93\x4f\x70\x0a\xcc\x37\x8c\x0c\x0e\xda\x4e\x0c\xe2\x6b\ \x87\xab\x27\xb8\xf3\x0f\xbb\x0b\x63\xad\x3f\x76\x33\xc2\x79\xfe\ \xb1\xc1\x41\xf6\x6f\x97\x26\x57\x80\xe2\xb7\x12\xfa\xfb\x49\xfc\ \xe0\x57\x03\xa8\x95\xf0\xc3\x11\xc2\x68\xc9\x47\x6d\x02\x38\x12\ \xa8\x47\x93\x7a\xe2\x57\xb0\x62\x02\x66\xc2\x7e\xfc\x70\xa9\xb3\ \xfd\xb5\x4c\x40\x0b\x9e\xcc\xb3\x14\x09\x6f\x4f\x53\x9c\x12\xbf\ \x82\x59\x13\xc0\x1d\x84\xb8\x12\xb0\x7f\x7c\x1c\x06\x7a\xdd\x11\ \xbf\x02\x7e\x58\x07\x07\x06\x6c\x9b\x00\x46\x54\xf8\x1a\xd7\x3b\ \xbe\x0c\xa3\x2e\x7c\x5f\xac\x2c\xfb\xf9\x4d\xfc\xe0\xc7\x29\x40\ \xad\x91\x3f\x97\xcd\x42\x49\x14\x59\x02\x4b\xef\x0d\xc6\xd0\x15\ \xc3\xff\x40\x20\x58\x5e\x16\xd2\x99\xf3\x2b\xe2\xc7\x24\xdf\xc6\ \xad\x9b\x4c\xfc\x15\x47\x5e\x49\x25\x08\x94\x24\x90\x82\xc1\x8a\ \xe9\x00\x1e\xb8\x11\x51\x8d\x1e\x66\xe7\xfc\x38\xa7\xc7\xfb\xc1\ \x10\x13\x23\x02\xfc\xe0\x99\xa9\x39\xcf\x63\xe5\x5c\x28\x04\x45\ \x9e\x63\x99\xdc\x90\x10\x70\x54\xfc\x48\x34\x62\x6e\x3a\x80\xb7\ \xc1\xb0\xdf\x6d\xf1\x83\x3c\xdd\xc8\xe0\xd4\x2b\x12\xb1\x35\x1d\ \xc0\xaa\x4d\xdc\x50\xa5\x17\x4d\x81\x1c\x69\x5d\xbb\x76\x8d\x89\ \xbf\x15\xe7\xfc\x5a\x7c\x15\x01\xd4\x0b\xfb\x8b\xf2\xd6\x54\x04\ \x47\xa6\x88\x89\xa5\x1f\xa3\x91\xbf\x94\x4c\xc2\xc2\x5c\xb9\x87\ \x5d\x6f\x5f\x6f\xd5\x79\xf4\xea\x48\x20\xb5\x91\x62\xd7\x52\xae\ \x67\x27\xe1\x67\x25\x12\xc8\xf3\x1c\xcc\x07\xf1\x00\x90\xf2\xf7\ \xf8\x61\x3e\x3d\x3e\x0e\x5d\x61\x77\xda\x5f\xd5\x8a\x04\xf0\xb9\ \x7e\xe8\xe8\xdd\x30\xd4\xef\xdc\x9c\xdf\x0c\x68\xf2\x43\x0d\x4c\ \x07\x14\xd0\x04\x94\xfb\xb0\x53\xe4\x03\x3e\x16\x3f\xf8\x29\x02\ \x30\x33\xe7\xe7\xe5\x82\x14\xa5\x95\x93\x51\x24\xb0\x7d\x9f\x35\ \xc2\x7e\x81\x93\xd8\xfd\x60\xe2\x0d\x47\x02\x21\x20\x18\x46\x02\ \x28\x7c\xf5\x75\xba\x02\x81\xaa\xdd\x5f\x38\xba\xb3\x0e\x41\x9a\ \x2d\xba\xdb\x7f\xa3\x89\x04\xf4\xb6\xf3\x82\x1c\x02\x97\x82\x41\ \xc8\x08\x3c\xfb\x3f\x86\xde\xa7\xc7\x27\xaa\xe6\xae\x4e\x52\x2b\ \x12\xb8\xf7\xc8\x11\x18\x1e\x68\xbc\xb1\x87\x55\x30\xf2\xc0\x5a\ \x8b\x46\xb7\x12\xe7\x72\x39\xf6\xfe\x5a\x19\xed\xd5\xf8\x59\xfc\ \xe0\x17\x03\xb0\x92\xf0\x33\x6b\x02\x66\xe6\xfc\x4a\x5f\xb8\x7a\ \x26\x20\x6a\xee\xbf\x2f\x1c\x06\xed\x47\x12\xb3\xfd\xb8\x9f\xbf\ \x56\x88\xaf\x98\x00\x5e\x0f\x5b\x6d\x55\x75\xf4\x61\x49\x3f\x0e\ \x93\x19\x10\xe7\x38\x28\x04\x83\xf0\xe8\xc4\x5e\x57\xc5\xaf\xa0\ \x35\x01\x14\xe0\xbd\x87\x8f\xc0\x68\x13\x5b\x6e\x6b\x71\xca\x04\ \xec\xe2\x77\xf1\x83\x1f\x0c\x40\x4f\xfc\xb8\x9c\x57\xc8\x17\x40\ \x02\x49\xb7\x0e\x5d\x6b\x02\x42\x20\x50\x71\x3b\xb3\x09\x3f\xb0\ \x61\x02\xb9\xfe\x5e\xe8\x15\x4b\xba\x8d\x35\xcc\xcc\xf3\xd1\x04\ \x70\x0a\x60\x28\x7e\x19\x4c\xbc\xdd\xbf\x6f\x3f\x24\x9a\xd8\xf5\ \x56\x31\x81\x8d\x4c\x06\xee\x3d\x7c\xf8\x8e\x8a\x5f\xe1\x4e\x99\ \x40\x2b\x88\x1f\xbc\x6e\x00\x46\x23\x3f\x8a\x3a\x27\x27\xdf\x50\ \xd8\xda\xc2\x14\x50\x4c\x80\x19\x81\xc0\x4e\xc5\x55\x8a\x7c\x42\ \xa2\x08\x91\xec\x56\x85\xf8\xd9\xe9\xb8\xa9\x14\x70\x25\x71\xfb\ \xe4\x5c\x35\x5a\x13\x88\x6a\x56\x10\x14\x13\xd8\x1c\x1e\x84\xb9\ \x63\x27\xa0\x0b\x43\x7d\x4d\x48\x69\x37\xd9\x07\x7a\xe2\x17\x04\ \x38\x72\xe0\x20\xc4\x34\x47\x7f\x35\x03\x34\x81\xc1\x9e\x5e\xd8\ \x35\x32\xd2\xf4\x6b\x1b\xd1\x6c\x13\x68\x15\xf1\x83\x97\x4b\x81\ \x6b\x85\xfd\xf8\x26\x2b\x6b\xd0\x2c\x0b\x6f\x50\x2a\x8a\xa1\x3f\ \x6e\xd5\xe5\xb8\x9d\xa7\x19\x11\x8b\x55\x23\x7f\x7e\x65\x85\x25\ \xfc\x70\x59\x0f\x8f\xcc\xd6\xa3\xaf\xbf\x8f\xed\xe7\x37\x5a\x62\ \x94\x02\x02\x04\x63\xe5\xe6\x98\xb3\x06\xe2\x50\x27\xf7\xd4\x49\ \xbf\x5a\x78\x49\xfc\x0a\xb8\x82\xb2\xe4\xb1\x0d\x2e\xcd\xea\x2c\ \xd4\x4a\xe2\x07\xaf\x46\x00\x66\xe6\xfc\x28\x6e\x9c\xdf\x2b\xb5\ \xfe\x46\x91\x80\x1a\x1c\xdd\xb9\x9e\x5e\xe0\x73\x3b\x35\xfa\x18\ \xf6\xf3\x52\xb9\x3e\x40\xe9\xec\x83\x23\xb5\x5e\x24\x80\x23\x0c\ \xae\x06\x54\x8d\x32\xe1\x08\x6c\x76\x75\x82\xb4\xb5\x09\x3d\xd9\ \x1c\xeb\xf4\xdb\x2d\xb7\xf9\xaa\x7a\x6e\x9a\x48\x00\xaf\x69\x54\ \x05\xe8\x45\xf1\x2b\xe0\xeb\x9e\xcd\xe5\x20\x66\x90\xd4\xbc\x13\ \x60\x24\x90\xdc\xdc\x84\x98\xcd\x25\xc2\x7a\xb4\x9a\xf8\xc1\x8b\ \x11\x40\x62\x6e\xce\x74\xc2\x8f\x65\xdf\x4d\x44\x02\x20\x8b\x3f\ \x73\xf7\x31\xd8\x54\xad\x55\x2b\x73\xfe\x60\x28\xc8\x0a\x79\xd0\ \x44\xb0\xb0\xa7\x56\x24\x50\x85\x2c\xfe\xed\xc7\xb4\xb6\x02\x47\ \x2f\x5f\x62\xcd\x38\x72\x06\xd1\x82\x3a\x12\x48\xaa\xce\xd5\x53\ \xe3\x65\xf1\x2b\xe0\xeb\xed\xb5\x48\x00\x3f\x0d\x73\x4b\x4b\x8e\ \x47\x02\xad\x28\x7e\xf0\x62\x1d\xc0\xc0\xcb\x2f\x41\x49\x35\x72\ \x96\x13\x7e\x45\x08\x04\x03\x86\x8d\x27\xd4\xe2\x8f\x2b\x67\xd6\ \xab\x50\xc4\xbf\x25\x1f\xd5\xb4\xe7\xd5\x57\xa0\x63\x3d\x59\x95\ \xf0\xc3\xc4\x22\x6e\xf9\xc4\xd1\x0d\x13\x7d\x38\x32\xf3\x42\x0d\ \x8f\xd4\x88\x3f\x86\xdd\x78\x8b\xd8\x28\xa3\xb4\x5d\x27\x10\x2c\ \x14\x20\x6c\xb1\x15\x95\x1f\xc4\xaf\x06\x4d\x78\xa0\xc9\x75\x00\ \xf5\xc0\x77\x76\xb4\x81\x8a\x41\x35\xad\x2a\x7e\xf0\x5a\x04\xd0\ \xb1\xb6\x56\x21\x7e\x60\xa1\xa6\x04\xf9\x7c\xce\xb8\x6b\x8f\x1c\ \x09\x04\x43\x21\xdd\x29\x80\x56\xfc\x08\xdf\xdf\xcf\x44\xaa\x45\ \x1b\x09\xac\xae\xd6\xe8\xfc\x5b\x43\xfc\x08\xab\x20\xc4\x8e\x3a\ \xc1\xa0\x61\x24\xa0\x87\xdf\xc4\x0f\x1e\x8e\x04\x6e\xd8\x3c\x87\ \x50\x4d\x2b\x8b\x1f\xbc\x66\x00\xbc\x4e\xd8\x86\x09\xa7\xba\xad\ \xbb\xe4\x96\x4f\xda\xc2\x19\x3d\xf1\x8f\xbf\xf7\x1e\x14\xd7\x56\ \xcb\x3f\xd3\x31\x0c\xb5\x09\x88\x46\x8d\x31\xeb\x88\x5f\x41\x31\ \x81\x52\x40\x00\x51\x27\xa7\xa0\xc5\x8f\xe2\x57\xf0\x9a\x09\x64\ \x25\x09\xbe\x9a\x4c\xc2\xd7\x1a\x38\x91\xb8\xd5\xc5\x0f\x5e\x33\ \x00\x3c\xa3\xaf\x2a\xf9\x66\xb6\x7f\x9f\x06\x23\xf1\x8b\x2b\xe5\ \x51\x01\x37\xd0\xd4\x32\x81\xdd\x63\xbb\x61\x68\x58\x67\x9d\xdb\ \xa4\xf8\x15\xd0\x04\x84\x6c\x16\xd0\x4a\x8a\x35\x4a\x83\xfd\x2c\ \x7e\x05\xaf\x98\x00\x8a\xff\x8f\x36\x36\xe0\x96\x28\xb2\x73\xfa\ \xed\x98\x40\x3b\x88\x1f\xbc\x98\x04\x14\x47\x77\x57\xff\xd0\xa2\ \x09\xd4\x13\xbf\x42\x2d\x13\xd0\xc5\xa2\xf8\xb7\xaf\x23\x95\x7f\ \x8f\xb5\xfb\x7a\x26\x80\x3f\xf7\xbb\xf8\x15\x98\x09\xd8\xac\xa9\ \x77\x02\xb5\xf8\x15\xd0\x04\xfe\xc3\x8d\x1b\xa6\x0f\xe8\xc4\x36\ \x5e\xed\x20\x7e\xf0\xe2\x32\x60\xb6\xb7\x97\x1d\xd1\x05\xda\x3e\ \x6a\xf2\x4e\x3e\x6c\xe8\x81\x82\xc2\x36\x54\x7a\x09\x1e\xb3\xe2\ \x57\xdf\x6f\x11\x73\x08\x98\xa8\xab\x75\x2c\x96\x4d\xf1\x57\x5c\ \x0a\x38\x76\x40\x27\x1e\x8d\x25\x01\xc7\xf6\xf0\xe3\xd4\xa0\xa4\ \x31\x05\x7c\x5e\xd8\x9e\xab\xd9\x67\xe6\x39\x05\xee\xc8\xcc\xe6\ \xf3\x4d\x5f\x22\xd4\x13\xbf\x02\x1e\xd1\xfd\xc2\xda\x1a\xeb\x29\ \x80\x67\xf5\x05\x75\x5e\x5b\x3c\x39\xe8\xbf\xcc\xce\xc2\xab\x06\ \x2b\x33\xad\x88\x67\x77\x03\xe2\xc1\x1c\xd8\x9b\xbf\x0a\x49\x62\ \x59\x7f\x8e\xe7\xab\x8a\x72\x2c\x8b\x5f\xfd\xb7\xa5\x12\x4b\x42\ \x82\xde\x28\xe1\x80\xf8\xb7\xaf\x63\xf2\xf0\x6d\x1c\xfd\x8f\x1e\ \x38\x78\x47\x6a\xdc\x9d\x22\x80\xa7\xf6\xba\xd4\x1c\x44\x4b\x2d\ \xf1\xeb\x81\xe7\x15\xaa\x37\x6c\x79\xb5\x6f\xbf\xdb\x78\x7a\x3b\ \xb0\xa1\x09\xe8\xd0\x88\xf8\x15\x98\x09\xa4\xd2\xd8\x58\xa0\xfc\ \x13\x5e\x00\x29\x12\x86\x2d\xd5\x56\xe0\x30\x1e\x71\x6d\x53\xfc\ \xdb\xd7\x21\x13\x70\x14\xab\xe2\x27\x76\xf0\x74\x8c\xb9\x7c\xec\ \x38\x70\x2a\x41\x1b\xe1\x84\xf8\x41\xce\x09\xe0\x48\xbf\x39\x38\ \x58\xfe\xea\xef\xab\x10\x3f\xc8\x1d\x73\x25\xa1\xb1\xb3\xf3\x24\ \xdd\x33\xca\xab\xc9\x6c\x6d\xc1\xa5\x6b\x57\x8d\x57\x23\x7c\x40\ \x31\x9f\x87\xdb\xb5\x96\x53\x1b\x84\xc4\xdf\x18\x9e\x9f\x64\xd6\ \x33\x01\xa7\xc4\x6f\x16\x9c\x43\xce\x01\x98\x4f\x1c\x1a\xd0\x4e\ \x26\x20\xe5\x72\x30\x6f\x32\x92\xb3\x02\x89\xbf\x71\x7c\x91\x65\ \x42\x13\x00\x9d\x4a\xb3\x66\x8b\x5f\x81\x4c\xc0\x06\xd9\xac\xa3\ \x26\x40\xe2\x77\x06\xdf\x74\x04\xda\xc2\xb2\x5c\xdc\x86\x1b\x10\ \x58\xb3\x0d\x71\x70\x08\x92\x47\x8e\x42\x5e\x15\xa2\x0f\x2f\x2e\ \x02\x37\x6f\xbf\xf0\xc3\x0a\x98\x01\xc8\x70\x1c\x24\x30\x9b\x5c\ \x6b\xf5\xc0\x04\x66\x72\x02\xd8\xd6\x7c\x1d\x3b\x05\xe1\x66\x26\ \x9f\xae\x0e\x40\xb1\x08\xe9\x62\x11\x12\x0d\x2e\x6f\x92\xf8\x9d\ \xc3\xb7\x6d\xc1\x8d\x68\x46\x04\xa0\x06\x1b\x73\x8c\x02\xe8\xaf\ \x1e\x58\xa0\x9d\x12\x83\x10\x89\xc0\x88\x89\xdc\x8e\x1e\x24\x7e\ \x67\x69\xb9\xd3\x81\x67\xf6\xed\x03\xa1\x6f\xa0\x69\xd7\xa3\xe9\ \x80\x0d\x6c\x4e\x07\x48\xfc\xce\xd3\x72\x06\x00\x64\x02\xfe\xc0\ \xa2\x09\x90\xf8\xdd\xa1\x25\x0d\x00\x7c\x6e\x02\xf7\x1c\xd0\x3f\ \xf3\x5f\x4d\x3b\x99\x00\x89\xdf\x3d\x5a\xd6\x00\xc0\xa7\x26\xf0\ \xc4\x47\x46\xe0\xf7\xbe\x78\x18\x3e\xf6\x73\xf5\x1f\x77\x3b\x98\ \x00\x89\xdf\x5d\x5a\xda\x00\xc0\x67\x26\x30\xb9\x3b\x06\x9f\xfe\ \x44\x79\x33\xd4\x17\x3f\x3b\xd9\xf6\x26\x40\xe2\x77\x9f\x96\x37\ \x00\x70\xd0\x04\x7a\xa3\x3c\x3c\x7e\x28\x08\x1d\xc1\xda\x19\x7b\ \xbb\x26\xf0\xa5\xcf\xed\x83\x58\xc7\xce\xdf\xb4\xb3\x09\x90\xf8\ \x9b\x43\x5b\x18\x00\x38\x64\x02\x0f\x8d\xf1\x10\x90\x8a\xf0\xb1\ \x49\xc1\x71\x13\xf8\xcc\x27\x76\xc3\xde\x5d\xd5\xbb\xe7\xda\xd1\ \x04\x48\xfc\xcd\xa3\x6d\x0c\x00\x1a\x34\x81\x0f\xef\x0d\x81\x20\ \x95\x3f\x90\xf8\xaf\x93\x26\xa0\x0e\xfd\xf5\xb0\x62\x02\x97\xdf\ \xbd\x06\x45\x13\x0d\x53\x3c\x4b\x36\x0b\x3f\x5d\x5a\x22\xf1\x37\ \x89\x96\x31\x80\x28\x27\xc2\x5d\xa5\xfa\x9b\x4e\xec\x98\xc0\xae\ \x2e\x01\x7a\x83\x95\xed\xca\x9c\x34\x01\x0c\xfd\xeb\x61\xc6\x04\ \x58\x5b\x6c\x49\x82\x0b\x37\x6e\xf8\xda\x04\x0e\x88\x22\x3c\xa6\ \xd3\x52\x9d\x70\x9e\x96\x31\x80\x13\x4b\xef\x40\xe4\xdd\x77\xe1\ \x58\xb1\x7e\x15\xa0\x55\x13\x38\x39\xac\x2f\x72\x27\x4c\x00\xb3\ \xfe\x7a\xa1\xbf\x1e\xb5\x4c\x80\x93\x1b\x9b\x88\x1c\x0f\xe9\x5c\ \xce\xf7\x26\x70\x94\x4c\xa0\x29\xb4\x84\x01\xdc\x5b\x98\x87\xcd\ \xd5\xf2\xa1\x95\xfc\xf5\xf7\x1d\x35\x01\x75\xe8\xaf\x47\x23\x26\ \x30\xd8\x17\xae\x19\xfa\xeb\xa1\x67\x02\x6a\xf1\x2b\x90\x09\x10\ \x66\xf0\xbd\x01\xec\x86\x4d\x28\xbd\x3f\x5b\xf1\x33\xa7\x4c\x40\ \x2f\xf4\xd7\xc3\xae\x09\xfc\xfa\xdf\x9b\xa8\xc8\xfa\x9b\x45\x6d\ \x02\x7a\xe2\x57\x20\x13\x20\xea\xe1\x7b\x03\x18\xbb\xfd\xae\xee\ \xcf\x9d\x30\x81\x13\xc3\xe6\x5f\x1e\xab\x26\x70\xcf\xa1\x6e\x78\ \xe0\x98\xbd\x0d\x31\xa0\x32\x01\x23\xf1\x2b\x90\x09\x10\xb5\xf0\ \xb5\x01\xdc\x9f\xbb\x09\x5b\x1b\x59\xc3\xdf\x37\x62\x02\xf7\xee\ \x0e\xb2\x25\x3f\x2b\x58\x31\x81\xa7\x7e\x79\x8f\xa5\xfb\xd6\x03\ \x4d\xe0\x17\x4f\xd6\x2f\x1b\x26\x13\x20\x8c\xf0\xad\x01\xf4\x71\ \x39\x10\x6f\xcd\xd7\xbd\x9d\x1d\x13\x40\x01\x8f\x45\xed\x2d\x43\ \x99\x31\x81\x27\x1e\xe8\x87\x83\x26\x13\x7f\xf5\xf8\xe2\x67\x26\ \xe0\xb1\x13\xf1\xba\xb7\x23\x13\x20\xf4\xf0\xad\x01\x1c\x5a\x7a\ \x0f\xc4\xa2\xb9\xdd\x73\x56\x4d\xe0\xd4\xee\xa0\x7c\x54\x87\x3d\ \xea\x99\xc0\x6f\x3e\xb6\xcb\xf6\x7d\xeb\x41\x26\x40\xd8\xc5\x97\ \x06\x80\xeb\xfd\x4a\xd6\xdf\x2c\x66\x4d\x20\x7b\x70\x0c\xfa\x22\ \x8d\xf7\x48\x31\x32\x01\x14\xff\x48\xaf\xf9\xb3\x02\xcd\x42\x26\ \x40\xd8\xc1\x77\x06\x80\x05\x3f\x5d\x73\x33\xb6\xfe\xd6\x8c\x09\ \xfc\x3c\xbf\xc8\x4e\xf5\xe5\x84\x80\xcd\x47\xb8\x83\xd6\x04\x12\ \x1d\x02\x7c\xf6\xf4\x70\xc3\xf7\x6b\x04\x99\x00\x61\x15\xdf\x19\ \xc0\xdd\xd9\x79\xc8\x6d\xda\x3f\xfb\xbd\x96\x09\x1c\x09\xa6\xa1\ \x27\xb3\xce\xfe\xef\x86\x09\xa0\xf8\xe3\x36\x96\xfd\xac\x40\x26\ \x40\x58\xc1\x57\x06\x60\x36\xf1\x57\x0f\x23\x13\x38\x25\x2e\x56\ \x7c\xef\xa4\x09\x3c\x7e\x38\x04\x9f\xfd\x88\x7b\xa3\xbf\x1a\x32\ \x01\xc2\x2c\xbe\x32\x80\x83\x1b\xb7\x4c\x27\xfe\xea\xa1\x35\x01\ \x1c\xfd\x23\xd9\xcd\xaa\xbf\x72\xca\x04\xee\xde\xdb\x09\xf1\x48\ \xf3\x1a\x79\x92\x09\x10\x66\xf0\x8d\x01\xe0\xe8\xbf\x35\xef\xec\ \xd1\xd3\x6a\x13\xd0\x8e\xfe\x6a\x9c\x30\x81\x8f\xdc\xef\x6c\xe6\ \xdf\x0c\x64\x02\x44\x3d\x7c\x63\x00\x38\xfa\xbb\x01\x9a\xc0\xcf\ \xc3\x6d\xdd\xd1\x5f\x4d\x23\x26\x70\x78\xb2\x07\xba\x13\x21\x57\ \x1e\x7f\x3d\xda\xcd\x04\x3e\x4a\x26\x60\x09\x5f\x18\x80\x1b\xa3\ \xbf\x9a\xa3\x99\x39\xe8\x80\xfa\x1f\x1c\xbb\x26\xf0\xe0\xf1\xa1\ \xc6\x1e\x60\x83\xb4\x8b\x09\xe4\x00\xe0\xa2\x9f\xcf\x4b\xb8\x03\ \xf8\xc2\x00\xdc\x1a\xfd\x91\x48\x80\x83\x50\xa9\x00\x90\xcb\xb9\ \x62\x02\xdd\x9d\x61\x98\xd8\x95\x68\xf0\x51\x36\x4e\xab\x9b\x00\ \x8a\xff\xff\x84\x42\xb0\xc8\x35\x76\x70\x6b\xbb\xd1\x78\x76\xcb\ \x65\xdc\x1e\xfd\x8f\x0c\xe0\x4b\x90\x2f\x7f\x83\x26\x10\x06\xd8\ \xaa\xf3\xb2\xa0\x09\x84\x72\x00\x92\x58\xdf\x30\xee\xf4\xe8\xaf\ \x06\x4d\x00\xe0\x03\x78\xfe\x7c\xed\x22\x2a\xc5\x04\x8e\xef\xd9\ \x03\x01\x1f\x1c\x43\xa6\x27\xfe\xee\x64\x12\x46\x96\x96\x20\x92\ \x2d\xef\x15\x59\xee\xeb\x83\xf9\x81\x01\x28\x06\x3c\xff\x91\x6f\ \x2a\x9e\x7f\x77\x0f\xa4\x6f\xbb\x7a\xff\x09\x5e\x23\x62\x87\x23\ \x01\x9c\xff\x7b\x89\x56\x8b\x04\xf4\xc4\x8f\x67\x44\x9e\xbc\x74\ \x89\xfd\xdb\xbd\xb1\xc1\xbe\xf6\xbf\xff\x3e\xfb\x59\x80\x72\x04\ \x15\x78\xda\x00\xb0\xea\xaf\xb0\x60\x9c\x9d\x6f\x94\xfd\x7d\x01\ \x00\xbd\x0f\xb8\x43\x26\x70\x27\x93\x7f\xb5\x40\x13\xf8\xa5\x93\ \xf5\xa7\x25\x5e\x37\x01\x23\xf1\x1f\x7e\x57\x7f\x8b\x78\x3c\x93\ \x21\x13\xd0\xe0\x69\x03\xd8\x5f\x58\x75\x6c\xdd\x5f\x8f\x81\x48\ \x8d\x5f\x3a\x60\x02\x87\x27\xbb\x9d\x7b\xb0\x0e\xf3\xa5\x4f\x8f\ \xc3\x2f\x9c\xaa\x1f\x9d\x78\xd5\x04\xac\x8a\x5f\x81\x4c\xa0\x12\ \x4f\x1b\x40\x6c\xb9\xf1\xaa\x3f\x23\xb6\x93\x7f\xb5\x68\xd0\x04\ \xee\xf2\x58\xf8\xaf\xe5\x5f\xfc\x83\x5d\xbe\x34\x01\xbb\xe2\x57\ \x20\x13\xd8\xc1\xb3\x06\x80\xad\xbe\x6a\x35\xfb\x68\x94\xc9\x1e\ \x93\xc9\x20\x9b\x26\x30\xdc\x1f\x85\x48\xc8\xfb\x4b\x52\x68\x02\ \xbf\x74\x77\x04\x02\xe9\x14\x04\x32\x69\x10\x72\xfa\xaf\xb9\x57\ \x4c\xc0\x8a\xf8\x2f\x5d\xba\x04\xaf\xbc\xf2\x0a\x6c\x6c\x6c\x54\ \xfd\x8e\x4c\xa0\x8c\x77\x0d\x20\xe3\xee\x19\xff\xdd\x21\x0b\x53\ \x0b\x1b\x26\x70\xf2\x70\x7f\x23\x0f\xaf\xa9\x7c\xe9\x57\xf7\xc3\ \xc7\xb1\xc7\xa0\x24\x01\x57\x28\x40\x60\x4b\xbf\x28\xea\x4e\x9b\ \x80\xd5\x91\x7f\x73\x73\x13\x56\x56\x56\xc8\x04\x6a\xe0\x59\x03\ \x70\x33\xf9\x87\x04\x2d\xb6\xfb\xb2\x6a\x02\x7b\x3d\xb0\xf6\x6f\ \x85\x6d\x13\x40\x44\xd1\x73\x26\x60\x27\xec\x3f\x71\xe2\x04\x74\ \x76\x76\x42\xa1\x50\xa8\x6b\x02\xed\x8a\x27\x0d\x00\x1b\x7e\xb8\ \x99\xfc\x63\xd9\x7f\xc9\xc6\xfd\x9b\x34\x01\x3e\x11\x65\x53\x00\ \xbf\xe1\x55\x13\xb0\x3b\xe7\x0f\x06\x83\xf0\xd0\x43\x0f\x99\x32\ \x01\xbc\xbf\x76\xc4\x93\x06\xa0\xec\xc9\x77\x8b\x86\x1a\xf2\x98\ \x30\x81\xc9\x11\xff\x89\x5f\xc1\xaa\x09\x14\xec\x18\xa9\x05\x1a\ \x4d\xf8\x99\x35\x81\x8e\x5c\xce\xd5\xe7\xe1\x55\x3c\x69\x00\xa5\ \x64\xd2\xd5\xfb\x8f\xf0\x0d\x8e\x5c\x75\x4c\x60\xb4\xb7\xd6\xfa\ \xa2\xf7\x31\x6b\x02\xd7\xfb\xfb\xe1\x1b\xe1\x30\xb8\x25\x9d\xbc\ \x24\x99\x12\x3f\xce\xf5\xdf\x79\xe7\x1d\x5d\x61\x83\x8e\x09\x5c\ \xbc\x78\xd1\xa5\x47\xec\x3f\x3c\x67\x00\x98\xfd\x6f\xa4\xe3\x4f\ \x3d\x70\xf9\x8f\x73\xe2\xe0\xc9\x1a\x26\x30\x39\x12\x73\xf4\x31\ \xdf\x09\xea\x99\xc0\xe2\xae\x5d\x30\xd3\xd7\xc7\xc4\x89\x22\xcd\ \x3b\x1c\x09\x14\x44\x11\x7e\x38\x37\x67\x6a\xe4\xdf\xda\xda\x82\ \xab\x57\xaf\x1a\x8e\xee\xa0\x32\x81\xe1\xe1\x61\xe8\xea\xea\xaa\ \xfa\x7d\xbb\x96\x08\x7b\xce\x00\x06\x0b\xee\x8e\xfe\x03\x71\x07\ \x9f\xb2\x81\x09\x8c\xf8\x3c\x02\x50\xd0\x9a\x00\x2f\xef\x7d\x50\ \xc4\xaf\x50\x98\x9d\x85\x9f\x5c\xb8\xc0\x44\xeb\x04\x78\x3f\x7f\ \xf3\xd6\x5b\xb0\x9a\xcf\x6f\xdf\x5b\xad\xb0\x1f\x47\xf6\x7a\x21\ \x3e\xc8\x26\x70\xdf\x7d\xf7\xc1\xd1\xa3\x47\x2b\x7e\x5e\x14\x04\ \xb6\x4f\xa0\x1d\xf1\x9c\x01\x74\xa4\x53\xae\xde\xff\x40\x87\xc3\ \x4f\x59\x63\x02\x3d\xf1\x20\x44\x42\xad\x73\xea\xba\xda\x04\xb8\ \x62\xb1\x4a\xfc\x3d\x37\x6e\x40\xf7\xbb\xef\xc2\x7a\x36\x4e\x91\ \xd0\x00\x00\x11\x74\x49\x44\x41\x54\x26\xc3\x44\xdb\xa8\x09\x28\ \xe2\xc7\xfb\x4b\x0d\x97\x5b\xa8\xd5\x9b\xf3\x9b\x9d\xe7\x1b\xf1\ \xd6\x5d\x77\x51\x04\xe0\x15\x8a\x99\x8c\xab\x8f\x24\xc2\xbb\x90\ \xb4\x52\x99\x40\x8f\x07\x6b\xff\x1b\x45\x31\x81\x8d\x58\x4c\x57\ \xfc\x0a\x8d\x9a\x80\x5a\xfc\xc5\x58\x0c\x36\xbb\xbb\x4d\x27\xfc\ \xec\x9a\xc0\xdb\xfb\xf7\xc3\xba\xce\x94\xa0\x5d\xf0\x94\x01\xe0\ \xd6\x5f\x37\xe7\xff\x48\x80\x73\x69\xe9\x4a\x36\x01\x37\x7a\xfe\ \x7b\x01\x34\x81\x07\x1f\xdc\xd9\xda\xac\x15\xbf\x82\x5d\x13\x50\ \x8b\x5f\xec\x88\xc0\xdc\xc9\x93\x96\xb2\xfd\x60\x60\x02\x98\x20\ \x34\x02\xc5\x7f\x7b\x70\xd0\xdb\x2f\xbc\xcb\x78\xca\x00\x06\x44\ \x77\x47\x7f\xc4\x91\x04\xa0\x11\xb9\x1c\x24\x42\xad\xdb\x90\xe2\ \x0f\x3e\xd9\x0b\x9f\xde\x27\x19\x8a\x5f\xc1\xaa\x09\x68\xc5\x7f\ \xeb\x43\xa7\x60\x60\x7d\x5d\x57\xfc\x98\xed\x7f\xf6\xd9\x67\x61\ \x76\x76\x56\xf7\xbe\xb4\x26\x80\x09\x42\x3d\x48\xfc\x65\x3c\x65\ \x00\x9d\x85\xda\x7d\xf9\x1a\xa5\x3b\xe2\xfe\xd3\x1d\xee\x6e\xcd\ \x08\x40\xe1\xbf\x3d\x28\xc1\xe7\x86\x2a\x1b\x8a\x88\x25\x11\xb2\ \xd9\x2c\x14\x55\x25\xb5\x66\x4d\xc0\x8a\xf8\x41\x16\x38\x72\xfe\ \xfc\xf9\x9a\x26\xf0\xe8\xa3\x8f\xc2\x27\x3f\xf9\x49\xe8\x53\x4d\ \x59\x14\x48\xfc\x3b\x78\xca\x00\x04\x55\xd6\xd7\x0d\x12\x11\xf7\ \x47\xe7\x48\xb8\xf5\x7b\xd2\xfd\x9b\x5f\xbb\x0b\x3e\xf9\xf0\xce\ \x19\x07\x85\x7c\x01\x16\x16\x17\x60\xfe\xf6\x3c\xe4\x0b\x3b\xef\ \x61\x3d\x13\xb0\x2a\x7e\x64\x72\x72\x12\xc6\xc6\xc6\xd8\xff\x6b\ \x99\x80\x11\x24\xfe\x4a\x3c\x65\x00\x9c\xc1\x4e\x34\xc2\x7b\xa8\ \x4d\x20\x18\x0a\x42\x28\x14\x82\x52\xa9\x04\x0b\x0b\x0b\xa6\x4c\ \xc0\x8e\xf8\x15\xb0\xc6\xdf\x8e\x09\x90\xf8\xab\xf1\x94\x01\xe4\ \x36\xdc\xcd\x01\x38\xbe\x04\xd8\xe6\x28\x26\x20\xf0\x02\x0c\x0e\ \x0e\x9a\x36\x81\x46\xc4\xaf\x60\xd5\x04\x48\xfc\xfa\x78\x4a\x11\ \x6e\x6e\x00\x22\xdc\x01\x4d\xe0\xf4\xbd\xfd\xa6\x4d\x60\x33\x97\ \xb3\x94\xf0\xbb\x7e\xfd\xba\xe1\xe3\x56\x9b\x40\x2d\x03\x20\xf1\ \x1b\x43\x2d\x52\x1d\x66\x7c\xd4\x5f\xdb\x80\x1b\xe5\x67\xef\xac\ \xc3\xeb\x57\xca\x9b\xb7\x14\x13\x58\x5c\x5c\x84\x7c\x3e\xcf\x4c\ \x60\x6c\xf7\xd8\xf6\x15\x50\xf4\xcf\x9f\x3b\xc7\xfe\x6f\x66\xe4\ \xc7\xf2\x5e\x04\xd7\xf3\x51\xec\x7a\x28\x5b\x7e\x95\xe4\xa0\x16\ \x12\x7f\x6d\x3c\x13\x01\xe0\x1e\x80\x56\x20\x97\x77\x71\x99\xd1\ \x63\x7c\xf7\xe5\xdb\xf0\xeb\xbf\x7f\x1e\x52\x9b\x3b\xd9\x7f\x6d\ \x24\xa0\x87\xd9\xb0\x5f\x11\x3d\x8e\xee\x18\xe6\x1b\xa1\x4e\x0c\ \xaa\x21\xf1\xd7\xc7\x33\x06\x10\xb2\xda\xa0\xc3\xa3\xdc\x5e\x6e\ \x0d\x23\xab\xc7\x37\x7f\xf0\x1e\xfc\xcb\xaf\x9c\xd3\xbd\x15\x9a\ \xc0\xc8\xf0\x08\x8c\xef\x19\xaf\xfa\x9d\x95\x39\x3f\x8a\xda\xac\ \x09\x68\x21\xf1\x9b\x83\xa6\x00\x84\x65\xbe\xf2\xcd\xcb\xf0\xef\ \xfe\xc7\x6b\xdb\x7f\x16\x8f\xd7\x3f\x67\x00\x2c\x8a\x5f\x41\x2f\ \xd1\x67\x34\x1d\x50\x20\xf1\x9b\x87\xd2\xe2\x84\x25\xfe\xed\x1f\ \x5f\x81\x3f\xfd\xc1\x22\xc4\x63\xe5\x2d\xcf\x2b\xab\x2b\x90\x4e\ \xd7\x3e\x69\x08\x54\xe2\xe7\x78\x1e\x0e\xbc\xff\x7e\xc5\xef\x94\ \xde\x7d\x46\x68\x23\x81\x5a\x89\x41\x12\xbf\x35\xc8\x00\x08\xd3\ \xa0\xf8\x9f\x7d\xb9\x7c\x52\x53\x5f\x5f\xbf\x69\x13\x50\xc4\x2f\ \x86\x42\xac\xfd\x56\x40\x53\x13\x80\xa2\xc6\xba\xfd\x5a\x21\xbe\ \xda\x04\xb0\xc4\x57\x0f\x12\xbf\x75\xda\x6a\x0a\x50\x2c\x49\xae\ \x5b\x1e\xe6\x00\x5a\x71\x25\x40\x2d\x7e\x05\x34\x01\x24\x9d\xc9\ \x40\x26\x93\xd6\x9d\x0a\xa8\xc5\x8f\x44\x74\x5a\x6f\x29\x0d\x3a\ \xea\x85\xf8\x68\x02\x7a\xc9\x3e\x20\xf1\xdb\xc6\x33\x11\x40\x92\ \x77\xbf\x86\x7e\x2d\xe7\x7e\x9d\x41\xb6\x05\x57\x01\xfe\xd9\x7f\ \xfa\x5b\x78\xe6\x27\xfa\x27\x34\xa3\x09\x0c\x0d\x0e\x41\x4f\x6f\ \x6f\xd5\xef\xb4\xe2\x47\xb2\xe1\xea\xf7\x19\xbb\xf4\xd8\x4d\xf6\ \x01\x89\xbf\x21\x3c\x63\x00\x2b\x52\x6b\x6c\xa2\x59\x68\xb1\x55\ \x80\xff\xfe\xed\x2b\xf0\xbf\x9e\xbb\xc2\xd6\xf6\x71\xd3\x8f\x1e\ \x91\x48\x04\x42\xc1\xca\x3e\x08\x7a\xe2\x47\x70\xef\x7d\x51\xe7\ \x0c\x7f\xbb\x19\x7f\x12\x7f\x63\xb4\x55\x0e\x60\x76\xdd\xfd\xd1\ \x79\x3d\xd5\x3a\xdd\x65\x71\x9d\xff\xbf\xfe\xe5\x0d\xe0\x79\x9e\ \x15\xf6\xd4\x32\x01\x35\x46\xe2\x57\x78\xfb\xc0\x01\xdd\x9f\x5b\ \x35\x01\x12\x7f\xe3\x78\xca\x00\x3a\x3a\x9b\xd0\x4b\x8f\x73\x77\ \x47\x60\xab\xd4\x01\x9c\x7d\x63\x19\xbe\xfc\xc7\x57\xd8\xc8\x3e\ \x34\x34\x64\xda\x04\xea\x89\x1f\x59\xee\xed\x65\xe2\xd5\x43\x6b\ \x02\x46\x90\xf8\x9d\xc1\x53\x49\x40\xae\x09\x7d\xd9\x4a\xbc\xb0\ \xdd\xdc\xd2\x0d\xf8\x60\x00\xe6\x57\xb3\xbe\x6e\x0c\x7a\x75\x36\ \xcd\xc4\xaf\xa0\x98\x00\xab\xef\xcf\xe7\x21\xb5\x91\x82\xee\xee\ \xea\x93\x8f\xcd\x88\x5f\x41\x11\xaf\x5e\x3d\x00\x9a\x00\x26\x06\ \x29\xdb\xef\x3e\x9e\x8a\x00\x4a\x1d\xee\xb7\xd3\xce\x95\xdc\x8b\ \x00\x78\x41\x80\x0c\x1f\x86\xf9\x15\xff\x6e\x6b\xde\xc8\x03\xfc\ \xe3\xaf\x5c\xa9\x28\xef\x05\x95\x09\x44\xc2\x61\x08\xe8\x18\xb5\ \x15\xf1\x2b\xa0\x88\x8d\x22\x01\xac\xef\xa7\x66\x1e\xee\xe3\x29\ \x03\xd8\x0c\xbb\x7f\xa2\x4e\xba\xe0\x8e\x01\xf0\x02\x0f\x5b\xc1\ \x72\x22\xf3\xfa\x6d\xff\x4e\x03\xfe\xee\x0f\x79\xb8\x72\xe4\x04\ \x13\xb4\x96\xb2\x09\x0c\x57\x2d\xf7\xd9\x11\xbf\x42\x2d\x13\xd0\ \x42\xe2\x77\x1e\x4f\x19\xc0\x6a\xc0\xfd\x08\x60\x2e\xe5\x7c\x22\ \x90\xe7\x39\xd8\x0a\x46\xa0\x24\x95\xcd\xe5\xfa\xbc\xfb\xbd\x0d\ \xdd\xe0\x77\xcf\x71\xf0\xd6\x1a\x30\x21\x33\x41\xeb\x98\x80\x96\ \x46\xc4\xaf\x60\xc6\x04\x48\xfc\xee\xe0\x29\x03\xb8\x09\xee\x47\ \x00\xeb\xd9\x12\x2a\xd6\xb1\xfb\xc3\x9c\x62\x5e\x25\x7e\x64\x2d\ \x5d\x60\x79\x00\x3f\xf1\xfc\x2c\x07\x5f\xbb\xb2\xf3\x1c\xcc\x98\ \x80\x13\xe2\x57\x40\x71\x63\x7f\x7e\x6d\x9d\x00\x7e\xff\xda\xf1\ \xe3\x24\x7e\x97\xf0\x5c\x25\x60\xb4\x37\x0e\x9b\xab\xf5\x6b\xcb\ \x1b\x21\x0f\x02\x84\xc0\x99\xf6\xe0\x52\x28\x0c\x05\x1d\x1f\xbd\ \x3e\xbf\xe9\x9b\x44\xe0\x6c\x06\xe0\x0b\xaf\x56\x4f\x8d\x14\x13\ \x18\x7d\xe3\x0d\x08\x68\xce\x6b\xc0\xbe\xfd\xd8\xba\xdb\x09\xf1\ \x2b\xe0\xea\x00\x7e\xb1\x72\xe1\x62\x91\x1d\xd6\x91\x8e\xf9\xff\ \x98\x35\x2f\xe3\x39\x03\x28\x26\x3a\x01\x5c\x36\x80\xa5\x2c\xc0\ \x2e\x07\x3e\xb7\x7c\x30\x08\x19\x83\x97\xf0\xf5\x6b\xeb\xf0\xf0\ \xd1\xea\xea\x38\x2f\xf2\x85\x57\x38\x48\x1a\xf4\x63\x45\x81\xcf\ \x3e\xf0\x00\x44\xd7\xd7\x21\xb6\xba\xca\x7e\x96\xe9\xed\x65\x87\ \x76\xb8\x05\x89\xbe\x79\x78\xce\x00\xe6\xc2\xbd\xd0\x0f\x73\xae\ \x5e\xe3\xdd\x95\x22\xec\x1a\xe5\x00\x1a\x38\xd0\x12\x93\x7e\x19\ \xde\xd8\x45\x70\x0a\xb0\x9e\x2e\x40\x77\x5c\xbf\x53\x8d\x57\xf8\ \xfa\x15\x0e\x5e\x5e\xa8\x9f\x18\x45\xc1\xbb\x29\x7a\xe2\xce\xe0\ \xb9\x4a\x40\xcc\x03\x84\xa3\xee\x8b\x26\xcf\xd9\xf7\x3e\x9c\xf7\ \x67\x83\xf5\xc3\x7b\x8c\x02\xbc\x0c\x86\xfe\xbf\xff\x66\xeb\x1e\ \x64\x42\xd4\xc7\x93\xa5\xc0\x5c\x8f\xfb\xa1\xf3\x52\x23\x39\xba\ \x60\x08\x44\xa9\xbe\x70\xbc\x6e\x00\xb5\x42\x7f\xa2\x3d\xf0\xa4\ \x01\xdc\x8c\xb9\x7f\x54\x33\x4e\x03\xec\xac\x06\x60\xb1\xcf\x26\ \x67\x2e\x42\xc1\xd5\x80\xcb\x37\xdc\x3d\xed\xd8\x2e\x2f\x2f\x80\ \xa9\xd0\x9f\x68\x6d\xbc\x69\x00\x4d\x9a\x06\xa4\x4a\xd6\xa6\x01\ \xe5\xd0\xdf\xda\xae\xc5\x97\x2f\xad\x5a\x7c\x54\xcd\xe1\xb7\x5e\ \xa5\x5e\x30\x84\x87\x77\x03\x16\x86\x86\x4d\xdc\xaa\x31\x2e\x2f\ \x59\xdc\x13\x10\x0c\x9a\x0a\xfd\xd5\x60\x51\x90\xd7\x6a\x02\xbe\ \x79\x9d\x83\x1b\xee\x2e\xb4\x10\x3e\xc1\xb3\x06\x70\x25\x34\x08\ \x42\xc0\xdd\x10\x35\x5b\x94\x20\xcf\x9b\x8b\x34\xb0\xda\x6f\x93\ \xb3\xb7\x76\xe8\xb5\x28\x80\x12\x7f\x84\x82\x67\x0d\x60\x53\x12\ \x20\x34\x50\xbd\x19\xc4\x69\xde\x5e\x31\x57\x10\x54\x0a\xda\x2f\ \x1c\xc0\x64\x20\x2e\x09\x7a\x01\x1a\xfd\x09\x35\x9e\x9e\x08\x5e\ \xed\xdc\xe5\xfa\x35\xb0\x34\xb8\x5e\x14\xc0\x6a\xfd\x1b\x2c\x99\ \xf8\xf3\x9f\xb8\x5b\xdb\x60\x96\xaf\xbd\x4d\xa3\x3f\xb1\x83\xa7\ \x0d\x00\xdb\x84\x75\x8c\xf4\xbb\x7e\x9d\x7a\x51\x40\x23\xa3\xbf\ \x02\xe6\x02\xde\xbf\xc3\xbb\x04\x2f\xae\x01\xdb\xec\x43\x10\x0a\ \x9e\x4f\x05\x37\x2b\x0a\x48\x81\xbe\xc8\x31\xf3\xdf\xe8\xe8\xaf\ \xf0\xec\xff\xbb\x6d\xee\x86\x2e\xf1\x8d\xf7\x68\xf4\x27\x2a\xf1\ \xbc\x01\x60\x14\x10\x1a\x1f\x75\xfd\x3a\x6c\x45\x40\xa7\x5d\x18\ \x17\x70\x6e\x39\x12\x57\x03\xee\x64\x42\xf0\x7b\x37\xc9\x00\x88\ \x4a\x7c\xb1\x18\x7c\x31\x32\xd2\x94\x15\x81\x5b\xb9\xea\x91\x3e\ \x2b\x38\x5b\x8f\xf0\xc2\x1b\x4b\x77\x24\x21\x88\xe1\x3f\x25\xff\ \x08\x2d\xbe\x30\x00\x5c\x11\x28\xec\x99\x70\xfd\x3a\x58\x1d\x58\ \x12\x76\x4c\x00\x37\xfc\x58\x5d\xf7\xaf\x07\x9e\x1b\xf0\xec\xdf\ \x36\x7f\x2a\xf0\xbd\x59\x1a\xfd\x89\x6a\x7c\x53\x0e\xf6\x66\x60\ \x80\xf5\x0a\x70\x9b\xb7\x96\xa5\xed\xa9\x80\xa4\xd3\xbf\xde\x09\ \x2e\xcf\xa4\x9a\x3e\x15\x78\x69\xa1\xa9\x97\x23\x7c\x82\xaf\xea\ \x41\xdf\x19\xd8\xe7\xfa\x54\x00\x13\x82\x6b\x62\x39\x0a\x28\x34\ \xb0\x63\xb0\x1e\xcd\x9e\x0a\x5c\x5c\xa3\x08\x80\xa8\xc6\x57\x06\ \x80\x09\x41\x69\x6c\xb7\xeb\xd7\x79\x73\xa1\x08\x05\x3e\xa8\xdb\ \xe9\xc7\x29\x70\x2a\xf0\x3f\x5f\x30\xee\x7b\xef\x24\xb8\xed\x97\ \x76\xfd\x11\x7a\xf8\x6e\x47\xc8\xcf\x82\x23\x10\x1b\x70\xbf\x31\ \xc5\xdb\xf9\x0e\x28\x06\xdd\xdd\x90\x84\xab\x02\x5f\x3b\xef\xfe\ \x49\x42\x94\xfc\x23\x8c\xf0\xe5\x96\xb0\x37\x7a\xdd\x9f\x0a\x6c\ \x85\xa2\xf0\x62\x70\xdc\xd5\x6b\x20\x7f\xf6\x8e\xc8\xca\x73\xdd\ \x64\x36\x43\xe1\x3f\xa1\x8f\x2f\x0d\x00\x57\x05\x16\x26\x8f\xba\ \x7a\x8d\x52\x40\x80\xeb\xc5\x08\x5c\x8e\xbb\x5b\x88\x74\x43\xec\ \x80\xdf\x39\xc7\xb1\x65\x3a\xd7\xae\x41\x11\x00\x61\x80\x6f\x37\ \x85\x63\xcf\x80\xd2\xe4\x5e\xd7\xee\x7f\x23\x58\x6e\x51\xfe\x52\ \xbe\x07\xd6\x62\x2e\x36\xc0\x2c\x09\x6c\x7e\x8e\x07\x72\x6c\x78\ \x63\xbf\x10\xd1\x46\xf8\xba\x2b\x04\x2e\x0d\xba\xb5\x57\x40\xdd\ \x33\xf0\xcf\x0b\xbb\x21\xdd\xd1\xe9\xca\x75\x14\x98\x09\xfc\x80\ \x4c\x80\x68\x2e\xbe\x6f\x0b\xf3\x6a\x62\xb2\x29\xf5\x01\xdf\x91\ \x76\x41\x3e\xec\x6e\x9f\x7f\xdc\xa8\x83\x26\x40\x10\xcd\xa2\x25\ \x3e\x6d\xe7\x07\x0e\xb9\x7e\xb4\x38\x86\xea\xdf\xe2\xf6\x3a\x6e\ \x02\x71\xbe\xf2\xa8\x32\x34\x81\xdf\xd2\x39\xa4\xa3\x11\x1e\x1e\ \xb2\xdf\xfe\x9c\x68\x6d\x5a\xc2\x00\x30\x29\x78\x61\xe4\xa8\xa3\ \x26\x10\x17\xab\x97\xe7\xd0\x04\x9e\xe7\xf7\x80\xe4\xe0\xd1\x62\ \x7b\x84\xad\xaa\x9f\xe1\xae\x3d\xa7\x4d\x80\x20\xf4\x68\x99\x78\ \x13\x4d\x60\x76\x78\xbf\x63\xcb\x83\x11\x1d\x03\x40\x16\xc4\x10\ \xfc\x28\x32\xe9\x98\x09\xf4\x72\xfa\x93\x7e\x27\x4d\xe0\xe1\x21\ \x47\xee\x86\x68\x41\x5a\x6a\xc2\x89\x2b\x03\xb8\x3c\xe8\x84\x09\ \x08\x79\xe3\xd2\x39\x5c\x1e\x74\xca\x04\x3a\xc1\xf8\x3a\x4e\x9a\ \xc0\x3d\x3d\x8e\xdc\x0d\xd1\x62\xb4\x5c\xc6\xc9\x31\x13\xc8\xd4\ \x5e\x3c\x57\x4c\xa0\xd1\x9c\x40\x7f\xb1\xf6\x51\xe2\x4e\x99\x00\ \xe5\x01\x08\x3d\x5a\x32\xe5\x8c\x26\xf0\xc1\xbe\x63\x0d\xe5\x04\ \xb6\x36\xb2\x10\xe5\xc4\x9a\xb7\x41\x13\x68\x34\x31\x18\xc9\x6e\ \x56\x25\x02\xb5\xa0\x09\x9c\x7e\xae\xb1\x25\xc2\x47\x68\x1a\x40\ \xe8\xd0\xb2\x6b\x4e\xb8\x71\xa8\xd1\xc4\xe0\xfe\x42\xfd\x2d\xbb\ \x4e\xac\x0e\x9c\x08\x6c\xd4\xbd\x8d\xb2\x44\x68\xd7\x04\x1e\x1b\ \x93\xa0\xcb\xb9\x93\xbc\x89\x16\xa1\xa5\x17\x9d\x95\xd5\x01\xbb\ \x75\x02\x89\x94\xb9\xfa\x5c\x34\x81\x33\xd2\x7e\xdb\x15\x83\x7b\ \x44\x73\xc7\x87\xa1\x09\x9c\xf8\x36\x6f\xbb\x6c\xf8\x13\x63\x34\ \x0d\x20\x2a\x69\xf9\xaa\x13\x34\x81\x57\xfa\x8f\xd8\xaa\x18\xcc\ \x2c\xad\xd7\x9d\x06\xa8\xc1\x8a\xc1\x9b\x71\xeb\xe7\x1a\xc6\xb7\ \x36\x60\x48\x30\xb7\x5f\x57\x29\x1b\x7e\xde\x46\x87\x9f\xdf\x3e\ \x46\x06\x40\x54\xd2\x36\x65\x67\x58\x31\xc8\xef\x1d\xb3\xfc\x77\ \x77\x67\xe7\x2d\xdd\xfe\x7b\xf9\x21\xb6\x81\xc8\xea\x0a\xc1\x43\ \xfc\x8a\xe9\xdb\xa2\x09\x7c\xf6\x2c\x07\x7f\x60\xf1\x84\x9f\xb1\ \x18\x25\x03\x89\x4a\xda\xaa\xee\x14\x7b\x09\x64\xf7\x5b\xab\x15\ \xe0\x96\x96\x2c\x5f\x07\x37\x10\xe1\x0a\x81\x95\x7e\x02\xfd\x5b\ \x6b\x75\x93\x81\x5a\xf0\x88\xaf\xcf\x9d\xe5\x2c\xe5\x05\xfe\xfd\ \x29\x32\x00\x62\x87\xb6\x2b\x3c\xbf\xc2\xf7\xb2\x65\x42\xb3\xc9\ \xc1\xdc\x66\x01\xee\xcf\xdd\xb4\x7c\x1d\x5c\x21\xf8\xbf\xc2\x7e\ \xd3\x9b\x88\xb8\x52\x09\x1e\x13\xac\x45\x1b\x20\x37\xfb\x7c\xf4\ \x39\xf3\x79\x81\xbb\x7b\x00\x3e\xbd\x8f\x4c\x80\x28\xd3\x96\x3b\ \x4f\x70\x99\x90\xad\x10\x98\xcc\x0b\x88\xb7\xe6\x2d\xe5\x02\x14\ \x30\x39\xf8\xbf\xc5\x3d\x70\x3d\x6e\xee\xa4\xe3\x9e\xcc\x3a\x4c\ \x06\xac\x9f\x24\x8c\xfb\xfd\xd1\x04\xbe\x7e\xc5\x5c\x64\x83\x51\ \x00\xad\x08\x10\xd0\xae\x06\x00\x72\x72\x10\xf3\x02\xd8\x53\xa0\ \xde\x94\x40\x2c\x4a\x70\x72\xf5\x3d\xdb\xd7\x7a\x21\xdf\x0f\x2f\ \x44\xf7\x9b\x9a\x12\xfc\xbc\x68\x3d\xda\x50\xc0\xc6\x22\x66\xa6\ \x04\x9d\x41\x80\x3f\x7c\x90\xa2\x00\x02\x40\x08\x7d\xfc\xe3\x5f\ \x6e\xe7\xd7\x61\x81\x8f\x41\xbe\xb7\x1f\x86\x0b\x49\x28\xe6\x8a\ \x86\xb7\x2b\x6c\x66\xa1\xbb\xa7\x03\x96\xb9\x0e\x5b\xd7\x59\x2b\ \x05\xe0\x9a\xd0\x03\xbb\xc3\x45\xe8\x28\x18\x8f\xf2\x82\x58\x84\ \x3d\x11\x11\xae\x94\x12\xb6\xae\x73\x6d\x83\x83\x33\xd7\x38\x38\ \xd8\x09\x70\xa0\xcb\xf8\x76\xf8\x3b\x6c\x16\x4a\xdd\x82\xdb\x9b\ \xb6\x37\x00\x04\xcf\xfe\xbb\x19\x1f\x82\x3d\x71\x09\xc4\xa4\xf1\ \x9a\x7c\x78\x63\x8d\x99\x85\xdd\xb3\x02\xf3\x12\x0f\x97\x4b\x9d\ \xc0\x75\x84\x61\xb8\x98\x06\x4e\xd2\x1f\x85\x63\x85\x2d\x76\x9b\ \x39\xd1\x5e\x71\x51\x4e\x04\xf8\xcb\x19\x0e\x36\xf2\x00\xf7\x0d\ \x00\x84\x0d\x8e\x37\x78\x64\x18\xe0\xaf\xe7\x38\x58\xb4\x3e\xeb\ \x20\x5a\x04\xea\x3e\xa1\xe2\xa7\xe1\xdd\xb0\x7c\xf0\x6e\xc3\x04\ \x21\x4e\x05\x0e\xce\xbf\x63\x2b\x1f\xa0\xe6\x5c\xbe\x0b\xbe\x11\ \x3a\x54\x33\x41\x78\x72\xf3\x96\xad\x7c\x80\x9a\xaf\x5d\x29\x27\ \x08\x8d\x6a\x06\x70\x2a\xf0\x9d\x5f\x2c\x51\x3e\xa0\x8d\x21\x03\ \xd0\x80\x09\xc2\x57\x87\x8f\x19\x1e\x48\x8a\x7b\x04\x1a\xc9\x07\ \x28\x28\x09\xc2\x97\x62\x13\xba\xb9\x01\x5c\x15\xf8\x58\xf6\xba\ \xe5\xa5\x41\x2d\x98\x20\xc4\x9a\x01\xa3\xdc\x00\x33\x81\x5f\x20\ \x13\x68\x57\x68\x0a\x60\xc0\xad\x40\x27\x14\xfa\xfb\x61\x44\xca\ \x40\x61\xab\xb2\x4a\x0f\xf3\x01\x7b\x43\x39\xb8\x19\x6e\x7c\x8f\ \xed\x52\x29\xc4\x72\x03\xc3\x61\x89\x85\xfe\x6a\x70\x8a\x70\x48\ \x48\xc3\xbb\x7c\x17\x9b\x3e\x34\x82\x92\x1b\x88\x08\x00\xa7\x34\ \x8b\x1f\x83\x1d\x00\x1f\x1b\x95\xe0\xdb\x33\x1c\x9b\x3e\x10\xed\ \x03\x19\x40\x0d\x70\xae\x3f\x1b\x1d\x80\xc1\xae\x10\x04\x52\x49\ \x90\x4a\x3b\xb7\x2d\xa6\x37\x1d\x33\x01\x14\x37\x26\xfd\xd6\xc2\ \x9d\x30\x2a\x64\x21\x50\xdc\x19\xaa\x31\x29\xe8\x94\x09\xa0\xb8\ \x7f\x34\xc7\xb1\x29\xc1\x81\x2e\x09\xf6\xa8\xb6\x48\x90\x09\xb4\ \x27\x64\x00\x26\xc0\x95\x82\x64\xef\x30\x8c\xc4\xb9\x8a\x24\xa1\ \x93\x26\x00\xf2\x4a\xc1\x05\xa9\x87\x25\x00\x07\xa4\x2d\xe0\x4b\ \x65\xc7\x41\x13\x38\xcc\x25\x21\x19\x8c\xb3\xdb\x34\x0a\x26\xfd\ \xbe\x71\x9d\x63\xab\x00\xf7\xf4\xc2\x76\xf8\xaf\x98\xc0\x5f\xcf\ \x73\x74\x94\x58\x9b\x40\x06\x60\x12\x3c\x27\x50\x99\x16\x8c\xf2\ \x39\x36\x0d\x00\xc5\x04\x0a\x2b\xb0\x9a\xe8\x77\xec\x2c\x41\xcc\ \xfe\xe3\xb4\xa0\x27\xc2\x41\xa2\x98\x65\x53\x01\x34\x83\xbd\xe2\ \x3a\xac\x87\x12\x8e\x98\x00\xc8\x07\x86\xa2\x11\xe0\x88\x8f\x46\ \x80\xab\x05\x68\x02\x9f\xd9\x27\xd1\xea\x40\x9b\x40\x06\x60\x11\ \x36\x2d\xe8\xe8\x83\x68\x6f\x02\x7a\x20\xcb\xf2\x03\x58\x3f\xb0\ \xbb\xb0\x06\x10\x4f\xc0\x06\x38\x73\x9e\x20\x86\xfb\xd7\xc4\x38\ \x5c\x0d\xf4\x6e\xe7\x07\xd0\x08\x26\x0b\xab\xd0\xd3\xc1\xc3\x75\ \x31\xea\xc8\x75\x50\xfc\x2f\x2f\x94\xf3\x03\x43\x1d\xe5\x52\x61\ \x34\x82\xa7\x0e\x4a\x54\x27\xd0\x06\x90\x01\xd8\x64\x8d\x0b\xb3\ \xfc\x00\x16\x07\xc5\xb2\x29\xc8\xa6\xf3\x90\x48\x2e\xc1\x40\x22\ \xc4\xa6\x0c\x4e\xa1\xe4\x07\x6e\x86\xba\x61\x28\x2c\xb2\x22\xa2\ \x9e\x7c\x1a\x0e\x85\xb2\xf0\x3e\x17\x6f\x38\x2f\xa0\x80\x46\x80\ \xfb\x0a\xf0\x9c\xc2\xee\x50\xd9\x08\x3e\x31\x06\x30\x1e\x2f\x1b\ \x04\xe5\x05\x5a\x13\x32\x80\x06\xc1\xca\xc0\x5b\x9d\x23\x2c\x51\ \x18\xde\x4a\x43\x69\x71\x05\xf6\xf1\x19\x58\x89\x76\x3b\x7a\xbc\ \x78\x46\x12\x58\x11\x91\x62\x04\x5d\x9b\x49\x96\x17\xc8\x85\x22\ \x6c\x25\xc1\x29\x70\xee\xaf\x36\x82\x4f\x4d\x4a\xf0\xcb\x13\x12\ \x6b\x46\x42\x87\x8c\xb6\x1e\x64\x00\x0e\x81\xa3\xbe\x62\x04\xc1\ \xd4\x3a\xf4\x2e\xde\x84\xae\x2e\xfb\xa5\xc3\x46\xa8\x8d\x60\x24\ \x50\x80\x43\x99\xdb\xac\x74\x18\xeb\x17\x9c\x8a\x06\x40\x63\x04\ \xb8\x5a\xf0\x7b\xa7\x24\x66\x08\xe7\x96\x29\x1a\x68\x25\xb8\xf8\ \xd3\x4f\xd3\xae\x10\x17\x98\x94\x36\x60\x78\xa5\xbc\xb1\xe7\x9d\ \x81\x7d\xac\x47\xa1\x1b\x60\x27\xa1\x0f\x09\x6b\x30\x9c\x5b\x87\ \xab\xe1\x41\xd6\x8b\xc0\x0d\xd0\x04\x3e\x3d\x29\xb1\xad\xc4\xd8\ \x87\x00\x1b\x95\x12\xfe\x07\x0d\xe0\x3c\x00\x1c\xa7\xf7\xd2\x1d\ \xfa\xb8\x1c\x1c\xdc\xb8\x05\x12\x2f\xc0\x9b\xf1\xdd\x6c\x17\xa2\ \x1b\x60\xc5\x20\x36\x17\xc5\xc2\xa5\x4b\xd0\x0d\x97\x0b\xee\x9c\ \x97\x88\x4b\x86\xd8\x5b\xf0\xf1\xdd\x00\x5f\xbd\x52\xce\x0f\x10\ \xbe\xe5\x02\x1a\xc0\x8b\x00\xf0\x28\xbd\x87\xee\x82\xfb\x07\xb0\ \xcb\x70\x40\x2a\xb2\xce\x44\x6e\x72\x24\x98\x66\x27\x0e\xcd\x95\ \x3a\x58\x63\x12\xb7\xc0\xf6\x62\x18\x19\x5c\x5c\xe5\x58\x8e\x80\ \xf0\x1d\x67\x71\x41\x99\x0c\xa0\x09\xe0\xc8\x8f\xc7\x99\x37\x03\ \xb7\x46\x7f\x2d\x38\xfa\xbf\xbc\xe0\x91\x17\x98\xb0\xc3\x8b\x98\ \x35\xfa\x80\x5e\x3a\x82\x68\x4b\x3e\x40\x03\x38\x4f\xef\x3d\x41\ \xb4\x25\xe7\x39\x49\x92\x20\x31\x3d\xbd\x8e\xf9\x1d\xfa\x0c\x10\ \x44\xdb\x90\x4c\x4d\x4d\x75\x2b\x0b\xc7\xcf\xd0\xfb\x4e\x10\x6d\ \x05\xd3\x3c\x19\x00\x41\xb4\x27\x4c\xf3\x6c\x0a\x80\xd0\x34\x80\ \x20\xda\x06\x16\xfe\x83\xa6\x25\x18\x45\x01\x04\xd1\x1e\x6c\x6b\ \x5d\x6d\x00\x67\xe8\xcd\x27\x88\xb6\x60\x5b\xeb\xdb\x53\x00\x28\ \x4f\x03\xa8\x2c\x98\x20\x5a\x9b\xb3\xa9\xa9\xa9\xd3\xca\x33\xd4\ \x6e\x1f\xfb\xcf\xf4\xe6\x13\x44\x4b\x53\x11\xe9\x57\x44\x00\x50\ \x8e\x02\xb0\x32\x70\x9c\x3e\x03\x04\xd1\x72\xcc\xa4\xa6\xa6\x26\ \xd4\x4f\x4a\x6f\x03\xf9\x53\xf4\xbe\x13\x44\x4b\x52\xa5\xed\x2a\ \x03\x48\x4d\x4d\xe1\xe6\xa0\xb3\xf4\xfe\x13\x44\x4b\x71\x56\xd6\ \x76\x05\x46\x2d\x64\xd0\x29\x92\xf4\xfe\x13\x44\x4b\x90\x34\x8a\ \xec\x75\x0d\x20\x35\x35\x85\x79\x00\x6a\x15\x46\x10\xad\xc1\x97\ \x65\x4d\x57\x51\x95\x04\x54\x93\x98\x9e\xc6\x82\x81\x27\xe8\x43\ \x40\x10\xbe\xe5\xaf\x52\x53\x53\x4f\x1a\x3d\xf8\x7a\x5d\x24\x31\ \x6c\x98\xa1\xf7\x9e\x20\x7c\xc9\x4c\xbd\xa4\x7e\x4d\x03\x48\x4d\ \x4d\xe1\xfe\x80\x27\x29\x1f\x40\x10\xbe\x03\x35\xfb\xa4\xac\x61\ \x43\xea\xf6\x91\x4e\x4d\x4d\x9d\x97\x4d\x80\x20\x08\xff\xf0\xa4\ \xac\xdd\x9a\x98\x6a\x24\x2f\x2f\x1f\x7c\x9e\xde\x7c\x82\xf0\x05\ \x9f\xd7\x5b\xf2\xd3\xc3\xf4\x49\x12\xa9\xa9\xa9\x33\x64\x02\x04\ \xe1\x79\x3e\x2f\x6b\xd5\x14\x35\x57\x01\xf4\x48\x4c\x4f\x9f\x96\ \xb7\x13\x52\xef\x00\x82\xf0\x0e\xca\x9c\xdf\xd4\xc8\xaf\x60\xf9\ \x2c\x29\xf9\x02\xa7\x69\x75\x80\x20\x3c\x03\x6a\xf1\xb4\x55\xf1\ \x83\x1d\x03\x80\x9d\xc4\xe0\x09\x5c\x63\xa4\xcf\x00\x41\xdc\x51\ \x50\x83\x27\xcc\x24\xfc\xf4\xb0\x3c\x05\xd0\x92\x98\x9e\xfe\x92\ \x5c\x35\x48\x53\x02\x82\x68\x1e\x49\xb9\xc2\xaf\xa1\x2d\xfc\x0d\ \x1b\x00\x94\x4d\x60\x42\xde\x67\x4c\x27\x0c\x11\x84\xfb\xe0\x66\ \xbd\xa7\x8c\xca\x7b\xad\xe0\x88\x01\x28\xc8\x09\xc2\x33\xd4\x4f\ \x80\x20\x5c\x61\x46\x16\xbe\xe5\xb9\xbe\x11\x8e\x1a\x80\x42\x62\ \x7a\xfa\x29\xb9\x04\x91\x22\x02\x82\x68\x1c\x1c\xf1\xcf\x58\x59\ \xde\x33\x8b\x2b\x06\xa0\x20\x47\x04\x4f\xc9\x95\x84\x94\x23\x20\ \x08\xf3\x24\xe5\xe5\xf6\x33\x4e\x8e\xf8\x5a\x5c\x35\x00\x35\x89\ \xe9\xe9\x27\x65\x23\x38\x4d\x53\x04\x82\xd0\x45\x11\xfd\x33\xa9\ \xa9\xa9\xa6\xb4\xe9\x6f\x9a\x01\xa8\x91\x93\x86\x68\x04\xca\xbf\ \xdd\xd4\x8d\x98\x68\x33\x2e\x00\x00\x6e\xd4\xc1\xd1\x1d\x93\x79\ \x2f\x3a\x91\xd4\xb3\x04\x00\xfc\x7f\x9d\x0c\x88\xd7\xcd\xd2\x3a\ \x54\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x32\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\ \x00\x00\x04\xf9\x49\x44\x41\x54\x78\xda\xad\x55\x5d\x4c\x14\x57\ \x18\x3d\x77\x66\x76\xd9\x95\x3f\xf9\xd9\xd2\x2e\xb0\x6b\x03\x06\ \x01\x5b\x60\x09\xa0\x04\xa2\xa5\xa6\xf6\x81\x92\x50\x62\x6a\x9a\ \xd4\x27\xed\xcf\x43\x1b\x6b\x4d\xfa\x40\x4c\x88\x4d\xdb\x48\x1b\ \x4c\xa4\x49\x4d\x4d\x4c\x9a\xc6\x98\xfa\xd3\x68\x7d\x31\x7d\xd2\ \x54\x24\x28\x85\x5a\x04\x0d\xb0\x01\x64\x81\x45\x04\x2a\xb0\xc0\ \xb2\xbb\x73\xfb\xdd\x3b\xb3\x0b\x9b\x3e\xb5\xe1\x26\x3b\x77\xe6\ \xce\x37\xf7\x9c\xf3\x7d\xe7\xbb\xcb\x40\x23\xa3\x65\x60\x4f\x6a\ \x9a\xed\xc2\xfe\xa2\xa4\xec\x14\x2b\x03\xe7\x30\x86\x2a\x2e\x0c\ \x8c\x19\x8f\xd1\x99\x73\x63\x8d\xcb\xb7\x62\x28\xf2\x46\xa1\x9f\ \x2f\x10\xc1\xad\xc1\xe5\xdb\x7a\x98\xef\xf7\x7d\xe2\x0e\xb2\xf4\ \xe6\xbe\x3d\xfb\x2a\xd2\x6e\xfd\xd8\x90\x8d\x89\x25\x8e\xe8\xde\ \x72\x43\xf3\x81\x3e\x47\x84\x50\x9f\x07\x82\x08\xeb\x61\x64\x26\ \x27\x42\xd1\x18\x74\xbe\x21\xda\x44\x4b\x20\xe4\x44\x0d\x78\xf3\ \x92\x1f\xf7\x0e\x39\x19\x73\x7f\x35\xe0\xeb\xff\xbc\x30\xfb\xc6\ \xd8\x0a\x96\xd6\xa2\x8c\xc4\xae\x4a\x6c\xf3\xd1\xd9\x55\x0c\xf9\ \x17\x62\x7b\x3d\xf5\x4e\x61\x9b\x2b\x1d\x35\x1e\xd7\x3a\x80\xb2\ \x4e\xca\x9d\xa4\xc2\x12\x0e\xe1\xad\xf3\x4f\x5a\xd9\x91\xeb\xe3\ \xbc\xbe\xd4\x81\xc9\x65\x1d\x1a\x8b\x69\xa6\x78\x66\xca\x66\x18\ \x79\xb6\x8a\x43\xc5\x29\xc8\x4b\x8e\xc1\xe3\xf0\xe5\x61\xd4\x55\ \xba\x11\x0e\xeb\xeb\xa4\x28\x96\x4b\xb5\x40\x45\x86\x05\x47\x7e\ \x19\x1b\x63\x1f\x5e\x1b\xe7\x65\x3b\x1c\xd0\x23\xba\x19\xb4\xae\ \x42\x88\x10\x00\x8f\xa6\x03\xf8\xa8\x34\x3d\x0e\xa0\xbe\xbd\x1b\ \xef\xd6\x97\x10\x40\xc4\x48\x2b\xc5\x45\xdf\x52\x89\x90\x66\x53\ \xd1\x7a\x73\x1c\xac\xee\xbc\x97\x1f\xd8\xed\x94\x4c\xa2\x11\xea\ \x06\x46\x02\x60\x6a\x71\x0d\xef\x15\x26\xc7\x00\xbc\x8b\x1c\x67\ \x3b\x27\x50\xf4\xb2\x83\xd8\xea\x92\x95\x02\xc4\x7d\x6f\xb3\x28\ \x38\xf3\xdb\x28\xd8\x6b\x3f\x0c\xf2\xa6\xea\x6c\xc9\x44\x54\x8a\ \x99\xb9\x37\x1c\x23\x13\x85\xc5\xa0\x8e\x62\x87\x05\xc5\x69\x56\ \xf9\xae\x7f\x7e\x0d\x3d\xfe\x20\x5e\x4a\xb2\x12\x5b\x1e\xa7\x38\ \xfa\xad\x00\x68\xbd\x31\x06\x56\x7b\xf6\x31\x6f\xda\x9d\x83\x20\ \xa5\x48\xdb\x90\x1f\x31\xa9\xa6\x8d\x7e\x9f\x0c\x81\xfb\xa7\xe5\ \xfd\xf2\xc2\xb2\x9c\x77\x96\xba\xe1\xca\xdc\xf2\x2f\xc5\x51\x30\ \x01\xf0\x73\xf7\x34\x58\x4d\xfb\x00\x6f\xaa\xc9\x45\xd0\x4c\x11\ \x8b\xc5\x1a\x05\x53\xc8\xdc\x5d\x53\x94\xa2\xe2\x44\x34\xb8\x2c\ \x98\x5d\xd2\xd1\x31\x17\xc1\x4f\xfd\x01\xd4\x3a\x2d\x86\xf9\x65\ \xbc\x12\x23\x26\x2e\x56\x4d\xc1\x95\xae\x29\xb0\x8a\xb6\x3e\xde\ \xb8\x37\x17\x7a\x68\x5d\xa2\xca\x14\x53\x81\xb1\xd6\x31\x15\x42\ \x5b\x95\x1d\xb9\xe9\x76\xf9\x7e\x7c\x6e\x05\xc7\xba\x56\xb0\x37\ \xc7\x26\xfb\x43\x30\xd1\xe9\xa2\xc0\xec\x23\x9d\x21\xc1\x46\x00\ \x77\x27\xc0\x3c\xa7\x1e\xf0\xc6\xd7\xdd\x88\x90\x02\x51\x50\x8d\ \xf4\xce\xad\x72\x4c\xaf\xe8\x78\xba\x14\x11\x7d\x8c\x8e\x1e\x3f\ \xfa\x8f\xe6\xc7\x01\x94\xb4\x7b\xb1\xab\xec\x45\x24\x52\x2a\x1c\ \x94\xa9\x17\xec\x1a\x39\x47\xa1\xe6\x13\xbd\x40\xfb\x90\xe7\x2f\ \xdf\xf5\x81\x95\x9d\xea\xe5\x8d\x75\xdb\x30\x13\xd0\x31\x30\xb3\ \x86\xe9\x85\x30\x22\x14\xa5\xa9\x4c\xaa\x57\x35\x0b\xbc\x03\x53\ \xe8\x3b\x5e\x10\x07\x50\xde\x36\x88\xfc\x57\x9c\xd0\x75\x5d\x1e\ \x1d\x42\x86\x95\x8e\x19\x27\xb5\x71\x41\x3a\x43\x56\xa2\x05\x97\ \x6e\x93\x4d\x5d\xc7\x3a\xb8\xc3\xb3\x0d\x73\xf3\x21\xda\x4c\x91\ \x76\x53\x49\x05\x23\x99\xcc\x2a\x0a\xc8\xe0\xfd\x6b\x12\x8f\x4e\ \xec\x8c\x03\x78\xf5\xcb\x3e\xe4\x7b\xdc\xe4\x22\x6a\xb4\x08\xc5\ \x52\x39\x58\x44\xf4\x00\x93\x69\x73\xa6\x5a\x30\xd2\x3f\x09\x66\ \x7f\xfb\x1a\xcf\xaa\x2b\x03\x42\x94\x0e\x02\x10\x16\x13\x20\x8c\ \x24\x32\x51\x77\x5a\x1b\xe9\x1e\xc5\xf0\xd7\xe5\x71\x00\x45\xcd\ \xdd\xc8\xdb\x9d\x07\x2e\xcd\xc1\x64\xad\x98\x59\x6c\x51\x07\xd5\ \xaa\x60\xe2\x81\x4f\x00\x5c\xe5\x99\xb5\x1e\x2a\x52\x44\x16\x4b\ \x83\xc1\x82\x45\x1b\x8d\xf2\x3a\x76\x77\x04\xa3\xa7\xab\xe2\x00\ \x0a\x3e\xeb\x82\xab\x76\x3b\x11\xd3\xa5\xd3\x24\x19\xab\x50\xce\ \xa5\x03\x55\x55\x81\xff\x21\x01\x24\x34\x5c\xe1\xc9\x35\xa5\xc0\ \x5a\x58\x36\x99\x64\xa1\x19\x36\x15\xfe\x66\x09\x2a\x7c\x77\x06\ \x71\xfd\x9b\xbd\x64\xd3\x04\x09\xf0\xeb\x93\x20\x0e\xb4\x74\x22\ \xa7\x22\x8f\x1c\xa3\xc7\x29\x96\x1b\x28\x02\x40\xc5\xcc\x9f\x23\ \xf4\x58\xfd\xfd\xb9\xa4\x7d\xb5\x87\x15\x2b\xb5\x99\xc8\x27\xa2\ \xcd\x62\x02\x10\x50\xf0\xd9\x92\x5c\xe9\x69\x29\x93\xb3\xa7\xa5\ \x17\xf6\xad\x5b\x60\xa5\x4e\x96\x09\x61\x2c\xd6\x3b\x10\xad\x21\ \x5a\x96\x6e\x27\x6f\x76\xf9\x8d\x4c\xbc\x71\x61\xdc\x52\xb8\x3d\ \x47\xc9\xd8\x0a\x95\xce\x16\x91\x22\xd5\xfc\x43\x51\x89\x99\x42\ \x56\x5c\xf5\xcd\x63\xc5\xeb\x13\x86\x47\x6a\x45\x01\xac\x36\x4d\ \x9e\x6a\x4c\xe5\x92\x88\xa2\x2a\x12\x80\x59\x55\x84\xe6\x57\xf1\ \xf7\xfd\x87\xd0\x57\x02\xce\xf5\xe3\xb1\xb2\xed\x24\x92\x32\x3e\ \x25\xf8\x24\x70\xb3\x62\x8a\x71\xbe\x0b\x36\xaa\xc3\x21\x67\xb9\ \x09\x41\x6b\xce\x2c\xa8\xa9\x76\x23\xe7\xc4\x46\x9f\x5d\x44\x88\ \x7e\xe1\x69\x3f\x42\xcf\x17\x2f\xf1\x8e\x0f\xde\xd9\x70\xfe\xfd\ \xc7\x51\xf5\x5d\x02\x15\x6c\xd0\xbe\x67\x97\x8b\xd9\x6c\xf2\x48\ \x0c\x0e\x8d\x22\x34\x34\xfc\x3e\xee\x7f\x7c\x6e\x63\xe8\xff\x03\ \x88\xa9\x3e\xd3\xab\x54\x57\x97\x6a\xe9\x29\x08\x0f\x0c\x43\x1f\ \x1b\x2c\x47\xe7\xd1\x9e\xcd\x03\x90\x20\xdf\x5e\xc4\x8e\x92\x83\ \x58\x0d\xd2\x7f\xeb\xe3\x4a\xdc\x3b\x7e\x7f\x73\x01\xc4\x28\x3b\ \x79\x11\x29\x99\x07\x11\x98\xaf\x42\x77\xf3\xbd\xcd\x07\x10\xc3\ \xf3\xc5\x55\xda\xed\x34\xfe\x38\x71\x67\xe3\xf2\x3f\x54\x7c\xd3\ \xab\x0b\x25\xef\xbf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ " qt_resource_name = "\ \x00\x05\ \x00\x6f\xa6\x53\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x09\ \x06\x97\xd8\x67\ \x00\x41\ \x00\x62\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x07\xa7\x57\xc7\ \x00\x41\ \x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\x98\xc3\x27\ \x00\x43\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x05\x3e\x57\x47\ \x00\x4f\ \x00\x4b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x0f\xc6\x57\xe7\ \x00\x59\ \x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\xe1\x5e\x27\ \x00\x44\ \x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0c\xf7\x5d\xc7\ \x00\x4e\ \x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x04\xbb\xba\x07\ \x00\x48\ \x00\x6f\x00\x77\x00\x2d\x00\x74\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x00\xa7\x5d\x27\ \x00\x4c\ \x00\x69\x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0f\xd2\xdc\x07\ \x00\x4d\ \x00\x6f\x00\x64\x00\x69\x00\x66\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x09\x29\x3d\x67\ \x00\x4e\ \x00\x65\x00\x77\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x08\xc8\x5c\x67\ \x00\x53\ \x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0a\xcc\xfb\x07\ \x00\x46\ \x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x06\x50\xf8\x47\ \x00\x4c\ \x00\x61\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x20\x00\x49\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x69\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\xc7\xd8\x67\ \x00\x41\ \x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x0f\x00\x00\x00\x02\ \x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\x26\x66\ \x00\x00\x00\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x20\xb2\ \x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x0d\xc6\ \x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x3c\xa1\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x08\xa0\ \x00\x00\x01\x76\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x73\ \x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x17\x95\ \x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x05\x9a\ \x00\x00\x01\x16\x00\x00\x00\x00\x00\x01\x00\x00\x33\x1c\ \x00\x00\x00\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x9f\ \x00\x00\x01\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x38\xb0\ \x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\x1b\xca\ \x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x13\xf6\ \x00\x00\x00\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x2a\xea\ " qInitResources()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 20857, 2134, 2438, 198, 2, 198, 2, 15622, 416, 25, 383, 20857, 3082, 5329, 329, 9485, 48, 83, 19, 357, 48, 83, 410, 19, 13, 23, 13, 22, 8, 198, 2, 198, ...
1.233441
101,503
# -*- coding: utf-8 -*- from .constants import * from . import io from . import ai from . import filters from ._version import __version__ __version_date__ = "Sun Feb 14 14:28:51 2016 +0100" __version_hash__ = "1d5f7f3"
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 764, 9979, 1187, 1330, 1635, 198, 198, 6738, 764, 1330, 33245, 198, 6738, 764, 1330, 257, 72, 198, 6738, 764, 1330, 16628, 198, 198, 6738, 47540, 9641, 1330, ...
2.647059
85
# # PySNMP MIB module ONEFS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ONEFS-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:34:48 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") Unsigned32, snmpModules, IpAddress, Gauge32, enterprises, iso, Integer32, ModuleIdentity, Counter32, NotificationType, TimeTicks, Bits, Counter64, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "snmpModules", "IpAddress", "Gauge32", "enterprises", "iso", "Integer32", "ModuleIdentity", "Counter32", "NotificationType", "TimeTicks", "Bits", "Counter64", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") onefs = ModuleIdentity((1, 3, 6, 1, 4, 1, 12124)) if mibBuilder.loadTexts: onefs.setLastUpdated('0201172301Z') if mibBuilder.loadTexts: onefs.setOrganization('COMPANY_NAME') if mibBuilder.loadTexts: onefs.setContactInfo('COMPANY_NAME Support phone: SUPPORT_PHONE Support email: SUPPORT_EMAIL ') if mibBuilder.loadTexts: onefs.setDescription('This is the enterprise number for OneFS') mibBuilder.exportSymbols("ONEFS-MIB", PYSNMP_MODULE_ID=onefs, onefs=onefs, TimeTicks64=TimeTicks64)
[ 2, 198, 2, 9485, 15571, 7378, 337, 9865, 8265, 16329, 10652, 12, 8895, 33, 357, 4023, 1378, 16184, 76, 489, 8937, 13, 785, 14, 79, 893, 11632, 8, 198, 2, 7054, 45, 13, 16, 2723, 2393, 1378, 14, 14490, 14, 67, 615, 47562, 19, 14,...
2.824251
734
# Generated by Django 3.1.3 on 2021-05-20 06:04 from django.conf import settings from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 513, 13, 16, 13, 18, 319, 33448, 12, 2713, 12, 1238, 9130, 25, 3023, 201, 198, 201, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 201, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 201, ...
2.762712
59
""" Python unit tests """ import pytest, json from streetwise.models import Campaign from . import app, app_context, db
[ 37811, 11361, 4326, 5254, 37227, 198, 198, 11748, 12972, 9288, 11, 33918, 198, 198, 6738, 4675, 3083, 13, 27530, 1330, 13718, 198, 6738, 764, 1330, 598, 11, 598, 62, 22866, 11, 20613, 198 ]
3.69697
33
# Generated by Django 3.1.13 on 2021-10-02 23:23 from django.db import migrations
[ 2, 2980, 515, 416, 37770, 513, 13, 16, 13, 1485, 319, 33448, 12, 940, 12, 2999, 2242, 25, 1954, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 628 ]
2.8
30
from nltk.corpus import movie_reviews import random import cython_module as cm import cytoolz
[ 6738, 299, 2528, 74, 13, 10215, 79, 385, 1330, 3807, 62, 19023, 82, 198, 11748, 4738, 198, 11748, 3075, 400, 261, 62, 21412, 355, 12067, 198, 11748, 3075, 25981, 89, 198 ]
3.032258
31
# encoding: utf-8 # pylint: disable=E1101 # # https://www.twse.com.tw/zh/page/trading/indices/MI_5MINS_HIST.html import scrapy from scrapy import signals, Spider from urllib.parse import urlencode import time from random import randint import datetime import logging from copy import copy from dateutil.relativedelta import relativedelta import collections import json from zoneinfo import ZoneInfo # for cloud function call && scrapy crawl command call # softlink package folder to root try: from package.tools import is_settle, format_number from package.storage import Storage except: from spiders.package.tools import is_settle, format_number from spiders.package.storage import Storage
[ 2, 21004, 25, 3384, 69, 12, 23, 198, 2, 279, 2645, 600, 25, 15560, 28, 36, 1157, 486, 198, 2, 220, 198, 2, 3740, 1378, 2503, 13, 4246, 325, 13, 785, 13, 4246, 14, 23548, 14, 7700, 14, 2213, 4980, 14, 521, 1063, 14, 8895, 62, ...
3.363208
212
from json import loads from time import time
[ 6738, 33918, 1330, 15989, 198, 6738, 640, 1330, 640, 198 ]
4.5
10
import torch.nn as nn import numpy
[ 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 299, 32152, 628 ]
3
12
import numpy as np import os from os.path import dirname, join from modules.numpy import covmix, varroll from modules.pandas import DesignMatrix from modules.scipy.stats import gaussian_mixture
[ 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 6738, 28686, 13, 6978, 1330, 26672, 3672, 11, 4654, 198, 6738, 13103, 13, 77, 32152, 1330, 39849, 19816, 11, 1401, 2487, 198, 6738, 13103, 13, 79, 392, 292, 1330, 8495, 46912, 198, ...
3.438596
57
import pyttsx3 #pip install pyttsx3 import speech_recognition as sr #pip install speechRecognition import datetime import wikipedia #pip install wikipedia import webbrowser import os import smtplib import random engine = pyttsx3.init('sapi5') voices = engine.getProperty('voices') # print(voices[0].id) engine.setProperty('voice', voices[1].id) if __name__ == "__main__": wishMe() while True: # if 1: query = takeCommand().lower() # Logic for executing tasks based on query if 'wikipedia' in query: speak('Searching Wikipedia...') query = query.replace("wikipedia", "") results = wikipedia.summary(query, sentences=2) speak("According to Wikipedia") print(results) speak(results) elif "hello" in query or "hello Suzi" in query: hello1 = "Hello ! How May i Help you.." print(hello1) speak(hello1) elif "who are you" in query or "about you" in query or "your details" in query: who_are_you = "I am Suzi an A I based computer program but i can help you lot like a your assistant ! try me to give simple command !" print(who_are_you) speak(who_are_you) elif 'who make you' in query or 'who made you' in query or 'who created you' in query or 'who develop you' in query: speak(" For your information Prasun Roy Created me ! I can show you his Linked In profile if you want to see. Yes or no .....") ans_from_user_who_made_you = takeCommand() if 'yes' in ans_from_user_who_made_you or 'ok' in ans_from_user_who_made_you or 'yeah' in ans_from_user_who_made_you: webbrowser.open("https://www.linkedin.com/in/prasun-roy-") speak('opening his profile...... please wait') elif 'no' in ans_from_user_who_made_you or 'no thanks' in ans_from_user_who_made_you or 'not' in ans_from_user_who_made_you: speak("All right ! OK...") else : speak("I can't understand. Please say that again !") elif 'open youtube' in query: webbrowser.open("www.youtube.com") speak("opening youtube") elif 'open github' in query: webbrowser.open("https://www.github.com") speak("opening github") elif 'open facebook' in query: webbrowser.open("https://www.facebook.com") speak("opening facebook") elif 'open instagram' in query: webbrowser.open("https://www.instagram.com") speak("opening instagram") elif 'open google' in query: webbrowser.open("google.com") speak("opening google") elif 'open stackoverflow' in query: webbrowser.open("stackoverflow.com") speak("opening stackoverflow") elif 'open yahoo' in query: webbrowser.open("https://www.yahoo.com") speak("opening yahoo") elif 'open gmail' in query: webbrowser.open("https://mail.google.com") speak("opening google mail") elif 'open snapdeal' in query: webbrowser.open("https://www.snapdeal.com") speak("opening snapdeal") elif 'open amazon' in query or 'shop online' in query: webbrowser.open("https://www.amazon.com") speak("opening amazon") elif 'open flipkart' in query: webbrowser.open("https://www.flipkart.com") speak("opening flipkart") elif 'play music' in query: speak("ok i am playing music") music_dir = 'E:\\My MUSIC' songs = os.listdir(music_dir) print(songs) os.startfile(os.path.join(music_dir, songs[0])) elif 'video from pc' in query or "video" in query: speak("ok i am playing videos") video_dir = 'E:\\\My Videos' Videos = os.listdir(video_dir) print(Videos) os.startfile(os.path.join(video_dir,Videos[0])) elif 'good bye' in query: speak("good bye") exit() elif "shutdown" in query: speak("shutting down") os.system('shutdown -s') elif "your name" in query or "sweat name" in query: naa_mme = "Thanks for Asking my self ! Suzi" print(naa_mme) speak(naa_mme) elif "you feeling" in query: print("feeling Very happy to help you") speak("feeling Very happy to help you") elif query == 'none': continue elif 'exit' in query or 'stop' in query or 'quit' in query : exx_exit = 'See you soon. Bye' speak(exx_exit) exit() elif 'the time' in query: strTime = datetime.datetime.now().strftime("%H:%M:%S") speak(f"the time is {strTime}") elif 'open code' in query: codePath = "D:\\vs\\Microsoft VS Code\\Code.exe" os.startfile(codePath) speak("opening visual studio code") elif 'email to prasun' in query: try: speak("What should I say?") content = takeCommand() to = "prasunroy988@gmail.com" sendEmail(to, content) speak("Email has been sent!") except Exception as e: print(e) speak("Sorry.... I am not able to send this email") elif 'how are you' in query: setMsgs = ['Just doing my thing!', 'I am fine!', 'Nice!'] ans_qus = random.choice(setMsgs) speak(ans_qus) speak(" How are you'") ans_from_user_how_are_you = takeCommand() if 'fine' in ans_from_user_how_are_you or 'happy' in ans_from_user_how_are_you or 'okey' in ans_from_user_how_are_you: speak('Great') elif 'not' in ans_from_user_how_are_you or 'sad' in ans_from_user_how_are_you or 'upset' in ans_from_user_how_are_you: speak('Tell me how can i make you happy') else : speak("I can't understand. Please say that again !") else: tempp = query.replace(' ','+') prasun_url="https://www.google.com/search?q=" res_prasun = 'sorry! i cant understand but i search from internet to give your answer !' print(res_prasun) speak(res_prasun) webbrowser.open(prasun_url+tempp)
[ 11748, 12972, 83, 912, 87, 18, 1303, 79, 541, 2721, 12972, 83, 912, 87, 18, 198, 11748, 4046, 62, 26243, 653, 355, 19677, 1303, 79, 541, 2721, 4046, 6690, 2360, 653, 198, 11748, 4818, 8079, 198, 11748, 47145, 11151, 1303, 79, 541, 2...
2.092001
3,163
import json from pathlib import Path from PyQt5 import uic from PyQt5.QtCore import pyqtSignal from PyQt5.QtWidgets import QWidget from vk_api.vk_api import VkApi from utils import print_message, validate_QLineEdit
[ 11748, 33918, 198, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 9485, 48, 83, 20, 1330, 334, 291, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 14055, 1330, 12972, 39568, 11712, 282, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 54, 312, ...
2.691358
81
"""Module responsible to parse Exif information from a image""" import math import datetime from enum import Enum from typing import Optional # third party import exifread import piexif MPH_TO_KMH_FACTOR = 1.60934 """miles per hour to kilometers per hour conversion factor""" KNOTS_TO_KMH_FACTOR = 1.852 """knots to kilometers per hour conversion factor""" def all_tags(path) -> {str: str}: """Method to return Exif tags""" file = open(path, "rb") tags = exifread.process_file(file, details=False) return tags def __dms_to_dd(dms_value) -> float: """DMS is Degrees Minutes Seconds, DD is Decimal Degrees. A typical format would be dd/1,mm/1,ss/1. When degrees and minutes are used and, for example, fractions of minutes are given up to two decimal places, the format would be dd/1,mmmm/100,0/1 """ # degrees degrees_nominator = dms_value.values[0].num degrees_denominator = dms_value.values[0].den degrees = float(degrees_nominator) / float(degrees_denominator) # minutes minutes_nominator = dms_value.values[1].num minutes_denominator = dms_value.values[1].den minutes = float(minutes_nominator) / float(minutes_denominator) # seconds seconds_nominator = dms_value.values[2].num seconds_denominator = dms_value.values[2].den seconds = float(seconds_nominator) / float(seconds_denominator) # decimal degrees return degrees + (minutes / 60.0) + (seconds / 3600.0) def gps_latitude(gps_data: {str: str}) -> Optional[float]: """Exif latitude from gps_data represented by gps tags found in image exif""" if ExifTags.GPS_LATITUDE.value in gps_data: # latitude exists dms_values = gps_data[ExifTags.GPS_LATITUDE.value] _latitude = __dms_to_dd(dms_values) if ExifTags.GPS_LATITUDE_REF.value in gps_data and \ (str(gps_data[ExifTags.GPS_LATITUDE_REF.value]) == str(CardinalDirection.S.value)): # cardinal direction is S so the latitude should be negative _latitude = -1 * _latitude return _latitude # no latitude info found return None def gps_longitude(gps_data: {str: str}) -> Optional[float]: """Exif longitude from gps_data represented by gps tags found in image exif""" if ExifTags.GPS_LONGITUDE.value in gps_data: # longitude exists dms_values = gps_data[ExifTags.GPS_LONGITUDE.value] _longitude = __dms_to_dd(dms_values) if ExifTags.GPS_LONGITUDE_REF.value in gps_data and \ str(gps_data[ExifTags.GPS_LONGITUDE_REF.value]) == str(CardinalDirection.W.value): # cardinal direction is W so the longitude should be negative _longitude = -1 * _longitude return _longitude # no longitude info found return None def gps_compass(gps_data: {str: str}) -> Optional[float]: """Exif compass from gps_data represented by gps tags found in image exif. reference relative to true north""" if ExifTags.GPS_DIRECTION.value in gps_data: # compass exists compass_ratio = gps_data[ExifTags.GPS_DIRECTION.value].values[0] if ExifTags.GPS_DIRECTION_REF.value in gps_data and \ gps_data[ExifTags.GPS_DIRECTION_REF.value] == CardinalDirection.MagneticNorth: # if we find magnetic north then we don't consider a valid compass return None return compass_ratio.num / compass_ratio.den # no compass found return None def gps_timestamp(gps_data: {str: str}) -> Optional[float]: """Exif gps time from gps_data represented by gps tags found in image exif. In exif there are values giving the hour, minute, and second. This is UTC time""" if ExifTags.GPS_TIMESTAMP.value in gps_data: # timestamp exists _timestamp = gps_data[ExifTags.GPS_TIMESTAMP.value] hours: exifread.Ratio = _timestamp.values[0] minutes: exifread.Ratio = _timestamp.values[1] seconds: exifread.Ratio = _timestamp.values[2] day_timestamp = hours.num / hours.den * 3600 + \ minutes.num / minutes.den * 60 + \ seconds.num / seconds.den if ExifTags.GPS_DATE_STAMP.value in gps_data: # this tag is the one present in the exif documentation # but from experience ExifTags.GPS_DATE is replacing this tag gps_date = gps_data[ExifTags.GPS_DATE_STAMP.value].values date_timestamp = datetime.datetime.strptime(gps_date, "%Y:%m:%d").timestamp() return day_timestamp + date_timestamp if ExifTags.GPS_DATE.value in gps_data: # this tag is a replacement for ExifTags.GPS_DATE_STAMP gps_date = gps_data[ExifTags.GPS_DATE.value].values date_timestamp = datetime.datetime.strptime(gps_date, "%Y:%m:%d").timestamp() return day_timestamp + date_timestamp # no date information only hour minutes second of day -> no valid gps timestamp return None # no gps timestamp found return None def timestamp(tags: {str: str}) -> Optional[float]: """Original timestamp determined by the digital still camera. This is timezone corrected.""" if ExifTags.DATE_TIME_ORIGINAL.value in tags: date_taken = tags[ExifTags.DATE_TIME_ORIGINAL.value].values _timestamp = datetime.datetime.strptime(date_taken, "%Y:%m:%d %H:%M:%S").timestamp() return _timestamp if ExifTags.DATE_Time_DIGITIZED.value in tags: date_taken = tags[ExifTags.DATE_Time_DIGITIZED.value].values _timestamp = datetime.datetime.strptime(date_taken, "%Y:%m:%d %H:%M:%S").timestamp() return _timestamp # no timestamp information found return None def gps_altitude(gps_tags: {str: str}) -> Optional[float]: """GPS altitude form exif """ if ExifTags.GPS_ALTITUDE.value in gps_tags: # altitude exists altitude_ratio = gps_tags[ExifTags.GPS_ALTITUDE.value].values[0] altitude = altitude_ratio.num / altitude_ratio.den if ExifTags.GPS_ALTITUDE_REF.value in gps_tags and \ gps_tags[ExifTags.GPS_ALTITUDE_REF.value] == SeaLevel.BELOW.value: altitude = -1 * altitude return altitude return None def gps_speed(gps_tags: {str: str}) -> Optional[float]: """Returns GPS speed from exif in km per hour or None if no gps speed tag found""" if ExifTags.GPS_SPEED.value in gps_tags: # gps speed exist speed_ratio = gps_tags[ExifTags.GPS_SPEED.value].values[0] speed = speed_ratio.num / speed_ratio.den if ExifTags.GPS_SPEED_REF.value in gps_tags: if gps_tags[ExifTags.GPS_SPEED_REF.value] == SpeedUnit.MPH.value: speed = SpeedUnit.convert_mph_to_kmh(speed) if gps_tags[ExifTags.GPS_SPEED_REF.value] == SpeedUnit.KNOTS.value: speed = SpeedUnit.convert_knots_to_kmh(speed) return speed # no gps speed tag found return None def add_gps_tags(path: str, gps_tags: {str: any}): """This method will add gps tags to the photo found at path""" exif_dict = piexif.load(path) for tag, tag_value in gps_tags.items(): exif_dict["GPS"][tag] = tag_value exif_bytes = piexif.dump(exif_dict) piexif.insert(exif_bytes, path) def create_required_gps_tags(timestamp_gps: float, latitude: float, longitude: float) -> {str: any}: """This method will creates gps required tags """ exif_gps = {} dms_latitude = __dd_to_dms(latitude) dms_longitude = __dd_to_dms(longitude) day = int(timestamp_gps / 86400) * 86400 hour = int((timestamp_gps - day) / 3600) minutes = int((timestamp_gps - day - hour * 3600) / 60) seconds = int(timestamp_gps - day - hour * 3600 - minutes * 60) day_timestamp_str = datetime.date.fromtimestamp(day).strftime("%Y:%m:%d") exif_gps[piexif.GPSIFD.GPSTimeStamp] = [(hour, 1), (minutes, 1), (seconds, 1)] exif_gps[piexif.GPSIFD.GPSDateStamp] = day_timestamp_str exif_gps[piexif.GPSIFD.GPSLatitudeRef] = "S" if latitude < 0 else "N" exif_gps[piexif.GPSIFD.GPSLatitude] = dms_latitude exif_gps[piexif.GPSIFD.GPSLongitudeRef] = "W" if longitude < 0 else "E" exif_gps[piexif.GPSIFD.GPSLongitude] = dms_longitude return exif_gps def add_optional_gps_tags(exif_gps: {str: any}, speed: float, altitude: float, compass: float) -> {str: any}: """This method will append optional tags to exif_gps tags dictionary""" if speed: exif_gps[piexif.GPSIFD.GPSSpeed] = (speed, 1) exif_gps[piexif.GPSIFD.GPSSpeedRef] = SpeedUnit.KMH.value if altitude: exif_gps[piexif.GPSIFD.GPSAltitude] = (altitude, 1) sea_level = SeaLevel.BELOW.value if altitude < 0 else SeaLevel.ABOVE.value exif_gps[piexif.GPSIFD.GPSAltitudeRef] = sea_level if compass: exif_gps[piexif.GPSIFD.GPSImgDirection] = (compass, 1) exif_gps[piexif.GPSIFD.GPSImgDirectionRef] = CardinalDirection.TrueNorth.value
[ 37811, 26796, 4497, 284, 21136, 1475, 361, 1321, 422, 257, 2939, 37811, 198, 11748, 10688, 198, 11748, 4818, 8079, 198, 6738, 33829, 1330, 2039, 388, 198, 6738, 19720, 1330, 32233, 198, 2, 2368, 2151, 198, 11748, 409, 361, 961, 198, 117...
2.23999
4,121
# NPTEL EXERCISE 5 courses = {} students = [] grades = {} f = 0 while(True): S = input() if S=="EndOfInput": break if S=='Courses': f = 1 continue elif S=='Students': f = 2 continue elif S=='Grades': f = 3 continue if f==1 : S = S.split("~") courses[S[0]] = S[2:] elif f==2: S = S.split("~") students += [S] elif f==3: S = S.split("~") try: grades[S[0]].append(S[1:]) except: grades[S[0]] = [S[1:]] #print(courses) #print(students) #print(grades) students.sort() for stud in students: roll = stud[0] gpa = 0 count = 0 for key in grades.keys(): for res in grades[key]: if roll==res[2]: count += 1 if res[3]=='A': gpa += 10 elif res[3]=='AB': gpa += 9 elif res[3]=='B': gpa += 8 elif res[3]=='BC': gpa += 7 elif res[3]=='C': gpa += 6 elif res[3]=='CD': gpa += 5 elif res[3]=='D': gpa += 4 if gpa!=0: gpa = (gpa/count) ans = "~".join(stud) + "~" + "{0:3.1f}".format(gpa) else: ans = "~".join(stud) + "~" + str(gpa) print(ans)
[ 2, 399, 11571, 3698, 7788, 47691, 24352, 642, 201, 198, 201, 198, 66, 39975, 796, 23884, 201, 198, 19149, 658, 796, 17635, 201, 198, 31177, 796, 23884, 201, 198, 69, 796, 657, 201, 198, 4514, 7, 17821, 2599, 201, 198, 201, 198, 220,...
1.529472
984
#!/usr/bin/python3 import abc import re import logger def list_backups(self, archive, repo): """List all the backups that currently exist in the remote given archive/repo.""" pattern = re.compile(self.backup_pattern) return self.list_objects_matching_regex(pattern, prefix=f"{archive}/{repo}") def list_buckets(self, archive, repo, backup): """List all the buckets that currently exist in the remote given archive/repo/backup.""" backup_re, bucket_re = re.escape(backup) + "/", self.bucket_pattern backup_pattern, backup_bucket_pattern = re.compile(backup_re), re.compile(backup_re + bucket_re) return [backup_pattern.sub('', obj) for obj in self.list_objects_matching_regex( backup_bucket_pattern, prefix=f"{archive}/{repo}/{backup}")] def list_rift_indexes(self, archive, repo, backup, bucket): """List all the rift indexes that exist in the remote given archive/repo/backup/bucket.""" pattern = re.compile(self.rift_pattern) return self.list_objects_matching_regex(pattern, prefix=f"{archive}/{repo}/{backup}/{bucket}/data/")
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 198, 198, 11748, 450, 66, 198, 11748, 302, 198, 11748, 49706, 628, 220, 220, 220, 825, 1351, 62, 1891, 4739, 7, 944, 11, 15424, 11, 29924, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 372...
2.596811
439
from django.contrib import admin from .models import User , Trip, Notification , Spending # Register your models here. admin.site.register(User) admin.site.register(Trip) admin.site.register(Notification) admin.site.register(Spending)
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 6738, 764, 27530, 1330, 11787, 837, 18383, 11, 42808, 837, 43902, 198, 198, 2, 17296, 534, 4981, 994, 13, 198, 28482, 13, 15654, 13, 30238, 7, 12982, 8, 198, 28482, 13, 15654, 13, ...
3.507463
67
''' The follwing code runs a test lstm network on the CIFAR dataset I will explicitly write the networks here for ease of understanding with cnn_sropout = 0.4 and rnn dropout = 0.2and lr = 1e-3 and res = 8 ################# cnn_gru_True Validation Accuracy = [0.3408, 0.411, 0.44, 0.4448, 0.466, 0.4684, 0.4802, 0.4846, 0.4848, 0.512, 0.5098, 0.5154, 0.5212, 0.5276, 0.5352, 0.5306, 0.5354, 0.5388, 0.5374, 0.5418, 0.55, 0.537, 0.5556, 0.543, 0.5458, 0.548, 0.5462, 0.554, 0.5596, 0.5438] ################# cnn_gru_True Training Accuracy = [0.2734222, 0.3752889, 0.40646666, 0.42904446, 0.44386667, 0.45495555, 0.46284443, 0.47604445, 0.4802889, 0.48911113, 0.4968222, 0.4992, 0.50622225, 0.51126665, 0.5147333, 0.52275556, 0.5224444, 0.52537775, 0.5287778, 0.53275555, 0.53286666, 0.5396444, 0.5384222, 0.5423333, 0.542, 0.5485333, 0.547, 0.5458, 0.5524222, 0.55104446] with cnn_sropout = 0.4 and rnn dropout = 0.2and lr = 1e-3 and res = 16 ################# extended_cnn_one_img Validation Accuracy = [0.416, 0.4696, 0.5168, 0.5424, 0.557, 0.5658, 0.5782, 0.5884, 0.5902, 0.5978, 0.5996, 0.6034, 0.6122, 0.606, 0.6112, 0.6104, 0.618, 0.6158, 0.6162, 0.6132, 0.6132, 0.6178, 0.6122, 0.626, 0.6168, 0.6164, 0.62, 0.6288, 0.6304, 0.6328] ################# extended_cnn_one_img Training Accuracy = [0.2964, 0.42106667, 0.46775556, 0.49335554, 0.51544446, 0.52937776, 0.5436889, 0.5556889, 0.56684446, 0.57053334, 0.5798444, 0.58955556, 0.5917778, 0.59702224, 0.6014444, 0.60657775, 0.6142222, 0.6137556, 0.6195111, 0.6193111, 0.6226444, 0.6248, 0.6245555, 0.62575555, 0.6321333, 0.6330889, 0.6327556, 0.63677776, 0.63571113, 0.6396889] ################# cnn_convlstm_True Validation Accuracy = [0.4038, 0.4724, 0.521, 0.5402, 0.52, 0.5516, 0.5658, 0.5654, 0.5904, 0.5866, 0.6024, 0.6026, 0.6114, 0.6224, 0.5982, 0.6178, 0.6314, 0.6208, 0.6158, 0.6352, 0.6412, 0.63, 0.6424, 0.6278, 0.6336, 0.6278, 0.646, 0.6272, 0.6414, 0.6406] ################# cnn_convlstm_True Training Accuracy = [0.2964, 0.42106667, 0.46775556, 0.49335554, 0.51544446, 0.52937776, 0.5436889, 0.5556889, 0.56684446, 0.57053334, 0.5798444, 0.58955556, 0.5917778, 0.59702224, 0.6014444, 0.60657775, 0.6142222, 0.6137556, 0.6195111, 0.6193111, 0.6226444, 0.6248, 0.6245555, 0.62575555, 0.6321333, 0.6330889, 0.6327556, 0.63677776, 0.63571113, 0.6396889] with cnn_sropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 out.812929 ################# cnn_gru_True Validation Accuracy = [0.3452, 0.41, 0.4206, 0.4382, 0.4626, 0.4786, 0.481, 0.4984, 0.5006, 0.5038, 0.5112, 0.5022, 0.522, 0.527, 0.5314, 0.5362, 0.5434, 0.53, 0.543, 0.5534, 0.5528, 0.5456, 0.548, 0.5492, 0.5602, 0.5662, 0.5554, 0.5626, 0.5732, 0.5608, 0.5612, 0.5678, 0.578, 0.5572, 0.575, 0.5674, 0.5674, 0.5678, 0.574, 0.5832, 0.567, 0.5676, 0.5872, 0.5856, 0.5908, 0.5916, 0.586, 0.5628, 0.582, 0.5772, 0.5702, 0.5756, 0.5792, 0.5726, 0.59, 0.5784, 0.576, 0.5752, 0.5894, 0.5844, 0.583, 0.5832, 0.5782, 0.5696, 0.5812, 0.589, 0.5818, 0.5826, 0.5922, 0.5896, 0.5816, 0.5798, 0.5818, 0.5834, 0.5822, 0.5836, 0.5828, 0.569, 0.5914, 0.5822, 0.5974, 0.5928, 0.5956, 0.5936, 0.5888, 0.5932, 0.5986, 0.593, 0.5802, 0.5878, 0.5876, 0.5846, 0.6018, 0.5932, 0.5862, 0.5898, 0.5902, 0.5948, 0.5952, 0.596] ################# cnn_gru_True Training Accuracy = [0.2522, 0.35944444, 0.40026668, 0.42453334, 0.4369111, 0.45024446, 0.46413332, 0.47453332, 0.47904444, 0.48753333, 0.4946, 0.50115556, 0.50531113, 0.5134, 0.5142, 0.5196222, 0.5276667, 0.529, 0.5313778, 0.5318889, 0.5356445, 0.54084444, 0.54051113, 0.5448889, 0.54855555, 0.5504444, 0.5562889, 0.5566889, 0.55655557, 0.5622889, 0.5615111, 0.5605111, 0.5638, 0.56615555, 0.5662444, 0.56953335, 0.5730444, 0.5717555, 0.5730444, 0.57368886, 0.5764889, 0.5782222, 0.58004445, 0.5802889, 0.5833778, 0.5824222, 0.58437777, 0.5869111, 0.58375555, 0.5871556, 0.5907556, 0.58444446, 0.58846664, 0.5914889, 0.59033334, 0.59257776, 0.5913333, 0.59606665, 0.5928222, 0.59577775, 0.5945333, 0.59613335, 0.5953556, 0.59786665, 0.5990222, 0.5993556, 0.60215557, 0.60344446, 0.6027111, 0.60364443, 0.6039111, 0.6062222, 0.60364443, 0.6062667, 0.6060445, 0.6081333, 0.6075778, 0.6094, 0.60568887, 0.6079556, 0.6064444, 0.61113334, 0.61322224, 0.6088667, 0.6125778, 0.61248887, 0.61282223, 0.61244446, 0.6136444, 0.61337775, 0.6174667, 0.61248887, 0.61535555, 0.6160667, 0.6134, 0.6155556, 0.6161111, 0.6158444, 0.61855555, 0.61642224] with cnn_sropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 500 epochs out.813849 ################# cnn_gru_True Validation Accuracy = [0.3136, 0.4024, 0.4436, 0.4546, 0.4648, 0.4552, 0.4766, 0.5058, 0.5028, 0.5182, 0.522, 0.5142, 0.5306, 0.5324, 0.5302, 0.5424, 0.5392, 0.543, 0.5328, 0.5276, 0.5474, 0.549, 0.5512, 0.5326, 0.5482, 0.5558, 0.5548, 0.5594, 0.5546, 0.566, 0.559, 0.5674, 0.564, 0.5584, 0.5698, 0.5718, 0.567, 0.5618, 0.5632, 0.574, 0.5696, 0.5758, 0.5636, 0.5744, 0.5706, 0.5734, 0.5508, 0.5692, 0.5802, 0.5704, 0.572, 0.5706, 0.5888, 0.5828, 0.583, 0.5812, 0.5872, 0.5748, 0.5844, 0.5784, 0.5838, 0.5862, 0.5826, 0.5838, 0.5894, 0.5942, 0.5932, 0.5818, 0.5836, 0.5914, 0.592, 0.5956, 0.5772, 0.5936, 0.5908, 0.5808, 0.5898, 0.5734, 0.578, 0.5868, 0.578, 0.5998, 0.59, 0.5956, 0.5708, 0.585, 0.5902, 0.5922, 0.5826, 0.5936, 0.5916, 0.5846, 0.6012, 0.5852, 0.5892, 0.592, 0.5806, 0.5938, 0.5916, 0.5866, 0.5952, 0.5944, 0.5956, 0.59, 0.592, 0.5922, 0.5962, 0.5906, 0.6006, 0.5912, 0.596, 0.6004, 0.596, 0.5838, 0.5918, 0.581, 0.5912, 0.587, 0.5942, 0.586, 0.591, 0.5906, 0.583, 0.5874, 0.5976, 0.5866, 0.5884, 0.5894, 0.5968, 0.5992, 0.5912, 0.5932, 0.5828, 0.5958, 0.5878, 0.5888, 0.595, 0.5948, 0.5898, 0.5956, 0.5896, 0.5942, 0.5938, 0.5884, 0.5874, 0.5954, 0.5908, 0.5948, 0.5972, 0.5986, 0.5984, 0.5952, 0.589, 0.5892, 0.6044, 0.6028, 0.5944, 0.591, 0.6018, 0.5932, 0.5982, 0.5896, 0.598, 0.6026, 0.6028, 0.6034, 0.5916, 0.5952, 0.5932, 0.597, 0.6008, 0.6026, 0.5974, 0.5954, 0.6014, 0.5988, 0.606, 0.6056, 0.5944, 0.6048, 0.6084, 0.6026, 0.599, 0.6022, 0.6022, 0.6022, 0.601, 0.5928, 0.5988, 0.6008, 0.599, 0.6016, 0.6036, 0.6056, 0.6142, 0.6064, 0.6082, 0.6032, 0.5974, 0.6082, 0.61, 0.6032, 0.6018, 0.6026, 0.6088, 0.6014, 0.6022, 0.6094, 0.6034, 0.5938, 0.6066, 0.5838, 0.5978, 0.6012, 0.5988, 0.6062, 0.6044, 0.5946, 0.597, 0.5954, 0.5944, 0.594, 0.5934, 0.5984, 0.6038, 0.607, 0.6056, 0.5948, 0.604, 0.6012, 0.5988, 0.608, 0.601, 0.6016, 0.5996, 0.6008, 0.6048, 0.6076, 0.6038, 0.6058, 0.6038, 0.6078, 0.5968, 0.605, 0.6046, 0.5982, 0.6002, 0.6092, 0.5956, 0.605, 0.6006, 0.5998, 0.5922, 0.6044, 0.5946, 0.602, 0.6008, 0.6068, 0.6018, 0.602, 0.594, 0.6046, 0.5992, 0.6006, 0.5962, 0.6092, 0.6026, 0.5984, 0.6078, 0.6024, 0.6048, 0.6032, 0.598, 0.6072, 0.6014, 0.5888, 0.6136, 0.605, 0.6032, 0.6032, 0.5988, 0.6014, 0.5988, 0.6054, 0.6038, 0.599, 0.5976, 0.5962, 0.602, 0.6028, 0.6082, 0.5936, 0.6052, 0.6014, 0.6022, 0.5976, 0.606, 0.6038, 0.6018, 0.6066, 0.601, 0.6038, 0.601, 0.6028, 0.6104, 0.5994, 0.6048, 0.5996, 0.6054, 0.597, 0.6042, 0.6048, 0.5962, 0.5968, 0.6036, 0.598, 0.6002, 0.593, 0.5972, 0.6024, 0.6018, 0.6102, 0.601, 0.6038, 0.594, 0.6068, 0.606, 0.6138, 0.6048, 0.602, 0.591, 0.6118, 0.6074, 0.5994, 0.5962, 0.6048, 0.6006, 0.6058, 0.6026, 0.6032, 0.6028, 0.608, 0.6036, 0.5968, 0.6004, 0.6054, 0.601, 0.6038, 0.6058, 0.6052, 0.5996, 0.6044, 0.598, 0.5986, 0.6018, 0.6002, 0.6064, 0.6064, 0.5918, 0.6004, 0.601, 0.605, 0.5974, 0.608, 0.608, 0.5968, 0.6042, 0.6034, 0.5984, 0.597, 0.6006, 0.6038, 0.603, 0.6004, 0.594, 0.5924, 0.5986, 0.5994, 0.6108, 0.5988, 0.6052, 0.6006, 0.6028, 0.602, 0.6016, 0.5996, 0.6012, 0.6014, 0.6042, 0.5988, 0.6064, 0.5982, 0.6, 0.6066, 0.609, 0.6096, 0.5948, 0.605, 0.6036, 0.5952, 0.6086, 0.6008, 0.5934, 0.6066, 0.608, 0.5998, 0.6042, 0.6016, 0.6018, 0.6062, 0.6068, 0.6194, 0.6032, 0.6116, 0.6058, 0.6022, 0.6056, 0.6, 0.6034, 0.6054, 0.6124, 0.6092, 0.603, 0.6016, 0.6018, 0.6084, 0.6026, 0.6154, 0.6034, 0.6118, 0.6102, 0.601, 0.603, 0.606, 0.6114, 0.6024, 0.6112, 0.6094, 0.6026, 0.598, 0.6074, 0.6066, 0.602, 0.6058, 0.603, 0.6078, 0.604, 0.605, 0.607, 0.605, 0.6044, 0.6026, 0.6006, 0.5988, 0.6056, 0.6016, 0.6054, 0.6004, 0.6024, 0.6092, 0.5954, 0.5962, 0.6036, 0.6008, 0.602, 0.6088, 0.6022, 0.6052, 0.5982, 0.6036, 0.601, 0.5956, 0.6024, 0.6104, 0.6028, 0.5898, 0.5994, 0.5946, 0.6054, 0.6064, 0.6102, 0.609, 0.6024, 0.599, 0.601, 0.6074, 0.6018, 0.595, 0.6034, 0.6028, 0.6008, 0.5996, 0.5992, 0.6006, 0.5996, 0.6018, 0.5968, 0.6016, 0.602, 0.6018] ################# cnn_gru_True Training Accuracy = [0.26466668, 0.36813334, 0.40513334, 0.4256, 0.44268888, 0.4564222, 0.46568888, 0.4769111, 0.48531112, 0.491, 0.49744445, 0.50593334, 0.5138222, 0.51564443, 0.5213778, 0.5223778, 0.5283778, 0.5326222, 0.53275555, 0.53764445, 0.54586667, 0.5451556, 0.54735553, 0.5526, 0.5533111, 0.55424446, 0.5568889, 0.56262225, 0.5646, 0.5660667, 0.56333333, 0.5680889, 0.5706889, 0.5710889, 0.5733111, 0.5754667, 0.57637775, 0.5764667, 0.5768222, 0.5766889, 0.57817775, 0.5839555, 0.5825111, 0.5855778, 0.58424443, 0.5876, 0.58786666, 0.58806664, 0.58966666, 0.5938445, 0.5907111, 0.5939556, 0.59331113, 0.59475553, 0.5945333, 0.59515554, 0.59853333, 0.59635556, 0.6008667, 0.59893334, 0.5993556, 0.6007111, 0.6008889, 0.6032889, 0.6000444, 0.6049778, 0.60246664, 0.60384446, 0.60564446, 0.6048889, 0.6089778, 0.6061111, 0.60966665, 0.60686666, 0.60895556, 0.60973334, 0.60944444, 0.6095778, 0.6099778, 0.6114889, 0.6125778, 0.6149333, 0.61322224, 0.6185333, 0.6148, 0.61682224, 0.6157333, 0.6142, 0.6166222, 0.6152, 0.6158222, 0.61653334, 0.62155557, 0.6175333, 0.6168889, 0.61995554, 0.6193778, 0.6175778, 0.6207111, 0.62277776, 0.62144446, 0.62013334, 0.62328887, 0.62633336, 0.62722224, 0.62171113, 0.6248222, 0.62586665, 0.6251778, 0.6256889, 0.6254, 0.6249111, 0.62648886, 0.62468886, 0.6260889, 0.6276, 0.6266, 0.6273556, 0.6258444, 0.6287778, 0.6277111, 0.63026667, 0.6285333, 0.62846667, 0.62813336, 0.6326889, 0.6296, 0.63177776, 0.6323778, 0.6324, 0.63215554, 0.63104445, 0.6322889, 0.6328667, 0.63173336, 0.63515556, 0.6334, 0.63575554, 0.63404447, 0.6330444, 0.63526666, 0.6344444, 0.6337778, 0.63335556, 0.63386667, 0.6336222, 0.6369333, 0.63553333, 0.63713336, 0.63677776, 0.6365333, 0.6353111, 0.6347333, 0.6371111, 0.637, 0.63688886, 0.6344, 0.6371111, 0.636, 0.6394889, 0.638, 0.63946664, 0.63566667, 0.63857776, 0.6413111, 0.6376889, 0.63493335, 0.6387111, 0.6397778, 0.64055556, 0.64073336, 0.63766664, 0.6411333, 0.6392222, 0.6402444, 0.6413556, 0.64077777, 0.6387333, 0.6377778, 0.63884443, 0.64177775, 0.6401111, 0.64, 0.6415111, 0.64166665, 0.6448, 0.6414667, 0.64228886, 0.6416889, 0.63975555, 0.6437778, 0.6429778, 0.6421555, 0.64346665, 0.64155555, 0.64284444, 0.6429333, 0.64415556, 0.64611113, 0.64555556, 0.6452444, 0.64522225, 0.64824444, 0.64275557, 0.64593333, 0.64662224, 0.6431556, 0.6444, 0.6441111, 0.64482224, 0.6471556, 0.64584446, 0.6441778, 0.6448, 0.6446, 0.64775556, 0.64764446, 0.64677775, 0.646, 0.6472222, 0.6472, 0.6481111, 0.6465333, 0.6469778, 0.6510222, 0.64677775, 0.6503556, 0.647, 0.64944446, 0.64655554, 0.64724445, 0.65128887, 0.64955556, 0.6482222, 0.6444889, 0.6488, 0.64797777, 0.6509111, 0.6520444, 0.65022224, 0.6516, 0.645, 0.65044445, 0.64702225, 0.65264446, 0.6487778, 0.64944446, 0.6492222, 0.6536889, 0.6499778, 0.6486222, 0.6539556, 0.64806664, 0.6488, 0.65055555, 0.6541778, 0.6518667, 0.6526667, 0.65155554, 0.6526, 0.65202224, 0.64977777, 0.65315557, 0.65128887, 0.64773333, 0.6536222, 0.65335554, 0.6523778, 0.6494, 0.6510889, 0.6496889, 0.6514, 0.65117776, 0.65375555, 0.65415555, 0.6495778, 0.65055555, 0.6507556, 0.65346664, 0.6548, 0.65115553, 0.6553111, 0.6517778, 0.6532889, 0.6548, 0.6546222, 0.65533334, 0.6521556, 0.6543555, 0.65217775, 0.65275556, 0.6522, 0.65555555, 0.65482223, 0.6541111, 0.6546889, 0.65533334, 0.6541111, 0.6554, 0.6537333, 0.6537778, 0.6528444, 0.65331113, 0.65455556, 0.6544, 0.65477777, 0.6572667, 0.65606666, 0.6556, 0.65606666, 0.6553556, 0.65353334, 0.6518, 0.6536667, 0.65595555, 0.65775555, 0.65657777, 0.6549778, 0.65764445, 0.6557111, 0.6556, 0.6590222, 0.6538889, 0.6591778, 0.65444446, 0.6562, 0.6564, 0.6607778, 0.6556444, 0.65826666, 0.6562, 0.6581333, 0.6578889, 0.65853333, 0.6584, 0.65782225, 0.6594667, 0.6552, 0.6586667, 0.658, 0.6588, 0.66135556, 0.65668887, 0.6561555, 0.6581111, 0.6599111, 0.6588, 0.6568, 0.6608667, 0.6603778, 0.6602889, 0.6592, 0.6594667, 0.65706664, 0.6567111, 0.6608667, 0.65886664, 0.65966666, 0.66035557, 0.66175556, 0.65584445, 0.65966666, 0.6606889, 0.65922225, 0.6595111, 0.65515554, 0.65984446, 0.6612667, 0.6605333, 0.662, 0.6613778, 0.6611556, 0.6580667, 0.66135556, 0.65882224, 0.65655553, 0.65955555, 0.65988886, 0.6593556, 0.65808886, 0.6616667, 0.6614222, 0.6634, 0.6632222, 0.6618, 0.6599778, 0.66013336, 0.6608, 0.66146666, 0.65944445, 0.65966666, 0.66135556, 0.66004443, 0.6608222, 0.6630222, 0.6620889, 0.66195554, 0.6582222, 0.6606445, 0.6629556, 0.66164446, 0.66055554, 0.6608889, 0.66175556, 0.6606, 0.6614222, 0.6640222, 0.66364443, 0.6643556, 0.66191113, 0.6626667, 0.6630222, 0.6656889, 0.6631333, 0.66293335, 0.6617778, 0.6610889, 0.6614889, 0.662, 0.6593111, 0.6612667, 0.66102225, 0.6631333, 0.66395557, 0.66282225, 0.66713333, 0.6623778, 0.6648222, 0.6622667, 0.66746664, 0.6616667, 0.6630222, 0.6622, 0.6624, 0.66415554, 0.662, 0.6612222, 0.6618222, 0.6629111, 0.66426665, 0.66315556, 0.6640667, 0.6640889, 0.66533333, 0.6626, 0.6617778, 0.66477776, 0.6654889, 0.66477776, 0.6624889, 0.6622222, 0.6642, 0.6663111, 0.66293335, 0.6636889, 0.6643556, 0.6652, 0.6680889, 0.6658222, 0.66415554, 0.6677778, 0.6622889, 0.6688, 0.6630222, 0.66848886, 0.66355556, 0.6624889, 0.6658222, 0.66602224, 0.6631778, 0.6618889, 0.6654222, 0.6662889, 0.66726667, 0.66384447, 0.6662, 0.66477776, 0.6650889, 0.66293335, 0.66484445, 0.66371113, 0.6646, 0.6661556, 0.66191113, 0.6656889, 0.6649333, 0.66686666, 0.66544443, 0.66624445, 0.66455555, 0.6698222, 0.6665556, 0.6648, 0.6663111, 0.66455555, 0.6653778, 0.6675556, 0.66404444, 0.66484445, 0.66617775] with cnn_dropout = 0.2 and rnn dropout = 0.2and lr = 5e-4 with res = 8 out.812847 ################# cnn_gru_True Validation Accuracy = [0.3598, 0.4126, 0.4454, 0.4714, 0.4722, 0.506, 0.5062, 0.5154, 0.5382, 0.5296, 0.5368, 0.5352, 0.5364, 0.5584, 0.5564, 0.5624, 0.5 704, 0.5622, 0.5612, 0.5568, 0.5656, 0.5572, 0.572, 0.5718, 0.569, 0.576, 0.5718, 0.5726, 0.5732, 0.5754, 0.5758, 0.5754, 0.5802, 0.5778, 0.5778, 0.5818, 0.5808, 0.573, 0.5764, 0.5782, 0.578, 0.5828, 0.5656, 0.5796, 0.5704, 0.5808, 0.5764, 0.5774, 0.5644, 0.5794, 0.5794, 0.5834, 0.57, 0.5724, 0.5806, 0.5784, 0.5794, 0.5834, 0.5756, 0.5786, 0.5802, 0.5746, 0.571, 0.5812, 0.569, 0.5724, 0.5794, 0.5762, 0.581, 0.5664, 0.574, 0.5782, 0.5738, 0.5714, 0.5754, 0.5716, 0.5638, 0.5696, 0.5706, 0.5758, 0.567, 0.571, 0.5716, 0.5788, 0.559, 0.5682, 0.5716, 0.5728, 0.5718, 0.5758, 0.569, 0.573, 0.5756, 0.5746, 0.5744, 0.571, 0.5762, 0.5792, 0.5688, 0.5796] ################# cnn_gru_True Training Accuracy = [0.27786666, 0.3842222, 0.42204446, 0.44537777, 0.4655111, 0.48406667, 0.49457777, 0.50564444, 0.5188889, 0.5279111, 0.5366667, 0.544, 0.5515111, 0.5573556, 0.56457776, 0.5718222, 0.5748889, 0.5826667, 0.5850222, 0.5921556, 0.59155554, 0.5960889, 0.6028889, 0.60664445, 0.6115556, 0.61553335, 0.61968887, 0.6218889, 0.6240444, 0.6262222, 0.6306889, 0.6329778, 0.6356, 0.6404, 0.6475111, 0.6451333, 0.64626664, 0.6536889, 0.65573335, 0.65842223, 0.65977776, 0.6573111, 0.6640889, 0.6664, 0.66866666, 0.6700889, 0.6704222, 0.6747556, 0.6781333, 0.6785111, 0.67693335, 0.68086666, 0.68293333, 0.6823111, 0.6862444, 0.69013333, 0.69044447, 0.6957778, 0.6952, 0.6944889, 0.69953334, 0.6963111, 0.7000222, 0.7018667, 0.7029333, 0.7018222, 0.70446664, 0.7051111, 0.7105778, 0.70993334, 0.71308887, 0.71331114, 0.71128887, 0.7160444, 0.7176222, 0.71793336, 0.71846664, 0.72062224, 0.7216222, 0.7220889, 0.72117776, 0.72617775, 0.72535557, 0.72904444, 0.72675556, 0.73215556, 0.7297556, 0.72926664, 0.7349333, 0.73224443, 0.7335778, 0.73744446, 0.73384446, 0.73735553, 0.73744446, 0.7404889, 0.73928887, 0.742, 0.7410667, 0.7395778] with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 10 samples and 500 epochs out.813851 ################# cnn_gru_True Validation Accuracy = [0.3354, 0.4208, 0.4522, 0.463, 0.4448, 0.4934, 0.5048, 0.5036, 0.5082, 0.5202, 0.4958, 0.5184, 0.5302, 0.5364, 0.5474, 0.5298, 0.5382, 0.5446, 0.5486, 0.5496, 0.5468, 0.5616, 0.5516, 0.5542, 0.5606, 0.5624, 0.5744, 0.5644, 0.5624, 0.5712, 0.5714, 0.5746, 0.5638, 0.5622, 0.5768, 0.5792, 0.5852, 0.5758, 0.5768, 0.5708, 0.5882, 0.5814, 0.5778, 0.5884, 0.5892, 0.5862, 0.5828, 0.5838, 0.5892, 0.58, 0.595, 0.5872, 0.58, 0.5868, 0.5888, 0.592, 0.5848, 0.5824, 0.5852, 0.5832, 0.5898, 0.5846, 0.584, 0.5942, 0.5858, 0.5918, 0.5826, 0.597, 0.5984, 0.5928, 0.5802, 0.5972, 0.5976, 0.5964, 0.5894, 0.5888, 0.5948, 0.5944, 0.594, 0.5934, 0.5952, 0.5976, 0.5994, 0.6002, 0.5926, 0.5984, 0.5976, 0.591, 0.593, 0.6076, 0.5888, 0.6018, 0.5908, 0.5964, 0.5966, 0.5968, 0.5912, 0.5976, 0.5912, 0.597, 0.5934, 0.588, 0.6014, 0.592, 0.5952, 0.606, 0.6026, 0.5932, 0.6, 0.5944, 0.5898, 0.5914, 0.5976, 0.6008, 0.5894, 0.6058, 0.6038, 0.5974, 0.5996, 0.6064, 0.6014, 0.5914, 0.6012, 0.5922, 0.5938, 0.6008, 0.6058, 0.6046, 0.6012, 0.593, 0.6, 0.6046, 0.5946, 0.5962, 0.592, 0.5968, 0.5946, 0.5966, 0.5968, 0.588, 0.6004, 0.6008, 0.592, 0.5976, 0.5998, 0.5854, 0.6012, 0.5994, 0.5908, 0.5996, 0.6056, 0.5924, 0.5974, 0.5986, 0.5926, 0.5938, 0.5902, 0.5924, 0.598, 0.5988, 0.6028, 0.601, 0.5976, 0.597, 0.6044, 0.5894, 0.5904, 0.6, 0.595, 0.5974, 0.5998, 0.594, 0.5946, 0.5968, 0.5938, 0.5858, 0.6016, 0.5934, 0.6052, 0.598, 0.608, 0.6, 0.6008, 0.5956, 0.591, 0.6024, 0.6076, 0.5986, 0.5974, 0.6004, 0.6046, 0.597, 0.6048, 0.588, 0.5902, 0.5868, 0.5928, 0.5986, 0.5994, 0.5962, 0.5946, 0.594, 0.5972, 0.592, 0.5916, 0.589, 0.6042, 0.5908, 0.5922, 0.5924, 0.5902, 0.5914, 0.6026, 0.5992, 0.5956, 0.5954, 0.6034, 0.5906, 0.6052, 0.5918, 0.6, 0.6004, 0.5912, 0.5942, 0.5972, 0.6066, 0.5946, 0.5972, 0.5854, 0.5994, 0.5954, 0.592, 0.5904, 0.5956, 0.5946, 0.5838, 0.5872, 0.5948, 0.5972, 0.5996, 0.605, 0.5962, 0.604, 0.5976, 0.6, 0.6016, 0.6014, 0.6044, 0.5928, 0.598, 0.6, 0.59, 0.5978, 0.5902, 0.5934, 0.6026, 0.5956, 0.6012, 0.5932, 0.6, 0.5952, 0.602, 0.5942, 0.5988, 0.6024, 0.597, 0.5964, 0.5882, 0.6008, 0.5958, 0.6006, 0.5964, 0.594, 0.5882, 0.6028, 0.6032, 0.5982, 0.6, 0.5988, 0.6018, 0.6028, 0.609, 0.6032, 0.5954, 0.5988, 0.6074, 0.6014, 0.6086, 0.6002, 0.605, 0.603, 0.6058, 0.6084, 0.5894, 0.6046, 0.6006, 0.605, 0.5972, 0.5964, 0.5972, 0.603, 0.5986, 0.601, 0.5972, 0.6058, 0.6028, 0.596, 0.603, 0.598, 0.6008, 0.5958, 0.5906, 0.6024, 0.6024, 0.6014, 0.6078, 0.6006, 0.5996, 0.603, 0.6068, 0.6046, 0.6064, 0.5948, 0.5988, 0.6074, 0.6024, 0.605, 0.5974, 0.6014, 0.6054, 0.5966, 0.6006, 0.601, 0.592, 0.6108, 0.5944, 0.6008, 0.599, 0.6072, 0.6034, 0.5964, 0.6104, 0.592, 0.6044, 0.6026, 0.6032, 0.6058, 0.6094, 0.6042, 0.6062, 0.6016, 0.6084, 0.6028, 0.608, 0.604, 0.6012, 0.6012, 0.6072, 0.6008, 0.607, 0.6018, 0.597, 0.6008, 0.6092, 0.6044, 0.594, 0.6026, 0.6082, 0.6078, 0.6092, 0.6064, 0.6052, 0.6052, 0.6004, 0.6078, 0.6102, 0.6, 0.615, 0.605, 0.5942, 0.6044, 0.6084, 0.6002, 0.6034, 0.5998, 0.5982, 0.5974, 0.598, 0.601, 0.597, 0.6062, 0.6036, 0.6048, 0.599, 0.604, 0.607, 0.6036, 0.5992, 0.6018, 0.6022, 0.6044, 0.5984, 0.6006, 0.5986, 0.6056, 0.6062, 0.5942, 0.6032, 0.6026, 0.5994, 0.6064, 0.599, 0.6008, 0.5986, 0.5984, 0.5962, 0.5972, 0.6016, 0.6014, 0.604, 0.6026, 0.6002, 0.6076, 0.605, 0.5988, 0.6006, 0.6006, 0.5992, 0.5994, 0.6016, 0.601, 0.5924, 0.597, 0.5998, 0.6012, 0.6064, 0.5968, 0.6012, 0.604, 0.603, 0.602, 0.595, 0.6044, 0.5952, 0.6016, 0.6058, 0.6012, 0.6042, 0.5966, 0.6054, 0.6066, 0.6016, 0.594, 0.6042, 0.607, 0.6038, 0.5942, 0.6064, 0.6044, 0.6022, 0.6056, 0.6036, 0.594, 0.605, 0.6042, 0.6062, 0.591, 0.5988, 0.6056, 0.608, 0.6014, 0.605, 0.5996, 0.6046, 0.6066, 0.6032, 0.5998, 0.6028, 0.6, 0.5948, 0.6046, 0.6066, 0.603, 0.6038, 0.6066, 0.6034, 0.6034, 0.5978, 0.6014, 0.602, 0.592, 0.6008, 0.6066, 0.6046, 0.6072, 0.6106, 0.6062, 0.6074, 0.5986, 0.6034] ################# cnn_gru_True Training Accuracy = [0.24648888, 0.3745778, 0.41557777, 0.43804446, 0.4576, 0.4678, 0.47815555, 0.4868, 0.49584445, 0.5020667, 0.50942224, 0.5155333, 0.51953334, 0.52253336, 0.5287778, 0.5311555, 0.5374, 0.5400222, 0.54744446, 0.54553336, 0.55102223, 0.55517775, 0.5588667, 0.55873334, 0.56222224, 0.56906664, 0.56704444, 0.57048887, 0.5709556, 0.57553333, 0.58104444, 0.57677776, 0.5827111, 0.5832, 0.58533335, 0.5862667, 0.5885556, 0.5909333, 0.5918, 0.59326667, 0.5958222, 0.5950222, 0.59848887, 0.59871113, 0.6015555, 0.60064447, 0.60433334, 0.6062222, 0.6030667, 0.6063333, 0.6067333, 0.6074889, 0.60944444, 0.6112889, 0.61002225, 0.61248887, 0.6134, 0.61333334, 0.6154, 0.6148, 0.61473334, 0.618, 0.6176222, 0.61884445, 0.6212889, 0.62226665, 0.6203778, 0.62186664, 0.6224667, 0.626, 0.6241111, 0.6243333, 0.62524444, 0.6258889, 0.6276444, 0.62704444, 0.62773335, 0.62866664, 0.62637776, 0.62784445, 0.63368887, 0.63137776, 0.63233334, 0.6337778, 0.63453335, 0.6339778, 0.6327556, 0.6346667, 0.6375333, 0.63571113, 0.6359111, 0.63633335, 0.63897777, 0.6382667, 0.6386667, 0.6386667, 0.6402, 0.6410889, 0.63853335, 0.6414222, 0.6431111, 0.64084446, 0.6423333, 0.6404222, 0.64386666, 0.6427778, 0.64442223, 0.64526665, 0.6431778, 0.6445111, 0.6468222, 0.6451333, 0.6484889, 0.64537776, 0.64544445, 0.6438889, 0.65073335, 0.6497333, 0.6512667, 0.6492222, 0.64784443, 0.64622223, 0.6495111, 0.6498, 0.6488889, 0.6512667, 0.6499111, 0.6527333, 0.6570889, 0.65253335, 0.65371114, 0.65015554, 0.6525111, 0.6505778, 0.64982224, 0.65437776, 0.6553778, 0.6556889, 0.6545333, 0.65713334, 0.65573335, 0.6571111, 0.65706664, 0.6573333, 0.65397775, 0.6564889, 0.6561111, 0.65691113, 0.65595555, 0.6564889, 0.6577778, 0.65757775, 0.6575111, 0.65835553, 0.6568889, 0.65746665, 0.65602225, 0.6579111, 0.65724444, 0.6560444, 0.6582222, 0.65844446, 0.6604667, 0.6612667, 0.6575111, 0.6612667, 0.6634222, 0.6617333, 0.6640889, 0.6603111, 0.66286665, 0.66135556, 0.6610889, 0.6615555, 0.6611556, 0.6604889, 0.66477776, 0.6643556, 0.6623333, 0.6612222, 0.66353333, 0.6625556, 0.66186666, 0.66333336, 0.66395557, 0.66355556, 0.66575557, 0.66433334, 0.6652, 0.6616667, 0.66602224, 0.6647556, 0.6646444, 0.66708887, 0.6645333, 0.6630667, 0.66844445, 0.6675111, 0.668, 0.6643556, 0.6670222, 0.6701111, 0.6662222, 0.66546667, 0.66364443, 0.6655333, 0.6684667, 0.6691778, 0.66922224, 0.6661111, 0.6691778, 0.66804445, 0.6721333, 0.6696889, 0.66775554, 0.66642225, 0.6698, 0.66884446, 0.6692889, 0.66713333, 0.66962224, 0.6699778, 0.67197776, 0.6676222, 0.6693556, 0.66926664, 0.67282224, 0.6721778, 0.6653111, 0.67164445, 0.6734222, 0.66951114, 0.67384446, 0.6722, 0.6716889, 0.6684667, 0.67164445, 0.6717778, 0.6716, 0.67102224, 0.6719555, 0.6747111, 0.6744222, 0.67253333, 0.672, 0.67362225, 0.6738222, 0.6768889, 0.6722, 0.67182225, 0.67775553, 0.6749111, 0.67495555, 0.6774667, 0.67304444, 0.6748667, 0.6732889, 0.67513335, 0.6786444, 0.6725111, 0.6751111, 0.6779111, 0.6733111, 0.6766667, 0.67653334, 0.6767778, 0.67755556, 0.6733556, 0.6755111, 0.67646664, 0.67513335, 0.6769556, 0.6732, 0.6803778, 0.67642224, 0.67595553, 0.6792667, 0.6769111, 0.6782889, 0.67833334, 0.67917776, 0.67422223, 0.67873335, 0.6778889, 0.67495555, 0.677, 0.67962223, 0.68053335, 0.6788222, 0.67664444, 0.6814, 0.681, 0.67826664, 0.6806222, 0.68153334, 0.6809555, 0.6798667, 0.6808889, 0.67764443, 0.6803111, 0.6794222, 0.67646664, 0.6801111, 0.6809111, 0.6828667, 0.67866665, 0.68137777, 0.6797111, 0.67991114, 0.67913336, 0.6791111, 0.68164444, 0.68042225, 0.68126667, 0.6821333, 0.6833111, 0.6835778, 0.67884445, 0.68593335, 0.6798, 0.67928886, 0.682, 0.6838667, 0.6833111, 0.68648887, 0.6845111, 0.6812889, 0.6846222, 0.6825778, 0.6810222, 0.68273336, 0.68315554, 0.6806667, 0.68648887, 0.68295556, 0.6824, 0.6821111, 0.681, 0.6835333, 0.68524444, 0.68455553, 0.6817333, 0.6833111, 0.6825333, 0.68675554, 0.6819111, 0.68475556, 0.6879333, 0.68473333, 0.68384445, 0.6862222, 0.6841111, 0.6841111, 0.68277776, 0.6884, 0.6818, 0.6853778, 0.6822444, 0.68637776, 0.6852889, 0.68615556, 0.6869556, 0.6840444, 0.6870667, 0.68564445, 0.68497777, 0.68531114, 0.6839111, 0.6844, 0.68924445, 0.68635553, 0.68484443, 0.6872, 0.6852889, 0.6884889, 0.68435556, 0.68475556, 0.6860667, 0.68664443, 0.6854889, 0.6857333, 0.68864447, 0.6874889, 0.6874, 0.6852889, 0.6850889, 0.6857778, 0.6856889, 0.6898444, 0.6896667, 0.6880222, 0.68762225, 0.68873334, 0.68815553, 0.6851111, 0.68813336, 0.6874667, 0.69233334, 0.6897111, 0.6887778, 0.68846667, 0.6905778, 0.6882222, 0.69188887, 0.6883111, 0.6878, 0.6901111, 0.6859556, 0.68902224, 0.69188887, 0.6915778, 0.69206667, 0.6874889, 0.6928, 0.689, 0.6896, 0.6896667, 0.6893111, 0.68997777, 0.6876, 0.6924667, 0.6876889, 0.6892222, 0.6910889, 0.6886, 0.6886889, 0.69391114, 0.6886889, 0.69284445, 0.69211113, 0.6900667, 0.6905556, 0.6885778, 0.6871333, 0.69188887, 0.69204444, 0.6908, 0.693, 0.69355553, 0.69211113, 0.6909556, 0.6921333, 0.6925333, 0.69126666, 0.69211113, 0.69277775, 0.6929111, 0.69075555, 0.69093335, 0.69075555, 0.6912, 0.68862224, 0.69346666, 0.6921778, 0.6904889, 0.69486666, 0.69166666, 0.6924, 0.69355553, 0.69373333, 0.6925111, 0.69295555, 0.69515556, 0.69184446, 0.69206667, 0.69537777, 0.6911111, 0.6930444, 0.69335556, 0.6888667, 0.69364446, 0.6946222, 0.6948444, 0.6927111, 0.6944444, 0.6907333, 0.69357777, 0.6952222, 0.69155556, 0.6915333, 0.69537777, 0.6924889, 0.69035554, 0.69366664, 0.6966, 0.6922, 0.6918667, 0.6926, 0.6960667, 0.6926, 0.69564444, 0.69328886, 0.6952889, 0.6944444, 0.69571114, 0.69546664, 0.694, 0.6939333, 0.6952889, 0.6956667] with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 5 samples and 200 epochs, hs = 256 out.836806 ################# cnn_gru_True Validation Accuracy = [0.3074, 0.3502, 0.3972, 0.4236, 0.4458, 0.4612, 0.478, 0.4846, 0.4832, 0.494, 0.4936, 0.5028, 0.511, 0.5, 0.4942, 0.5186, 0.5216, 0.5274, 0.5356, 0.5306, 0.5296, 0.535, 0.5346, 0.5346, 0.5448, 0.534, 0.5384, 0.5442, 0.5434, 0.539, 0.5478, 0.552, 0.549, 0.5404, 0.5448, 0.5434, 0.5568, 0.5462, 0.5462, 0.5558, 0.5612, 0.5484, 0.5606, 0.5666, 0.5698, 0.5582, 0.5578, 0.5744, 0.56, 0.5466, 0.5554, 0.563, 0.5592, 0.5566, 0.5674, 0.5536, 0.5606, 0.5678, 0.5618, 0.559, 0.5676, 0.571, 0.563, 0.5646, 0.563, 0.5732, 0.565, 0.5738, 0.572, 0.5774, 0.5652, 0.5636, 0.5688, 0.5718, 0.5734, 0.558, 0.571, 0.577, 0.5674, 0.579, 0.5706, 0.5764, 0.567, 0.5772, 0.5738, 0.5688, 0.5706, 0.5712, 0.575, 0.5748, 0.5804, 0.5708, 0.566, 0.57, 0.5768, 0.5814, 0.569, 0.5796, 0.5776, 0.5702, 0.5806, 0.5834, 0.5708, 0.5748, 0.5794, 0.585, 0.5792, 0.5738, 0.5736, 0.5776, 0.5812, 0.5804, 0.5762, 0.5806, 0.5822, 0.5786, 0.5768, 0.5752, 0.5822, 0.5808, 0.5822, 0.5844, 0.5876, 0.589, 0.5872, 0.5764, 0.5808, 0.5738, 0.581, 0.5828, 0.5688, 0.577, 0.5798, 0.587, 0.5766, 0.5798, 0.5834, 0.5802, 0.5826, 0.578, 0.5786, 0.565, 0.5742, 0.5894, 0.5808, 0.5708, 0.5766, 0.5866, 0.5806, 0.577, 0.5794, 0.5802, 0.5776, 0.5824, 0.586, 0.574, 0.5804, 0.5834, 0.5834, 0.578, 0.5784, 0.571, 0.5668, 0.5798, 0.5792, 0.5748, 0.5824, 0.5628, 0.5814, 0.5796, 0.581, 0.575, 0.5802, 0.5786, 0.5802, 0.5852, 0.5818, 0.5826, 0.59, 0.5762, 0.59, 0.577, 0.5798, 0.5796, 0.581, 0.5806, 0.5774, 0.5772, 0.5798, 0.585, 0.588, 0.5856, 0.5836, 0.5858, 0.5842, 0.5826, 0.5818, 0.5764, 0.5814, 0.5812] ################# cnn_gru_True Training Accuracy = [0.24148889, 0.35346666, 0.39324445, 0.4138, 0.4300222, 0.44151112, 0.45264444, 0.4583111, 0.46951112, 0.47684443, 0.48144445, 0.4867111, 0.4934, 0.49924445, 0.5006667, 0.5047333, 0.51008886, 0.5148889, 0.51364446, 0.5214889, 0.5223111, 0.5267556, 0.5283778, 0.52993333, 0.5365111, 0.5373333, 0.5393111, 0.5411556, 0.5418444, 0.5449778, 0.54704446, 0.55093336, 0.55095553, 0.5567778, 0.5597778, 0.5578, 0.55826664, 0.5587111, 0.56135553, 0.5613111, 0.5638222, 0.5689778, 0.5655111, 0.5698, 0.56924444, 0.57137775, 0.57251114, 0.57457775, 0.5736667, 0.578, 0.5786222, 0.5777556, 0.57964444, 0.5810889, 0.5809778, 0.5831556, 0.5817556, 0.584, 0.5824444, 0.5857111, 0.58357775, 0.58804446, 0.58624446, 0.5888444, 0.5892222, 0.59157777, 0.59275556, 0.5909333, 0.5932, 0.5918667, 0.59206665, 0.59437776, 0.5966, 0.5946889, 0.59984446, 0.59511113, 0.5969333, 0.6005333, 0.59893334, 0.5999333, 0.6010889, 0.60175556, 0.6009333, 0.6008, 0.60035557, 0.6005778, 0.6013778, 0.6052667, 0.6039111, 0.6061556, 0.60355556, 0.603, 0.60344446, 0.6076889, 0.6047556, 0.6068222, 0.60406667, 0.6079778, 0.60693336, 0.6074889, 0.6102889, 0.6061111, 0.61104447, 0.61002225, 0.6100444, 0.60866666, 0.6106, 0.61131114, 0.6118889, 0.61204445, 0.61377776, 0.61182225, 0.61311114, 0.61197776, 0.61635554, 0.6154889, 0.6140444, 0.61644447, 0.61704445, 0.61833334, 0.61795557, 0.6198222, 0.6174667, 0.6174, 0.61766666, 0.6165778, 0.6163778, 0.61793333, 0.61946666, 0.62144446, 0.6208444, 0.6163333, 0.61624444, 0.6175111, 0.62124443, 0.6211333, 0.6183778, 0.62288886, 0.6214667, 0.6212889, 0.6186889, 0.6230222, 0.62313336, 0.6221333, 0.6222, 0.62453336, 0.6224889, 0.6257333, 0.6224667, 0.6254445, 0.6226889, 0.62384444, 0.6247111, 0.6238889, 0.6228222, 0.6233778, 0.6265333, 0.6257333, 0.62604445, 0.6287111, 0.6253778, 0.6269111, 0.63024443, 0.6262889, 0.62766665, 0.62615556, 0.6257333, 0.6289778, 0.6282, 0.62615556, 0.62993336, 0.6257111, 0.6315111, 0.6270222, 0.6297333, 0.6268889, 0.6298222, 0.6300667, 0.6293333, 0.62995553, 0.6311333, 0.63037777, 0.6307333, 0.62993336, 0.6329111, 0.6297333, 0.63217777, 0.6298444, 0.6303333, 0.6312, 0.6305111, 0.6304, 0.6334444, 0.63204443, 0.63064444, 0.6292, 0.63317776, 0.63226664, 0.6315778, 0.6300667] with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 5 samples and 500 epochs, hs = 256 out.848468 with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 10 samples and 200 epochs, hs = 256 out.846686 ################# cnn_gru_True Validation Accuracy = [0.3584, 0.427, 0.4594, 0.4528, 0.4746, 0.4934, 0.5094, 0.5078, 0.5196, 0.5242, 0.5342, 0.5258, 0.5292, 0.533, 0.5444, 0.5422, 0.5572, 0.5486, 0.5644, 0.5618, 0.5692, 0.5666, 0.5764, 0.5676, 0.5674, 0.5466, 0.5744, 0.5802, 0.5782, 0.5784, 0.5742, 0.5786, 0.5762, 0.5692, 0.5916, 0.5654, 0.5772, 0.5744, 0.5854, 0.582, 0.5882, 0.5814, 0.595, 0.5838, 0.5866, 0.5888, 0.5876, 0.5888, 0.5866, 0.5782, 0.5958, 0.5926, 0.5914, 0.5778, 0.5944, 0.58, 0.5944, 0.5878, 0.5926, 0.5954, 0.595, 0.5844, 0.588, 0.5934, 0.5942, 0.598, 0.5974, 0.5944, 0.5924, 0.5944, 0.5908, 0.5952, 0.5966, 0.5966, 0.5992, 0.5966, 0.5956, 0.5836, 0.5956, 0.5832, 0.5938, 0.5992, 0.5976, 0.5952, 0.5904, 0.5906, 0.5924, 0.5878, 0.6094, 0.604, 0.5884, 0.5986, 0.5922, 0.5806, 0.5932, 0.5914, 0.603, 0.5888, 0.5892, 0.588, 0.5942, 0.6024, 0.5898, 0.5992, 0.6, 0.5928, 0.5958, 0.5824, 0.6004, 0.5842, 0.5914, 0.603, 0.5946, 0.5928, 0.5956, 0.5828, 0.608, 0.6058, 0.5928, 0.5934, 0.5938, 0.5958, 0.5952, 0.598, 0.5868, 0.6004, 0.5884, 0.593, 0.5936, 0.6094, 0.5996, 0.5984, 0.5976, 0.5984, 0.6084, 0.5964, 0.5886, 0.6, 0.6, 0.596, 0.5936, 0.6028, 0.5986, 0.5992, 0.5784, 0.5882, 0.5942, 0.598, 0.605, 0.5904, 0.6, 0.586, 0.5894, 0.5984, 0.5824, 0.5944, 0.5906, 0.5922, 0.588, 0.5952, 0.593, 0.5846, 0.5932, 0.5978, 0.5942, 0.5958, 0.5992, 0.5938, 0.5914, 0.5968, 0.5946, 0.5978, 0.6004, 0.588, 0.5982, 0.5992, 0.6012, 0.5976, 0.594, 0.5912, 0.5854, 0.5954, 0.5922, 0.5908, 0.5842, 0.6034, 0.5978, 0.6012, 0.5974, 0.5924, 0.5952, 0.6004, 0.5942, 0.6014, 0.5882, 0.5978, 0.5992, 0.5938, 0.5946, 0.6006] ################# cnn_gru_True Training Accuracy = [0.25715557, 0.3822, 0.41933334, 0.4448889, 0.4602, 0.47442222, 0.48344445, 0.49475557, 0.5034222, 0.5122, 0.5181111, 0.5222, 0.5295778, 0.5335111, 0.54168886, 0.54411113, 0.54735553, 0.5506667, 0.5548667, 0.56093335, 0.5622444, 0.5642889, 0.56453335, 0.56953335, 0.57226664, 0.57644445, 0.57728887, 0.5796, 0.58304447, 0.58397776, 0.5872, 0.58673334, 0.58926666, 0.59195554, 0.59515554, 0.59691113, 0.59655553, 0.5989778, 0.60253334, 0.6033111, 0.60406667, 0.60415554, 0.6044889, 0.6035333, 0.6082444, 0.6112222, 0.60873336, 0.61075556, 0.61517775, 0.61646664, 0.61586666, 0.61855555, 0.6187111, 0.6170667, 0.62135553, 0.6203778, 0.6225111, 0.62142223, 0.62326664, 0.6216889, 0.62733334, 0.6271778, 0.6263555, 0.6276444, 0.62946665, 0.6291556, 0.63175553, 0.6302222, 0.63251114, 0.63193333, 0.63204443, 0.6330444, 0.63902223, 0.63384444, 0.6354222, 0.63735557, 0.63368887, 0.6359556, 0.63611114, 0.6389111, 0.63964444, 0.6369333, 0.6382667, 0.64206666, 0.64086664, 0.6418222, 0.64115554, 0.6411778, 0.6412, 0.6436, 0.64566666, 0.64433336, 0.6452444, 0.64735556, 0.64573336, 0.6467111, 0.6476, 0.64442223, 0.6466889, 0.64964443, 0.6488889, 0.64835554, 0.649, 0.6499556, 0.65151113, 0.65037775, 0.6474444, 0.64915556, 0.6519778, 0.6518222, 0.6531111, 0.6531778, 0.6557556, 0.65566665, 0.65246665, 0.6557556, 0.65124446, 0.6572222, 0.6570889, 0.6565111, 0.65326667, 0.6576889, 0.6542889, 0.656, 0.6550889, 0.6578444, 0.6576889, 0.65628886, 0.6586, 0.6575556, 0.6598667, 0.6606445, 0.6608, 0.6623778, 0.65937775, 0.6572222, 0.66206664, 0.6606445, 0.6616, 0.6620889, 0.6596, 0.6650222, 0.6609778, 0.66595554, 0.66095555, 0.6631111, 0.6647111, 0.66466665, 0.66433334, 0.6637333, 0.6649778, 0.6666222, 0.6659778, 0.6642889, 0.6621778, 0.6644222, 0.6658889, 0.66775554, 0.6658, 0.6669111, 0.6663778, 0.67017776, 0.67053336, 0.66724443, 0.6712889, 0.6671111, 0.668, 0.6692889, 0.66815555, 0.6710889, 0.6708, 0.6714, 0.66873336, 0.6704889, 0.66646665, 0.67095554, 0.67095554, 0.67053336, 0.6717333, 0.6691778, 0.6693778, 0.67091113, 0.6690889, 0.6716667, 0.6713333, 0.6724667, 0.67404443, 0.6733556, 0.67417777, 0.6732889, 0.6716667, 0.6734222, 0.6757333, 0.672, 0.6742, 0.67446667, 0.67435557, 0.6749111, 0.67593336, 0.6772889] with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 10 samples and 500 epochs, hs = 256 out.848400 ################# cnn_gru_True Validation Accuracy = [0.3422, 0.4174, 0.4266, 0.4656, 0.4878, 0.4868, 0.5108, 0.4958, 0.5298, 0.5346, 0.5252, 0.5476, 0.5532, 0.5586, 0.5608, 0.56, 0.5424, 0.552, 0.565, 0.5654, 0.5628, 0.5552, 0.566, 0.5534, 0.5706, 0.57, 0.5748, 0.5714, 0.5522, 0.581, 0.5688, 0.5702, 0.5862, 0.5836, 0.5872, 0.5894, 0.5886, 0.5872, 0.5716, 0.5824, 0.5968, 0.5756, 0.5814, 0.5984, 0.6004, 0.588, 0.5806, 0.5666, 0.5892, 0.5862, 0.6026, 0.6034, 0.5834, 0.6026, 0.588, 0.5896, 0.589, 0.5998, 0.6068, 0.5786, 0.5922, 0.5984, 0.588, 0.5906, 0.6004, 0.5922, 0.5968, 0.5908, 0.5972, 0.5956, 0.6088, 0.5998, 0.5846, 0.609, 0.6006, 0.5986, 0.5984, 0.595, 0.6062, 0.5976, 0.6038, 0.5802, 0.6034, 0.593, 0.5772, 0.6036, 0.61, 0.599, 0.594, 0.6002, 0.6044, 0.592, 0.604, 0.6078, 0.591, 0.5972, 0.6098, 0.5998, 0.6018, 0.5908, 0.5952, 0.614, 0.6072, 0.603, 0.5918, 0.603, 0.6098, 0.6048, 0.606, 0.5926, 0.6008, 0.5958, 0.5998, 0.607, 0.6032, 0.6086, 0.5964, 0.608, 0.6158, 0.5996, 0.5914, 0.6034, 0.603, 0.6036, 0.6128, 0.5926, 0.613, 0.608, 0.6028, 0.602, 0.6024, 0.612, 0.604, 0.6016, 0.6036, 0.5968, 0.6098, 0.6142, 0.5884, 0.6148, 0.5884, 0.5962, 0.6038, 0.6088, 0.6098, 0.5998, 0.602, 0.6018, 0.6102, 0.6006, 0.6066, 0.6016, 0.609, 0.6046, 0.5858, 0.6038, 0.6022, 0.6066, 0.6052, 0.6014, 0.603, 0.5988, 0.598, 0.6032, 0.609, 0.6096, 0.6096, 0.5942, 0.6008, 0.5954, 0.5966, 0.6092, 0.6054, 0.5938, 0.6022, 0.6036, 0.6066, 0.5944, 0.5964, 0.6042, 0.6046, 0.5956, 0.6056, 0.6048, 0.6092, 0.6034, 0.6014, 0.6008, 0.5894, 0.5952, 0.6084, 0.6072, 0.608, 0.6064, 0.6062, 0.6026, 0.599, 0.595, 0.5918, 0.6014, 0.5986, 0.6024, 0.5964, 0.6014, 0.6036, 0.6006, 0.6052, 0.5994, 0.605, 0.6022, 0.6058, 0.6006, 0.6038, 0.5968, 0.6096, 0.598, 0.6094, 0.5934, 0.6022, 0.604, 0.6044, 0.5962, 0.5952, 0.6002, 0.607, 0.6152, 0.6024, 0.5966, 0.6064, 0.6066, 0.6078, 0.6096, 0.6076, 0.6092, 0.598, 0.6006, 0.604, 0.6048, 0.6094, 0.6078, 0.5972, 0.6056, 0.5918, 0.6028, 0.5942, 0.5938, 0.5986, 0.602, 0.5932, 0.6038, 0.6024, 0.6042, 0.5962, 0.5994, 0.6064, 0.6028, 0.6044, 0.6074, 0.606, 0.6006, 0.5976, 0.6048, 0.608, 0.6004, 0.598, 0.6062, 0.5986, 0.5984, 0.6084, 0.6106, 0.6048, 0.5988, 0.5934, 0.5998, 0.6094, 0.6014, 0.6024, 0.6076, 0.6012, 0.6098, 0.6066, 0.6018, 0.6056, 0.5964, 0.609, 0.6002, 0.5914, 0.6038, 0.5978, 0.6022, 0.598, 0.6034, 0.6032, 0.6058, 0.608, 0.6082, 0.6048, 0.608, 0.6088, 0.6108, 0.598, 0.6016, 0.6194, 0.6022, 0.6106, 0.616, 0.5984, 0.6086, 0.6124, 0.6126, 0.6032, 0.6102, 0.6154, 0.606, 0.6088, 0.6006, 0.601, 0.5996, 0.6024, 0.6094, 0.6088, 0.604, 0.5984, 0.6076, 0.606, 0.6062, 0.6068, 0.6022, 0.6122, 0.6036, 0.6082, 0.6, 0.608, 0.6104, 0.6032, 0.6082, 0.606, 0.6076, 0.6082, 0.6086, 0.6002, 0.5988, 0.5968, 0.6116, 0.5958, 0.6006, 0.5976, 0.5986, 0.606, 0.6088, 0.6, 0.6066, 0.606, 0.6048, 0.6128, 0.6148, 0.6074, 0.606, 0.6038, 0.6014, 0.6088, 0.591, 0.6028, 0.6108, 0.6042, 0.596, 0.6042, 0.6084, 0.6064, 0.6104, 0.5972, 0.604, 0.607, 0.6078, 0.6062, 0.6054, 0.6052, 0.6122, 0.6028, 0.6034, 0.6042, 0.6114, 0.6056, 0.6072, 0.6006, 0.6014, 0.5964, 0.6074, 0.5986, 0.61, 0.603, 0.601, 0.6156, 0.6092, 0.6018, 0.603, 0.6056, 0.613, 0.6078, 0.6044, 0.6134, 0.6088, 0.612, 0.607, 0.5956, 0.6046, 0.6078, 0.5996, 0.612, 0.6066, 0.6052, 0.6046, 0.607, 0.6124, 0.5974, 0.6032, 0.6022, 0.6074, 0.6016, 0.6124, 0.5958, 0.6084, 0.5974, 0.597, 0.5938, 0.603, 0.6044, 0.612, 0.6006, 0.6048, 0.605, 0.5996, 0.603, 0.6054, 0.605, 0.6014, 0.6058, 0.5986, 0.603, 0.603, 0.6018, 0.5996, 0.6074, 0.6138, 0.6052, 0.5958, 0.5992, 0.6008, 0.6004, 0.5978, 0.6022, 0.6096, 0.6016, 0.599, 0.604, 0.6032, 0.6, 0.6056, 0.6116, 0.6002, 0.6028, 0.6002, 0.6038, 0.6056, 0.6078, 0.5992, 0.6094, 0.6082, 0.6, 0.602, 0.6034, 0.6102, 0.6114, 0.6104, 0.6136, 0.6012, 0.6062, 0.609, 0.6106, 0.5994, 0.6104, 0.6082, 0.5986, 0.6128, 0.6068, 0.5956, 0.6094, 0.6056, 0.604, 0.6074, 0.6092, 0.6052, 0.609, 0.6018, 0.5988, 0.603, 0.6046, 0.6136, 0.601, 0.6096] ################# cnn_gru_True Training Accuracy = [0.25786668, 0.3790222, 0.4166, 0.44213334, 0.45866665, 0.47633332, 0.48535556, 0.50006664, 0.50684446, 0.51404446, 0.52144444, 0.5278222, 0.5355333, 0.54028887, 0.5446, 0.54928887, 0.55237776, 0.55777776, 0.5623111, 0.5605556, 0.56864446, 0.57137775, 0.57482225, 0.5767556, 0.5815333, 0.58213335, 0.58206666, 0.5878222, 0.5881111, 0.58835554, 0.59375554, 0.5946222, 0.5930222, 0.59404445, 0.59864444, 0.6018222, 0.6023778, 0.60584444, 0.60555553, 0.60855556, 0.61115557, 0.60906667, 0.6112222, 0.6102, 0.6166667, 0.6162, 0.61568886, 0.6193333, 0.62104446, 0.61957777, 0.62513334, 0.6252667, 0.6237778, 0.6237556, 0.62633336, 0.62648886, 0.62726665, 0.6284889, 0.62704444, 0.6317111, 0.6308889, 0.6312, 0.6331111, 0.6336667, 0.63615555, 0.6372, 0.63375556, 0.63975555, 0.63442224, 0.6397111, 0.64255553, 0.64144444, 0.64077777, 0.6404222, 0.6431778, 0.6439111, 0.64435554, 0.6445111, 0.6450222, 0.64213336, 0.6482, 0.6462889, 0.64706665, 0.6511111, 0.6474222, 0.6480889, 0.6508222, 0.64915556, 0.65268886, 0.64933336, 0.6503111, 0.6513111, 0.6528889, 0.6526667, 0.65404445, 0.6509333, 0.6538, 0.6513778, 0.65573335, 0.65655553, 0.6541333, 0.65477777, 0.65444446, 0.6593111, 0.6591778, 0.6595778, 0.65826666, 0.66051114, 0.6603778, 0.66026664, 0.659, 0.6608667, 0.65797776, 0.6610889, 0.66084445, 0.6592444, 0.66, 0.6586889, 0.66231114, 0.66215557, 0.6639111, 0.6621111, 0.66371113, 0.6640222, 0.66415554, 0.6679556, 0.6629111, 0.6644, 0.6658222, 0.6660445, 0.6674889, 0.6696444, 0.6634222, 0.66653335, 0.6698, 0.66893333, 0.669, 0.6704222, 0.66926664, 0.6688222, 0.66642225, 0.6698667, 0.6676222, 0.6658889, 0.6681111, 0.66704446, 0.6712222, 0.67017776, 0.6698222, 0.6735111, 0.6719111, 0.6718, 0.6729111, 0.67315555, 0.6712667, 0.67226666, 0.67506665, 0.6686444, 0.6717333, 0.6743778, 0.67602223, 0.67553335, 0.6758889, 0.67446667, 0.67624444, 0.6772889, 0.6788667, 0.6779111, 0.6726889, 0.6772444, 0.6759111, 0.6738, 0.67546666, 0.6734222, 0.67833334, 0.6772889, 0.6770222, 0.6786, 0.6766222, 0.6764889, 0.6778889, 0.67606664, 0.6789111, 0.67928886, 0.6781778, 0.6788222, 0.68126667, 0.6812222, 0.67973334, 0.6762, 0.6797778, 0.68186665, 0.67995554, 0.6798, 0.6818445, 0.6811111, 0.6828222, 0.68024445, 0.6838889, 0.682, 0.68144447, 0.6811111, 0.68135554, 0.6801111, 0.6824, 0.68222225, 0.6816889, 0.67984444, 0.6815778, 0.68197775, 0.6831333, 0.68146664, 0.68053335, 0.6860222, 0.68604445, 0.68237776, 0.6853333, 0.6854, 0.6826444, 0.6863111, 0.68366665, 0.6824667, 0.6824889, 0.684, 0.68531114, 0.6867333, 0.6889778, 0.68464446, 0.6875111, 0.69002223, 0.6878, 0.68851113, 0.68542224, 0.6865778, 0.6861111, 0.6869111, 0.6848222, 0.6862222, 0.6854, 0.6863111, 0.68866664, 0.6878667, 0.6876, 0.68891114, 0.68546665, 0.68855554, 0.68815553, 0.6881111, 0.6870222, 0.6885333, 0.68806666, 0.68997777, 0.6918, 0.69086665, 0.6901778, 0.68635553, 0.6895555, 0.6906889, 0.6894, 0.68833333, 0.6897111, 0.68891114, 0.6886, 0.68795556, 0.6924, 0.6933778, 0.6904, 0.69211113, 0.6924, 0.6911333, 0.69093335, 0.68993336, 0.69042224, 0.6904889, 0.6910222, 0.6911778, 0.6888667, 0.6914, 0.6926444, 0.6955778, 0.69064444, 0.6924222, 0.69362223, 0.69233334, 0.69306666, 0.69122225, 0.6976, 0.6951333, 0.69173336, 0.69368887, 0.6961778, 0.6952, 0.69604445, 0.6980889, 0.6949111, 0.6916889, 0.6931111, 0.6956, 0.6932667, 0.69353336, 0.697, 0.6961333, 0.6938, 0.69346666, 0.69442225, 0.6922889, 0.69626665, 0.6917111, 0.6957333, 0.69722223, 0.6960889, 0.6982, 0.69773334, 0.69226664, 0.6975778, 0.69533336, 0.6971111, 0.69475555, 0.6984, 0.6978667, 0.69593334, 0.6959778, 0.6983111, 0.69575554, 0.6993778, 0.6959111, 0.6962, 0.69935554, 0.6978, 0.696, 0.69902223, 0.69673336, 0.6992889, 0.6993778, 0.6979111, 0.6999556, 0.6964222, 0.70004445, 0.6965333, 0.69884443, 0.6974889, 0.69713336, 0.7003111, 0.7003555, 0.7014, 0.69457775, 0.7014667, 0.69924444, 0.7006889, 0.6995111, 0.7011778, 0.7010222, 0.6969333, 0.70262223, 0.7001333, 0.7018667, 0.69795555, 0.6986, 0.7020444, 0.7001778, 0.7016444, 0.7002, 0.70111114, 0.69891113, 0.7023778, 0.70324445, 0.70346665, 0.70306665, 0.70228887, 0.7036222, 0.7012445, 0.6997111, 0.6986667, 0.70246667, 0.70431113, 0.70162225, 0.7001111, 0.7006889, 0.69895554, 0.7040667, 0.70306665, 0.7046889, 0.7016889, 0.70026666, 0.7020889, 0.70413333, 0.70615554, 0.7049556, 0.7029333, 0.7014889, 0.70184445, 0.70464444, 0.70408887, 0.7024, 0.70368886, 0.7046, 0.70493335, 0.7007333, 0.7032889, 0.70882225, 0.7028, 0.70486665, 0.70482224, 0.7062889, 0.70166665, 0.70786667, 0.704, 0.7037778, 0.7055111, 0.7028889, 0.70342225, 0.7040667, 0.70306665, 0.70435554, 0.7055778, 0.7054667, 0.7053111, 0.70566666, 0.7066444, 0.70442224, 0.70768887, 0.70593333, 0.70526665, 0.70604444, 0.7021111, 0.7046667, 0.7046, 0.70886666, 0.70624447, 0.7060889, 0.70622224, 0.7082667, 0.7096222, 0.7075111, 0.70575553, 0.7061778, 0.70728886, 0.7036667, 0.70233333, 0.7112, 0.7081556, 0.70831114, 0.70795554, 0.70633334, 0.7097333, 0.7103111, 0.70684445, 0.7074444, 0.7085111, 0.7087333, 0.7066444, 0.7101333, 0.7085111, 0.7079333, 0.7072222, 0.70857775, 0.7102444, 0.70644444, 0.7094667, 0.70773333, 0.70717776, 0.70966667, 0.71055555, 0.7103556, 0.70813334, 0.70915556, 0.7103556, 0.70926666, 0.7116445, 0.7065333, 0.7049111, 0.7116889, 0.7102444, 0.70795554, 0.7082222, 0.7115778, 0.70904446, 0.70948887, 0.7095111, 0.70964444, 0.7116, 0.70773333, 0.70982224, 0.7082, 0.7102, 0.70713335, 0.7127111, 0.7073333, 0.7090667, 0.7134445, 0.71062225, 0.7124, 0.7098, 0.7069111, 0.71, 0.70924443, 0.71117777, 0.7089555, 0.7138889, 0.7097333] max = 61.94 Try with concat = False out.981209 (200 epochs) max = 58.579 ################# cnn_gru_0 Validation Accuracy = [0.22579999268054962, 0.32420000433921814, 0.3287999927997589, 0.3783999979496002, 0.4081999957561493, 0.41200000047683716, 0.4246000051498413, 0.421999990940094, 0.4374000132083893, 0.42719998955726624, 0.4514000117778778, 0.45660001039505005, 0.45500001311302185, 0.4505999982357025, 0.46540001034736633, 0.4625999927520752, 0.4611999988555908, 0.45260000228881836, 0.47519999742507935, 0.48019999265670776, 0.4968000054359436, 0.47999998927116394, 0.4885999858379364, 0.4918000102043152, 0.4973999857902527, 0.5034000277519226, 0.49480000138282776, 0.48820000886917114, 0.48579999804496765, 0.5041999816894531, 0.49799999594688416, 0.503600001335144, 0.5109999775886536, 0.506600022315979, 0.5123999714851379, 0.5052000284194946, 0.5091999769210815, 0.5085999965667725, 0.5252000093460083, 0.5130000114440918, 0.5206000208854675, 0.5095999836921692, 0.5166000127792358, 0.531000018119812, 0.5184000134468079, 0.5356000065803528, 0.5180000066757202, 0.5303999781608582, 0.5281999707221985, 0.532800018787384, 0.5299999713897705, 0.5332000255584717, 0.5121999979019165, 0.5361999869346619, 0.5303999781608582, 0.5357999801635742, 0.5414000153541565, 0.5392000079154968, 0.5464000105857849, 0.5365999937057495, 0.5357999801635742, 0.5393999814987183, 0.5353999733924866, 0.5425999760627747, 0.5321999788284302, 0.5411999821662903, 0.5320000052452087, 0.5360000133514404, 0.5450000166893005, 0.5135999917984009, 0.5514000058174133, 0.5224000215530396, 0.5551999807357788, 0.5415999889373779, 0.5347999930381775, 0.5509999990463257, 0.5519999861717224, 0.5386000275611877, 0.5558000206947327, 0.5523999929428101, 0.5541999936103821, 0.5374000072479248, 0.5455999970436096, 0.5519999861717224, 0.5541999936103821, 0.5565999746322632, 0.5504000186920166, 0.5234000086784363, 0.5443999767303467, 0.5616000294685364, 0.5523999929428101, 0.5558000206947327, 0.5586000084877014, 0.550599992275238, 0.5529999732971191, 0.5490000247955322, 0.5577999949455261, 0.5504000186920166, 0.5533999800682068, 0.5600000023841858, 0.5616000294685364, 0.5396000146865845, 0.5532000064849854, 0.5522000193595886, 0.5636000037193298, 0.5577999949455261, 0.5523999929428101, 0.5335999727249146, 0.550599992275238, 0.5422000288963318, 0.550000011920929, 0.5631999969482422, 0.5645999908447266, 0.5379999876022339, 0.5573999881744385, 0.5626000165939331, 0.5655999779701233, 0.5641999840736389, 0.5562000274658203, 0.5641999840736389, 0.5491999983787537, 0.5447999835014343, 0.5636000037193298, 0.5546000003814697, 0.5684000253677368, 0.5685999989509583, 0.5651999711990356, 0.5616000294685364, 0.5663999915122986, 0.5681999921798706, 0.5558000206947327, 0.5616000294685364, 0.5709999799728394, 0.5604000091552734, 0.5676000118255615, 0.5577999949455261, 0.5605999827384949, 0.5734000205993652, 0.5662000179290771, 0.5681999921798706, 0.5637999773025513, 0.5623999834060669, 0.5622000098228455, 0.5681999921798706, 0.5645999908447266, 0.5529999732971191, 0.5541999936103821, 0.5681999921798706, 0.5669999718666077, 0.5490000247955322, 0.5496000051498413, 0.5577999949455261, 0.5609999895095825, 0.5717999935150146, 0.5690000057220459, 0.555400013923645, 0.5680000185966492, 0.5716000199317932, 0.5655999779701233, 0.5600000023841858, 0.5763999819755554, 0.5753999948501587, 0.5694000124931335, 0.5662000179290771, 0.5716000199317932, 0.5813999772071838, 0.5684000253677368, 0.5613999962806702, 0.555400013923645, 0.5649999976158142, 0.5723999738693237, 0.5631999969482422, 0.5659999847412109, 0.5813999772071838, 0.5712000131607056, 0.5626000165939331, 0.5509999990463257, 0.5640000104904175, 0.5649999976158142, 0.569599986076355, 0.5717999935150146, 0.5803999900817871, 0.5637999773025513, 0.5758000016212463, 0.5774000287055969, 0.5555999875068665, 0.5651999711990356, 0.5857999920845032, 0.5774000287055969, 0.5717999935150146, 0.5734000205993652, 0.5745999813079834, 0.5669999718666077, 0.5740000009536743, 0.5622000098228455, 0.5667999982833862, 0.5712000131607056, 0.5684000253677368, 0.5817999839782715, 0.5626000165939331] ################# cnn_gru_0 Training Accuracy = [0.19939999282360077, 0.27006667852401733, 0.31695556640625, 0.3446222245693207, 0.36464443802833557, 0.3797111213207245, 0.38993334770202637, 0.4002888798713684, 0.4078444540500641, 0.41440001130104065, 0.420422226190567, 0.424311101436615, 0.431244432926178, 0.4356222152709961, 0.4380444586277008, 0.44404444098472595, 0.4456889033317566, 0.4509333372116089, 0.45471110939979553, 0.4583111107349396, 0.4600222110748291, 0.4658222198486328, 0.46933332085609436, 0.4724000096321106, 0.47813332080841064, 0.4840888977050781, 0.48500001430511475, 0.4867333471775055, 0.487888902425766, 0.49051111936569214, 0.4983111023902893, 0.49888888001441956, 0.5025110840797424, 0.5044000148773193, 0.5058888792991638, 0.5066888928413391, 0.5104222297668457, 0.5118222236633301, 0.5128222107887268, 0.513177752494812, 0.5137110948562622, 0.5186889171600342, 0.5210888981819153, 0.5189111232757568, 0.5212888717651367, 0.524911105632782, 0.5283555388450623, 0.5285999774932861, 0.5296444296836853, 0.5279333591461182, 0.5348222255706787, 0.5323333144187927, 0.5342444181442261, 0.5327110886573792, 0.5378888845443726, 0.5370444655418396, 0.5368000268936157, 0.5389999747276306, 0.5398444533348083, 0.540755569934845, 0.5434444546699524, 0.5434666872024536, 0.542555570602417, 0.5445555448532104, 0.5470444560050964, 0.5433777570724487, 0.5466889142990112, 0.5504666566848755, 0.5479555726051331, 0.5519555807113647, 0.5520666837692261, 0.5495111346244812, 0.5515555739402771, 0.5531777739524841, 0.5539555549621582, 0.5566444396972656, 0.5602444410324097, 0.5560222268104553, 0.5571555495262146, 0.5589110851287842, 0.560022234916687, 0.5600444674491882, 0.5619778037071228, 0.5645333528518677, 0.5624666810035706, 0.5614666938781738, 0.565155565738678, 0.5670222043991089, 0.5651333332061768, 0.5671333074569702, 0.5679555535316467, 0.5678222179412842, 0.5703999996185303, 0.5699333548545837, 0.5694666504859924, 0.5689555406570435, 0.5720000267028809, 0.5750444531440735, 0.5732444524765015, 0.5704444646835327, 0.5732444524765015, 0.5739333629608154, 0.5753999948501587, 0.5746444463729858, 0.5754222273826599, 0.5740666389465332, 0.5756666660308838, 0.5767999887466431, 0.5774666666984558, 0.579022228717804, 0.5767999887466431, 0.5757333040237427, 0.5807777643203735, 0.5778444409370422, 0.5782889127731323, 0.5836222171783447, 0.5840222239494324, 0.5828666687011719, 0.5834444165229797, 0.5846889019012451, 0.5827111005783081, 0.583466649055481, 0.5839333534240723, 0.5844444632530212, 0.5806666612625122, 0.5824221968650818, 0.5870444178581238, 0.5827999711036682, 0.5862666964530945, 0.5912222266197205, 0.587755560874939, 0.5888000130653381, 0.5889555811882019, 0.5885999798774719, 0.5866222381591797, 0.5886666774749756, 0.5890666842460632, 0.5849999785423279, 0.5930222272872925, 0.5926889181137085, 0.5915111303329468, 0.5928666591644287, 0.5909333229064941, 0.5920222401618958, 0.5926666855812073, 0.5923333168029785, 0.5913333296775818, 0.5930444598197937, 0.5943999886512756, 0.5952444672584534, 0.5947999954223633, 0.5927555561065674, 0.5936222076416016, 0.5965111255645752, 0.594955563545227, 0.5932888984680176, 0.5979777574539185, 0.5952666401863098, 0.5982666611671448, 0.59862220287323, 0.5991777777671814, 0.5964000225067139, 0.5924444198608398, 0.5962666869163513, 0.5973555445671082, 0.5979333519935608, 0.5993333458900452, 0.5977333188056946, 0.5998888611793518, 0.5979111194610596, 0.597955584526062, 0.5999777913093567, 0.6014222502708435, 0.6011555790901184, 0.6025111079216003, 0.6036221981048584, 0.6005333065986633, 0.6026666760444641, 0.6016444563865662, 0.6026444435119629, 0.6029333472251892, 0.6050000190734863, 0.6064888834953308, 0.6013555526733398, 0.6031777858734131, 0.6056666374206543, 0.603866696357727, 0.602911114692688, 0.6044222116470337, 0.6016222238540649, 0.6019555330276489, 0.6029333472251892, 0.6056444644927979, 0.6056888699531555, 0.603866696357727, 0.6045777797698975, 0.6063555479049683, 0.6097777485847473, 0.6065777540206909, 0.6092444658279419] with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 10 samples and 200 epochs, hs = 256 out.848400 with kernel_regularizer keras.regularizers.l1_l2(l1=0.01, l2=0.01) out.437935 out.449019 ################# cnn_gru_True Validation Accuracy = [0.19740000367164612, 0.2881999909877777, 0.31299999356269836, 0.3434000015258789, 0.3653999865055084, 0.38100001215934753, 0.4153999984264374, 0.4300000071525574, 0.4244000017642975, 0.44679999351501465, 0.45260000228881836, 0.4553999900817871, 0.47699999809265137, 0.4758000075817108, 0.4812000095844269, 0.4984000027179718, 0.4909999966621399, 0.5026000142097473, 0.5034000277519226, 0.508400022983551, 0.5108000040054321, 0.527999997138977, 0.5139999985694885, 0.5325999855995178, 0.5311999917030334, 0.5338000059127808, 0.5404000282287598, 0.5429999828338623, 0.5249999761581421, 0.5307999849319458, 0.5429999828338623, 0.5450000166893005, 0.5526000261306763, 0.5428000092506409, 0.5406000018119812, 0.5527999997138977, 0.5523999929428101, 0.5460000038146973, 0.545799970626831, 0.5577999949455261, 0.5504000186920166, 0.555400013923645, 0.5455999970436096, 0.5514000058174133, 0.5522000193595886, 0.5551999807357788, 0.5618000030517578, 0.5509999990463257, 0.5564000010490417, 0.5658000111579895, 0.5594000220298767, 0.5577999949455261, 0.5672000050544739, 0.5551999807357788, 0.5672000050544739, 0.5591999888420105, 0.5655999779701233, 0.5622000098228455, 0.5699999928474426, 0.5669999718666077, 0.5640000104904175, 0.5672000050544739, 0.5627999901771545, 0.5631999969482422, 0.5623999834060669, 0.5648000240325928, 0.5598000288009644, 0.5604000091552734, 0.5663999915122986, 0.5709999799728394, 0.5598000288009644, 0.5654000043869019, 0.5676000118255615, 0.5636000037193298, 0.5727999806404114, 0.567799985408783, 0.5730000138282776, 0.5685999989509583, 0.5684000253677368, 0.5699999928474426, 0.5702000260353088, 0.5745999813079834, 0.5559999942779541, 0.5705999732017517, 0.5795999765396118, 0.5741999745368958, 0.5703999996185303, 0.5703999996185303, 0.5756000280380249, 0.5759999752044678, 0.5741999745368958, 0.5763999819755554, 0.5806000232696533, 0.573199987411499, 0.5722000002861023, 0.5756000280380249, 0.5741999745368958, 0.5788000226020813, 0.5727999806404114, 0.5735999941825867, 0.5785999894142151, 0.5745999813079834, 0.5788000226020813, 0.5676000118255615, 0.5730000138282776, 0.5684000253677368, 0.5691999793052673, 0.5776000022888184, 0.5776000022888184, 0.5748000144958496, 0.5758000016212463, 0.5716000199317932, 0.5763999819755554, 0.5684000253677368, 0.579200029373169, 0.5771999955177307, 0.578000009059906, 0.5752000212669373, 0.5831999778747559, 0.5795999765396118, 0.5777999758720398, 0.5726000070571899, 0.574999988079071, 0.5722000002861023, 0.5735999941825867, 0.5709999799728394, 0.5740000009536743, 0.5794000029563904, 0.5788000226020813, 0.5813999772071838, 0.5784000158309937, 0.5807999968528748, 0.5812000036239624, 0.5802000164985657, 0.5735999941825867, 0.5802000164985657, 0.5723999738693237, 0.5802000164985657, 0.5842000246047974, 0.5852000117301941, 0.5820000171661377, 0.5827999711036682, 0.5875999927520752, 0.578000009059906, 0.5759999752044678, 0.5843999981880188, 0.5831999778747559, 0.5789999961853027, 0.5827999711036682, 0.5691999793052673, 0.5812000036239624, 0.5799999833106995, 0.5758000016212463, 0.5849999785423279, 0.5825999975204468, 0.5781999826431274, 0.5831999778747559, 0.5838000178337097, 0.5758000016212463, 0.5726000070571899, 0.5834000110626221, 0.5842000246047974, 0.5884000062942505, 0.5863999724388123, 0.5799999833106995, 0.5848000049591064, 0.5825999975204468, 0.5794000029563904, 0.5830000042915344, 0.5789999961853027, 0.5860000252723694, 0.5806000232696533, 0.5784000158309937, 0.5881999731063843, 0.5789999961853027, 0.5881999731063843, 0.5821999907493591, 0.5785999894142151, 0.5860000252723694, 0.5839999914169312, 0.5776000022888184, 0.5812000036239624, 0.5763999819755554, 0.5834000110626221, 0.5720000267028809, 0.5824000239372253, 0.5835999846458435, 0.5825999975204468, 0.5774000287055969, 0.5843999981880188, 0.5860000252723694, 0.5917999744415283, 0.5821999907493591, 0.5852000117301941, 0.5934000015258789, 0.5896000266075134, 0.5884000062942505, 0.5748000144958496, 0.5838000178337097, 0.5861999988555908] ################# cnn_gru_True Training Accuracy = [0.19660000503063202, 0.24744445085525513, 0.29660001397132874, 0.3197999894618988, 0.34042221307754517, 0.35946667194366455, 0.38271111249923706, 0.4038444459438324, 0.4194222092628479, 0.4294222295284271, 0.43666666746139526, 0.44555556774139404, 0.4554666578769684, 0.4596889019012451, 0.4680444300174713, 0.4723111093044281, 0.4806888997554779, 0.4835111200809479, 0.4874666631221771, 0.49408888816833496, 0.5022666454315186, 0.5037555694580078, 0.504111111164093, 0.5097777843475342, 0.5162222385406494, 0.5180888772010803, 0.5195333361625671, 0.5235777497291565, 0.5269333124160767, 0.5291110873222351, 0.5295777916908264, 0.5312444567680359, 0.535444438457489, 0.5351999998092651, 0.5364221930503845, 0.5388444662094116, 0.5406000018119812, 0.5428222417831421, 0.5442444682121277, 0.5446222424507141, 0.5503555536270142, 0.5470222234725952, 0.5522888898849487, 0.5533333420753479, 0.5532888770103455, 0.552911102771759, 0.5574222207069397, 0.558733344078064, 0.5594444274902344, 0.5628666877746582, 0.5593555569648743, 0.5623555779457092, 0.5642889142036438, 0.5643555521965027, 0.5698444247245789, 0.5675777792930603, 0.5713333487510681, 0.5699777603149414, 0.5699777603149414, 0.5728889107704163, 0.5720444321632385, 0.5725333094596863, 0.5763999819755554, 0.5739333629608154, 0.5762888789176941, 0.5751110911369324, 0.5798444151878357, 0.5796889066696167, 0.5815111398696899, 0.5797333121299744, 0.5790444612503052, 0.581933319568634, 0.584755539894104, 0.5832222104072571, 0.5863999724388123, 0.5874666571617126, 0.5854222178459167, 0.5855110883712769, 0.5855555534362793, 0.5879555344581604, 0.5888000130653381, 0.586222231388092, 0.5907999873161316, 0.5916666388511658, 0.5915777683258057, 0.5903555750846863, 0.5928221940994263, 0.5916222333908081, 0.5945777893066406, 0.5924888849258423, 0.5939333438873291, 0.5954889059066772, 0.5939777493476868, 0.5950666666030884, 0.5960000157356262, 0.5971333384513855, 0.5966444611549377, 0.6006444692611694, 0.5997111201286316, 0.5984444618225098, 0.5990222096443176, 0.6036888957023621, 0.6009555459022522, 0.5998666882514954, 0.6012444496154785, 0.6036444306373596, 0.599911093711853, 0.6018000245094299, 0.6055999994277954, 0.6050666570663452, 0.6059333086013794, 0.6061333417892456, 0.6032666563987732, 0.6064444184303284, 0.6061555743217468, 0.609000027179718, 0.6079555749893188, 0.6087777614593506, 0.6115777492523193, 0.6051111221313477, 0.6077333092689514, 0.6085110902786255, 0.6082888841629028, 0.6100000143051147, 0.6113777756690979, 0.61326664686203, 0.613111138343811, 0.6121777892112732, 0.6112666726112366, 0.6116889119148254, 0.615577757358551, 0.6137999892234802, 0.6133111119270325, 0.6153777837753296, 0.6159777641296387, 0.6172444224357605, 0.6125777959823608, 0.6107110977172852, 0.6137333512306213, 0.6190666556358337, 0.6146666407585144, 0.6165333390235901, 0.6161777973175049, 0.6160444617271423, 0.6154000163078308, 0.6169999837875366, 0.6182666420936584, 0.6179555654525757, 0.6194888949394226, 0.6154000163078308, 0.6197999715805054, 0.6198222041130066, 0.6195111274719238, 0.6213555335998535, 0.622355580329895, 0.6189555525779724, 0.6221110820770264, 0.6180889010429382, 0.6214888691902161, 0.6235555410385132, 0.621666669845581, 0.6259111166000366, 0.6236888766288757, 0.6235111355781555, 0.6221333146095276, 0.624822199344635, 0.6250444650650024, 0.625688910484314, 0.6254444718360901, 0.626466691493988, 0.6252889037132263, 0.6247555613517761, 0.6279555559158325, 0.625688910484314, 0.6261110901832581, 0.6280666589736938, 0.6285777688026428, 0.6279777884483337, 0.625511109828949, 0.6262444257736206, 0.628333330154419, 0.627133309841156, 0.6295999884605408, 0.6308888792991638, 0.6295777559280396, 0.6275110840797424, 0.6317999958992004, 0.6287333369255066, 0.6288444399833679, 0.6308000087738037, 0.629111111164093, 0.629622220993042, 0.6306222081184387, 0.6284000277519226, 0.6311777830123901, 0.6300222277641296, 0.6324666738510132, 0.6323778033256531, 0.6296889185905457, 0.6352221965789795] Try with concat = False out.660437 (50 epochs) ################# cnn_gru_0 Validation Accuracy = [0.31619998812675476, 0.3325999975204468, 0.3806000053882599, 0.4059999883174896, 0.4196000099182129, 0.423799991607666, 0.4357999861240387, 0.43779999017715454, 0.4535999894142151, 0.4641999900341034, 0.47380000352859497, 0.475600004196167, 0.48840001225471497, 0.4848000109195709, 0.48339998722076416, 0.49900001287460327, 0.49219998717308044, 0.5055999755859375, 0.5012000203132629, 0.5166000127792358, 0.5116000175476074, 0.506600022315979, 0.520799994468689, 0.5185999870300293, 0.5144000053405762, 0.5206000208854675, 0.5266000032424927, 0.522599995136261, 0.5375999808311462, 0.52920001745224, 0.5130000114440918, 0.5285999774932861, 0.5285999774932861, 0.5437999963760376, 0.5407999753952026, 0.5450000166893005, 0.5419999957084656, 0.5406000018119812, 0.5392000079154968, 0.5544000267982483, 0.5479999780654907, 0.5460000038146973, 0.5473999977111816, 0.5559999942779541, 0.5429999828338623, 0.5388000011444092, 0.5514000058174133, 0.5411999821662903, 0.5468000173568726, 0.5547999739646912] ################# cnn_gru_0 Training Accuracy = [0.21320000290870667, 0.31262221932411194, 0.35028889775276184, 0.37102222442626953, 0.3886444568634033, 0.3989555537700653, 0.41306665539741516, 0.42100000381469727, 0.4274222254753113, 0.43479999899864197, 0.441777765750885, 0.4474000036716461, 0.455822229385376, 0.4593110978603363, 0.46577778458595276, 0.47244444489479065, 0.4786444306373596, 0.48251110315322876, 0.4856888949871063, 0.48768889904022217, 0.4945777654647827, 0.4945555627346039, 0.4999333322048187, 0.5040888786315918, 0.5044222474098206, 0.5098000168800354, 0.5132666826248169, 0.5106444358825684, 0.5141333341598511, 0.5174000263214111, 0.5239111185073853, 0.5222444534301758, 0.5272889137268066, 0.5264000296592712, 0.5284222364425659, 0.5353111028671265, 0.5317111015319824, 0.5315999984741211, 0.5336889028549194, 0.5348666906356812, 0.5392888784408569, 0.5394666790962219, 0.5410444736480713, 0.5435555577278137, 0.5426444411277771, 0.5475555658340454, 0.5474666953086853, 0.5461333394050598, 0.5516666769981384, 0.5508444309234619] Add dense layer with cnn_dropout = 0.4 and rnn dropout = 0.2 and lr = 5e-4 with res = 8 with 10 samples and 200 epochs, hs = 256 out.848400 out.9611 concat = False - out.9612 bidirectional = True (go_backwards=True) out.488739 ''' from __future__ import division, print_function, absolute_import print('Starting..................................') import os import sys sys.path.insert(1, '/home/labs/ahissarlab/orra/imagewalker/') import numpy as np import cv2 import misc import pandas as pd import matplotlib.pyplot as plt import pickle from keras_utils import dataset_update, write_to_file, create_cifar_dataset from misc import * import tensorflow.keras as keras import tensorflow as tf from tensorflow.keras.datasets import cifar10 # load dataset (trainX, trainy), (testX, testy) = cifar10.load_data() images, labels = trainX, trainy kernel_regularizer_list = [None, keras.regularizers.l1(),keras.regularizers.l2(),keras.regularizers.l1_l2()] optimizer_list = [tf.keras.optimizers.Adam, tf.keras.optimizers.Nadam, tf.keras.optimizers.RMSprop] if len(sys.argv) > 1: paramaters = { 'epochs' : int(sys.argv[1]), 'sample' : int(sys.argv[2]), 'res' : int(sys.argv[3]), 'hidden_size' : int(sys.argv[4]), 'concat' : int(sys.argv[5]), 'regularizer' : keras.regularizers.l1(),#kernel_regularizer_list[int(sys.argv[6])], 'optimizer' : optimizer_list[int(sys.argv[7])], 'cnn_dropout' : 0.4, 'rnn_dropout' : 0.2, 'lr' : 5e-4, 'run_id' : np.random.randint(1000,9000) } else: paramaters = { 'epochs' : 1, 'sample' : 5, 'res' : 8, 'hidden_size' : 128, 'concat' : 1, 'regularizer' : None, 'optimizer' : optimizer_list[0], 'cnn_dropout' : 0.4, 'rnn_dropout' : 0.2, 'lr' : 5e-4, 'run_id' : np.random.randint(1000,9000) } print(paramaters) for key,val in paramaters.items(): exec(key + '=val') epochs = epochs sample = sample res = res hidden_size =hidden_size concat = concat regularizer = regularizer optimizer = optimizer cnn_dropout = cnn_dropout rnn_dropout = rnn_dropout lr = lr run_id = run_id n_timesteps = sample def cnn_gru(n_timesteps = 5, hidden_size = 128,input_size = 32, concat = True, optimizer = tf.keras.optimizers.Adam, ): ''' CNN RNN combination that extends the CNN to a network that achieves ~80% accuracy on full res cifar. Parameters ---------- n_timesteps : TYPE, optional DESCRIPTION. The default is 5. img_dim : TYPE, optional DESCRIPTION. The default is 32. hidden_size : TYPE, optional DESCRIPTION. The default is 128. input_size : TYPE, optional DESCRIPTION. The default is 32. Returns ------- model : TYPE DESCRIPTION. ''' inputA = keras.layers.Input(shape=(n_timesteps,input_size,input_size,3)) inputB = keras.layers.Input(shape=(n_timesteps,2)) # define CNN model x1=keras.layers.TimeDistributed(keras.layers.Conv2D(32,(3,3),activation='relu', padding = 'same'))(inputA) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(32,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(64,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(64,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(128,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.Conv2D(128,(3,3),activation='relu', padding = 'same'))(x1) x1=keras.layers.TimeDistributed(keras.layers.MaxPooling2D(pool_size=(2, 2)))(x1) x1=keras.layers.TimeDistributed(keras.layers.Dropout(cnn_dropout))(x1) print(x1.shape) x1=keras.layers.TimeDistributed(keras.layers.Flatten())(x1) print(x1.shape) if concat: x = keras.layers.Concatenate()([x1,inputB]) else: x = x1 print(x.shape) # define LSTM model x = keras.layers.GRU(hidden_size,input_shape=(n_timesteps, None), return_sequences=True,recurrent_dropout=rnn_dropout, kernel_regularizer=regularizer,go_backwards=True)(x) x = keras.layers.Flatten()(x) #Add another dense layer (prior it reached 62%) x = keras.layers.Dense(512, activation="relu")(x) x = keras.layers.Dense(10,activation="softmax")(x) model = keras.models.Model(inputs=[inputA,inputB],outputs=x, name = 'cnn_gru_{}'.format(concat)) opt=optimizer(lr=lr) model.compile( optimizer=opt, loss="sparse_categorical_crossentropy", metrics=["sparse_categorical_accuracy"], ) return model rnn_net = cnn_gru(n_timesteps = sample, hidden_size = hidden_size,input_size = res, concat = concat) cnn_net = cnn_net = extended_cnn_one_img(n_timesteps = sample, input_size = res, dropout = cnn_dropout) # hp = HP() # hp.save_path = 'saved_runs' # hp.description = "syclop cifar net search runs" # hp.this_run_name = 'syclop_{}'.format(rnn_net.name) # deploy_logs() train_dataset, test_dataset = create_cifar_dataset(images, labels,res = res, sample = sample, return_datasets=True, mixed_state = False, add_seed = 0, ) #bad_res_func = bad_res101, up_sample = True) train_dataset_x, train_dataset_y = split_dataset_xy(train_dataset) test_dataset_x, test_dataset_y = split_dataset_xy(test_dataset) print("##################### Fit {} and trajectories model on training data res = {} ##################".format(rnn_net.name,res)) rnn_history = rnn_net.fit( train_dataset_x, train_dataset_y, batch_size=64, epochs=epochs, # We pass some validation for # monitoring validation loss and metrics # at the end of each epoch validation_data=(test_dataset_x, test_dataset_y), verbose = 0) # print('################# {} Validation Accuracy = '.format(cnn_net.name),cnn_history.history['val_sparse_categorical_accuracy']) # print('################# {} Training Accuracy = '.format(cnn_net.name),rnn_history.history['sparse_categorical_accuracy']) print('################# {} Validation Accuracy = '.format(rnn_net.name),rnn_history.history['val_sparse_categorical_accuracy']) print('################# {} Training Accuracy = '.format(rnn_net.name),rnn_history.history['sparse_categorical_accuracy']) plt.figure() plt.plot(rnn_history.history['sparse_categorical_accuracy'], label = 'train') plt.plot(rnn_history.history['val_sparse_categorical_accuracy'], label = 'val') # plt.plot(cnn_history.history['sparse_categorical_accuracy'], label = 'cnn train') # plt.plot(cnn_history.history['val_sparse_categorical_accuracy'], label = 'cnn val') plt.legend() plt.grid() plt.ylim(0.5,0.63) plt.title('{} on cifar res = {} hs = {} dropout = {}, num samples = {}'.format(rnn_net.name, res, hidden_size,cnn_dropout,sample)) plt.savefig('{} on Cifar res = {}, no upsample, val accur = {} hs = {} dropout = {}.png'.format(rnn_net.name,res,rnn_history.history['val_sparse_categorical_accuracy'][-1], hidden_size,cnn_dropout)) with open('/home/labs/ahissarlab/orra/imagewalker/cifar_net_search/{}'.format(run_id), 'wb') as file_pi: pickle.dump(rnn_history.history, file_pi) # with open('/home/labs/ahissarlab/orra/imagewalker/cifar_net_search/{}HistoryDict'.format(cnn_net.name), 'wb') as file_pi: # pickle.dump(cnn_history.history, file_pi) dataset_update(rnn_history, rnn_net,paramaters) write_to_file(rnn_history, rnn_net,paramaters)
[ 7061, 6, 198, 464, 22752, 5469, 2438, 4539, 257, 1332, 300, 301, 76, 3127, 319, 262, 327, 5064, 1503, 27039, 220, 198, 198, 40, 481, 11777, 3551, 262, 7686, 994, 329, 10152, 286, 4547, 220, 198, 198, 4480, 269, 20471, 62, 82, 1773, ...
1.884358
37,279
import os from domain.base import Domain, Yaml from properties import APPLICATION_PROPERTIES
[ 11748, 28686, 198, 198, 6738, 7386, 13, 8692, 1330, 20021, 11, 14063, 75, 198, 6738, 6608, 1330, 39421, 6234, 62, 4805, 3185, 17395, 11015, 628 ]
3.8
25
from __future__ import annotations # SOURCE: https://blog.bartab.fr/fastapi-logging-on-the-fly/ import logging from fastapi import APIRouter, HTTPException from ultron8.api.models.loggers import LoggerModel, LoggerPatch LOG_LEVELS = { "critical": logging.CRITICAL, "error": logging.ERROR, "warning": logging.WARNING, "info": logging.INFO, "debug": logging.DEBUG, } LOGGER = logging.getLogger(__name__) router = APIRouter() # Multiple RecursionErrors with self-referencing models # https://github.com/samuelcolvin/pydantic/issues/524 # https://github.com/samuelcolvin/pydantic/issues/531
[ 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 2, 311, 31033, 25, 3740, 1378, 14036, 13, 16575, 397, 13, 8310, 14, 7217, 15042, 12, 6404, 2667, 12, 261, 12, 1169, 12, 12254, 14, 198, 11748, 18931, 198, 198, 6738, 3049, 15042, 1330, ...
2.813636
220
# Python Program To Understand The Usage Of try With finally Blocks ''' Function Name : Usage Of try With finally Blocks Function Date : 23 Sep 2020 Function Author : Prasad Dangare Input : String Output : String ''' try: x = int(input('Enter A Number : ')) y = 1 / x finally: print("We Are Not Catching The Exception.") print("The Inverse Is : ", y)
[ 2, 11361, 6118, 1675, 45010, 383, 29566, 3226, 1949, 2080, 3443, 35111, 201, 198, 201, 198, 201, 198, 7061, 6, 201, 198, 22203, 6530, 220, 220, 220, 1058, 220, 29566, 3226, 1949, 2080, 3443, 35111, 201, 198, 22203, 7536, 220, 220, 220...
2.482353
170
print(fib1(5))
[ 4798, 7, 69, 571, 16, 7, 20, 4008 ]
1.75
8
#!/usr/bin/env python """ Background: -------- GliderScienceSet_Plots.py Purpose: -------- History: -------- """ import argparse import os from io_utils import ConfigParserLocal import numpy as np import xarray as xa # Visual Stack import matplotlib as mpl import matplotlib.pyplot as plt """-------------------------------- Main -----------------------------------------------""" parser = argparse.ArgumentParser(description='Plot archived NetCDF glider data and Science Data') parser.add_argument('ofilepath', metavar='ofilepath', type=str, help='path to directory with UW initial Oculus netcdf data') parser.add_argument('sfilepath', metavar='sfilepath', type=str, help='path to directory with Oculus Science Data netcdf data') parser.add_argument('profileid',metavar='profileid', type=str, help='divenumber - eg p4010260') args = parser.parse_args() isUW, ismerged, isup, isdown = True, True, True, True # There are potentially three files - original UW file, a merged file and an upcast/downcast file filein = args.ofilepath + args.profileid + '.nc' try: df = xa.open_dataset(filein, autoclose=True) except IOError: isUW = False filein_m = args.sfilepath + args.profileid + '_m.nc' ismerged = True try: df_m = xa.open_dataset(filein_m, autoclose=True) except IOError: ismerged = False filein_u = args.sfilepath + args.profileid + '_u.nc' try: df_u = xa.open_dataset(filein_u, autoclose=True) except IOError: isup = False filein_d = args.sfilepath + args.profileid + '_d.nc' try: df_d = xa.open_dataset(filein_d, autoclose=True) except IOError: isdown = False fig = plt.figure(figsize=(6, 6)) if isUW: fig = plot_ts(df.salinity,df.temperature,df.depth,labels=True,label_color='g') print("Added original data") if ismerged: fig = plot_ts(df_m.Salinity,df_m.Temperature,df_m.Pressure,labels=False,label_color='k') print("Added merged data") if isup: fig = plot_ts(df_u.Salinity,df_u.Temperature,df_u.Pressure,labels=False,label_color='b') print("Added binned upcast data") if isdown: fig = plot_ts(df_d.Salinity,df_d.Temperature,df_d.Pressure,labels=False,label_color='r') print("Added binned downcast data")
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 37811, 198, 25353, 25, 198, 24200, 198, 2671, 1304, 26959, 7248, 62, 3646, 1747, 13, 9078, 198, 220, 198, 220, 198, 32039, 25, 198, 24200, 198, 220, 198, 7443, 25, 198, 24200, 6...
2.768354
790
""" Define models used in this app. This module only serves to provide some consistency across the `users`, `accounts` , `projects` etc apps so that you can `from users.models import Users`, just like you can for `from projects.models import Projects` and instead of having to remember to do the following. """ from typing import Dict, Optional import django.contrib.auth.models import shortuuid from django.contrib.auth import get_user_model from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import connection, models from django.db.models import Count, F, Max, Q from django.db.models.expressions import RawSQL from django.http import HttpRequest from django.shortcuts import reverse from django.utils import timezone from invitations.adapters import get_invitations_adapter from invitations.models import Invitation from rest_framework.exceptions import ValidationError from waffle.models import AbstractUserFlag # Needed to ensure signals are loaded import users.signals # noqa from manager.helpers import EnumChoice User: django.contrib.auth.models.User = get_user_model() def get_email(user: User) -> Optional[str]: """ Get the best email address for a user. The "best" email is the verified primary email, falling back to verified if none marked as primary, falling back to the first if none is verified, falling back to `user.email`, falling back to their public email. """ best = None emails = user.emailaddress_set.all() for email in emails: if (email.primary and email.verified) or (not best and email.verified): best = email.email if not best and len(emails) > 0: best = emails[0].email if not best: best = user.email if not best and user.personal_account: best = user.personal_account.email # Avoid returning an empty string, return None instead return best or None def get_name(user: User) -> Optional[str]: """ Get the best name to display for a user. The "best" name is their account's display name, falling back to first_name + last_name, falling back to username. """ if user.personal_account and user.personal_account.display_name: return user.personal_account.display_name if user.first_name or user.last_name: return f"{user.first_name} {user.last_name}".strip() return user.username def get_attributes(user: User) -> Dict: """ Get a dictionary of user attributes. Used for updating external services with current values of user attributes e.g number of projects etc. Flattens various other summary dictionaries e.g `get_projects_summary` into a single dictionary. """ return { **dict( (f"feature_{name}", value) for name, value in get_feature_flags(user).items() ), **dict( (f"orgs_{name}", value) for name, value in get_orgs_summary(user).items() ), **dict( (f"projects_{name}", value) for name, value in get_projects_summary(user).items() ), } def get_orgs(user: User): """ Get all organizational accounts that a user is a member of. """ from accounts.models import Account return Account.objects.filter(user__isnull=True, users__user=user).annotate( role=F("users__role") ) def get_orgs_summary(user: User) -> Dict: """ Get a summary of organizational accounts the user is a member of. """ from accounts.models import AccountRole zero_by_role = dict([(role.name.lower(), 0) for role in AccountRole]) orgs = get_orgs(user) orgs_summary = orgs.values("role").annotate(count=Count("id"), tier=Max("tier")) orgs_by_role = dict([(row["role"].lower(), row["count"]) for row in orgs_summary]) return { "max_tier": max(row["tier"] for row in orgs_summary) if orgs_summary else None, "total": sum(orgs_by_role.values()), **zero_by_role, **orgs_by_role, } def get_projects(user: User, include_public=True): """ Get a queryset of projects for the user. For authenticated users, each project is annotated with the role of the user for the project. """ from projects.models.projects import Project if user.is_authenticated: # Annotate the queryset with the role of the user # Role is the "greater" of the project role and the # account role (for the account that owns the project). # Authenticated users can see public projects and those in # which they have a role return Project.objects.annotate( role=RawSQL( """ SELECT CASE account_role.role WHEN 'OWNER' THEN 'OWNER' WHEN 'MANAGER' THEN CASE project_role.role WHEN 'OWNER' THEN 'OWNER' ELSE 'MANAGER' END ELSE project_role.role END AS "role" FROM projects_project AS project LEFT JOIN (SELECT project_id, "role" FROM projects_projectagent WHERE user_id = %s) AS project_role ON project.id = project_role.project_id LEFT JOIN (SELECT account_id, "role" FROM accounts_accountuser WHERE user_id = %s) AS account_role ON project.account_id = account_role.account_id WHERE project.id = projects_project.id""", [user.id, user.id], ) ).filter((Q(public=True) if include_public else Q()) | Q(role__isnull=False)) else: # Unauthenticated users can only see public projects return Project.objects.filter(public=True).extra(select={"role": "NULL"}) def get_projects_summary(user: User) -> Dict: """ Get a summary of project memberships for a user. """ from projects.models.projects import ProjectRole zero_by_role = dict([(role.name.lower(), 0) for role in ProjectRole]) projects = get_projects(user, include_public=False) projects_by_role = dict( [ (row["role"].lower(), row["count"]) for row in projects.values("role").annotate(count=Count("id")) ] ) return { "total": sum(projects_by_role.values()), **zero_by_role, **projects_by_role, } def get_feature_flags(user: User) -> Dict[str, str]: """ Get the feature flag settings for a user. """ with connection.cursor() as cursor: cursor.execute( """ SELECT "name", "default", "user_id" FROM users_flag LEFT JOIN ( SELECT * FROM users_flag_users WHERE user_id = %s ) AS subquery ON users_flag.id = subquery.flag_id WHERE users_flag.settable """, [user.id], ) rows = cursor.fetchall() features = {} for row in rows: name, default, has_flag = row if has_flag: features[name] = "off" if default == "on" else "on" else: features[name] = default return features def generate_anonuser_id(): """ Generate a unique id for an anonymous user. """ return shortuuid.ShortUUID().random(length=32) def generate_invite_key(): """ Generate a unique invite key. The is separate function to avoid new AlterField migrations being created as happens when `default=shortuuid.uuid`. """ return shortuuid.ShortUUID().random(length=32)
[ 37811, 198, 7469, 500, 4981, 973, 287, 428, 598, 13, 198, 198, 1212, 8265, 691, 9179, 284, 2148, 617, 15794, 1973, 262, 198, 63, 18417, 47671, 4600, 23317, 82, 63, 837, 4600, 42068, 63, 3503, 6725, 523, 326, 345, 460, 198, 63, 6738,...
2.646033
2,811
from trex.emu.api import * from trex.emu.emu_plugins.emu_plugin_base import * import trex.utils.parsing_opts as parsing_opts
[ 6738, 2054, 87, 13, 368, 84, 13, 15042, 1330, 1635, 198, 6738, 2054, 87, 13, 368, 84, 13, 368, 84, 62, 37390, 13, 368, 84, 62, 33803, 62, 8692, 1330, 1635, 198, 11748, 2054, 87, 13, 26791, 13, 79, 945, 278, 62, 404, 912, 355, ...
2.52
50
# Copyright 2020 Huawei Technologies Co., Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================ import os import struct import argparse import numpy as np from PIL import Image def load_mnist(dir_path, kind='train'): """Load MNIST Dataset from the given path""" labels_path = os.path.join(dir_path, '%s-labels-idx1-ubyte' % kind) images_path = os.path.join(dir_path, '%s-images-idx3-ubyte' % kind) with open(labels_path, 'rb') as labels_file: magic, num = struct.unpack('>II', labels_file.read(8)) labels = np.fromfile(labels_file, dtype=np.uint8) with open(images_path, 'rb') as images_file: magic, num, rows, cols = struct.unpack(">IIII", images_file.read(16)) images = np.fromfile(images_file, dtype=np.uint8) return images, labels, num def save_mnist_to_jpg(images, labels, save_dir, kind, num): """Convert and save the MNIST dataset to.jpg image format""" one_pic_pixels = 28 * 28 for i in range(num): img = images[i * one_pic_pixels:(i + 1) * one_pic_pixels] img_np = np.array(img, dtype=np.uint8).reshape(28, 28) label_val = labels[i] jpg_name = os.path.join(save_dir, '{}_{}_{}.jpg'.format(kind, i, label_val)) Image.fromarray(img_np).save(jpg_name) print('{} ==> {}_{}_{}.jpg'.format(i, kind, i, label_val)) if __name__ == '__main__': parser = argparse.ArgumentParser(description="MNIST Dataset Operations") parser.add_argument('--data_dir', type=str, default='/root/jina/chinese-mnist', help='MNIST dataset dir') parser.add_argument('--kind', type=str, default='train', help='MNIST dataset: train or t10k') parser.add_argument('--save_dir', type=str, default='/root/jina/chinese-mnist/jpg', help='used to save mnist jpg') args = parser.parse_args() if not os.path.exists(args.data_dir): os.makedirs(args.data_dir) images_np, labels_np, kind_num = load_mnist(args.data_dir, args.kind) if not os.path.exists(args.save_dir): os.makedirs(args.save_dir) save_mnist_to_jpg(images_np, labels_np, args.save_dir, args.kind, kind_num)
[ 2, 15069, 12131, 43208, 21852, 1766, 1539, 12052, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198...
2.68032
1,001
from datetime import datetime from django.db import models from django.db.models import permalink from django.contrib.contenttypes.models import ContentType from django.contrib.sites.models import Site from django.test import TestCase as DjangoTestCase from django_comments_xtd.models import (XtdComment, MaxThreadLevelExceededException) # In order to methods save and test _calculate_thread_ata, simulate the # following threads, in order of arrival: # # testcase cmt.id parent level-0 level-1 level-2 # step1 1 - c1 <- cmt1 # step1 2 - c2 <- cmt2 # step2 3 1 -- c3 <- cmt1 to cmt1 # step2 4 1 -- c4 <- cmt2 to cmt1 # step3 5 2 -- c5 <- cmt1 to cmt2 # step4 6 5 -- -- c6 <- cmt1 to cmt1 to cmt2 # step4 7 4 -- -- c7 <- cmt1 to cmt2 to cmt1 # step5 8 3 -- -- c8 <- cmt1 to cmt1 to cmt1 # step5 9 - c9 <- cmt9 def thread_test_step_1(article): article_ct = ContentType.objects.get(app_label="tests", model="article") site = Site.objects.get(pk=1) # post Comment 1 with parent_id 0 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="comment 1 to article", submit_date = datetime.now()) # post Comment 2 with parent_id 0 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="comment 2 to article", submit_date = datetime.now()) def thread_test_step_2(article): article_ct = ContentType.objects.get(app_label="tests", model="article") site = Site.objects.get(pk=1) # post Comment 3 to parent_id 1 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="comment 1 to comment 1", submit_date = datetime.now(), parent_id = 1) # post Comment 4 to parent_id 1 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="comment 2 to comment 1", submit_date = datetime.now(), parent_id = 1) def thread_test_step_3(article): article_ct = ContentType.objects.get(app_label="tests", model="article") site = Site.objects.get(pk=1) # post Comment 5 to parent_id 2 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="comment 1 to comment 1", submit_date = datetime.now(), parent_id = 2) def thread_test_step_4(article): article_ct = ContentType.objects.get(app_label="tests", model="article") site = Site.objects.get(pk=1) # post Comment 6 to parent_id 5 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="cmt 1 to cmt 1 to cmt 2", submit_date = datetime.now(), parent_id = 5) # post Comment 7 to parent_id 4 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="cmt 1 to cmt 2 to cmt 1", submit_date = datetime.now(), parent_id = 4) def thread_test_step_5(article): article_ct = ContentType.objects.get(app_label="tests", model="article") site = Site.objects.get(pk=1) # post Comment 8 to parent_id 3 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="cmt 1 to cmt 1 to cmt 1", submit_date = datetime.now(), parent_id = 3) # post Comment 9 with parent_id 0 XtdComment.objects.create(content_type = article_ct, object_pk = article.id, content_object = article, site = site, comment ="cmt 1 to cmt 2 to cmt 1", submit_date = datetime.now())
[ 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 583, 31000, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 11299, 19199, 13, 27530, 1330, 14041, 60...
1.661178
3,583
""" This file contains all the version one routes """ # Third party imports from flask import Blueprint, request from flask_restplus import Api, Resource, fields # Local application imports from .views.products_views import v1 as pro_routes from .views.sales_views import v1 as sales_routes from .views.stores_views import v1 as stores_routes from .views.auth import v1 as auth_routes authorizations = { 'apikey': { 'type': 'apiKey', 'in': 'header', 'name': 'Authorization' }} v_1 = Blueprint('v_1', __name__, url_prefix="/api/v1") api = Api(v_1) v1 = api.namespace( 'v1', description='Store manager Api without persitent data storage', authorizations=authorizations) api.add_namespace(pro_routes, path="/products/") api.add_namespace(sales_routes, path="/sales") api.add_namespace(stores_routes, path="/stores") api.add_namespace(auth_routes, path="/")
[ 37811, 198, 1212, 2393, 4909, 477, 262, 2196, 530, 11926, 198, 37811, 198, 198, 2, 10467, 2151, 17944, 198, 6738, 42903, 1330, 39932, 11, 2581, 198, 6738, 42903, 62, 2118, 9541, 1330, 5949, 72, 11, 20857, 11, 7032, 628, 198, 2, 10714,...
2.760736
326
from pathlib import Path import jsonschema import pydantic import pytest from nomenclature.processor.region import ( ModelMappingCollisionError, RegionAggregationMapping, RegionProcessor, ) from conftest import TEST_DATA_DIR TEST_FOLDER_REGION_MAPPING = TEST_DATA_DIR / "region_aggregation" def test_region_processor_not_defined(simple_definition): # Test a RegionProcessor with regions that are not defined in the data structure # definition error_msg = ( "model_(a|b)\n.*region_a.*mapping_(1|2).yaml.*value_error.region_not_defined." "*\n.*model_(a|b)\n.*region_a.*mapping_(1|2).yaml.*value_error." "region_not_defined" ) with pytest.raises(pydantic.ValidationError, match=error_msg): RegionProcessor.from_directory( TEST_DATA_DIR / "regionprocessor_not_defined" ).validate_mappings(simple_definition) def test_region_processor_duplicate_model_mapping(): error_msg = ".*model_a.*mapping_(1|2).yaml.*mapping_(1|2).yaml" with pytest.raises(ModelMappingCollisionError, match=error_msg): RegionProcessor.from_directory(TEST_DATA_DIR / "regionprocessor_duplicate") def test_region_processor_wrong_args(): # Test if pydantic correctly type checks the input of RegionProcessor.from_directory # Test with an integer with pytest.raises(pydantic.ValidationError, match=".*path\n.*not a valid path.*"): RegionProcessor.from_directory(123) # Test with a file, a path pointing to a directory is required with pytest.raises( pydantic.ValidationError, match=".*path\n.*does not point to a directory.*", ): RegionProcessor.from_directory( TEST_DATA_DIR / "regionprocessor_working/mapping_1.yaml" )
[ 6738, 3108, 8019, 1330, 10644, 198, 198, 11748, 44804, 684, 2395, 2611, 198, 11748, 279, 5173, 5109, 198, 11748, 12972, 9288, 198, 6738, 299, 3674, 565, 1300, 13, 41341, 13, 36996, 1330, 357, 198, 220, 220, 220, 9104, 44, 5912, 22667, ...
2.608824
680
#!/usr/bin/env python # #3> <> prov:specializationOf <https://github.com/timrdf/csv2rdf4lod-automation/blob/master/bin/util/ckan-datasets-in-group.py>; #3> prov:wasDerivedFrom <https://raw.github.com/timrdf/DataFAQs/master/packages/faqt.python/faqt/faqt.py>, #3> <https://github.com/timrdf/DataFAQs/raw/master/services/sadi/ckan/lift-ckan.py>; # # Requires: http://pypi.python.org/pypi/ckanclient # easy_install http://pypi.python.org/packages/source/c/ckanclient/ckanclient-0.10.tar.gz import ckanclient if __name__=='__main__': datasets_in_group()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 198, 2, 18, 29, 1279, 29, 899, 25, 20887, 1634, 5189, 1279, 5450, 1378, 12567, 13, 785, 14, 16514, 4372, 69, 14, 40664, 17, 4372, 69, 19, 75, 375, 12, 2306, 296, 341, 14, 2436...
2.186567
268
import FWCore.ParameterSet.Config as cms ecalExclusiveTrigFilter = cms.EDFilter("EcalExclusiveTrigFilter", # Global trigger tag l1GlobalReadoutRecord = cms.string("gtDigis") )
[ 11748, 48849, 14055, 13, 36301, 7248, 13, 16934, 355, 269, 907, 198, 198, 721, 282, 3109, 5731, 2898, 328, 22417, 796, 269, 907, 13, 1961, 22417, 7203, 36, 9948, 3109, 5731, 2898, 328, 22417, 1600, 628, 220, 220, 220, 220, 220, 1303, ...
2.690141
71
import bpy import os import json import numpy as np from decimal import Decimal from mathutils import Vector, Matrix import argparse import numpy as np import sys sys.path.append(os.path.dirname(__file__)) sys.path.append(os.path.dirname(__file__)+'/tools') from tools.utils import * from tools.blender_interface import BlenderInterface if __name__ == '__main__': p = argparse.ArgumentParser(description='Renders given obj file by rotation a camera around it.') p.add_argument('--mesh_fpath', type=str, required=True, help='The path the output will be dumped to.') p.add_argument('--output_dir', type=str, required=True, help='The path the output will be dumped to.') p.add_argument('--num_observations', type=int, required=True, help='The path the output will be dumped to.') p.add_argument('--sphere_radius', type=float, required=True, help='The path the output will be dumped to.') p.add_argument('--mode', type=str, required=True, help='Options: train and test') argv = sys.argv argv = sys.argv[sys.argv.index("--") + 1:] opt = p.parse_args(argv) instance_name = opt.mesh_fpath.split('/')[-3] instance_dir = os.path.join(opt.output_dir, instance_name) # Start Render renderer = BlenderInterface(resolution=128) if opt.mode == 'train': cam_locations = sample_spherical(opt.num_observations, opt.sphere_radius) elif opt.mode == 'test': cam_locations = get_archimedean_spiral(opt.sphere_radius, opt.num_observations) obj_location = np.zeros((1,3)) cv_poses = look_at(cam_locations, obj_location) blender_poses = [cv_cam2world_to_bcam2world(m) for m in cv_poses] shapenet_rotation_mat = np.array([[1.0000000e+00, 0.0000000e+00, 0.0000000e+00], [0.0000000e+00, -1.0000000e+00, -1.2246468e-16], [0.0000000e+00, 1.2246468e-16, -1.0000000e+00]]) rot_mat = np.eye(3) hom_coords = np.array([[0., 0., 0., 1.]]).reshape(1, 4) obj_pose = np.concatenate((rot_mat, obj_location.reshape(3,1)), axis=-1) obj_pose = np.concatenate((obj_pose, hom_coords), axis=0) renderer.import_mesh(opt.mesh_fpath, scale=1., object_world_matrix=obj_pose) renderer.render(instance_dir, blender_poses, write_cam_params=True)
[ 11748, 275, 9078, 198, 11748, 28686, 198, 11748, 33918, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 32465, 1330, 4280, 4402, 198, 6738, 10688, 26791, 1330, 20650, 11, 24936, 198, 11748, 1822, 29572, 198, 11748, 299, 32152, 355, 45941, ...
2.446809
940
#!/usr/bin/python import unittest import json import base64 from mock import patch import api if __name__ == '__main__': unittest.main()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 11748, 555, 715, 395, 198, 11748, 33918, 198, 11748, 2779, 2414, 198, 6738, 15290, 1330, 8529, 198, 11748, 40391, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, ...
2.823529
51
import numpy as np
[ 198, 11748, 299, 32152, 355, 45941, 628, 628 ]
2.875
8
import math grid = [] with open('input-day15.txt') as file: for line in file: line = line.rstrip() grid.append([int(s) for s in line]) n = len(grid) costs = [[math.inf] * n for _ in range(n)] costs[0][0] = 0 queue = [(0, 0)] while len(queue) > 0: x1, y1 = queue.pop(0) for dx, dy in [(1, 0), (0, 1), (-1, 0), (0, -1)]: x, y = x1 + dx, y1 + dy if x >= 0 and y >= 0 and x < n and y < n: cost = costs[x1][y1] + grid[x][y] if cost < costs[x][y]: costs[x][y] = cost queue.append((x, y)) print(costs[n - 1][n - 1])
[ 11748, 10688, 198, 198, 25928, 796, 17635, 198, 4480, 1280, 10786, 15414, 12, 820, 1314, 13, 14116, 11537, 355, 2393, 25, 198, 220, 329, 1627, 287, 2393, 25, 198, 220, 220, 220, 1627, 796, 1627, 13, 81, 36311, 3419, 198, 220, 220, 2...
2.04
275
# -*- coding: utf-8 -*- ''' Created on 16.11.2014 @author: Simon Gwerder ''' from utilities.configloader import ConfigLoader from rdfgraph import RDFGraph
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 7061, 6, 198, 41972, 319, 1467, 13, 1157, 13, 4967, 198, 198, 31, 9800, 25, 11288, 402, 15448, 1082, 198, 7061, 6, 198, 198, 6738, 20081, 13, 11250, 29356, 1330, 17056...
2.745763
59
arr: list = [54,26,93,17,77,31,44,55,20] print(arr) merge_sort(arr) print(arr)
[ 198, 198, 3258, 25, 1351, 796, 685, 4051, 11, 2075, 11, 6052, 11, 1558, 11, 3324, 11, 3132, 11, 2598, 11, 2816, 11, 1238, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 4798, 7, 3258, 8, 198, 647, 469, 62, 30619, 7...
1.685185
54
#!/usr/bin/python3 # ****************************************************************************** # Copyright (c) Huawei Technologies Co., Ltd. 2021-2022. All rights reserved. # licensed under the Mulan PSL v2. # You can use this software according to the terms and conditions of the Mulan PSL v2. # You may obtain a copy of Mulan PSL v2 at: # http://license.coscl.org.cn/MulanPSL2 # THIS SOFTWARE IS PROVIDED ON AN 'AS IS' BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR # PURPOSE. # See the Mulan PSL v2 for more details. # ******************************************************************************/ """ Time: Author: Description: callback function of the cve scanning task. """ from aops_utils.log.log import LOGGER from cve_manager.handler.task_handler.callback import TaskCallback from cve_manager.conf.constant import ANSIBLE_TASK_STATUS, CVE_SCAN_STATUS
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 198, 2, 41906, 17174, 46068, 1174, 198, 2, 15069, 357, 66, 8, 43208, 21852, 1766, 1539, 12052, 13, 33448, 12, 1238, 1828, 13, 1439, 2489, 10395, 13, 198, 2, 11971, 739, 262, 17996, 272, 6599...
3.508961
279
from mean_var_std import * calculate([0,1,2,3,4,5,6,7,8])
[ 6738, 1612, 62, 7785, 62, 19282, 1330, 1635, 198, 198, 9948, 3129, 378, 26933, 15, 11, 16, 11, 17, 11, 18, 11, 19, 11, 20, 11, 21, 11, 22, 11, 23, 12962 ]
1.8125
32
from datetime import datetime from decimal import Decimal from perfsize.perfsize import ( lt, lte, gt, gte, eq, neq, Condition, Result, Run, Config, Plan, StepManager, EnvironmentManager, LoadManager, ResultManager, Reporter, Workflow, ) from perfsize.environment.mock import MockEnvironmentManager from perfsize.load.mock import MockLoadManager from perfsize.reporter.mock import MockReporter from perfsize.result.mock import MockResultManager from perfsize.result.gatling import Metric, GatlingResultManager from perfsize.step.mock import MockStepManager from pprint import pprint import pytest from unittest.mock import patch
[ 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 32465, 1330, 4280, 4402, 198, 6738, 23035, 7857, 13, 525, 69, 7857, 1330, 357, 198, 220, 220, 220, 300, 83, 11, 198, 220, 220, 220, 300, 660, 11, 198, 220, 220, 220, 308, 83, 11, 198,...
2.896266
241
from src import dmf,mzs,utils,sfx from pathlib import Path import argparse parser = argparse.ArgumentParser(description='Convert DMF modules and SFX to an MLM driver compatible format') parser.add_argument('dmf_module_paths', type=str, nargs='*', help="The paths to the input DMF files") parser.add_argument('--sfx-directory', type=Path, help="Path to folder containing .raw files (Only absolute paths; Must be 18500Hz 16bit mono)") parser.add_argument('--sfx-header', type=Path, help="Where to save the generated SFX c header (Only absolute paths)") args = parser.parse_args() dmf_modules = [] sfx_samples = None if args.sfx_directory != None: print("Parsing SFX... ", end='', flush=True) sfx_samples = sfx.SFXSamples(args.sfx_directory) print("OK") if args.sfx_header != None: print("Generating SFX Header... ", end='', flush=True) c_header = sfx_samples.generate_c_header() print("OK") print(f"Saving SFX Header as '{args.sfx_header}'... ", end='', flush=True) with open(args.sfx_header, "w") as file: file.write(c_header) print("OK") for i in range(len(args.dmf_module_paths)): with open(args.dmf_module_paths[i], "rb") as file: print(f"Parsing '{args.dmf_module_paths[i]}'... ", end='', flush=True) mod = dmf.Module(file.read()) print("OK") print(f"Optimizing '{args.dmf_module_paths[i]}'... ", end='', flush=True) mod.patch_for_mzs() mod.optimize() print("OK") dmf_modules.append(mod) mlm_sdata = mzs.SoundData() print(f"Converting DMFs... ", end='', flush=True) mlm_sdata.add_dmfs(dmf_modules) print("OK") if sfx_samples != None: print(f"Converting SFX... ", end='', flush=True) mlm_sdata.add_sfx(sfx_samples, False) print("OK") #print_df_info(dmf_modules[0], [0, 4, 7]) #print_info(mlm_sdata) print(f"Compiling... ", end='', flush=True) mlm_compiled_sdata = mlm_sdata.compile_sdata() mlm_compiled_vrom = mlm_sdata.compile_vrom() print("OK") with open("m1_sdata.bin", "wb") as file: file.write(mlm_compiled_sdata) with open("vrom.bin", "wb") as file: file.write(mlm_compiled_vrom)
[ 6738, 12351, 1330, 288, 76, 69, 11, 76, 89, 82, 11, 26791, 11, 82, 21373, 198, 6738, 3108, 8019, 1330, 10644, 198, 11748, 1822, 29572, 628, 197, 197, 198, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 11213, 11639, 3103, ...
2.455635
834
# Using the Requests library, you can make a POST request by using the requests.post() method. You aren't just GETting data with a POST - you can pass your own data into the request as well, like so: # # requests.post("http://placekitten.com/", data="myDataToPost") # We're going to make the same request as the one shown on line 2 through line 5. Request header lines (line 3 and line 4) are usually created automatically, so we don't have to worry about them. The body of the request on line 5 is what we will need to add to our POST. # # Instructions # We created the body of the request as a dictionary on line 9. Call requests.post() on the URL http://codecademy.com/learn-http/ and pass the argument data=body, as in the example above, to create the POST request; set this result equal to a new variable named response. ########## Example request ############# # POST /learn-http HTTP/1.1 # Host: www.codecademy.com # Content-Type: text/html; charset=UTF-8 # Name=Eric&Age=26 import requests body = {'Name': 'Eric', 'Age': '26'} # Make the POST request here, passing body as the data: response = requests.post('http://codecademy.com/learn-http/', data=body)
[ 2, 8554, 262, 9394, 3558, 5888, 11, 345, 460, 787, 257, 24582, 2581, 416, 1262, 262, 7007, 13, 7353, 3419, 2446, 13, 921, 3588, 470, 655, 17151, 889, 1366, 351, 257, 24582, 532, 345, 460, 1208, 534, 898, 1366, 656, 262, 2581, 355, ...
3.531722
331
import numpy as np import torch import torch.nn as nn import torch.nn.functional as F import time from functools import partial from .linear import MLP, LogReg from .pointnet import PointNet from .pointnet2 import PointNet2SSG from .pointnet3 import PointNet3SSG from .dgcnn import DGCNN # from .masked_conv import ConvolutionalPoseModel from .point_mlp import PointMLP from pytorch_lightning.core.lightning import LightningModule
[ 11748, 299, 32152, 355, 45941, 201, 198, 11748, 28034, 201, 198, 11748, 28034, 13, 20471, 355, 299, 77, 201, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 201, 198, 201, 198, 11748, 640, 201, 198, 6738, 1257, 310, 10141, 1330, 13...
3.006667
150
import golpy.controller.controller as controller import golpy.view.view as view import golpy.model.gamemodel as model import golpy.eventmanager.eventmanager as eventm import golpy.config as config import log.log as log import argparse def pass_args(): """ Takes Argument from the command line and returns an ArgumentParser""" parser = argparse.ArgumentParser(description="2D Cellular Automata Viewer supporting multiple formats") parser.add_argument("-rule", "-r", type=str, default=config.default_rule, help='String describing the used rule') parser.add_argument("-mode", "-m", type=str, default=config.default_mode, help="String describing Game Mode") parser.add_argument("-size", "-s", type=int, default=config.default_size, help="Integer describing size of the universe. I.e. -size 200 will correspond to a (200 x 200) cell universe") parser.add_argument("-topology", "-t", type=str, default=config.default_topology, help="String describing the topology of the universe. Default being Torus-shaped") parser.add_argument("-speed", "-sp", type=int, default=config.default_speed, help="Integer describing the maximum FPS possible for the animation") parser.add_argument("-windowsize", "-w", type=int, default=config.default_window_size, help="Integer describing the window size in pixels") return parser.parse_args() if __name__ == '__main__': run()
[ 11748, 43791, 9078, 13, 36500, 13, 36500, 355, 10444, 198, 11748, 43791, 9078, 13, 1177, 13, 1177, 355, 1570, 198, 11748, 43791, 9078, 13, 19849, 13, 28483, 368, 375, 417, 355, 2746, 198, 11748, 43791, 9078, 13, 15596, 37153, 13, 15596,...
2.820841
547
import unittest import orca from setup.settings import * from pandas.util.testing import *
[ 11748, 555, 715, 395, 198, 11748, 393, 6888, 198, 6738, 9058, 13, 33692, 1330, 1635, 198, 6738, 19798, 292, 13, 22602, 13, 33407, 1330, 1635, 628 ]
3.538462
26
ITERATION_NUM = 10 MAX_POPULATION = 500 CROSSOVER_RATE = 1 MUTATION_RATE = 1 supplies = { 'S1': 20, 'S2': 15, 'S3': 40 } demands = { 'D1': 20, 'D2': 30, 'D3': 25 } cost = [[2, 3, 1], [5, 4, 8], [5, 6, 8] ]
[ 2043, 1137, 6234, 62, 41359, 796, 838, 201, 198, 22921, 62, 47, 3185, 6239, 6234, 796, 5323, 201, 198, 9419, 2640, 15821, 5959, 62, 49, 6158, 796, 352, 201, 198, 44, 3843, 6234, 62, 49, 6158, 796, 352, 201, 198, 201, 198, 18608, 1...
1.535912
181
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
from functools import cached_property from .vector3 import Vector3
[ 6738, 1257, 310, 10141, 1330, 39986, 62, 26745, 198, 198, 6738, 764, 31364, 18, 1330, 20650, 18, 628 ]
3.833333
18
from gps import * import math import time import json import threading gpsd = None poller = None
[ 6738, 308, 862, 1330, 1635, 198, 11748, 10688, 198, 11748, 640, 198, 11748, 33918, 198, 11748, 4704, 278, 198, 198, 70, 862, 67, 796, 6045, 198, 30393, 263, 796, 6045, 198 ]
3.16129
31
import json import random import warnings from typing import Any, Callable, Dict, List, Union, Type, Optional, NoReturn from pydantic import PrivateAttr from vkwave.bots import BotEvent, BotType, EventTypeFilter, UserEvent from vkwave.bots.core import BaseFilter from vkwave.bots.core.dispatching.filters.builtin import get_payload, get_text from vkwave.bots.core.dispatching.handler.callback import BaseCallback from vkwave.bots.core.dispatching.handler.cast import caster as callback_caster from vkwave.bots.core.types.json_types import JSONEncoder from vkwave.types.bot_events import BotEventType from vkwave.types.objects import ( BaseBoolInt, MessagesMessageAttachment, MessagesMessageAttachmentType, UsersUser, ) from vkwave.types.responses import BaseOkResponse, MessagesEditResponse, MessagesSendResponse from vkwave.types.user_events import EventId try: import aiofile except ImportError: aiofile = None def simple_bot_handler(router, event: Optional[Type[SimpleBotEvent]] = None, *filters: BaseFilter): """ Handler for all bot events """ return decorator def simple_user_handler(router, *filters: BaseFilter, event: Optional[Type[SimpleUserEvent]] = None): """ Handler for all user events """ return decorator def simple_bot_message_handler(router, *filters: BaseFilter, event: Optional[Type[SimpleBotEvent]] = None): """ Handler only for message events """ return decorator def simple_user_message_handler(router, *filters: BaseFilter, event: Optional[Type[SimpleUserEvent]] = None): """ Handler only for message events """ return decorator
[ 11748, 33918, 198, 11748, 4738, 198, 11748, 14601, 198, 6738, 19720, 1330, 4377, 11, 4889, 540, 11, 360, 713, 11, 7343, 11, 4479, 11, 5994, 11, 32233, 11, 1400, 13615, 198, 198, 6738, 279, 5173, 5109, 1330, 15348, 8086, 81, 198, 198, ...
3.145833
528
""" Created on 7 Nov 2016 @author: Bruno Beloff (bruno.beloff@southcoastscience.com) example: 25 June 2016 17:44:28 BST: {"datum":{"conc":92,"dens":184},"measured-at":"2016-06-25T17:41:01+01:00"} """ from collections import OrderedDict from scs_core.data.json import JSONable # --------------------------------------------------------------------------------------------------------------------
[ 37811, 198, 41972, 319, 767, 5267, 1584, 198, 198, 31, 9800, 25, 31045, 3944, 2364, 357, 1671, 36909, 13, 6667, 2364, 31, 35782, 1073, 5773, 4234, 13, 785, 8, 198, 198, 20688, 25, 198, 1495, 2795, 1584, 1596, 25, 2598, 25, 2078, 449...
3.612613
111
# # PySNMP MIB module CISCO-FC-PM-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-FC-PM-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:40:52 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") PerfIntervalCount, PerfCurrentCount, PerfTotalCount = mibBuilder.importSymbols("PerfHist-TC-MIB", "PerfIntervalCount", "PerfCurrentCount", "PerfTotalCount") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") iso, Bits, ModuleIdentity, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Integer32, NotificationType, Counter32, Gauge32, IpAddress, Unsigned32, Counter64, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Bits", "ModuleIdentity", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Integer32", "NotificationType", "Counter32", "Gauge32", "IpAddress", "Unsigned32", "Counter64", "TimeTicks") TextualConvention, TruthValue, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "DisplayString") ciscoFcPmMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 99997)) ciscoFcPmMIB.setRevisions(('2005-02-06 00:00',)) if mibBuilder.loadTexts: ciscoFcPmMIB.setLastUpdated('200502060000Z') if mibBuilder.loadTexts: ciscoFcPmMIB.setOrganization('Cisco Systems, Inc.') ciscoFcPmMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 0)) ciscoFcPmMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1)) ciscoFcPmMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2)) cfcpmPortPerfStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1)) cfcpmPortErrorStatusBlock = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2)) cfcpmPortPerfStatusTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1, 1), ) if mibBuilder.loadTexts: cfcpmPortPerfStatusTable.setStatus('current') cfcpmPortPerfStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: cfcpmPortPerfStatusEntry.setStatus('current') cfcpmTimeElapsed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 899))).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmTimeElapsed.setStatus('current') cfcpmValidIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 96))).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmValidIntervals.setStatus('current') cfcpmInvalidIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 96))).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmInvalidIntervals.setStatus('current') cfcpmTotalPortErrorTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1), ) if mibBuilder.loadTexts: cfcpmTotalPortErrorTable.setStatus('current') cfcpmTotalPortErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: cfcpmTotalPortErrorEntry.setStatus('current') cfcpmtPortRxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 1), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortRxLinkResets.setStatus('current') cfcpmtPortTxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 2), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortTxLinkResets.setStatus('current') cfcpmtPortLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 3), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortLinkResets.setStatus('current') cfcpmtPortRxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 4), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortRxOfflineSequences.setStatus('current') cfcpmtPortTxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 5), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortTxOfflineSequences.setStatus('current') cfcpmtPortLinkFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 6), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortLinkFailures.setStatus('current') cfcpmtPortSynchLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 7), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortSynchLosses.setStatus('current') cfcpmtPortSignalLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 8), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortSignalLosses.setStatus('current') cfcpmtPortPrimSeqProtocolErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 9), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortPrimSeqProtocolErrors.setStatus('current') cfcpmtPortInvalidTxWords = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 10), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortInvalidTxWords.setStatus('current') cfcpmtPortInvalidCRCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 11), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortInvalidCRCs.setStatus('current') cfcpmtPortInvalidOrderedSets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 12), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortInvalidOrderedSets.setStatus('current') cfcpmtPortFramesTooLong = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 13), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortFramesTooLong.setStatus('current') cfcpmtPortTruncatedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 14), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortTruncatedFrames.setStatus('current') cfcpmtPortAddressErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 15), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortAddressErrors.setStatus('current') cfcpmtPortDelimiterErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 16), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortDelimiterErrors.setStatus('current') cfcpmtPortEncDisparityErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 17), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortEncDisparityErrors.setStatus('current') cfcpmtPortOtherErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 1, 1, 18), PerfTotalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmtPortOtherErrors.setStatus('current') cfcpmCurrentPortErrorTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2), ) if mibBuilder.loadTexts: cfcpmCurrentPortErrorTable.setStatus('current') cfcpmCurrentPortErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: cfcpmCurrentPortErrorEntry.setStatus('current') cfcpmcPortRxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 1), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortRxLinkResets.setStatus('current') cfcpmcPortTxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 2), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortTxLinkResets.setStatus('current') cfcpmcPortLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 3), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortLinkResets.setStatus('current') cfcpmcPortRxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 4), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortRxOfflineSequences.setStatus('current') cfcpmcPortTxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 5), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortTxOfflineSequences.setStatus('current') cfcpmcPortLinkFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 6), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortLinkFailures.setStatus('current') cfcpmcPortSynchLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 7), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortSynchLosses.setStatus('current') cfcpmcPortSignalLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 8), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortSignalLosses.setStatus('current') cfcpmcPortPrimSeqProtocolErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 9), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortPrimSeqProtocolErrors.setStatus('current') cfcpmcPortInvalidTxWords = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 10), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortInvalidTxWords.setStatus('current') cfcpmcPortInvalidCRCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 11), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortInvalidCRCs.setStatus('current') cfcpmcPortInvalidOrderedSets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 12), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortInvalidOrderedSets.setStatus('current') cfcpmcPortFramesTooLong = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 13), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortFramesTooLong.setStatus('current') cfcpmcPortTruncatedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 14), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortTruncatedFrames.setStatus('current') cfcpmcPortAddressErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 15), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortAddressErrors.setStatus('current') cfcpmcPortDelimiterErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 16), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortDelimiterErrors.setStatus('current') cfcpmcPortEncDisparityErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 17), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortEncDisparityErrors.setStatus('current') cfcpmcPortOtherErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 2, 1, 18), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmcPortOtherErrors.setStatus('current') cfcpmIntervalPortErrorTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3), ) if mibBuilder.loadTexts: cfcpmIntervalPortErrorTable.setStatus('current') cfcpmIntervalPortErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-FC-PM-MIB", "cfcpmiPortErrorIntervalNumber")) if mibBuilder.loadTexts: cfcpmIntervalPortErrorEntry.setStatus('current') cfcpmiPortErrorIntervalNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 96))) if mibBuilder.loadTexts: cfcpmiPortErrorIntervalNumber.setStatus('current') cfcpmiPortRxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 2), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortRxLinkResets.setStatus('current') cfcpmiPortTxLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 3), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortTxLinkResets.setStatus('current') cfcpmiPortLinkResets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 4), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortLinkResets.setStatus('current') cfcpmiPortRxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 5), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortRxOfflineSequences.setStatus('current') cfcpmiPortTxOfflineSequences = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 6), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortTxOfflineSequences.setStatus('current') cfcpmiPortLinkFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 7), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortLinkFailures.setStatus('current') cfcpmiPortSynchLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 8), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortSynchLosses.setStatus('current') cfcpmiPortSignalLosses = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 9), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortSignalLosses.setStatus('current') cfcpmiPortPrimSeqProtocolErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 10), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortPrimSeqProtocolErrors.setStatus('current') cfcpmiPortInvalidTxWords = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 11), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortInvalidTxWords.setStatus('current') cfcpmiPortInvalidCRCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 12), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortInvalidCRCs.setStatus('current') cfcpmiPortInvalidOrderedSets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 13), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortInvalidOrderedSets.setStatus('current') cfcpmiPortFramesTooLong = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 14), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortFramesTooLong.setStatus('current') cfcpmiPortTruncatedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 15), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortTruncatedFrames.setStatus('current') cfcpmiPortAddressErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 16), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortAddressErrors.setStatus('current') cfcpmiPortDelimiterErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 17), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortDelimiterErrors.setStatus('current') cfcpmiPortEncDisparityErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 18), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortEncDisparityErrors.setStatus('current') cfcpmiPortOtherErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 19), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortOtherErrors.setStatus('current') cfcpmiPortValidData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 99997, 1, 2, 3, 1, 20), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cfcpmiPortValidData.setStatus('current') cfcpmMibCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 1)) cfcpmMibGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 2)) cfcpmMibCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 1, 1)).setObjects(("CISCO-FC-PM-MIB", "cfcpmPortStatusGroup"), ("CISCO-FC-PM-MIB", "cfcpmMandatoryGroup"), ("CISCO-FC-PM-MIB", "cfcpmOptionalGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cfcpmMibCompliance = cfcpmMibCompliance.setStatus('current') cfcpmPortStatusGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 2, 1)).setObjects(("CISCO-FC-PM-MIB", "cfcpmTimeElapsed"), ("CISCO-FC-PM-MIB", "cfcpmValidIntervals"), ("CISCO-FC-PM-MIB", "cfcpmInvalidIntervals")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cfcpmPortStatusGroup = cfcpmPortStatusGroup.setStatus('current') cfcpmMandatoryGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 2, 2)).setObjects(("CISCO-FC-PM-MIB", "cfcpmtPortPrimSeqProtocolErrors"), ("CISCO-FC-PM-MIB", "cfcpmcPortPrimSeqProtocolErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortPrimSeqProtocolErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortValidData")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cfcpmMandatoryGroup = cfcpmMandatoryGroup.setStatus('current') cfcpmOptionalGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 99997, 2, 2, 3)).setObjects(("CISCO-FC-PM-MIB", "cfcpmtPortRxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmtPortTxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmtPortLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmtPortRxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmtPortTxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmtPortLinkFailures"), ("CISCO-FC-PM-MIB", "cfcpmtPortSynchLosses"), ("CISCO-FC-PM-MIB", "cfcpmtPortSignalLosses"), ("CISCO-FC-PM-MIB", "cfcpmtPortInvalidTxWords"), ("CISCO-FC-PM-MIB", "cfcpmtPortInvalidCRCs"), ("CISCO-FC-PM-MIB", "cfcpmtPortInvalidOrderedSets"), ("CISCO-FC-PM-MIB", "cfcpmtPortFramesTooLong"), ("CISCO-FC-PM-MIB", "cfcpmtPortTruncatedFrames"), ("CISCO-FC-PM-MIB", "cfcpmtPortAddressErrors"), ("CISCO-FC-PM-MIB", "cfcpmtPortDelimiterErrors"), ("CISCO-FC-PM-MIB", "cfcpmtPortEncDisparityErrors"), ("CISCO-FC-PM-MIB", "cfcpmtPortOtherErrors"), ("CISCO-FC-PM-MIB", "cfcpmcPortRxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmcPortTxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmcPortLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmcPortRxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmcPortTxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmcPortLinkFailures"), ("CISCO-FC-PM-MIB", "cfcpmcPortSynchLosses"), ("CISCO-FC-PM-MIB", "cfcpmcPortSignalLosses"), ("CISCO-FC-PM-MIB", "cfcpmcPortInvalidTxWords"), ("CISCO-FC-PM-MIB", "cfcpmcPortInvalidCRCs"), ("CISCO-FC-PM-MIB", "cfcpmcPortInvalidOrderedSets"), ("CISCO-FC-PM-MIB", "cfcpmcPortFramesTooLong"), ("CISCO-FC-PM-MIB", "cfcpmcPortTruncatedFrames"), ("CISCO-FC-PM-MIB", "cfcpmcPortAddressErrors"), ("CISCO-FC-PM-MIB", "cfcpmcPortDelimiterErrors"), ("CISCO-FC-PM-MIB", "cfcpmcPortEncDisparityErrors"), ("CISCO-FC-PM-MIB", "cfcpmcPortOtherErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortRxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmiPortTxLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmiPortLinkResets"), ("CISCO-FC-PM-MIB", "cfcpmiPortRxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmiPortTxOfflineSequences"), ("CISCO-FC-PM-MIB", "cfcpmiPortLinkFailures"), ("CISCO-FC-PM-MIB", "cfcpmiPortSynchLosses"), ("CISCO-FC-PM-MIB", "cfcpmiPortSignalLosses"), ("CISCO-FC-PM-MIB", "cfcpmiPortInvalidTxWords"), ("CISCO-FC-PM-MIB", "cfcpmiPortInvalidCRCs"), ("CISCO-FC-PM-MIB", "cfcpmiPortInvalidOrderedSets"), ("CISCO-FC-PM-MIB", "cfcpmiPortFramesTooLong"), ("CISCO-FC-PM-MIB", "cfcpmiPortTruncatedFrames"), ("CISCO-FC-PM-MIB", "cfcpmiPortAddressErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortDelimiterErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortEncDisparityErrors"), ("CISCO-FC-PM-MIB", "cfcpmiPortOtherErrors")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cfcpmOptionalGroup = cfcpmOptionalGroup.setStatus('current') mibBuilder.exportSymbols("CISCO-FC-PM-MIB", cfcpmtPortSynchLosses=cfcpmtPortSynchLosses, cfcpmPortStatusGroup=cfcpmPortStatusGroup, cfcpmtPortFramesTooLong=cfcpmtPortFramesTooLong, cfcpmtPortTxLinkResets=cfcpmtPortTxLinkResets, cfcpmcPortTxOfflineSequences=cfcpmcPortTxOfflineSequences, cfcpmiPortRxOfflineSequences=cfcpmiPortRxOfflineSequences, cfcpmcPortInvalidCRCs=cfcpmcPortInvalidCRCs, cfcpmcPortInvalidOrderedSets=cfcpmcPortInvalidOrderedSets, cfcpmtPortEncDisparityErrors=cfcpmtPortEncDisparityErrors, cfcpmcPortPrimSeqProtocolErrors=cfcpmcPortPrimSeqProtocolErrors, cfcpmTimeElapsed=cfcpmTimeElapsed, cfcpmMibCompliances=cfcpmMibCompliances, cfcpmiPortPrimSeqProtocolErrors=cfcpmiPortPrimSeqProtocolErrors, cfcpmInvalidIntervals=cfcpmInvalidIntervals, cfcpmcPortSynchLosses=cfcpmcPortSynchLosses, cfcpmValidIntervals=cfcpmValidIntervals, cfcpmiPortEncDisparityErrors=cfcpmiPortEncDisparityErrors, cfcpmMibGroups=cfcpmMibGroups, cfcpmcPortRxOfflineSequences=cfcpmcPortRxOfflineSequences, cfcpmMibCompliance=cfcpmMibCompliance, cfcpmPortPerfStatusEntry=cfcpmPortPerfStatusEntry, cfcpmiPortValidData=cfcpmiPortValidData, cfcpmtPortRxOfflineSequences=cfcpmtPortRxOfflineSequences, cfcpmIntervalPortErrorEntry=cfcpmIntervalPortErrorEntry, cfcpmPortErrorStatusBlock=cfcpmPortErrorStatusBlock, ciscoFcPmMIBConform=ciscoFcPmMIBConform, cfcpmcPortSignalLosses=cfcpmcPortSignalLosses, cfcpmOptionalGroup=cfcpmOptionalGroup, cfcpmPortPerfStatusTable=cfcpmPortPerfStatusTable, cfcpmtPortRxLinkResets=cfcpmtPortRxLinkResets, PYSNMP_MODULE_ID=ciscoFcPmMIB, cfcpmTotalPortErrorEntry=cfcpmTotalPortErrorEntry, cfcpmtPortLinkResets=cfcpmtPortLinkResets, cfcpmiPortRxLinkResets=cfcpmiPortRxLinkResets, cfcpmiPortSignalLosses=cfcpmiPortSignalLosses, cfcpmiPortInvalidTxWords=cfcpmiPortInvalidTxWords, cfcpmcPortAddressErrors=cfcpmcPortAddressErrors, cfcpmiPortErrorIntervalNumber=cfcpmiPortErrorIntervalNumber, cfcpmIntervalPortErrorTable=cfcpmIntervalPortErrorTable, cfcpmiPortDelimiterErrors=cfcpmiPortDelimiterErrors, cfcpmPortPerfStatus=cfcpmPortPerfStatus, cfcpmcPortLinkFailures=cfcpmcPortLinkFailures, cfcpmCurrentPortErrorEntry=cfcpmCurrentPortErrorEntry, cfcpmiPortInvalidCRCs=cfcpmiPortInvalidCRCs, cfcpmcPortEncDisparityErrors=cfcpmcPortEncDisparityErrors, cfcpmiPortFramesTooLong=cfcpmiPortFramesTooLong, cfcpmtPortLinkFailures=cfcpmtPortLinkFailures, cfcpmcPortOtherErrors=cfcpmcPortOtherErrors, cfcpmtPortOtherErrors=cfcpmtPortOtherErrors, cfcpmcPortInvalidTxWords=cfcpmcPortInvalidTxWords, cfcpmiPortInvalidOrderedSets=cfcpmiPortInvalidOrderedSets, cfcpmtPortInvalidTxWords=cfcpmtPortInvalidTxWords, cfcpmiPortTxLinkResets=cfcpmiPortTxLinkResets, cfcpmtPortTruncatedFrames=cfcpmtPortTruncatedFrames, ciscoFcPmMIBNotifs=ciscoFcPmMIBNotifs, cfcpmtPortAddressErrors=cfcpmtPortAddressErrors, cfcpmcPortLinkResets=cfcpmcPortLinkResets, cfcpmiPortOtherErrors=cfcpmiPortOtherErrors, cfcpmcPortDelimiterErrors=cfcpmcPortDelimiterErrors, cfcpmCurrentPortErrorTable=cfcpmCurrentPortErrorTable, cfcpmiPortTruncatedFrames=cfcpmiPortTruncatedFrames, cfcpmcPortTxLinkResets=cfcpmcPortTxLinkResets, cfcpmtPortInvalidOrderedSets=cfcpmtPortInvalidOrderedSets, cfcpmMandatoryGroup=cfcpmMandatoryGroup, cfcpmcPortTruncatedFrames=cfcpmcPortTruncatedFrames, ciscoFcPmMIBObjects=ciscoFcPmMIBObjects, cfcpmiPortAddressErrors=cfcpmiPortAddressErrors, cfcpmiPortLinkFailures=cfcpmiPortLinkFailures, cfcpmiPortTxOfflineSequences=cfcpmiPortTxOfflineSequences, cfcpmtPortTxOfflineSequences=cfcpmtPortTxOfflineSequences, cfcpmiPortLinkResets=cfcpmiPortLinkResets, cfcpmtPortDelimiterErrors=cfcpmtPortDelimiterErrors, cfcpmtPortSignalLosses=cfcpmtPortSignalLosses, ciscoFcPmMIB=ciscoFcPmMIB, cfcpmtPortInvalidCRCs=cfcpmtPortInvalidCRCs, cfcpmTotalPortErrorTable=cfcpmTotalPortErrorTable, cfcpmtPortPrimSeqProtocolErrors=cfcpmtPortPrimSeqProtocolErrors, cfcpmiPortSynchLosses=cfcpmiPortSynchLosses, cfcpmcPortRxLinkResets=cfcpmcPortRxLinkResets, cfcpmcPortFramesTooLong=cfcpmcPortFramesTooLong)
[ 2, 198, 2, 9485, 15571, 7378, 337, 9865, 8265, 36159, 8220, 12, 4851, 12, 5868, 12, 8895, 33, 357, 4023, 1378, 16184, 76, 489, 8937, 13, 785, 14, 79, 893, 11632, 8, 198, 2, 7054, 45, 13, 16, 2723, 2393, 1378, 14, 14490, 14, 67, ...
2.427294
9,951
import django.contrib.gis.db.models as gis_models from django.apps import apps from django.db import models, connection from django.urls import reverse from distributions.models import TemporalDistribution, Timestep from inventories.models import Scenario, InventoryAlgorithm from materials.models import SampleSeries, MaterialComponent from .exceptions import InvalidGeometryType, NoFeaturesProvided, TableAlreadyExists DISTRIBUTION_TYPES = ( ('seasonal', 'seasonal'), # Assumes array with length 12 for each month of the year )
[ 11748, 42625, 14208, 13, 3642, 822, 13, 70, 271, 13, 9945, 13, 27530, 355, 308, 271, 62, 27530, 198, 6738, 42625, 14208, 13, 18211, 1330, 6725, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 11, 4637, 198, 6738, 42625, 14208, 13, 6371...
3.682432
148
from evaluation import MetricScorer from .formulas import mar, sa, sd, sdar, effect_size, mmre, mdmre, pred25, pred40 from baseline import MARP0
[ 6738, 12660, 1330, 3395, 1173, 3351, 11934, 198, 6738, 764, 687, 25283, 1330, 1667, 11, 473, 11, 45647, 11, 264, 27455, 11, 1245, 62, 7857, 11, 8085, 260, 11, 285, 36020, 260, 11, 2747, 1495, 11, 2747, 1821, 198, 6738, 14805, 1330, ...
3.2
45
""" AbaqusGeometry.py For use with Abaqus 6.13-1 (Python 2.6.2). Created by Ozgur Yapar <oyapar@isis.vanderbilt.edu> Robert Boyles <rboyles@isis.vanderbilt.edu> - Includes modules which take care of geometrical operations in the part and assembly level. """ import re import math from numpy import array, cross, transpose, vstack, dot from abaqusConstants import * import numpy.linalg as LA import string as STR def regexFriendly(inString): """ Clean up coordinates read from STEP file, prior to applying regular expressions. """ outString = STR.replace(inString, '\'', '%') outString = STR.replace(outString, '(', '') outString = STR.replace(outString, ')', ',') return outString def coordinate(stepString): """ Extract tuple of cartesian coordinates from STEP coordinate string. """ e = re.compile(',\S+,,') # regular expression coordFind = e.search(stepString) # extract substring containing coordinates coordList = coordFind.group(0).strip(',').split(',') # separate x, y, and z coordinates by commas coords = (float(coordList[0]), float(coordList[1]), float(coordList[2])) # convert coordinate strings to a tuple of floats return coords # return the coordinate tuple # calculates transformation matrix between two coordinate systems as defined in STEP def get3DTransformArray(fromDir1, fromDir2, toDir1, toDir2): """ Calculate transformation matrix between two coordinate systems as defined in STEP. """ fromDir1 = array(fromDir1) # convert u1 vector to an array object fromDir2 = array(fromDir2) # convert u2 vector to an array object fromDir3 = cross(fromDir1, fromDir2) # extrapolate u3 vector from u1 and u2 toDir1 = array(toDir1) # convert v1 vector to an array object toDir2 = array(toDir2) # convert v2 vector to an array object toDir3 = cross(toDir1, toDir2) # extrapolate v3 vector from v1 and v2 inva = LA.inv(transpose(vstack([fromDir1, fromDir2, fromDir3]))) b = transpose(vstack([toDir1, toDir2, toDir3])) transformArray = dot(b, inva) return transformArray def unv(center, planarA, planarB): """ Use vector operations to get unit normal vector, given a center coordinate and two planar coordinates. """ center = array(center) planarA = array(planarA) planarB = array(planarB) vA = planarA - center vB = planarB - center xV = cross(vA, vB) return xV/LA.norm(xV) def transCoord(fromCoord, transformArray, translationVector): """ Transform/translate a cartesian point from one coordinate system to another. """ vprod = dot(transformArray, fromCoord) vprod = vprod + translationVector toCoord = tuple(vprod) return toCoord def asmRecursion(asm, subAsms, asmParts): """ Recursively identifies parts in sub-assemblies, in the order they are imported from STEP. """ parts = [] try: for child in subAsms[asm]: if child in subAsms: parts.extend(asmRecursion(child, subAsms, asmParts)) else: parts.extend(asmParts[child]) except KeyError: pass if asm in asmParts: parts.extend(asmParts[asm]) return parts def coordTransform(localTMs, localTVs, asm, subAsms, asmParts, localCoords): """ Iterate through sub-assemblies and top-level parts to transform/translate every datum point to assembly coordinates; uses transCoord() Note: Ignores top-level datums in highest assembly, which will not exist in a CyPhy assembly anyway """ globalCoords = {} # create dictionary object to hold new point library if asm in subAsms: # if assembly has sub-assemblies: for subAsm in subAsms[asm]: # for each sub-assembly in the assembly: subCoords = coordTransform(localTMs, localTVs, subAsm, # get point library local to sub-assembly subAsms, asmParts, localCoords) for part in subCoords.keys(): # for each component in chosen sub-assembly: globalCoords.update([[part, {}]]) # create new entry in globalCoords for (point, coord) in subCoords[part].iteritems(): # for each point in part/sub-sub-assembly: globalCoords[part].update([[point.upper(), transCoord( # translate/transform point to globalCoords array(coord), localTMs[subAsm], localTVs[subAsm])]]) globalCoords.update([[subAsm, {}]]) # create entry for sub-assembly in globalCoords for (point, coord) in localCoords[subAsm].iteritems(): # for each point specified at top level of that sub-assembly: globalCoords[subAsm].update([[point.upper(), transCoord( # translate/transform point to globalCoords array(coord), localTMs[subAsm], localTVs[subAsm])]]) if asm in asmParts: # if assembly has top-level parts: for part in asmParts[asm]: # for each top-level part: globalCoords.update([[part, {}]]) # create new entry in globalCoords for (point, coord) in localCoords[part].iteritems(): # for each point in part: globalCoords[part].update([[point.upper(), transCoord( # translate/transform point to globalCoords array(coord), localTMs[part], localTVs[part])]]) return globalCoords def myMask(idnums): """ Produce mask string for getSequenceFromMask(...) from a feature ID or set of IDs. """ try: idnums = tuple(idnums) # make the input a tuple! except TypeError: # if input is not iterable: idnums = (idnums,) # make it a tuple anyway! powersum = 0 # integer to hold mask number for num in idnums: # iterating through input IDs: powersum += 2**num # add 2**ID to powersum rawmask = hex(powersum)[2:] # convert powermask to hexadecimal rawmask = STR.rstrip(rawmask, 'L') # strip "long" character, if necessary if max(idnums) < 32: # if hex number is 8 digits or less: mask = '[#' + rawmask + ' ]' # create mask else: # if hex number is >8 digits: maskpieces = [] # container for fragments of hex string piececount = int(math.ceil(len(rawmask)/8)) # number of times to split hex string for i in range(piececount): # for each split needed: maskpieces.append(rawmask[-8:]) # append last 8 characters of hex string to fragment list rawmask = rawmask[:-8] # trim last 8 characters from hex string maskpieces.append(rawmask) # append remaining hex string to fragment list mask = '[#' + STR.join(maskpieces, ' #') + ' ]' # join fragments, using the correct delimiters, to create mask return mask def toBC(constraint): """ Translates a degree of freedom as read from the XML to the appropriate SymbolicConstant. """ if constraint == 'FIXED': return 0 elif constraint == 'FREE': return UNSET else: return float(constraint)
[ 37811, 201, 198, 201, 198, 4826, 30188, 385, 10082, 15748, 13, 9078, 201, 198, 201, 198, 1890, 779, 351, 2275, 30188, 385, 718, 13, 1485, 12, 16, 357, 37906, 362, 13, 21, 13, 17, 737, 201, 198, 201, 198, 41972, 416, 18024, 45073, ...
2.136316
3,844
import climate import glob import gzip import io import lmj.cubes import logging import numpy as np import os import pandas as pd import pickle import theanets if __name__ == '__main__': climate.call(main)
[ 11748, 4258, 198, 11748, 15095, 198, 11748, 308, 13344, 198, 11748, 33245, 198, 11748, 300, 76, 73, 13, 66, 29080, 198, 11748, 18931, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 19798, 292, 355, 279, 67, 198, 1174...
2.972222
72
import json import os import logging from datetime import datetime from django.db.models import Q,Count from django.http import JsonResponse from django.views.generic import View from django.views.decorators.csrf import csrf_exempt from django.utils.decorators import method_decorator from django.conf import settings from rest_framework_jwt.settings import api_settings from django.core.exceptions import ObjectDoesNotExist#EmptyResultSet, MultipleObjectsReturned from django.contrib.auth import get_user_model from commerce.models import Restaurant, Picture, Product, Category, Order, OrderItem, Style, PriceRange, FavoriteProduct from account.models import Province, City, Address from utils import to_json, obj_to_json, get_data_from_token logger = logging.getLogger(__name__)
[ 11748, 33918, 198, 11748, 28686, 198, 11748, 18931, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 1195, 11, 12332, 198, 6738, 42625, 14208, 13, 4023, 1330, 449, 1559, 31077, 198, 6738, 42625,...
3.441558
231
from django.shortcuts import render from api.models import Comida, Cerveza, Titulo, TipoComida from django.http import Http404 from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import serializers import csv import os import csv import os
[ 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 628, 198, 6738, 40391, 13, 27530, 1330, 955, 3755, 11, 327, 3760, 4496, 11, 7659, 43348, 11, 23095, 78, 5377, 3755, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 26429, 198, 6738,...
3.571429
84
{ "targets": [ { "target_name": "usb_dev", "sources": [ "usb_dev.cc" ], "include_dirs" : [ "<!(node -e \"require('nan')\")" ], "libraries": [ "-lsetupapi" ] } ] }
[ 90, 198, 220, 366, 83, 853, 1039, 1298, 685, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 366, 16793, 62, 3672, 1298, 366, 43319, 62, 7959, 1600, 198, 220, 220, 220, 220, 220, 366, 82, 2203, 1298, 685, 366, 43319, 62, ...
1.673913
138
''' table AD contains RS,ADID;table Parkinson contains RS,PDID;table variant contains ADID, PDID insert table variant one way: below two way: by merge ''' import sys ,re import pandas as pd varfil1=r'C:\Users\BAIOMED07\Desktop\AD_Database_20170629.xls' varfil2=r'C:\Users\BAIOMED07\Desktop\parkinson_TOTAL.xls' varfil3=r'C:\Users\BAIOMED07\Desktop\alleles_IonXpress_066.txt' df1=pd.read_excel(varfil1) print df1.head(1) df2=pd.read_excel(varfil2) print df2.head(1) df=df1[df1['dbSNP'].isin(df2['dbSNP'])] print df.head(2) df.to_excel('1.xlsx',index=0) df3=pd.read_csv(varfil3,sep='\t') df3['pkiq']='-' for index,row in df2.iterrows(): rs=row['dbSNP'] row1=df1[df1['dbSNP']==rs] if not len(row1): continue # when drug locus is not in row1 #import pdb; pdb.set_trace() uniq=row1['UniqueID'].values.tolist()[0] row2=df3[df3['Allele Name']==uniq] df3.loc[row2.index,'pkiq']=row['UniqueID'] print df3.head(1) res_1=df3[df3['Allele Name'].isin(df['UniqueID'])] res_1.to_excel('2.xlsx',index=0)
[ 7061, 6, 198, 11487, 5984, 4909, 19340, 11, 2885, 2389, 26, 11487, 31618, 4909, 19340, 11, 5760, 2389, 26, 11487, 15304, 4909, 5984, 2389, 11, 198, 5760, 2389, 7550, 3084, 15304, 220, 198, 505, 835, 25, 2174, 198, 11545, 835, 25, 416,...
2.093168
483
import serial import time ### FUNCTIONS #### #### SERIAL COMMUNICATION #### def arduino_communication(COM="COM5",BAUDRATE=9600,TIMEOUT=1): """ Initalizes connection with Arduino Board """ try: arduino = serial.Serial(COM, BAUDRATE , timeout=TIMEOUT) time.sleep(2) except: print("Error de coneccion con el puerto") return arduino
[ 11748, 11389, 198, 11748, 640, 628, 628, 198, 198, 21017, 29397, 4177, 11053, 1303, 21017, 198, 4242, 18871, 12576, 48811, 2149, 6234, 1303, 21017, 198, 4299, 610, 24493, 62, 32560, 7, 9858, 2625, 9858, 20, 1600, 4339, 52, 7707, 6158, 2...
2.5
156
"""Classes and functions used for data visualization""" import pandas as pd import numpy as np import seaborn as sns import matplotlib.pyplot as plt def plot_log_hist(s,bin_factor=1,min_exp=None): """Plot 2 histograms with log x scales, one for positive values & one for negative values. Bin_factor is used to scale how many bins to use (1 is default and corresponds to one bin per order of magnitude. Higher than 1 will skew the bins away from even powers of 10). Parameters ---------- s: pandas series (generally using df[col]) Series or column of dataframe to analyze bin_factor: int Default 1, used to scale how many bins to use min_exp: int The minimum exponent to use in creating bins & plotting. This can be set manually for cases where you want a specific minimum value to be shown. Returns ------- fig, (ax1,ax2): matplotlib fig and ax objects """ # Split series into positive & negative components s_pos = s[s >= 0] s_neg = s[s < 0].abs() # Not the best way to deal with this, but this was the easiest solution for now. # TODO Fix this code to deal with no negative values or no positive values more appropriately if s_neg.shape[0] == 0: s_neg.loc[0] = 1 if s_pos.shape[0] == 0: s_pos.loc[0] = 1 # Calculate appropriate min_exp if none provied if min_exp == None: threshold = s_pos.shape[0] - (s_pos==0).sum() for i in range(10): n_betw = s_pos[s_pos!=0].between(0,10**-i).sum() if not (n_betw / threshold) > .1: min_exp = -i break # Clip values to the 10**min_exp so that they are included in the histograms (if # this isn't done then values which are 0 will be excluded from the histogram) s_pos = s_pos.clip(lower=10**min_exp) s_neg = s_neg.clip(lower=10**min_exp) # Calculate the lowest integer which encompases all the positive and negative values pos_max = int(np.ceil(np.log10(max(s_pos)))) neg_max = int(np.ceil(np.log10(max(s_neg)))) # Use that for both negative & positive values plot_max = max(pos_max,neg_max) # Create the bins (bin spacing is logarithmic) bins = np.logspace(min_exp,plot_max,(plot_max+1)*bin_factor) fig,(ax1,ax2) = plt.subplots(nrows=1,ncols=2,sharey=True) fig.set_size_inches((10,5)) s_neg.hist(bins=bins,ax=ax1) ax1.set_xscale('log') ax1.set_title('Distribution of Negative Values') ax1.set_xlabel('Negative values') s_pos.hist(bins=bins,ax=ax2) ax2.set_xscale('log') ax2.set_title('Distribution of Positive Values') ax2.set_xlabel('Positive Values') # Invert axis so that values are increasingly negative from right to left. # Decrease the spacing between the two subplots ax1.invert_xaxis() plt.subplots_adjust(wspace=.02) return(fig,(ax1,ax2))
[ 37811, 9487, 274, 290, 5499, 973, 329, 1366, 32704, 37811, 198, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 384, 397, 1211, 355, 3013, 82, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, ...
2.459125
1,211
import unittest import os, sys, inspect, json currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) parentdir = os.path.dirname(currentdir) sys.path.insert(0, parentdir) from lib.file_management.configeditor import ConfigEditor from lib.file_management.file_management_lib import DirManagement if __name__ == '__main__': unittest.main()
[ 11748, 555, 715, 395, 198, 11748, 28686, 11, 25064, 11, 10104, 11, 33918, 198, 14421, 15908, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 1040, 806, 13, 1136, 7753, 7, 1040, 806, 13, 14421, 14535, ...
3.056911
123
# Generated by Django 3.0.3 on 2020-11-18 06:06 import chemreg.common.utils import chemreg.common.validators import chemreg.compound.models import chemreg.compound.utils from django.conf import settings from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 513, 13, 15, 13, 18, 319, 12131, 12, 1157, 12, 1507, 9130, 25, 3312, 198, 198, 11748, 4607, 2301, 13, 11321, 13, 26791, 198, 11748, 4607, 2301, 13, 11321, 13, 12102, 2024, 198, 11748, 4607, 2301, 13, 5589, ...
3.193182
88
''' Twitter Crawler to get tweets and user data ''' import tweepy import json import os import time def save_tweet(result): """Function to save tweepy result status""" pass def save_user(result_set): """Function to save tweepy set fo result statuses""" pass #crawler = TweetCrawler("twitter_credentials.json", './data') #self=crawler
[ 7061, 6, 198, 14254, 20177, 1754, 284, 651, 12665, 290, 2836, 1366, 198, 7061, 6, 198, 198, 11748, 4184, 538, 88, 198, 11748, 33918, 198, 198, 11748, 28686, 198, 11748, 640, 628, 198, 4299, 3613, 62, 83, 7277, 7, 20274, 2599, 198, 2...
2.690647
139
from irLib.instruments.instrument import instrument from irLib.helpers.schedule import period from irLib.instruments.legs import fixLeg, floatLeg
[ 6738, 4173, 25835, 13, 259, 2536, 2886, 13, 259, 43872, 1330, 8875, 198, 6738, 4173, 25835, 13, 16794, 364, 13, 15952, 5950, 1330, 2278, 198, 6738, 4173, 25835, 13, 259, 2536, 2886, 13, 1455, 82, 1330, 4259, 11484, 11, 12178, 11484, 6...
3.44186
43
# -*- coding: utf-8 -*- # SPDX-License-Identifier: BSD-3-Clause # PEP 563: Postponed Evaluation of Annotations from __future__ import annotations from functools import partial import multiprocessing as mp from typing import Tuple, Union import warnings import numpy as np from sklearn.base import BaseEstimator from sklearn.metrics import euclidean_distances, pairwise_distances from sklearn.metrics.pairwise import cosine_distances from sklearn.utils.validation import check_is_fitted, check_array, check_X_y try: import puffinn except ImportError: puffinn = None # pragma: no cover try: import falconn except ImportError: falconn = None # pragma: no cover from tqdm.auto import tqdm from .approximate_neighbors import ApproximateNearestNeighbor from ..utils.check import check_n_candidates __all__ = ['FalconnLSH', 'PuffinnLSH', ]
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 347, 10305, 12, 18, 12, 2601, 682, 198, 198, 2, 350, 8905, 642, 5066, 25, 2947, 79, 12004, 34959, 286, 47939, 198, 6738...
3.031802
283
""" pyvr calibrate. Usage: pyvr calibrate [options] Options: -h, --help -c, --camera <camera> Source of the camera to use for calibration [default: 0] -r, --resolution <res> Input resolution in width and height [default: -1x-1] -n, --n_masks <n_masks> Number of masks to calibrate [default: 1] -l, --load_from_file <file> Load previous calibration settings [default: ranges.pickle] -s, --save <file> Save calibration settings to a file [default: ranges.pickle] """ import logging import pickle import sys from copy import copy from pathlib import Path from typing import Optional, List import cv2 from docopt import docopt from virtualreality import __version__ def colordata_to_blob(colordata, mapdata): ''' translates CalibrationData object to BlobTracker format masks :colordata: CalibrationData object :mapdata: a map dict with key representing the mask name and value representing the mask number ''' out = {} for key, clr_range_index in mapdata.items(): temp = colordata.color_ranges[clr_range_index] out[key] = { 'h':(temp.hue_center, temp.hue_range), 's':(temp.sat_center, temp.sat_range), 'v':(temp.val_center, temp.val_range), } return out def load_mapdata_from_file(path): ''' loads mapdata from file, for use in colordata_to_blob ''' with open(path, 'rb') as file: return pickle.load(file) def save_mapdata_to_file(path, mapdata): ''' save mapdata to file, for use in colordata_to_blob ''' with open(path, "wb") as file: pickle.dump(mapdata, file) def list_supported_capture_properties(cap: cv2.VideoCapture): """List the properties supported by the capture device.""" # thanks: https://stackoverflow.com/q/47935846/782170 supported = list() for attr in dir(cv2): if attr.startswith("CAP_PROP") and cap.get(getattr(cv2, attr)) != -1: supported.append(attr) return supported def get_color_mask(hsv, color_range: ColorRange): color_low = [ color_range.hue_center - color_range.hue_range, color_range.sat_center - color_range.sat_range, color_range.val_center - color_range.val_range, ] color_high = [ color_range.hue_center + color_range.hue_range, color_range.sat_center + color_range.sat_range, color_range.val_center + color_range.val_range, ] color_low_neg = copy(color_low) color_high_neg = copy(color_high) for c in range(3): if c==0: c_max = 180 else: c_max = 255 if color_low_neg[c] < 0: color_low_neg[c] = c_max + color_low_neg[c] color_high_neg[c] = c_max color_low[c] = 0 elif color_high_neg[c] > c_max: color_low_neg[c] = 0 color_high_neg[c] = color_high_neg[c] - c_max color_high[c] = c_max mask1 = cv2.inRange(hsv, tuple(color_low), tuple(color_high)) mask2 = cv2.inRange(hsv, tuple(color_low_neg), tuple(color_high_neg)) mask = cv2.bitwise_or(mask1, mask2) return mask def _set_default_camera_properties(vs, cam, vs_supported, frame_width, frame_height): if "CAP_PROP_FOURCC" not in vs_supported: logging.warning(f"Camera {cam} does not support setting video codec.") else: vs.set(cv2.CAP_PROP_FOURCC, cv2.CAP_OPENCV_MJPEG) if "CAP_PROP_AUTO_EXPOSURE" not in vs_supported: logging.warning(f"Camera {cam} does not support turning on/off auto exposure.") else: vs.set(cv2.CAP_PROP_AUTO_EXPOSURE, 0.25) if "CAP_PROP_EXPOSURE" not in vs_supported: logging.warning(f"Camera {cam} does not support directly setting exposure.") else: vs.set(cv2.CAP_PROP_EXPOSURE, -7) if "CAP_PROP_EXPOSURE" not in vs_supported: logging.warning(f"Camera {cam} does not support directly setting exposure.") else: vs.set(cv2.CAP_PROP_EXPOSURE, -7) if "CAP_PROP_FRAME_HEIGHT" not in vs_supported: logging.warning(f"Camera {cam} does not support requesting frame height.") else: vs.set(cv2.CAP_PROP_FRAME_HEIGHT, frame_height) if "CAP_PROP_FRAME_WIDTH" not in vs_supported: logging.warning(f"Camera {cam} does not support requesting frame width.") else: vs.set(cv2.CAP_PROP_FRAME_WIDTH, frame_width) def manual_calibration( cam=0, num_colors_to_track=4, frame_width=-1, frame_height=-1, load_file="", save_file="ranges.pickle" ): """Manually calibrate the hsv ranges and camera settings used for blob tracking.""" vs = cv2.VideoCapture(cam) vs.set(cv2.CAP_PROP_EXPOSURE, -7) vs_supported = list_supported_capture_properties(vs) _set_default_camera_properties(vs, cam, vs_supported, frame_width, frame_height) cam_window = f"camera {cam} input" cv2.namedWindow(cam_window) if "CAP_PROP_EXPOSURE" in vs_supported: cv2.createTrackbar( "exposure", cam_window, 0, 16, lambda x: vs.set(cv2.CAP_PROP_EXPOSURE, x - 8), ) if "CAP_PROP_SATURATION" in vs_supported: cv2.createTrackbar( "saturation", cam_window, 0, 100, lambda x: vs.set(cv2.CAP_PROP_SATURATION, x), ) else: logging.warning(f"Camera {cam} does not support setting saturation.") ranges = None if load_file: ranges = CalibrationData.load_from_file(load_file) if ranges is None: ranges = CalibrationData(width=frame_width, height=frame_height, num_colors=num_colors_to_track) tracker_window_names = [] for color in range(num_colors_to_track): tracker_window_names.append(f"color {color}") cv2.namedWindow(tracker_window_names[color]) cv2.createTrackbar( "hue center", tracker_window_names[color], ranges.color_ranges[color].hue_center, 180, lambda _: None, ) cv2.createTrackbar( "hue range", tracker_window_names[color], ranges.color_ranges[color].hue_range, 180, lambda _: None, ) cv2.createTrackbar( "sat center", tracker_window_names[color], ranges.color_ranges[color].sat_center, 255, lambda _: None, ) cv2.createTrackbar( "sat range", tracker_window_names[color], ranges.color_ranges[color].sat_range, 255, lambda _: None, ) cv2.createTrackbar( "val center", tracker_window_names[color], ranges.color_ranges[color].val_center, 255, lambda _: None, ) cv2.createTrackbar( "val range", tracker_window_names[color], ranges.color_ranges[color].val_range, 255, lambda _: None, ) while 1: ret, frame = vs.read() if frame is None: break blurred = cv2.GaussianBlur(frame, (3, 3), 0) hsv = cv2.cvtColor(blurred, cv2.COLOR_BGR2HSV) exposure = cv2.getTrackbarPos("exposure", cam_window) saturation = cv2.getTrackbarPos("saturation", cam_window) ranges.exposure = exposure - 8 ranges.saturation = saturation for color in range(num_colors_to_track): hue_center = cv2.getTrackbarPos("hue center", tracker_window_names[color]) hue_range = cv2.getTrackbarPos("hue range", tracker_window_names[color]) sat_center = cv2.getTrackbarPos("sat center", tracker_window_names[color]) sat_range = cv2.getTrackbarPos("sat range", tracker_window_names[color]) val_center = cv2.getTrackbarPos("val center", tracker_window_names[color]) val_range = cv2.getTrackbarPos("val range", tracker_window_names[color]) ranges.color_ranges[color].hue_center = hue_center ranges.color_ranges[color].hue_range = hue_range ranges.color_ranges[color].sat_center = sat_center ranges.color_ranges[color].sat_range = sat_range ranges.color_ranges[color].val_center = val_center ranges.color_ranges[color].val_range = val_range mask = get_color_mask(hsv, ranges.color_ranges[color]) res = cv2.bitwise_and(hsv, hsv, mask=mask) cv2.imshow(tracker_window_names[color], res) cv2.imshow(cam_window, frame) k = cv2.waitKey(1) & 0xFF if k in [ord("q"), 27]: break for color in range(num_colors_to_track): hue_center = cv2.getTrackbarPos("hue center", tracker_window_names[color]) hue_range = cv2.getTrackbarPos("hue range", tracker_window_names[color]) sat_center = cv2.getTrackbarPos("sat center", tracker_window_names[color]) sat_range = cv2.getTrackbarPos("sat range", tracker_window_names[color]) val_center = cv2.getTrackbarPos("val center", tracker_window_names[color]) val_range = cv2.getTrackbarPos("val range", tracker_window_names[color]) print(f"hue_center[{color}]: {hue_center}") print(f"hue_range[{color}]: {hue_range}") print(f"sat_center[{color}]: {sat_center}") print(f"sat_range[{color}]: {sat_range}") print(f"val_center[{color}]: {val_center}") print(f"val_range[{color}]: {val_range}") if save_file: ranges.save_to_file(save_file) print(f'ranges saved to list in "{save_file}".') print("You can use this in the pyvr tracker using the --calibration-file argument.") vs.release() cv2.destroyAllWindows() def main(): """Calibrate entry point.""" # allow calling from both python -m and from pyvr: argv = sys.argv[1:] if len(argv) < 2 or sys.argv[1] != "calibrate": argv = ["calibrate"] + argv args = docopt(__doc__, version=f"pyvr version {__version__}", argv=argv) width, height = args["--resolution"].split("x") if args["--camera"].isdigit(): cam = int(args["--camera"]) else: cam = args["--camera"] manual_calibration( cam=cam, num_colors_to_track=int(args["--n_masks"]), frame_width=int(width), frame_height=int(height), load_file=args["--load_from_file"], save_file=args["--save"], )
[ 37811, 198, 9078, 37020, 33801, 378, 13, 198, 198, 28350, 25, 198, 220, 220, 220, 12972, 37020, 33801, 378, 685, 25811, 60, 198, 198, 29046, 25, 198, 220, 220, 532, 71, 11, 1377, 16794, 198, 220, 220, 532, 66, 11, 1377, 25695, 1279,...
2.252825
4,513
from .jsonschema_validator import JSONSchemaValidator as jsonschema # noqa from .marshmallow_validator import MarshmallowValidator as marshmallow # noqa
[ 6738, 764, 8457, 684, 2395, 2611, 62, 12102, 1352, 1330, 19449, 27054, 2611, 47139, 1352, 355, 44804, 684, 2395, 2611, 220, 1303, 645, 20402, 198, 6738, 764, 76, 5406, 42725, 62, 12102, 1352, 1330, 9786, 42725, 47139, 1352, 355, 22397, ...
3.369565
46
aliases['cd-'] = 'cd -' aliases['cl'] = 'cd (ls -1Ft | head -1)' aliases['..'] = 'cd ..' aliases['...'] = 'cd ../..' aliases['....'] = 'cd ../../..' aliases['.....'] = 'cd ../../../..' aliases['......'] = 'cd ../../../../..'
[ 7344, 1386, 17816, 10210, 19355, 60, 796, 705, 10210, 532, 6, 198, 198, 7344, 1386, 17816, 565, 20520, 796, 705, 10210, 357, 7278, 532, 16, 37, 83, 930, 1182, 532, 16, 33047, 198, 198, 7344, 1386, 17816, 492, 20520, 796, 705, 10210, ...
2.203883
103
#! /usr/bin/python ''' Class to handle database connections and queries for Dropbox Mirror Bot ''' import sqlite3
[ 2, 0, 1220, 14629, 14, 8800, 14, 29412, 198, 7061, 6, 198, 9487, 284, 5412, 6831, 8787, 290, 20743, 329, 220, 198, 26932, 3524, 17918, 18579, 198, 7061, 6, 198, 198, 11748, 44161, 578, 18, 198 ]
3.222222
36