index
int64
0
1,000k
blob_id
stringlengths
40
40
code
stringlengths
7
10.4M
18,800
8b884e3c246ccd896c2e40d1754d8f1e3a04c556
import heapq import sys input = sys.stdin.readline dx = [-1, 0, 0, 1] dy = [0, -1, 1, 0] n = int(input()) graph = [] for _ in range(n): graph.append(list(map(int, input().rstrip()))) visited = [[False for _ in range(n)] for _ in range(n)] # 비용 대신 방문 여부 저장 q = [] visited[0][0] = True cnt = 0 heapq.heappush(q, (cnt, 0, 0)) # cnt 기준 정렬 while q: cnt, x, y = heapq.heappop(q) if x == n-1 and y == n-1: # 최종 목적지 도달 시 cnt 출력 및 종료 print(cnt) break for i in range(4): nx = x + dx[i] ny = y + dy[i] if 0 <= nx < n and 0 <= ny < n and not visited[nx][ny]: visited[nx][ny] = True if graph[nx][ny] == 1: heapq.heappush(q, (cnt, nx, ny)) else: # 검은 방인 경우 흰 방으로 바꿔주고 cnt++ graph[nx][ny] = 0 heapq.heappush(q, (cnt+1, nx, ny))
18,801
2422e360495dcc41317369575c2793df4cad4d2e
# SPDX-License-Identifier: BSD-2-Clause # Copyright (C) 2021 Intel Corporation. from python_framework.cmd_helper import CMD_helper import pytest class Test_hbw_env_var(object): environ_err_threshold_test = "../environ_err_hbw_threshold_test" cmd_helper = CMD_helper() def run_test(self, threshold, kind): env = "MEMKIND_HBW_THRESHOLD=" + str(threshold) bin_path = self.cmd_helper.get_command_path( self.environ_err_threshold_test) command = " ".join([env, bin_path, kind]) output, retcode = self.cmd_helper.execute_cmd(command) print(output) fail_msg = (f"Test failed with error: \nExecution of: \'{command}\'" f" returns: {retcode} \noutput: {output}") assert retcode == 0, fail_msg @pytest.mark.parametrize("kind", ["MEMKIND_HBW", "MEMKIND_HBW_ALL"]) def test_TC_MEMKIND_hbw_threshold_default_value(self, kind): threshold = 204800 self.run_test(threshold, kind) @pytest.mark.parametrize("kind", ["MEMKIND_HBW", "MEMKIND_HBW_ALL"]) def test_TC_MEMKIND_hbw_threshold_negative_value(self, kind): threshold = -1 self.run_test(threshold, kind) @pytest.mark.parametrize("kind", ["MEMKIND_HBW", "MEMKIND_HBW_ALL"]) def test_TC_MEMKIND_hbw_threshold_low_value(self, kind): threshold = 1 self.run_test(threshold, kind) @pytest.mark.parametrize("kind", ["MEMKIND_HBW", "MEMKIND_HBW_ALL"]) def test_TC_MEMKIND_hbw_threshold_high_value(self, kind): threshold = 1024 * 1024 * 1024 self.run_test(threshold, kind)
18,802
203baf9cbb81b7127bd74f42662ba72c3f0d322e
file = open("input.in", "r"); def raw_input(): return file.readline(); cases_number = int(raw_input()); cases = []; done = {}; out = ''; def process(cooker, size, n): done[cooker] = n; n+=1; if not "-" in cooker: return n; low = 999999; a = False; for index in range(len(cooker)-size+1): if cooker[index:index+size] == "-"*size: a = True; n+=1; cooker = flip(cooker, index, size); if a: return process(cooker, size, n-1); for index in range(len(cooker)-size+1): if not flip(cooker, index, size) in done: low = min(low, process(flip(cooker, index, size), size, n)); elif done[flip(cooker, index, size)]>n: low = min(low, process(flip(cooker, index, size), size, n)); return low; def flip(cooker, index, size): return ''.join(["+" if ((index-1<i<index+size and cooker[i] == "-") or ((index>i or i>index+size-1) and cooker[i] == "+")) else "-" for i in range(len(cooker))]); for case in range(cases_number): last_input = raw_input().split(" "); size = int(last_input[1]); cooker = last_input[0]; done = {}; temp = process(cooker, size, 0) - 1; if temp == 999998: temp = "IMPOSSIBLE"; out = out + "Case #"+str(case+1)+": "+str(temp)+"\n"; print out open("outputx.in", "w").write(out);
18,803
cf21d33ec0bb1ef4c143a6226e50f80992e4701e
from ._pv import SolarLibrary, simulatePVModule, locToTilt, frankCorrectionFactors, simulatePVModuleDistribution from ._score import scoreOpenfieldPVLocation from ._workflow import workflowOpenFieldFixed, workflowOpenFieldTracking, workflowRooftop
18,804
803fecbd8b3ed7cedd97f1ddf194844122cc54b4
def solution(total_lambs): mmin, mmax = 0,0 temp = total_lambs i = 1 while temp - i >= 0: temp -= i i <<= 1 mmin += 1 if total_lambs == 1: mmax = 1 elif total_lambs == 2: mmax = 2 l1, l2 = 1,1 mmax = 2 total_lambs -= 2 while(total_lambs - l1 - l2 >= 0): total_lambs -= l1 + l2 mmax+=1 l1, l2 = l2, l1+l2 # print(l1,l2) print(mmax, mmin) return mmax - mmin print(solution(2))
18,805
dda2f74f4b001cff159592c00d4a5b4ebb2fbbf4
Menu = {"The Original BBQ Chicken Chopped": ('salad', ["Chicken", "Onion"], 10), 'Chinese Chicken': ('salad', ['Chicken', 'Green Onion'], 20), "Roasted Veggie": ('salad', ["LETTUCE", 'cabbage'], 1), "Thai Chicken": ("pizza", ["chilli", "curry", "chicken"], 10), "Wild Mushroom": ("pizza", ["white mushroom", 'yellow mushroom'], 10), "Hawaiian": ("pizza", ["pineapple", "ham"], 10), "Chicken Tequila Fettuccine": ("pastas", ["chicken", "tequila"], 15), "Jambalaya Fettuccine": ("pastas", ['Fettuccine', 'salt', 'black pepper'], 16), "Chicken Piccata": ("pastas", ["piccata", "rotten chicken"], 17) } def get_ingredient(name): if name in Menu.keys(): return Menu[name][1] else: return list() def get_price(name): if name in Menu.keys(): return Menu[name][2] else: return 0 def get_category(name): if name in Menu.keys(): return Menu[name][0] else: return "N/A"
18,806
7095b9c8ce73af2aec62a601f3be1391124484dc
""" Write a Python program to find the first triangle number to have over n(given) divisors. From Wikipedia: A triangular number is a number that is the sum of all of the natural numbers up to a certain number. For example, 10 is a triangular number because 1 + 2 + 3 + 4 = 10. The first 25 triangular numbers are: 1, 3, 6, 10, 15, 21, 28, 36, 45, 55, 78, 91, 105, 120, 136, 153, 171, 190, 210, 231, 253, 276, 300, 325, and 351. A triangular number is calculated by the equation: n(n+1)/2 The factors of the first five triangle numbers: 1: 1 3: 1, 3 6: 1, 2, 3, 6 10: 1, 2, 5, 10 15: 1, 3, 5, 15 In the above list 6 is the first triangle number to have over four divisors. """ from functools import reduce def divisors(n): exp_List = [] ctr = 0 divisor = 2 while divisor <= n: while n % divisor == 0: n = n / divisor ctr += 1 if ctr != 0: exp_List.append(ctr + 1) divisor += 1 ctr = 0 return reduce(lambda n, y: n * y, exp_List, 1) def n_divisors(n): natural = 1 triangular_num = 0 while True: triangular_num += natural natural += 1 if divisors(triangular_num) > n: break return triangular_num print(n_divisors(5)) # 28 print(n_divisors(100)) # 73920
18,807
87dad27b655093b07d57d755cabec1f0c254ddd4
#! /usr/bin/python import sched, time import requests import json import sys import serial from time import sleep s = sched.scheduler(time.time, time.sleep) def do_something(sc): print "Getting data..." try: bluetoothSerial = serial.Serial( "/dev/rfcomm0", baudrate=9600 ) line ="" flag = 0 email ="" id ="" while True: for c in bluetoothSerial.read(): print c if c == '~': flag = flag + 1 print("Line: " + line) if flag == 1: email = line line = "" if flag == 2: id = line else: line+=c if flag == 2: break print email print id r=requests.post("http://ec2-52-35-75-223.us-west-2.compute.amazonaws.com:3000/attendance/mark",data={'email':email ,'course_id':id}) print r resp = json.loads(r.text) print resp except: e = sys.exc_info()[0] sc.enter(2, 1, do_something, (sc,)) s.enter(1, 1, do_something, (s,)) s.run()
18,808
2574dbd87aacd9825bfcde5c72dd82febb1f7fc6
from product_database.models import * from product_database.database import * from product_database.serializer import * from product_database.crud import * from fastapi_jwt_auth import AuthJWT from fastapi import APIRouter, Depends,Response, status from utils import * from product_database.pdfmaker import PdfMaker,ExcelMaker from starlette.responses import FileResponse from .pydanticmodels import * router = APIRouter() @router.post("/api/category") def postCategory(category:BasePostCategory,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: if not get_category(category_name=category.categoryName): category.created_by=Authorze.get_jwt_subject() create_category(category) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Category already exists"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.put("/api/category/{category_id}") def updateCategory(category_id:int,category:BaseupdateCategory,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: cateObj=get_category(category_id=category_id) if cateObj: category.updated_by=Authorze.get_jwt_subject() update_category(category,cateObj) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Category Not Found"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.delete("/api/category/{category_id}") def deleteCategory(category_id:int,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: cateObj=get_category(category_id=category_id) if cateObj: delete_category([category_id]) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Category Not Found"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.get("/api/product") def getAllproducts(response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: objs=get_all_products() return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success,Statuses.count:objs.count(),Statuses.data: SerilizerMixin.serialize(objs,many=True),} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.post("/api/product") async def postProduct(product:BasePostProduct,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: if not get_product(product_name=product.productName): cateObj=get_category(category_name=product.categoryName) if cateObj: product.created_by=Authorze.get_jwt_subject() product.category_id=cateObj.category_id del product.categoryName create_product(product) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Category Not Found"} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Product already exists"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.put("/api/product/{product_id}") def updateProduct(product:BaseUpdateProduct,product_id:int,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: prodObj=get_product(product_id=product_id) if prodObj: if product.categoryName!=None: cateObj=get_category(category_name=product.categoryName) if cateObj: product.category_id=cateObj.category_id else: response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:"Category Not Found"} del product.categoryName product.updated_by=Authorze.get_jwt_subject() update_product(product,prodObj) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:f"Product not found {product_id}"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.delete("/api/product/{product_id}") def deleteProduct(product_id:int,response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: if get_product(product_id=product_id): delete_product([product_id,]) return {Statuses.status_code:Statuses.HTTP_200_OK,Statuses.status:Statuses.success} response.status_code=status.HTTP_400_BAD_REQUEST return {Statuses.status_code:Statuses.HTTP_BAD_REQUEST,Statuses.status:Statuses.failed,Statuses.description:f"Product not found {product_id}"} except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.get("/api/products/exporttopdf") def productsExportToPdf(response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: pdf=PdfMaker(format='A4') pdf.set_title("Products List") pdf.add_page() validatedObjects=get_all_prodcuts_for_fileUpload() pdf.makeData(validatedObjects) pdf.output("productslist.pdf") return FileResponse("productslist.pdf", media_type='application/octet-stream',filename="productslist.pdf") except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)} @router.get("/api/products/exporttoexcel") def productsExportToExcel(response:Response,Authorze:AuthJWT=Depends()): Authorze.jwt_required() try: validatedObjects=get_all_prodcuts_for_fileUpload() ExcelMaker().makeExcelSheet(validatedObjects) return FileResponse("productslist.xls", media_type='application/octet-stream',filename="productslist.xls") except Exception as exc: response.status_code=status.HTTP_500_INTERNAL_SERVER_ERROR ProjectUtils.print_log_msg(exc,ProjectUtils.EXCEPTION) return {Statuses.status_code:Statuses.HTTP_500_INTERNAL_SERVER_ERROR,Statuses.status:Statuses.exception,Statuses.description:str(exc)}
18,809
ac09aa50a89977384ff3161fd1c2f6f1e96dde16
# -*- coding: utf-8 -*- w = open('arq3.txt','w') w.write(open('arq.txt').read()) print(w.read())
18,810
177c8fb3df49f2f8e490c28d4f3b8a1be5557e12
from flask import render_template, session, redirect, url_for from . import main from .forms import newGameForm from .. import db from ..models import Game @main.route('/') def index(): return '<h1>INDEX</h1>' @main.route('/viewExistingGames') def viewGames(): print(Game.query.all()) return '<h1>viewGames</h1>' @main.route('/viewGameDetails/<game_id>',methods=['GET']) def viewGameInfo(game_id): game = Game.query.filter_by(id=game_id).all() if game: print(game) else: print('no game with that id') return '<h1>viewing Game Information</h1>' @main.route('/createGame', methods=['GET','POST']) def createGame(): form = newGameForm() db.create_all() if form.validate_on_submit(): game = Game(rules=form.rules.data) db.session.add(game) db.session.commit() return redirect('/viewExistingGames') return render_template('createGame.html', form=form)
18,811
78c582631e025d38bb170d3b91b9362547f5549e
import csv import math ################################## # YOUR DESIRED FILENAME AND ROWS OF VALUES GO HERE fileName = 'basicsine.csv' rows = 1 ################################## with open(fileName, mode='w') as newFile: fileWriter = csv.writer(newFile, lineterminator="\n") amp, offset, pw = [], [], [] for i in range(64): amp.append("amp{}".format(i)) offset.append("offset{}".format(i)) pw.append("pw{}".format(i)) headers = amp + offset + pw headers.append("time") fileWriter.writerow(headers) for i in range(rows): amp.clear() offset.clear() pw.clear() for j in range(64): if (j < 64): ampVal = 32000 #YOUR FORMULAS FOR AMP, OFFSET, PHASEWORD GO HERE offsetVal = 0 pwVal = 128 * (j//16) amp.append(ampVal) offset.append(offsetVal) pw.append(pwVal) else: amp.append(0) offset.append(0) pw.append(0) newrow = amp + offset + pw time = 4096 #YOUR TIME FORMULA GOES HERE newrow.append(time) fileWriter.writerow(newrow)
18,812
d398d028741443b5f7541e32a56dfc640c132298
# Write a Python program to create a lambda function that adds 15 to a given # number passed in as an argument, also create a lambda function that multiplies # argument x with argument y and print the result. add_15 = lambda x: x + 15 print(add_15(2)) mul = lambda x, y: x*y print(mul(3,5))
18,813
845206ec19cfc8be2b5b6a06476384a4bb1fa661
# -*- coding: utf-8 -*- import numpy as np import sys from collections import deque from collections import defaultdict import heapq import collections import itertools import bisect from scipy.special import comb import copy sys.setrecursionlimit(10**6) def zz(): return list(map(int, sys.stdin.readline().split())) def z(): return int(sys.stdin.readline()) def S(): return sys.stdin.readline()[:-1] def C(line): return [sys.stdin.readline() for _ in range(line)] N, M = zz() A = zz() A = [-a for a in A] heapq.heapify(A) for i in range(M): money = heapq.heappop(A) money *= -1 money //= 2 money *= -1 heapq.heappush(A, money) print(sum(A)*-1)
18,814
21df4cd59357093814ec6140923fdaa29126a78b
p,p2=input().split() p=int(p) p2=int(p2) c=0 temp=list(map(int,input().split())) for a in temp: if(a==p2): c=c+1 break if(c!=0): print("yes") else:print("no")
18,815
1b6475733f62e2fefe59b816ac62b31522f17350
import json import os import requests from dotenv import load_dotenv from kafka import KafkaProducer from time import sleep #--------------------------------------------------------------------------------------------------- def retrieve_response( URL:str, key: str, host:str)->list: """Function returns list of JSON objects from REST API endpoint. @URL: str - URL of REST API to retrieve items from @key: str - API Key of REST API to retrieve items from @host: str - Hostname of API to retrieve items from """ headers = { "x-rapidapi-key": key, "x-rapidapi-host": host } request = requests.get(URL, headers = headers) return json.loads(request.text) #Loading Environment variables --- load_dotenv() API_KEY = os.getenv("API_KEY") API_HOST = os.getenv("API_HOST") #Requesting REST API --- covid_data = retrieve_response( URL = "https://who-covid-19-data.p.rapidapi.com/api/data", key = API_KEY, host = API_HOST ) #Sending data to Kafka topic --- producer = KafkaProducer( bootstrap_servers = "localhost:9092", value_serializer = lambda message: json.dumps(message).encode("utf8") ) for record in covid_data: sleep(3) producer.send("covid_data", record)
18,816
437f4fbf2a6b54d9faa87766117de95238ec6871
from flask import request, jsonify, render_template, flash, redirect, url_for from flask_login import current_user, login_user, logout_user, login_required from werkzeug.urls import url_parse from datetime import datetime from app import app, db from app.forms import LoginForm, RegistrationForm, EditProfileForm, ProjectForm, EmptyForm, ResetPasswordRequestForm, ResetPasswordForm from app.models import User, Project from app.email import send_password_reset_email from engine import recommend, api_recommend, find import pandas as pd import pickle # read second column of dataset to obtain project names df = pd.read_csv('TopStaredRepositories.csv', usecols=[1]) # load model which has already been saved using pickle library tfidf_vectorizer = pickle.load(open('tfidf_vectorizer.pickle', 'rb')) cv = pickle.load(open('count_vectorizer.pickle', 'rb')) # call method before processing any requests @app.before_request def before_request(): if current_user.is_authenticated: current_user.last_seen = datetime.utcnow() db.session.commit() # index endpoint @app.route('/', methods=['GET', 'POST']) @app.route('/index', methods=['GET', 'POST']) @login_required def index(): form = ProjectForm() if form.validate_on_submit(): project = Project(title=form.title.data, owner=current_user, description=form.description.data, language=form.language.data.upper(), git_url=form.git_url.data, tags=form.tags.data.lower()) db.session.add(project) db.session.commit() flash('Project created!') # redirect to home page to avoid inserting duplicate posts # if a user refreshes after submitting the form # (post/redirect/get pattern) return redirect(url_for('index')) # get page number from request page = request.args.get('page', 1, type=int) projects = current_user.followed_projects().paginate(page, app.config['POSTS_PER_PAGE'], False) # ternary operators to assign next page url and previous # page url if there are more projects to display next_url = url_for('index', page=projects.next_num) \ if projects.has_next else None prev_url = url_for('index', page=projects.prev_num) \ if projects.has_prev else None return render_template('index.html', title='Home', form=form, projects=projects.items, next_url=next_url, prev_url=prev_url) # end of index endpoint # explore endpoint @app.route('/explore') @login_required def explore(): # get page number from request page = request.args.get('page', 1, type=int) projects = Project.query.order_by(Project.timestamp.desc()).paginate(page, app.config['POSTS_PER_PAGE'], False) # ternary operators to assign next page url and previous # page url if there are more projects to display next_url = url_for('explore', page=projects.next_num) \ if projects.has_next else None prev_url = url_for('explore', page=projects.prev_num) \ if projects.has_prev else None return render_template('index.html', title='Explore', projects=projects.items, next_url=next_url, prev_url=prev_url) # end of explore endpoint # login endpoint @app.route('/login', methods=['GET', 'POST']) def login(): # redirect user to index page if they are already logged in if current_user.is_authenticated: return redirect(url_for('index')) form = LoginForm() # process form submission if form.validate_on_submit(): # search db for user by username form data user = User.query.filter_by(username=form.username.data).first() # conditional for unsuccessful username search OR check_password returns false if user is None or not user.check_password(form.password.data): flash('Invalid username or password') return redirect(url_for('login')) # successful login login_user(user, remember=form.remember_me.data) # set next_page to next argument from request to handle redirects from login_required pages next_page = request.args.get('next') # redirect user to index page if no next argument was found, or if next argument contains a URL with another domain if not next_page or url_parse(next_page).netloc != '': next_page = url_for('index') # redirect user to next page after successful login return redirect(next_page) # render login template if get request return render_template('login.html', title='Sign In', form=form) # end of login endpoint # logout endpoint @app.route('/logout') def logout(): logout_user() return redirect(url_for('index')) # end of logout endpoint # register endpoint @app.route('/register', methods=['GET', 'POST']) def register(): # redirect user to index page if they are already logged in if current_user.is_authenticated: return redirect(url_for('index')) form = RegistrationForm() # process form submission if form.validate_on_submit(): # create new user object with form data as arguments user = User(username=form.username.data, email=form.email.data) user.set_password(form.password.data) # add user to db db.session.add(user) db.session.commit() flash('You have successfully registered!') return redirect(url_for('login')) # render register template if get request return render_template('register.html', title='Register', form=form) # end of register endpoint # user profile endpoint @app.route('/user/<username>') @login_required def user(username): user = User.query.filter_by(username=username).first_or_404() users = None list_of_recs = find(user.id, cv) print(list_of_recs) if list_of_recs is not None: new_df = pd.DataFrame(list_of_recs, columns=['id', 'score']) new_df['id'] = new_df['id'] + 1 print(new_df) user_ids = new_df['id'] users = User.query.filter(User.id.in_(user_ids)) following = user.followed.all() # get followers using backref in association followers = user.followers.all() page = request.args.get('page', 1, type=int) projects = user.projects.order_by(Project.timestamp.desc()).paginate(page, app.config['POSTS_PER_PAGE'], False) next_url = url_for('user', username=user.username, page=projects.next_num) \ if projects.has_next else None prev_url = url_for('user', username=user.username, page=projects.prev_num) \ if projects.has_prev else None form = EmptyForm() return render_template('user.html', title=f'{user.username}\'s profile', user=user, users=users, following=following, followers=followers, projects=projects.items, next_url=next_url, prev_url=prev_url, form=form) # end of user profile endpoint # user popup endpoint @app.route('/user/<username>/popup') @login_required def user_popup(username): user = User.query.filter_by(username=username).first_or_404() form = EmptyForm() return render_template('user_popup.html', user=user, form=form) # end of user popup endpoint # edit profile endpoint @app.route('/edit_profile', methods=['GET', 'POST']) @login_required def edit_profile(): form = EditProfileForm(current_user.username) if form.validate_on_submit(): current_user.username = form.username.data current_user.about_me = form.about_me.data db.session.commit() flash('Your changes have been saved.') return redirect(url_for('edit_profile')) elif request.method == 'GET': form.username.data = current_user.username form.about_me.data = current_user.about_me return render_template('edit_profile.html', title='Edit Profile', form=form) # end of edit profile endpoint # follow user endpoint # TODO combine code for follow and unfollow routes to follow DRY best practices @app.route('/follow/<username>', methods=['POST']) @login_required def follow(username): form = EmptyForm() if form.validate_on_submit(): user = User.query.filter_by(username=username).first() if user is None: flash('User {} not found.'.format(username)) return redirect(url_for('index')) if user == current_user: flash('You cannot follow yourself!') return redirect(url_for('user', username=username)) current_user.follow(user) db.session.commit() flash('You are now following {}!'.format(username)) return redirect(url_for('user', username=username)) else: return redirect(url_for('index')) # end of follow user endpoint # unfollow user endpoint @app.route('/unfollow/<username>', methods=['POST']) @login_required def unfollow(username): form = EmptyForm() if form.validate_on_submit(): user = User.query.filter_by(username=username).first() if user is None: flash('User {} not found.'.format(username)) return redirect(url_for('index')) if user == current_user: flash('You cannot unfollow yourself!') return redirect(url_for('user', username=username)) current_user.unfollow(user) db.session.commit() flash('You are no longer following {}.'.format(username)) return redirect(url_for('user', username=username)) else: return redirect(url_for('index')) # end of unfollow user endpoint # reset password request endpoint @app.route('/reset_password_request', methods=['GET', 'POST']) def reset_password_request(): if current_user.is_authenticated: return redirect(url_for('index')) form = ResetPasswordRequestForm() if form.validate_on_submit(): user = User.query.filter_by(email=form.email.data).first() if user: send_password_reset_email(user) flash('Check your email for the instructions to reset your password') return redirect(url_for('login')) return render_template('reset_password_request.html', title='Reset Password', form=form) # end of reset password request endpoint # reset password endpoint @app.route('/reset_password/<token>', methods=['GET', 'POST']) def reset_password(token): # if user is already signed in if current_user.is_authenticated: return redirect(url_for('index')) user = User.verify_reset_password_token(token) # redirect to index if token is invalid if not user: return redirect(url_for('index')) # present form to reset password if token is valid form = ResetPasswordForm() if form.validate_on_submit(): user.set_password(form.password.data) db.session.commit() flash('Your password has been reset.') return redirect(url_for('login')) return render_template('reset_password.html', form=form) # end of reset password endpoint # language endpoint @app.route('/language/<language>') @login_required def language(language): page = request.args.get('page', 1, type=int) projects = Project.query.filter_by(language=language).order_by(Project.timestamp.desc()).paginate(page, app.config['POSTS_PER_PAGE'], False) next_url = url_for('language', language=language, page=projects.next_num) \ if projects.has_next else None prev_url = url_for('language', language=language, page=projects.prev_num) \ if projects.has_prev else None return render_template('index.html', title=language, projects=projects.items, next_url=next_url, prev_url=prev_url) # end of language endpoint # rate project endpoint @app.route('/rate/<id>', methods=['POST']) @login_required def rate(id): form = EmptyForm() if form.validate_on_submit(): project = Project.query.get(id) if project is None: flash('Project ID #{} not found.'.format(id)) return redirect(url_for('index')) if project.owner == current_user: flash('You cannot rate your own project!') return redirect(url_for('project', id=id)) current_user.rate(project) db.session.commit() flash('You just rated {}\'s project!'.format(project.owner.username)) return redirect(url_for('project', id=id)) else: return redirect(url_for('index')) # end of rate project endpoint # unrate project endpoint @app.route('/unrate/<id>', methods=['POST']) @login_required def unrate(id): form = EmptyForm() if form.validate_on_submit(): project = Project.query.get(id) if project is None: flash('Project ID #{} not found.'.format(id)) return redirect(url_for('index')) if project.owner == current_user: flash('You cannot unrate your own project!') return redirect(url_for('project', id=id)) current_user.unrate(project) db.session.commit() flash('You just unrated {}\'s project!'.format(project.owner.username)) return redirect(url_for('project', id=id)) else: return redirect(url_for('index')) # end of unrate project endpoint # project endpoint @app.route('/project/<id>') @login_required def project(id): project = Project.query.get(id) projects = None list_of_recs = recommend(project.title, df, tfidf_vectorizer) print(list_of_recs) if list_of_recs is not None: new_df = pd.DataFrame(list_of_recs, columns=['id', 'score']) new_df['id'] = new_df['id'] + 1 print(new_df) project_ids = new_df['id'] projects = Project.query.filter(Project.id.in_(project_ids)) form = EmptyForm() return render_template('project.html', title=project.title, project=project, projects=projects, form=form) # end of project endpoint # api endpoint @app.route('/api/', methods =['POST']) def process_request(): # get user input user_input = request.get_json() # save project name as title title = user_input['Repository Name'] # call recommend function with necessary arguments recommended_projects = api_recommend(title, df, tfidf_vectorizer) return jsonify(recommended_projects) if __name__ == '__main__': app.run()
18,817
0c668025ff4b503378f4fb2e189e47f5f89abacb
"""Import the name and print all characters""" name = input("Enter your name") """Check the name is not blank""" while len(name) <= 0: print("Name is blank. Enter again") name = input("Enter your name") #Print odd character in the name print(name[1:len(name):2]) print(name[::2]) #Print odd character in the name for i in range(0, len(name), 2): print(name[i])
18,818
b6a0e2c4f1c2f76efa9d66582e2e29b46b19bab5
# # ps3pr2.py (Problem Set 3, Problem 2) # # Caesar cipher/decipher # # name: Teng Xu # email: xt@bu.edu # # If you worked with a partner, put his or her contact info below: # partner's name: # partner's email: # # a helper function that could be useful when assessing # the "Englishness" of a phrase def letter_prob(c): """ if c is the space character (' ') or an alphabetic character, returns c's monogram probability (for English); returns 1.0 for any other character. adapted from: http://www.cs.chalmers.se/Cs/Grundutb/Kurser/krypto/en_stat.html """ if c == ' ': return 0.1904 if c == 'e' or c == 'E': return 0.1017 if c == 't' or c == 'T': return 0.0737 if c == 'a' or c == 'A': return 0.0661 if c == 'o' or c == 'O': return 0.0610 if c == 'i' or c == 'I': return 0.0562 if c == 'n' or c == 'N': return 0.0557 if c == 'h' or c == 'H': return 0.0542 if c == 's' or c == 'S': return 0.0508 if c == 'r' or c == 'R': return 0.0458 if c == 'd' or c == 'D': return 0.0369 if c == 'l' or c == 'L': return 0.0325 if c == 'u' or c == 'U': return 0.0228 if c == 'm' or c == 'M': return 0.0205 if c == 'c' or c == 'C': return 0.0192 if c == 'w' or c == 'W': return 0.0190 if c == 'f' or c == 'F': return 0.0175 if c == 'y' or c == 'Y': return 0.0165 if c == 'g' or c == 'G': return 0.0161 if c == 'p' or c == 'P': return 0.0131 if c == 'b' or c == 'B': return 0.0115 if c == 'v' or c == 'V': return 0.0088 if c == 'k' or c == 'K': return 0.0066 if c == 'x' or c == 'X': return 0.0014 if c == 'j' or c == 'J': return 0.0008 if c == 'q' or c == 'Q': return 0.0008 if c == 'z' or c == 'Z': return 0.0005 return 1.0 #### Put your code for problem 2 below. #### #1 def rot(c,n): """ rotate c forward by n characters, wrapping as needed; only letters change """ if 'a' <= c <= 'z': new_ord = ord(c) + n if new_ord > ord('z'): new_ord = new_ord - 26 elif 'A' <= c <= 'Z': new_ord = ord(c) + n if new_ord > ord('Z'): new_ord = new_ord - 26 else: new_ord = ord(c) return chr(new_ord) def encipher(s,n): if s == '': return '' else: return rot(s[0],n)+ encipher(s[1:],n) #2 def num_vowels(s): lc = [1 for c in s if c in 'aeiou'] return sum(lc) def decipher(s): options = [encipher(s,n) for n in range(26)] scored_options = [[num_vowels(x),x] for x in options] return max(scored_options)[1]
18,819
a6cc980879b822a187cbfeace50d4bac780dd826
import cv2 face_data = cv2.CascadeClassifier("face_data.xml") eye_data = cv2.CascadeClassifier("eye_data.xml") video_capture = cv2.VideoCapture("1.mov") def detect(frame): gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) faces = face_data.detectMultiScale(gray, 1.3,5) for (x, y, w, h) in faces: cv2.rectangle(frame, (x, y), (x+w, y+h), (255, 0, 0), 2) roi_gray = gray[y:y+h, x:x+w] roi_color = frame[y:y+h, x:x+w] eyes = eye_data.detectMultiScale(roi_gray, 1.1, 3) for (ex, ey, ew, eh) in eyes: cv2.rectangle(roi_color, (ex, ey), (ex+ew, ey+eh), (0, 255, 0), 2) return frame while(True): ret, frame = video_capture.read() frame = cv2.flip(frame, 1) frame = detect(frame) cv2.imshow('frame',frame) if cv2.waitKey(1) & 0xFF == ord('q'): break video_capture.release() cv2.destroyAllWindows()
18,820
ffdfbe484e8b0622ed060294f982f1fbe68d7015
from .loss import Loss from .coil_model import CoILModel, EncoderModel from .optimizer import adjust_learning_rate, adjust_learning_rate_auto
18,821
f7be940850cea4d94a0f29133d07bac1daa07aa0
from __future__ import annotations from typing import List from heapq import heappop, heappush, heappushpop from collections import defaultdict # all heaps in python are minheap. to use minheap as a maxheap u have to make value negative class Solution: def medianSlidingWindow(self, nums: List[int], k: int) -> List[float]: lo, hi = [], [] for i in range(k): if len(lo) == len(hi): heappush(hi, -heappushpop(lo, -nums[i])) else: heappush(lo, -heappushpop(hi, nums[i])) ans = [float(hi[0])] if k & 1 else [(hi[0] - lo[0]) / 2.0] to_remove = defaultdict(int) for i in range(k, len(nums)): heappush(lo, -heappushpop(hi, nums[i])) out_of_window_num = nums[i-k] if out_of_window_num > -lo[0]: heappush(hi, -heappop(lo)) to_remove[out_of_window_num] += 1 while lo and to_remove[-lo[0]]: to_remove[-lo[0]] -= 1 heappop(lo) while to_remove[hi[0]]: to_remove[hi[0]] -= 1 heappop(hi) if k % 2: ans.append(float(hi[0])) else: ans.append((hi[0] - lo[0]) / 2.0) return ans # test = Solution() # test.medianSlidingWindow([1,3,-1,-3,5,3,6,7], 3) test = Solution() test.medianSlidingWindow([1,3,-1,-3,5,3,6,7], 4) # test = Solution() # test.medianSlidingWindow([1,2,3,4,2,3,1,4,2], 3)
18,822
eedd21d63792df5a4ab1e02863e247509f9657b0
import numpy as np from numpy import random x = random.randint(100,size=(5,10)) arr = np.array([x]) print(np.sort(arr))
18,823
f0068c0446339a67741d7add3efdfd2ac4fb84db
import serial import csv # 歩行データの保存先 test_data = 'C:\\Users\\user\\Documents\\Gaitsensor-main\\walkingdata\\walkingdata.csv' ser = serial.Serial('COM9', baudrate=115200, parity=serial.PARITY_NONE) # COMポートはPC環境によって変化 line = ser.readline() total_byte = 0 ''' # 初期化 ヘッダーを追加する header = "bothfoot_L,swing_L,bothfoot_R,swing_R,stand_L,stand_R" headers = header.split(',') with open(test_data, 'w',newline="") as f: writer = csv.writer(f) writer.writerow(headers) ''' try: # 追記 while True: line = ser.readline() total_byte = total_byte + len(line.decode('utf-8')) print(" byte:",len(line.decode('utf-8'))," total_byte:", total_byte) line_str = (line.decode('utf-8')).replace('\n', '') # byteをstrに変換後、改行コードを削除 lines = line_str.split(',') print(lines) with open(test_data, 'a',newline="") as f: writer = csv.writer(f) writer.writerow(lines) except KeyboardInterrupt: # 確認用 with open(test_data) as f: print(f.read()) ser.close()
18,824
75ccd5b425a9b738647f89cfd9d015983688daa1
import argparse import os import subprocess import numpy as np import pandas as pd from sklearn.model_selection import KFold import torch import yaml from torch.utils.data import DataLoader from lstm import GBVSSLSTMModel, GBVSSLSTMTrainer, GBVPPEvaluator, make_datasets from base.utils import Tools as T if __name__ == '__main__': parser = argparse.ArgumentParser( usage='python submit.py -cp ../result/base_seed_0/config.yaml x N-files ' '-pths ../result/base_seed_0/pths/best.pth x N-files', add_help=True ) parser.add_argument('-cp', '--config_path', type=str, nargs='+', default=['config.yaml'], help='config path') parser.add_argument('-seed', '--seed', type=int) parser.add_argument('-nw', '--num_worker', type=int) parser.add_argument('-memo', '--memo', type=str) parser.add_argument('-pths', '--pth_paths', type=str, nargs='+') parser.add_argument('-ent', '--ensemble_type', type=str, default='median') parser.add_argument('-multi', '--multi_gpu', action='store_true') parser.add_argument('-sub', '--submit', action='store_true') parser.add_argument('-no_pp', '--no_post_process', action='store_true') parser.add_argument('-fn', '--file_name', type=str) parser.add_argument('-pseudo', '--for_pseudo', action='store_true') parser.add_argument('-val', '--validation', action='store_true') parser.add_argument('-ps_th', '--pseudo_threshold', type=float, default=float('inf')) parser.add_argument('-clip_N', '--clip_N', type=int, default=3) parser.add_argument('-nsp', '--n_splits', type=int) parser.add_argument('-stack', '--for_stacking', action='store_true') parse = parser.parse_args() nw = 6 val_bs = 128 import torch.multiprocessing torch.multiprocessing.set_sharing_strategy('file_system') breath_ids = [] predicts = [] for config_path, pth_path in zip(parse.config_path, parse.pth_paths): # load yaml with open(config_path) as f: config = yaml.load(f, Loader=yaml.SafeLoader) config['trainer']['save_path'] = config['main']['save_path'] # make dataset & dataloader with T.timer('data load'): if parse.validation: tst_ds = make_datasets(config['dataset'], seed=0)[1][''] else: tst_ds = make_datasets(config['dataset'], seed=0, train=False) tst_dl = DataLoader(tst_ds, batch_size=val_bs, shuffle=False, num_workers=nw) dataloaders = {'tst': tst_dl} # make model, loss if config['model']['model_type'] == 'lstm': model = GBVSSLSTMModel(config['model']).cuda() else: raise Exception evaluator = GBVPPEvaluator(**config['loss'], summary=None) # make trainer trainer = GBVSSLSTMTrainer(model, dataloaders, evaluator, None) trainer.set_args(config['trainer']) trainer.load_resume(torch.load(pth_path), config['main'].get('only_model_load', False)) # TEST with T.timer('testing'): output = trainer.run_test() breath_id = torch.cat([out[0].view(-1) for out in output], -1).numpy() predict = torch.cat([out[1].view(-1) for out in output], -1).numpy() breath_ids.append(breath_id) predicts.append(predict.reshape(-1, 80)) breath_ids = np.concatenate(breath_ids, 0) predicts = np.concatenate(predicts, 0) n_bid = len(np.unique(breath_ids)) predicts = predicts[breath_ids.argsort(axis=0)].reshape(n_bid, -1, 80).transpose(1,0,2).reshape(-1, n_bid*80) if parse.for_stacking: tst_df = pd.read_csv('../input/ventilator-pressure-prediction/train_process.csv') elif parse.for_pseudo: predicts_cp = predicts.copy() predicts_cp = predicts_cp.reshape(predicts.shape[0], -1, 80) N = parse.clip_N predicts_cp = np.sort(predicts_cp, axis=0)[N:len(predicts_cp)-N] pseudo_mask = (predicts_cp[-1] - predicts_cp[0] < parse.pseudo_threshold).reshape(-1) tst_df['th_mask'] = pseudo_mask print(f'{pseudo_mask[tst_ds.u_outs == 0].mean()} % used for pseudo') else: tst_df = pd.read_csv('../input/ventilator-pressure-prediction/sample_submission.csv') # ensemble if parse.ensemble_type == 'mean': predicts = predicts.mean(0) elif parse.ensemble_type == 'median': predicts = np.median(predicts, 0) if parse.for_stacking: tst_df['stacking'] = predicts else: tst_df['pressure'] = predicts # post process if not parse.no_post_process: print('POST PROCESSING ...') trn_val_df = pd.read_csv('../input/ventilator-pressure-prediction/train.csv') unique_pressures = trn_val_df["pressure"].unique() sorted_pressures = np.sort(unique_pressures) total_pressures_len = len(sorted_pressures) def find_nearest(prediction): insert_idx = np.searchsorted(sorted_pressures, prediction) if insert_idx == total_pressures_len: return sorted_pressures[-1] elif insert_idx == 0: return sorted_pressures[0] lower_val = sorted_pressures[insert_idx - 1] upper_val = sorted_pressures[insert_idx] return lower_val if abs(lower_val - prediction) < abs(upper_val - prediction) else upper_val tst_df['pressure'] = tst_df['pressure'].apply(find_nearest) # split if parse.n_splits is not None: kfold = KFold(n_splits=parse.n_splits, shuffle=True, random_state=0) bids = tst_df.breath_id.unique() for fold_id, (_, val_idx) in enumerate(kfold.split(range(len(bids)))): val_bids = bids[val_idx] tst_df.loc[tst_df.breath_id.isin(val_bids), 'split'] = fold_id # preserve if parse.file_name is None: name = [os.path.splitext(pth_path)[0].split('/') for pth_path in parse.pth_paths] name = '__'.join([x[-3] + '_' + x[-1] for x in name]) else: name = parse.file_name print(f'save as {name}.csv') root_dir = 'pseudos' if parse.for_pseudo else 'submits' T.make_dir(f'../{root_dir}') tst_df.to_csv(f'../{root_dir}/{name}.csv', index=False) # submit to kaggle if parse.submit: message = name if parse.memo is not None: message = message + f'\n{parse.memo}' subprocess.call(f'kaggle competitions submit ventilator-pressure-prediction '\ f'-f ../submits/{name}.csv -m "{message}"', shell=True) print()
18,825
ab32905baff09977c227180237dd01e65f45d2ec
import module as fib fib.printFib(1000) result = fib.fib(1000) print '\n\nresult: ', result
18,826
afdfd2d55664e4a44b8fd896652a84a2202ca79b
import os import subprocess import uuid import boto3 import json from farm_uploader import proccess_farm_complete import config_file def handler(event, context): key = config_file.KEY secret_key = config_file.SECRET_KEY updated_farms_loc = config_file.UPDATED_FARMS_LOC s3 = boto3.resource('s3',aws_access_key_id =key,aws_secret_access_key=secret_key) for record in event['Records']: farm_loc = record['s3']['object']['key'] fname = record['s3']['object']['key'].split('/')[-1] out_loc = os.path.join(updated_farms_loc,fname) bucket_name = event['Records'][0]['s3']['bucket']['name'] s3.Bucket(bucket_name).download_file(farm_loc, r'/tmp/farm.json') with open(r'/tmp/farm.json','r') as f: farm = json.load(f) try: all_data_sets_proccesed = proccess_farm_complete(farm,max_results=1) is_succeeded = True except: is_succeeded = False tmp_farm_loc = r'/tmp/farm.json' with open(tmp_farm_loc, 'w+') as f: json.dump(farm, f) s3.Object(bucket_name, farm_loc).delete() s3.Bucket(bucket_name).upload_file(tmp_farm_loc, out_loc) if not is_succeeded: error_farms_loc=config_file.ERROR_FARMS_LOC error_loc = os.path.join(error_farms_loc,fname) s3.Object(bucket_name, farm_loc).delete() s3.Bucket(bucket_name).upload_file(tmp_farm_loc, error_loc) return "ERROR farm {} was not processed".format(farm['id']) elif not all_data_sets_proccesed: error_farms_loc = config_file.ERROR_TYPE_SOME_DATA_SET_FARMS_LOC error_loc = os.path.join(error_farms_loc, fname) s3.Bucket(bucket_name).upload_file(tmp_farm_loc, error_loc) return "farm {} was processed on some datasets".format(farm['id']) else: return "farm {} processed successfully".format(farm['id'])
18,827
bd172dbc51c3ff50298d9fd62340d719a7da0530
def is_correct(string): stack = list() for c in string: if c == '(': stack.append('(') elif len(stack) > 0: stack.pop() else: return False return True def dfs(string): if len(string) == 0: # 1번 return '' c_open = 0 c_close = 0 for i in range(len(string)): if string[i] == '(': c_open += 1 else: c_close += 1 if c_open == c_close: # 2번 if is_correct(string[:i + 1]): # 3번 return string[:i + 1] + dfs(string[i + 1:]) else: # 4번 v = '(' + dfs(string[i + 1:]) + ')' # 4-1 ~ 4-3 tmp = '' for a in range(1, i): # 4-4 if string[a] == '(': tmp += ')' else: tmp += '(' return v + tmp def solution(p): answer = dfs(p) return answer
18,828
ec6c467798eda1e2a503a4287061f5573e6f36ab
#!/usr/bin/env python # coding: utf-8 # In[25]: import pandas as pd # In[26]: import matplotlib.pyplot as plt # In[27]: get_ipython().run_line_magic('matplotlib', 'inline') # In[28]: names = ['Bob','Jessica','Mary','John','Mel'] # In[29]: absences = [3,0,1,0,8] # In[30]: detentions = [2,1,0,0,1] # In[31]: warnings = [2,1,5,1,2] # In[32]: GradeList = zip(names,absences,detentions,warnings) # In[33]: columns=['Names','Absences','Detentions','Warnings'] # In[34]: df = pd.DataFrame(data = GradeList,columns=columns) # In[35]: df # In[36]: df['TotalDemerits']=df['Absences']+df['Detentions']+df['Warnings'] # In[37]: df # In[38]: plt.pie(df['TotalDemerits']) # In[39]: plt.pie(df['TotalDemerits'],labels=df['Names'],explode=(0,0,0,0.15,0),startangle=90,autopct='%1.1f%%') # In[ ]: # In[ ]:
18,829
64d182420378886b8ebf552e4c872d8fcaeab3ff
from typing import List """ Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. """ class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: # two pointers begin, end = 0, len(nums) - 1 idxd_nums = [(idx, num) for idx, num in enumerate(nums)] idxd_nums.sort(key=lambda x: x[1]) while begin < end: curr = idxd_nums[begin][1] + idxd_nums[end][1] if curr == target: return [idxd_nums[begin][0], idxd_nums[end][0]] elif curr > target: end -= 1 else: begin += 1 return [] def twoSumHM(self, nums: List[int], target: int) -> List[int]: # hash map numMap = {} for i, num in enumerate(nums): complement = target - num if complement in numMap: return [numMap[complement], i] numMap[num] = i return [] def test(*args, expected): solution = Solution() output = solution.twoSum(*args) assert output == expected if __name__ == '__main__': test( [2, 7, 11, 15], 9, expected=[0, 1] ) test( [3, 2, 4], 6, expected=[1, 2] ) test( [3, 3], 6, expected=[0, 1] )
18,830
f5933c52c88b6313dcf2e3fa9c40e2fd64ecf3b0
""" DRF가 제공하는 API views 방식은 2가지가 있다. 1. @api_view 데코레이터를 사용하는 FBV(Function-Based Views) 2. APIView 클래스를 사용하는 CBV(Class-Based Views) """ """ 1. Function-Based Views - 확장성과 재사용성은 떨어짐 - 하지만 편하게 읽을 수 있고 구현하기도 쉽다""" # drf에서는 status 기능을 통해 http 상태를 숫자+문자 로 표현해 보다 명확한 상태를 보여준다. from rest_framework import status from rest_framework import generics from rest_framework.decorators import api_view from rest_framework.response import Response from rest_framework.reverse import reverse from snippets.models import Snippet from snippets.serializers import SnippetSerializer @api_view(['GET', 'POST']) def snippet_list(request, format=None): # format=None: 데이터 형태에 대한 포맷정보가 붙는다. """ List all code snippets, or create a new snippet. """ if request.method == 'GET': snippets = Snippet.objects.all() serializer = SnippetSerializer(snippets, many=True) return Response(serializer.data) elif request.method == 'POST': serializer = SnippetSerializer(data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_201_CREATED) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) @api_view(['GET', 'PUT', 'DELETE']) def snippet_detail(request, pk, format=None): """ Retrieve, update or delete a code snippet. """ try: snippet = Snippet.objects.get(pk=pk) except Snippet.DoesNotExist: return Response(status=status.HTTP_404_NOT_FOUND) if request.method == 'GET': serializer = SnippetSerializer(snippet) return Response(serializer.data) elif request.method == 'PUT': serializer = SnippetSerializer(snippet, data=request.data) if serializer.is_valid(): serializer.save() return Response(serializer.data) return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) elif request.method == 'DELETE': snippet.delete() return Response(status=status.HTTP_204_NO_CONTENT)
18,831
e80758d6d6341f5bbfcb6ce44f243d12b21c1636
from .club_solver import attempt_solve
18,832
5d49bd065b979d0cc562991da099dfb8c83dd782
""" CLI entry point hook. """ from argparse import ArgumentParser from json import loads def createall_main(graph): """ Initialize indexes and mappings. """ parser = ArgumentParser() parser.add_argument("--only", action="append") parser.add_argument("--skip", action="append") parser.add_argument("-D", "--drop", action="store_true") args = parser.parse_args() graph.elasticsearch_index_registry.createall( force=args.drop, only=args.only, skip=args.skip, ) def query_main(graph, default_index): """ Run a query. """ parser = ArgumentParser() parser.add_argument("-i", "--index", default=default_index) parser.add_argument("-q", "--query", default='{"match_all": {}}') parser.add_argument("-f", "--flat", action="store_true") args = parser.parse_args() try: query = loads(args.query) except Exception: parser.error("query must be valid json") response = graph.elasticsearch_client.search( index=args.index, body=dict(query=query), ) if args.flat: return response["hits"]["hits"] else: return response
18,833
d61759a843ad54eeca5cdce8e864db16751b8394
#텍스트 클리닝과 텍스트 토큰화 #from konlpy.tag import Okt 보통의 경우에는 Okt를 사용하지 x import json import os import re from pprint import pprint import rhinoMorph from collections import Counter import pandas as pd import math from tensorflow.compat.v2.keras.models import model_from_json from tensorflow.keras.preprocessing.text import Tokenizer from tensorflow.keras.preprocessing.sequence import pad_sequences import joblib os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' max_words = 5000 max_len = 100 rn = rhinoMorph.startRhino() # 텍스트 클리닝 - 한글만 남기기 def text_cleaning(doc): doc = re.sub("[^ㄱ-ㅎㅏ-ㅣ가-힣 ]", "", doc) return doc # 불용어 정의 def define_stopwords(path, encoding): SW = set() #집합형태로 만들어줘야 중복을 제외하고 출력해줌 #불용어들을 추가할려면 SW.add()이렇게 넣어주면 됨 with open(path, encoding = encoding) as f: for word in f: SW.add(word) return SW # 모델 로딩 def load_model(): json_file = open("application/model/NLP_model.json", "r") loaded_model_json = json_file.read() json_file.close() # json파일로부터 model 로드하기 loaded_model = model_from_json(loaded_model_json) # 로드한 model에 weight 로드하기 loaded_model.load_weights("application/model/NLP_weight.h5") return loaded_model SW = define_stopwords("application/model/stopwords-ko.txt", encoding = 'utf-8') tokenizer = joblib.load('application/model/tokenizer.pickle') # def text_tokenizing(doc): # return [word for word in rhinoMorph.onlyMorph_list(rn,doc, pos = ['NNG', 'NNP','NP', 'VV', 'VA', 'XR', 'IC', 'MM', 'MAG', 'MAJ'], eomi = False) if word not in SW and len(word) > 1] # 분석!!! def sentiment_predict(new_sentence): score = 0 model = load_model() if new_sentence != '': new_sentence1 = text_cleaning(new_sentence) new_sentence2 = rhinoMorph.onlyMorph_list(rn,new_sentence1, pos = ['NNG', 'NNP','NP', 'VV', 'VA', 'XR', 'IC', 'MM', 'MAG', 'MAJ'], eomi = False) new_sentence3 = [word for word in new_sentence2 if not word in SW] # 불용어 제거 encoded = tokenizer.texts_to_sequences([new_sentence3]) # 정수 인코딩 if encoded != [[]]: pad_new = pad_sequences(encoded, maxlen = max_len) # 패딩 score = float(model.predict(pad_new)) return score
18,834
d01105336843a22300c0b0c81e47218cdbe0ae84
#!/usr/bin/env python3 ''' Task 9.1a ''' def access_port_generate(dict, template, *args): result = [] for i in dict.keys(): result.append('interface ' + i) for item in template: if 'vlan' in item: result.append(item + ' ' + str(dict[i])) else: result.append(item) if args: result.extend(*args) return result access_mode_template = [ 'switchport mode access', 'switchport access vlan', 'switchport nonegotiate', 'spanning-tree portfast', 'spanning-tree bpduguard enable' ] access_config = { 'FastEthernet0/12': 10, 'FastEthernet0/14': 11, 'FastEthernet0/16': 17 } port_security_template = [ 'switchport port-security maximum 2', 'switchport port-security violation restrict', 'switchport port-security' ] # print(access_port_generate(access_config, access_mode_template, port_security_template)) ''' Task 9.2a ''' trunk_mode_template = [ 'switchport mode trunk', 'switchport trunk native vlan 999', 'switchport trunk allowed vlan' ] trunk_config = { 'FastEthernet0/1': [10, 20, 30], 'FastEthernet0/2': [11, 30], 'FastEthernet0/4': [17] } def generate_trunk_config(intf_vlan_mapping, trunk_template): result = {} for i in intf_vlan_mapping.keys(): interface = ('interface ' + i) result[interface] = [] for item in trunk_template: if 'allowed' in item: items = '' for value in intf_vlan_mapping[i]: items = items + str(value) + ',' items = items[:-1] result[interface].append(item + ' ' + items) else: result[interface].append(item) return result # print(generate_trunk_config(trunk_config, trunk_mode_template)) ''' Task 9.3a ''' def get_int_vlan_map(config_filename): try: path = '/home/pashockys/progi_python/pyneng-examples-exercises/exercises/09_functions/'+config_filename open(path, 'r') except FileNotFoundError: print('It seems that you are not at home') path = '/home/pashockys/Scripts/Natasha/pyneng-examples-exercises/exercises/09_functions/'+config_filename with open(path, 'r') as f: result_dict = {} result_dict_trunk = {} for index, line in enumerate(f): if 'interface' in line: interface = line.strip().split()[1] if 'access vlan' in line: result_dict[interface] = int(line.strip().split()[-1]) continue if 'mode access' in line: result_dict[interface] = 1 if 'allowed vlan' in line: result_dict_trunk[interface] = [int(x) for x in line.strip().split()[-1].split(',')] output = (result_dict, result_dict_trunk) return output print(get_int_vlan_map('config_sw2.txt')) ''' Task 9.4 ''' ignore = ['duplex', 'alias', 'Current configuration'] def ignore_command(command, ignore): ''' Функция проверяет содержится ли в команде слово из списка ignore. command - строка. Команда, которую надо проверить ignore - список. Список слов Возвращает * True, если в команде содержится слово из списка ignore * False - если нет ''' return any(word in command for word in ignore) def convert_config_to_dict(config_filename): try: path = '/home/pashockys/progi_python/pyneng-examples-exercises/exercises/09_functions/' + config_filename open(path, 'r') except FileNotFoundError: print('It seems that you are not at home') path = '/home/pashockys/Scripts/Natasha/pyneng-examples-exercises/exercises/09_functions/' + config_filename with open(path, 'r') as f: dict_4 = {} main_line = '' for line in f: if not ignore_command(line, ignore) and '!' not in line: if line[0].isalpha(): main_line = line.strip() dict_4[main_line] = [] else: dict_4[main_line].append(line.strip()) type(dict_4[main_line]) return dict_4 # print(convert_config_to_dict('config_sw1.txt'))
18,835
9ecb75a9e8e915386ad697ed84094e36908fdae9
# Generated by Django 3.0.5 on 2020-04-13 22:42 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Region', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=120)), ('avgAge', models.IntegerField()), ('avgDailyIncomeInUSD', models.IntegerField()), ('avgDailyIncomePopulation', models.IntegerField()), ], ), migrations.CreateModel( name='Covid', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('periodType', models.CharField(max_length=120)), ('timeToElapse', models.IntegerField()), ('reportedCases', models.IntegerField()), ('population', models.IntegerField()), ('populatotalHospitalBedstion', models.IntegerField()), ('totalHospitalBeds', models.IntegerField()), ('region', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='region', to='pai.Region')), ], ), ]
18,836
9c00d9d293ba819a53e1cbb450254fb93a23837c
import __main__ as main from Helper.TimerLogger import CodeTimeLogging fileName = main.__file__ fileName = fileName.split('\\')[-1] CodeTimeLogging(Flag='F', filename=fileName, Tag='Dynamic-Programing', Difficult='Medium') # Formula : def eggDroping(noEggs, nofloar): dp = [[i if j == 1 else 0 for i in range(nofloar + 1)]for j in range(noEggs + 1)] [print(x)for x in dp] for i in range(2, noEggs + 1): for j in range(1, nofloar + 1): for k in range(1, j + 1): print([i - 1, k - 1], [i, j - k], [i, j, k]) dp[i][j] = min(1 + max(dp[i - 1][k - 1], dp[i][j - k]) for k in range(1, j + 1)) print() [print(x)for x in dp] noEggs = 2 nofloar = 6 print(eggDroping(noEggs, nofloar))
18,837
19234ad3d3ab6ccf5511dd987f3ba474e91de8dd
#!/usr/bin/env python # import sys import copy from pycondriver import TxtSurface from pycondriver import Terminal _ESC = chr(0x1B) _SPC = 32 # ATTRIBS _RESET = 0 _BRIGHT = 1 _DIM = 2 _UNDERSCORE = 3 _BLINK = 5 _REVERSE = 7 _HIDDEN = 8 # COLORS _FG = 30 _BG = 40 _BLACK = 0 _RED = 1 _GREEN = 2 _YELLOW = 3 _BLUE = 4 _MAGENTA = 5 _CYAN = 6 _WHITE = 7 # Simple text surface (for ASCII only) # # Each element has this format: # # -------X|XXYYYZZZ|CCCCCCCC # # XXX: text attribute # YYY: foreground color # ZZZ: background color # CCCCCCCC: character # class AsciiSurface(TxtSurface): def __init__(self, size, data = []): self.size = size if not (len(data) == (self.size[0] * self.size[1])): # Raises an error! (given data is different than # surface size) self.srf = [_SPC] * (self.size[0] * self.size[1]) else: self.srf = data def clear(self): self.srf = [_SPC] * (self.size[0] * self.size[1]) def resize(self, new_size): if new_size == self.size: return # Get crop rectangle min_x = min(self.size[0], new_size[0]) min_y = min(self.size[1], new_size[1]) # Create empty surface new_srf = [_SPC] * (new_size[0] * new_size[1]) # Copy lines new_ind = 0 for y in range(min_y): # Copy source line new_srf[new_ind : new_ind + min_x] = self.srf[0:min_x] new_ind += new_size[0] self.srf = new_srf self.size = new_size def blit(self, position, surface): if (surface.size > self.size): # Raises an exception!! return (px, py) = position # Compute crop area line_len = (px + surface.size[0]) % self.size[0] lines = (px + surface.size[1]) % self.size[1] # Initial copy index srf_ind = (py * self.size[0]) + px # Dump lines for y in range(lines): self.srf[srf_ind:srf_ind + line_len] = surface.srf[:line_len] srf_ind += self.size[0] self.dirty = True def set_background(self, attributes, color): for i in range(len(self.srf)): char = self.srf[i] attr = (char >> 8) char &= 0xFF # Set new background (saving foreground) attr &= 0b000111000 attr |= (color & 7) attr |= (attributes & 7) << 6 self.srf[i] = char | (attr << 8) def set_foreground(self, attributes, color): for i in range(len(self.srf)): char = self.srf[i] attr = (char >> 8) char &= 0xFF # Set new foreground (saving background) attr &= 0b000000111 attr |= (color & 7) << 3 attr |= (attributes & 7) << 6 self.srf[i] = char | (attr << 8) def fill(self, char): (char, attributes, foreground, background) = char element = (attributes & 7) << 14 element |= (foreground & 7) << 11 element |= (background & 7) << 8 element |= (char & 0xFF) self.srf = [element] * (self.size[0] * self.size[1]) # Need to crop text lines? def dump(self, position, text, attributes, foreground, background): attributes = (attributes & 7) << 14 attributes |= (foreground & 7) << 11 attributes |= (background & 7) << 8 # Make surface index ind = (self.size[0] * (position[1] % self.size[1]) + (position[0] % self.size[0])) for itext in range(len(text)): self.srf[ind + itext] = (attributes << 8) | ord(text[itext]) def char_at(self, position): element = self.srf[(self.size[0] * (position[1] % self.size[1])) + (position[0] % self.size[0])] return (element & 0xFF, (element & 0b11100000000000000) >> 14, (element & 0b11100000000000) >> 11, (element & 0b11100000000) >> 8) def set_char(self, position, char): self.srf[(self.size[0] * (position[1] % self.size[1])) + (position[0] % self.size[0])] = ( (char[0] & 0xFF) | ((char[1] & 7) << 14) | ((char[2] & 7) << 11) | (char[3] & 7 << 8)) # Terminal class AsciiTerminal(AsciiSurface): def __init__(self, size = None): if size is None: size = self.__getConsoleSize() AsciiSurface.__init__(self, size) self.reset() def reset(self): self.__cls() self.attr = 0 self.fg_color = _BLACK self.bg_color = _WHITE self.fill((_SPC, self.attr, self.fg_color, self.bg_color)) self.frame() def maximize(self): size = self.__getConsoleSize() if (size != self.size): self.resize(size) self.frame() def frame(self): attribute = -1 self.__setCursorPos((0, 0)) for ind in range(len(self.srf)): char = self.srf[ind] new_attribute = (char & 0xFF00) if (new_attribute != attribute): attribute = new_attribute self.__set_attributes(attribute >> 8) sys.stdout.write(chr(char & 0xFF)) sys.stdout.flush() self.dirty = False def close(self, with_clear = False): self.__set_attributes(449) if with_clear: self.__cls() def __getConsoleSize(self): def ioctl_GWINSZ(fd): try: import fcntl, termios, struct, os cr = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234')) except: return None return cr cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2) if not cr: try: fd = os.open(os.ctermid(), os.O_RDONLY) cr = ioctl_GWINSZ(fd) os.close(fd) except: pass if not cr: try: cr = (env['LINES'], env['COLUMNS']) except: cr = (25, 80) return int(cr[1]), int(cr[0]) def __set_attributes(self, attrs): sys.stdout.write(_ESC + '[' + str((attrs & 0b111000000) >> 6)+ ';' + str(((attrs & 0b111000) >> 3) + _FG) + ';' + str((attrs & 0b111) + _BG) + 'm') sys.stdout.flush() def __setCursorPos(self, pos): sys.stdout.write(_ESC + '[' + str(pos[1] % self.size[1]) + ';' + str(pos[0] & self.size[0]) + 'f') sys.stdout.flush() def __cls(self): sys.stdout.write(_ESC + '[2J') sys.stdout.flush() if __name__ == '__main__': term = AsciiTerminal() term.set_background(0, _RED) term.frame() term.close()
18,838
737e4959f4028803b68e175d32a419988891ccb9
from __future__ import division import os import random import sys import logging import cv2 import fire import numpy as np import tensorflow as tf import tensorflow.contrib.metrics as metrics import time import pickle import commons from configs import VGGConf from networks import VGG16 from pystopwatch import StopWatchManager _log_level = logging.DEBUG _logger = logging.getLogger('ADNetRunner') _logger.setLevel(_log_level) ch = logging.StreamHandler(sys.stdout) ch.setLevel(_log_level) formatter = logging.Formatter('[%(asctime)s] [%(name)s] [%(levelname)s] %(message)s') ch.setFormatter(formatter) _logger.addHandler(ch) class VGGRunner: MAX_BATCHSIZE = 512 def __init__(self): self.tensor_input = tf.placeholder(tf.float32, shape=(None, 128, 128, 3), name='input') self.tensor_lb = tf.placeholder(tf.int32, shape=(None, ), name='lb_action') self.tensor_is_training = tf.placeholder(tf.bool, name='is_training') self.learning_rate_placeholder = tf.placeholder(tf.float32, [], name='learning_rate') config = tf.ConfigProto() #log_device_placement=True) self.persistent_sess = tf.Session(config=config) self.model = VGG16(self.learning_rate_placeholder) self.model.create_network(self.tensor_input, self.tensor_lb, self.tensor_is_training) #self.persistent_sess.run(tf.global_variables_initializer()) self.model.read_original_weights(self.persistent_sess) self.iteration = 0 self.imgwh = None self.loss = [] self.train, self.test =[], [] self.train_lb, self.test_lb = [], [] self.stopwatch = StopWatchManager() def read_train_test(self, data_path, is_train=True): path = commons.get_image_pathes(data_path) images, labels = commons.read_image_lb_path(path, is_train) train_f_num = VGGConf.g()['train_folder_num'] test_f_num = VGGConf.g()['test_folder_num'] f_num = train_f_num + test_f_num print(f_num) assert f_num == len(images) assert len(images) == len(labels) for idx in range(f_num): if idx < train_f_num: if not is_train: continue self.train.extend(images[idx]) self.train_lb.extend(labels[idx]) print("Train data is added") else: self.test.extend(images[idx]) self.test_lb.extend(labels[idx]) print("Test data is added") _temp = [0,0,0,0,0] for i, a in enumerate(self.train_lb): _temp[int(a)]+=1 print("Trainind Data Label Distribution: ", _temp) print("READING DATA IS COMPLETED") def label_index(self): label_array = np.array(self.test_lb) self.lb_idx = [] for i in range(5): self.lb_idx.append(list(np.where(label_array==i))) def run_train(self, data_path='./data'): train = pickle.load(open('train_img.txt','rb')) self.train, self.train_lb = [], [] for lb in range(5): self.train.extend(train[lb]) num_lb = len(train[lb]) self.train_lb.extend([lb]*num_lb) #self.read_train_test(data_path) train_num = len(self.train) train_index = list(range(train_num)) EPOCH = VGGConf.g()['epoch'] BATCH_SIZE = VGGConf.g()['minibatch_size'] BATCH_NUM = int(len(train_index)/BATCH_SIZE) - 1 learning_rate = VGGConf.g()['learning_rate'] print("START TO TRAIN") for epoch_iter in range(EPOCH): iter = 0 #if epoch_iter != 0 and epoch_iter % 100 ==0 : learning_rate *= 0.5 random.shuffle(train_index) #for i in range(5): random.shuffle(self.lb_idx[i]) for batch_iter in range(BATCH_NUM): batch_img = commons.choices_by_idx(self.train, train_index[iter*BATCH_SIZE: (iter+1)*BATCH_SIZE]) batch_lb = commons.choices_by_idx(self.train_lb, train_index[iter*BATCH_SIZE: (iter+1)*BATCH_SIZE]) _, loss = self.persistent_sess.run( [self.model.opt, self.model.loss], feed_dict={ self.tensor_input: np.array(batch_img)/255., self.tensor_lb: batch_lb, self.learning_rate_placeholder: learning_rate, self.tensor_is_training: True } ) print("{}/{} BATCH LOSS: {}".format(batch_iter, BATCH_NUM, np.sum(loss))) iter +=1 self.model.save_train_model(self.persistent_sess, VGGConf.g()['save_weight_dir']) self.run_test(weight_load=False) def run_test(self, weight_load=True, data_path='./data'): test = pickle.load(open('test_img.txt','rb')) self.test, self.test_lb = [], [] for lb in range(5): self.test.extend(test[lb]) num_lb = len(test[lb]) self.test_lb.extend([lb]*num_lb) MAX_BATCHSIZE = self.MAX_BATCHSIZE if weight_load: #self.read_train_test(data_path, is_train=False) self.model.read_original_weights(self.persistent_sess) test_num = len(self.test) if test_num % self.MAX_BATCHSIZE == 0 : test_batch_num = int(test_num / self.MAX_BATCHSIZE) else: test_batch_num = int(test_num / self.MAX_BATCHSIZE) + 1 test_output = [] test_idx = list(range(test_num)) test_iter = 0 print("START TO TEST") for batch_iter in range(test_batch_num): if batch_iter == test_batch_num - 1: batch_img = commons.choices_by_idx(self.test, test_idx[test_iter*MAX_BATCHSIZE:]) batch_lb = commons.choices_by_idx(self.test_lb, test_idx[test_iter*MAX_BATCHSIZE:]) else: batch_img = commons.choices_by_idx(self.test, test_idx[test_iter*MAX_BATCHSIZE: (test_iter+1)*MAX_BATCHSIZE]) batch_lb = commons.choices_by_idx(self.test_lb, test_idx[test_iter*MAX_BATCHSIZE: (test_iter+1)*MAX_BATCHSIZE]) output = self.persistent_sess.run( self.model.output, feed_dict={ self.tensor_input: np.array(batch_img)/255., self.tensor_lb: batch_lb, self.tensor_is_training: False } ) test_output.extend(output) test_iter +=1 pickle.dump(self.test_lb, open('./gt.txt', 'wb')) pickle.dump(test_output, open('./pred.txt', 'wb')) accuracy = 0.0 for idx, output in enumerate(test_output): max_idx = np.argmax(output) if max_idx == int(self.test_lb[idx]): accuracy+=1.0 accuracy = accuracy / (len(self.test_lb)) print("Test Accuracy: ", accuracy) def _get_features(self, samples): feats = [] for batch in commons.chunker(samples, ADNetRunner.MAX_BATCHSIZE): feats_batch = self.persistent_sess.run(self.adnet.layer_feat, feed_dict={ self.adnet.input_tensor: batch }) feats.extend(feats_batch) return feats # train_fc_finetune_hem self._finetune_fc( img, pos_boxes, neg_boxes, pos_lb_action, ADNetConf.get()['initial_finetune']['learning_rate'], ADNetConf.get()['initial_finetune']['iter'] ) self.histories.append((pos_boxes, neg_boxes, pos_lb_action, np.copy(img), self.iteration)) _logger.info('ADNetRunner.initial_finetune t=%.3f' % t) self.stopwatch.stop('initial_finetune') def __del__(self): self.persistent_sess.close() if __name__ == '__main__': VGGConf.get('./conf/conf.yaml') random.seed(1258) np.random.seed(1258) tf.set_random_seed(1258) fire.Fire(VGGRunner)
18,839
2b3b54ae787394a82f5e8e2c089948e8dc1be13b
import psycopg2, os, pickle import simplejson as json import pandas as pd from collections import defaultdict from classification_common import * from text_utils import * db='o360' username='ryan' hostname='192.168.11.31' def concept_export(): conn = psycopg2.connect(dbname=db, user=username, host=hostname) cur = conn.cursor() try: cur.execute("""select c.name concept_name, initcap(c.name) concept_display, enabled, cd.name domain_name, concept_terms, concept_x, concept_y from concept c inner join concept_terms ct on (ct.concept_id = c.id) inner join concept_domain cd on (cd.id = c.domain_id) inner join concept_xy xy on (xy.concept_name = c.name)""") rows = cur.fetchall() finally: cur.close() conn.close() concepts = [] for row in rows: concept_id = row[0] concept = {} concept['id'] = concept_id concept['name'] = row[1] concept['enabled'] = row[2] concept['domain'] = row[3] term_str = row[4] concept['terms'] = [ [ tw.split(';')[0], float(tw.split(';')[1]) ] for tw in term_str.split('|') ] concepts.append(concept) concept['concept_x'] = row[5] concept['concept_y'] = row[6] return concepts def build_series(concepts, vector_dir, min_score=.5): concept_series = defaultdict(lambda: []) for concept in concepts: print '\t', concept['id'] pos_concept = concept['id'] neg_concept = 'random' pipeline = pickle.load(open(concept_pipeline(pos_concept, neg_concept), 'rb')) classifier = pipeline.named_steps['classifier'] concept_series[pos_concept].append( ['Week', 'Signal'] ) vecfiles = os.listdir(vector_dir) vecfiles.sort() for vecfile in vecfiles: X_sel = pickle.load(open(vector_dir+'/'+vecfile, 'r')) tokens = vecfile.split('-') week_dir = '-'.join(tokens[:3]) probs = classifier.predict_proba(X_sel) pos_indices = [ i for i in range(X_sel.shape[0]) if probs[i,1] > min_score] range_pct = (len(pos_indices) / float(X_sel.shape[0])) * 100.0 concept_series[pos_concept].append( [week_dir, range_pct] ) return concept_series def append_concept_pcts(concepts): SIG_FILE = os.environ['NM_HOME']+'/Data/concept_percentages.csv' signals = {} df = pd.read_csv(SIG_FILE, index_col=0) for row in df.iterrows(): concept = row[0] digitalTotalPct = row[1][0] nmTotalPct = row[1][1] digital3month = row[1][2] nmRev3month = row[1][3] nmRevPct3month = row[1][4] nmRevDelta3Month = row[1][5] signals[concept] = (digitalTotalPct, nmTotalPct, digital3month, nmRev3month, nmRevPct3month, nmRevDelta3Month) for concept in concepts: ss = signals[ concept['id'] ] concept['digital_total_pct'] = ss[0] concept['nm_total_pct'] = ss[1] ###*** Temporary (see below) concept['3m_digital_pct'] = ss[2] concept['3m_nm_revenue'] = ss[3] concept['3m_nm_revenue_pct'] = ss[4] concept['3m_nm_delta_revenue'] = ss[5] return concepts def append_digital_series(concepts, vector_dir): print 'Building weekly series' signals = build_series(concepts, vector_dir) for concept in concepts: weekly_signal = signals[ concept['id'] ] smoothed_signal = pd.read_csv('/tmp/'+concept['id']+'-smooth-signal.csv') smoothed = [] smoothed.append(['Week', 'Signal']) for row in smoothed_signal.itertuples(): smoothed.append( [ row[1], row[2] ] ) #concept['series_weekly_digital'] = weekly_signal concept['smoothed_weekly_digital_pct'] = smoothed return concepts def append_saks_dress_pct(concepts): concept_dress = {} dress_df = pd.read_csv( os.environ['NM_HOME']+'/Data/nm_saks_pct.csv') for row in dress_df.itertuples(): concept = row[1] nm_pct = row[2] saks_pct = row[3] concept_dress[concept] = (nm_pct, saks_pct) for concept in concepts: ss = concept_dress[ concept['id'] ] concept['nm_product_pct'] = ss[0] concept['saks_product_pct'] = ss[1] return concepts def write_file(concepts, filename): with open(filename, 'w') as f: f.write(json.dumps(concepts, sort_keys=True, indent=4)) f.flush() VECTOR_DIR = os.environ['NM_HOME']+'/Data/Temporal/vectors' concepts = concept_export() concepts = append_concept_pcts(concepts) concepts = append_digital_series(concepts, VECTOR_DIR) concepts = append_saks_dress_pct(concepts) write_file(concepts, '/tmp/concept_export.json')
18,840
eda7d631cebc64db1c3c9347421a9a4bb9747e4c
import webbrowser, sys, pyperclip sys.argv # ['mapit.py', '200', 'elim nagar', 'perungudi'] #Check if commant line arguments were passed if len(sys.argv) > 1: # ['mapit.py', '200', 'elim nagar', 'perungudi'] -> ' 200 elim nagar perungui' address = ' '.join(sys.argv[1:]) else: address = pyperclip.paste() webbrowser.open('https://www.google.com/maps/place/' + address)
18,841
b3d86eaf26985d94d03b9d721e57e25383c34727
# !/usr/bin/env python # -*- coding:utf-8 -*- # project name: Android_Ui_Automation # author: "Lei Yong" # creation time: 2018/1/10 下午6:35 # Email: leiyong711@163.com import os import re def getDevices(): # 获取手机信息 def Info(): # 手机信息正则限制 def modified(name): try: reu = list(os.popen(name).readlines()) return re.findall('.*', reu[0])[0] # ([^\s\\\]+) except: return 'Get error' brand = modified('adb shell getprop ro.product.brand') # 读取手机品牌 phone_models = modified('adb shell getprop ro.semc.product.name') # 读取设备型号 deviceVersion = modified('adb shell getprop ro.build.version.release') # 读取设备系统版本号 readDeviceId = list(os.popen('adb devices').readlines()) # 读取设备 id devices = str(readDeviceId[1])[:-8] # 正则表达式匹配出 id 信息 # devices = re.findall(r'^\w*\b', readDeviceId[1])[0] # 正则表达式匹配出 id 信息 # if phone_models == '': # phone_models = u'获取失败' if not devices: devices = 'Get error' return brand, phone_models, deviceVersion, devices # 返回品牌、型号、系统版本、设备id # 得到运行内存 def men(devices): cmd = "adb -s "+devices+ " shell cat /proc/meminfo" get_cmd = os.popen(cmd).readlines() men_total = 0 men_total_str = "MemTotal" for line in get_cmd: if line.find(men_total_str) >= 0: men_total = line[len(men_total_str) +1:].replace("kB", "").strip() break ram = int(men_total) / 1024 return str(ram) + "MB" # 得到CPU核心数 def cpu(devices): cmd = "adb -s " +devices +" shell cat /proc/cpuinfo" get_cmd = os.popen(cmd).readlines() find_str = "processor" int_cpu = 0 for line in get_cmd: if line.find(find_str) >= 0: int_cpu += 1 return str(int_cpu) + "核" # 得到手机分辨率 def appPix(devices): try: result = os.popen("adb -s %s shell wm size" % devices, "r") return result.readline().split("Physical size:")[1] except: return 'Get error' # 获取电量 def batteryCapacity(): get_cmd = os.popen("adb shell dumpsys battery").readlines() for i in range(0, len(get_cmd)): a = str(get_cmd[i]) b = 'level' p = a.find(b) try: if p != -1: s = get_cmd[i].split('level') Battery = "".join(s).strip('\n').strip("'").strip(' : ') return int(Battery) except: return u'获取电量失败' return 'Get error' startPower = batteryCapacity() brand, model, systemVersion, deviceId = Info() # 返回品牌、型号、系统版本、设备id men = men(deviceId) cpu = cpu(deviceId) appPix = appPix(deviceId) x = ["brand = %s\nmodel = %s\nplatformName = Android\nsystemVersion = %s\ndeviceId = %s\nmen = %s\ncpu = %s\nappPix = %s\nstartPower = %s\n" % (brand, model, systemVersion, deviceId, men, cpu, appPix, startPower)] with open("../config/app.conf", "a") as f: # 写出应用配置信息 f.write("\n[phoneConf]\n") for i in x: f.write(i) # 获取启动类 if __name__ == '__main__': getDevices()
18,842
10d5b45b8e1ed3f4996554b0575a0e25e7580099
import sublime, sublime_plugin _start = -1 class StartSelection(sublime_plugin.TextCommand): def run(self, edit): global _start for sel in self.view.sel(): if sel.empty(): _start = sel.begin() class EndSelection(sublime_plugin.TextCommand): def run(self, edit): global _start start = _start end = -1 for sel in self.view.sel(): if sel.empty(): end = sel.begin() if start != -1 and end != -1: self.view.sel().clear() self.view.sel().add(sublime.Region(start, end))
18,843
baf7e27310fe7b9f191ea1566fb7a2edbb459a81
import pymongo ###Connection myclient = pymongo.MongoClient("mongodb://localhost:27017/") mydb = myclient["mydatabase"] # Db mycol = mydb["customers"] #table x = mycol.find({},{ "_id": 0, "name": 1, "address": 1 }) # x = mycol.find({},{ "address": 0 }) for y in x: print(y)
18,844
8106d062f12b060461a7d9cea7969dae412cd6a7
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations import locality.models class Migration(migrations.Migration): dependencies = [ ('locality', '0001_initial'), ] operations = [ migrations.CreateModel( name='Ballot', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('date', models.DateField(default=None, help_text=b'The day of the election.', null=True)), ('locality', models.ForeignKey(to='locality.Locality')), ], options={ 'ordering': ('date', 'locality__name', 'locality__short_name'), }, ), migrations.CreateModel( name='BallotItem', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('contest_type', models.CharField(help_text=b'Office if the contest is for a person, referendum if the contest is for an issue.', max_length=1, choices=[(b'R', b'Referendum'), (b'O', b'Office')])), ], options={ 'ordering': ('ballot__date', 'ballot__locality__short_name', 'ballot__locality__name'), }, bases=(models.Model, locality.models.ReverseLookupStringMixin), ), migrations.CreateModel( name='BallotItemSelection', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ], options={ 'ordering': ('ballot_item__ballot__date', 'ballot_item__ballot__locality__short_name', 'ballot_item__ballot__locality__name'), }, bases=(models.Model, locality.models.ReverseLookupStringMixin), ), migrations.CreateModel( name='Office', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('name', models.CharField(help_text='The office name.', max_length=255)), ('description', models.CharField(help_text='The office description.', max_length=1024)), ('locality', models.ForeignKey(to='locality.Locality')), ], options={ 'ordering': ('locality__short_name', 'locality__name', 'name'), }, ), migrations.CreateModel( name='Party', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('photo_url', models.ImageField(default=None, null=True, upload_to=b'', blank=True)), ('website_url', models.URLField(default=None, null=True, blank=True)), ('facebook_url', models.URLField(default=None, null=True, blank=True)), ('twitter_url', models.URLField(default=None, null=True, blank=True)), ('name', models.CharField(help_text='The party name.', max_length=255)), ], options={ 'ordering': ('name',), 'verbose_name_plural': 'parties', }, ), migrations.CreateModel( name='Candidate', fields=[ ('ballotitemselection_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='ballot.BallotItemSelection')), ('photo_url', models.ImageField(default=None, null=True, upload_to=b'', blank=True)), ('website_url', models.URLField(default=None, null=True, blank=True)), ('facebook_url', models.URLField(default=None, null=True, blank=True)), ('twitter_url', models.URLField(default=None, null=True, blank=True)), ('first_name', models.CharField(default=None, max_length=255, null=True, help_text="The person's first name.")), ('middle_name', models.CharField(default=None, max_length=255, null=True, help_text="The person's middle name.", blank=True)), ('last_name', models.CharField(help_text="The person's last name.", max_length=255)), ], options={ 'ordering': ('ballot_item__ballot__date', 'ballot_item__ballot__locality__short_name', 'ballot_item__ballot__locality__name', 'office_election__office__name', 'last_name', 'first_name', 'middle_name'), }, bases=('ballot.ballotitemselection', models.Model), ), migrations.CreateModel( name='OfficeElection', fields=[ ('ballotitem_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='ballot.BallotItem')), ('office', models.ForeignKey(to='ballot.Office')), ], options={ 'ordering': ('ballot__date', 'ballot__locality__short_name', 'ballot__locality__name', 'office__name'), }, bases=('ballot.ballotitem',), ), migrations.CreateModel( name='Referendum', fields=[ ('ballotitem_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='ballot.BallotItem')), ('photo_url', models.ImageField(default=None, null=True, upload_to=b'', blank=True)), ('website_url', models.URLField(default=None, null=True, blank=True)), ('facebook_url', models.URLField(default=None, null=True, blank=True)), ('twitter_url', models.URLField(default=None, null=True, blank=True)), ('title', models.CharField(help_text='The referendum title', max_length=255)), ('number', models.CharField(default=None, max_length=5, null=True, help_text="The referendum's number or letter.")), ], options={ 'ordering': ('ballot__date', 'ballot__locality__short_name', 'ballot__locality__name', 'number', 'title'), }, bases=('ballot.ballotitem', models.Model), ), migrations.CreateModel( name='ReferendumSelection', fields=[ ('ballotitemselection_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='ballot.BallotItemSelection')), ('photo_url', models.ImageField(default=None, null=True, upload_to=b'', blank=True)), ('website_url', models.URLField(default=None, null=True, blank=True)), ('facebook_url', models.URLField(default=None, null=True, blank=True)), ('twitter_url', models.URLField(default=None, null=True, blank=True)), ('in_favor', models.NullBooleanField(default=None)), ], options={ 'abstract': False, }, bases=('ballot.ballotitemselection', models.Model), ), migrations.AddField( model_name='ballotitemselection', name='ballot_item', field=models.ForeignKey(to='ballot.BallotItem'), ), migrations.AddField( model_name='ballotitem', name='ballot', field=models.ForeignKey(related_name='ballot_items', to='ballot.Ballot'), ), migrations.AddField( model_name='candidate', name='office_election', field=models.ForeignKey(to='ballot.OfficeElection'), ), migrations.AddField( model_name='candidate', name='party', field=models.ForeignKey(default=None, blank=True, to='ballot.Party', null=True), ), ]
18,845
416754307d4c3233c246de5b77db5b7e8c18990d
__author__ = 'ejanlav' from abc import ABCMeta, abstractmethod class ChromosomeFactory: __metaclass__ = ABCMeta @abstractmethod def create_random_chromosome(self): pass @abstractmethod def create_chromosome(self, bits): pass
18,846
833d578fefa9e3f7d3bc7d0309fa08627b113227
print('Hello, Welcome to the Radian Counter') degrees = input('Please input your angle here : ') radian = float(degrees) * 3.14 / 180 print('Your radian is', radian) print('Thankyou for using Radian Converter')
18,847
987d6601c4e86288d19de9d731662f8a450c17b9
#for문 _ 인덱스 이용4 my_list = [100, 200, 400, 800] for i in range(len(my_list) -1): print(my_list[i+1]-my_list[i])
18,848
9bd8101702fce9f3ba17da0fd1bbcdec3fabc867
import boto3 import smtplib import pandas as pd from time import strftime from extData.sele_v2 import dataExt from em.ol.olProps import olProps_var from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from aws.meyita.props.pgprodConProps import pgprod_prop class morningPending(): def __init__(self): # connection string reference to rds con = pgprod_prop() # Query determines the hight of pending loans right before funding occurs qry_Pend = """ select pd, cntformer, sumformer, cntnewdm, sumnewdm, cntnew, sumnew, cnttotal, sumtotal FROM <table> WHERE sumtotal = ( SELECT DISTINCT max(sumtotal) FROM <table name> WHERE pd = current_date --WHERE pd = '2019-01-29' AND ph in (4,5,6,7)) AND pd = current_date; """ # pandas dataframe df_Pend = pd.read_sql_query(qry_Pend, con.pgprodcon) df_Pend = df_Pend.drop_duplicates() self.cntFormer = format(int(df_Pend['cntformer']), ',') self.revFormerTotal = format(int(df_Pend['sumformer']), ',') self.cnt_new_dm_Total = format(int(df_Pend['cntnewdm']), ',') self.revNew_dm_Total = format(int(df_Pend['sumnewdm']), ',') self.cntNewTotal = format(int(df_Pend['cntnew']), ',') self.revNewTotal = format(int(df_Pend['sumnew']), ',') self.cntTotal = format(int(df_Pend['cnttotal']), ',') self.revFundedTotal = format(int(df_Pend['sumtotal']), ',') self.calcPendingTotal = int(df_Pend['sumtotal']) def mornPending_var(): return mornPending() # Get, Set CVF from previous day class mornCVF(): # if the value of CVF is null or an error then it will auto assign $50,000 def __init__(self): # connection string reference to rds con = pgprod_prop() # Retrieves the cvf from the previous night qry_mornCVF = """ select ulday, sumh from <table name> where ulday = current_date - 1; """ # pandas dataframe df_mornCVF = pd.read_sql_query(qry_mornCVF, con=con.pgprodcon) df_mornCVF = df_mornCVF.drop_duplicates() try: blankIndex = [''] * len(df_mornCVF) df_mornCVF.index = blankIndex self.sumH = df_mornCVF['sumh'].astype(float) except Exception as e: print("CVF calculation error: " + str(e)) self.sumH = float(50000) def mornCVF_var(): return mornCVF() # Get, Set 4 am added loans sumtotal from previous day class morn4amloansTotal(): def __init__(self): # Retrieves the 4 am added loans con = pgprod_prop() qry_4amloans = """select max(sumtotal) as sumtotal from <table name>s where pd = current_date""" fourDF = pd.read_sql_query(sql=qry_4amloans, con=con.pgprodcon) fourDF = fourDF.drop_duplicates() try: blankIndex = [''] * len(fourDF) fourDF.index = blankIndex self.fourAMAddedLoansSumtotal = fourDF['sumtotal'] except Exception as e: print("4 am clac error: " + str(e)) #print(fourDF['sumtotal']) def morn4amloansTotal_var(): return morn4amloansTotal() # Get, Set 5 am added loans sumtotal from previous day class morn5amloansTotal(): def __init__(self): # Retrieves the 5 am added loans con = pgprod_prop() qry_5amloans = """select max(sumtotal) as sumtotal from <table name> where pd = current_date""" fiveDF = pd.read_sql_query(sql=qry_5amloans, con=con.pgprodcon) fiveDF = fiveDF.drop_duplicates() try: blankIndex = [''] * len(fiveDF) fiveDF.index = blankIndex self.fiveAMAddedLoansSumtotal = fiveDF['sumtotal'] except Exception as e: print("5 am clac error: " + str(e)) def morn5amloansTotal_var(): return morn5amloansTotal() # Get, Set 6 am added loans sumtotal from previous day class morn6amloansTotal(): def __init__(self): # Retrieves the 5 am added loans con = pgprod_prop() qry_6amloans = """select max(sumtotal) as sumtotal from <table name> where pd = current_date""" sixDF = pd.read_sql_query(sql=qry_6amloans, con=con.pgprodcon) sixDF = sixDF.drop_duplicates() try: blankIndex = [''] * len(sixDF) sixDF.index = blankIndex self.sixAMAddedLoansSumtotal = sixDF['sumtotal'] except Exception as e: print("6 am clac error: " + str(e)) def morn6amloansTotal_var(): return morn6amloansTotal() # download raw and upload aggrigates to rds def morn4amLoansDLUL(): dataExt(turl=["Loan_Search2","exit"]) #print('Starting morning forecast') var = pgprod_prop() con = var.pgprodcon cursor = con.cursor() try: cd = strftime("%m/%d/%Y") tr = cd + ' 04' lsRaw = "<file path>" df = pd.read_csv("<file path>", index_col='Loan#') df['Loan Amount'] = df[df.columns[10]].replace('[\$,]', '', regex=True).astype(float) newLoans = df[df['Loan Date/Time'].str.contains(tr)].sum().fillna(0)['Loan Amount'] lsCalc = newLoans qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalc) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: #print("4 am Loans failed: " + str(e)) try: day = strftime("%d") month = strftime("%m") year = strftime("%Y") date = year + "-" + month + "-" + day lsCalce = int(0) qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalce) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: print("Back up 4 am Loans failed: " + str(e)) def morn5amLoansDLUL(): dataExt(turl=["Loan_Search2","exit"]) #print('Starting morning forecast') var = pgprod_prop() con = var.pgprodcon cursor = con.cursor() try: cd = strftime("%m/%d/%Y") tr = cd + ' 05' lsRaw = "C<file path>" df = pd.read_csv("<file path>", index_col='Loan#') df['Loan Amount'] = df[df.columns[10]].replace('[\$,]', '', regex=True).astype(float) newLoans = df[df['Loan Date/Time'].str.contains(tr)].sum().fillna(0)['Loan Amount'] lsCalc = newLoans #print(lsCalc) qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalc) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: print("5 am Loans failed: " + str(e)) try: day = strftime("%d") month = strftime("%m") year = strftime("%Y") date = year + "-" + month + "-" + day lsCalce = int(0) qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalce) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: print("Back up 5 am Loans failed: " + str(e)) def morn6amLoansDLUL(): dataExt(turl=["Loan_Search2","exit"]) #print('Starting morning forecast') var = pgprod_prop() con = var.pgprodcon cursor = con.cursor() try: cd = strftime("%m/%d/%Y") tr = cd + ' 06' lsRaw = "<csv file location>" df = pd.read_csv("<csv file location>", index_col='Loan#') df['Loan Amount'] = df[df.columns[10]].replace('[\$,]', '', regex=True).astype(float) newLoans = df[df['Loan Date/Time'].str.contains(tr)].sum().fillna(0)['Loan Amount'] lsCalc = newLoans #print(lsCalc) qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalc) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: print("6 am Loans failed: " + str(e)) try: day = strftime("%d") month = strftime("%m") year = strftime("%Y") date = year + "-" + month + "-" + day lsCalce = int(0) qryrf = """ INSERT INTO <table name> (pd,sumtotal) VALUES (current_date,""" + str(lsCalce) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() except Exception as e: print("Back up 6 am Loans failed: " + str(e)) # Morning Forecast Calculation class mornForecastCalc(): def __init__(self): #print("Start Morning Forecast") if morn4amloansTotal_var().fourAMAddedLoansSumtotal is None : addL4 = 0 else: addL4 = morn4amloansTotal_var().fourAMAddedLoansSumtotal if morn5amloansTotal_var().fiveAMAddedLoansSumtotal is None: addL5 = 0 else: addL5 = morn5amloansTotal_var().fiveAMAddedLoansSumtotal if morn6amloansTotal_var().sixAMAddedLoansSumtotal is None: addL6 = 0 else: addL6 = morn6amloansTotal_var().sixAMAddedLoansSumtotal cvf = mornCVF_var().sumH mp = mornPending_var().calcPendingTotal #print("4 am added loans: " + str(addL4)) #print("5 am added loans: " + str(addL5)) #print("6 am added loans: " + str(addL6)) #print("CVF total: " + str(cvf)) #print("Pending total: " + str(mp)) addedLoans = [addL4, addL5, addL6] hrR = max(addedLoans, key=lambda item:item[0]) print('Loans Added per Hour') print(hrR) totalHrR = hrR * 8 print('Total loans per hour') print(totalHrR) print('cfv') print(cvf) #print("added by hour: " + str(hrR)) self.morningFundingForecast = ((hrR * 8) + mp) + cvf print("morning forecast is: " + str(self.morningFundingForecast)) def mornForecastCalc_var(): return mornForecastCalc() # Load Morning Forecast to rds table def mornforecastUL(): var = pgprod_prop() con = var.pgprodcon cursor = con.cursor() mf = int(mornForecastCalc_var().morningFundingForecast) qryrf = """ INSERT INTO <table name> (pd,mornforecast) VALUES (current_date,""" + str(mf) + """) """ cursor.execute(qryrf) con.commit() cursor.close() con.close() # mornforecast DynamoDB UL def mornforecastDynamoDBUL(): cd = strftime("%Y-%m-%d") mf = int(mornForecastCalc_var().morningFundingForecast) sesh = boto3.Session() dynamodb = sesh.resource('dynamodb', region_name="us-east-2") table = dynamodb.Table('<table name>') table.put_item( Item={ "uldate":cd, "mornforecast": mf } ) print("Successfully updated mornforecast table in dynamoDB") # risk forecast class mornRiskCalc(): def __init__(self): con = pgprod_prop() print('initiating risk forecast') qry_rf = """ SELECT * FROM <table name> WHERE CAST(fdate as date) = current_date; """ # risk forecast rfDF = pd.read_sql_query(qry_rf, con.pgprodcon) self.rfTotal = format(int(rfDF['ftotal']), ',') #print('rftotal') print(self.rfTotal) def mornRiskCalc_var(): return mornRiskCalc() # email report def morningFundingReportEM(): msg = MIMEMultipart() recpSolo = ["<Your email>"] recpTest = ["<your test distro>"] recp = ["<your distro list>"] sender = "<your email address>" msg['To'] = ", ".join(recpSolo) msg['From'] = sender msg['Subject'] = "<your subject line>" bodyORG = MIMEText(""" <html>You HTML for the email.</html> """, 'html', 'utf-8') msg.attach(bodyORG) olp = olProps_var() s = smtpserver = smtplib.SMTP("smtp-mail.outlook.com", 587) smtpserver.ehlo() smtpserver.starttls() smtpserver.login(olp.MSUS, olp.MSPS) s.sendmail(sender, recpSolo, msg.as_string()) print('done!') s.close()
18,849
93318111f44618e4453e61f0097f691ff3c1103d
from django.contrib import admin # Register your models here. from administration.models import Etudiant, Promotion,Departement,Personnel,Filiere,Specialite,Classe,Enseignent class EtudiantAdmin(admin.ModelAdmin): exclude = ('profil',) fields = (('nom', 'prenom'),('telephon','email'),('ine','classe','promotion'),('cni','user')) list_display = ('nom', 'prenom','telephon','email', 'ine','classe') list_filter = ('classe','classe__specialite','classe__specialite__filiere') search_fields = ('ine', 'nom', 'prenom') class EnseignentAdmin(admin.ModelAdmin): exclude = ('profil',) fieldsets = ( ("Information Personnelle", { 'fields': ('nom', 'prenom', 'cni','user') }), ('Information Suplémentaire', { 'classes': ('wide ', 'extrapretty'), 'fields': ('telephon','email','departement'), }), ) list_display = ('nom', 'prenom', 'cni','telephon','email','departement','profil') list_filter = ('departement',) search_fields = ('cni', 'nom', 'prenom') class ClasseAdmin(admin.ModelAdmin): exclude = ('code',) list_display = ('code', 'anneeScolaire', 'specialite') list_filter = ('specialite','specialite__filiere') search_fields = ('code','anneeScolaire') class SpecialiteAdmin(admin.ModelAdmin): exclude = ('code',) list_display = ('code', 'nom', 'filiere') list_filter = ('filiere','filiere__departement') search_fields = ('code', 'nom') class FiliereAdmin(admin.ModelAdmin): exclude = ('code',) list_display = ('code', 'nom', 'departement') list_filter = ('departement',) search_fields = ('code', 'nom') class DepartementAdmin(admin.ModelAdmin): exclude = ('code',) list_display = ('code', 'nom') search_fields = ('code', 'nom') class PromotionAdmin(admin.ModelAdmin): exclude = ('code',) list_display = ('code', 'nom') search_fields = ('code', 'nom') class PersonnelAdmin(admin.ModelAdmin): exclude = ('profil',) fields = (('nom', 'prenom'),('telephon','email'),('cni','user')) list_display = ('nom', 'prenom','telephon','email','cni','profil','user') admin.site.register(Personnel, PersonnelAdmin) admin.site.register(Etudiant, EtudiantAdmin) admin.site.register(Enseignent, EnseignentAdmin) admin.site.register(Classe, ClasseAdmin) admin.site.register(Specialite, SpecialiteAdmin) admin.site.register(Filiere, FiliereAdmin) admin.site.register(Departement, DepartementAdmin) admin.site.register(Promotion, PromotionAdmin)
18,850
bf4ec1aff600f2fb28cab38f5916e6519f42b3d0
# baekjoon source = "https://www.acmicpc.net/problem/10951" while True: try: a,b = map(int,input().split()) except: break print(a+b)
18,851
18cc07319531661afb280cbc09f13f16da90e6cb
# Generated by Django 3.0.8 on 2020-07-22 12:22 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("basket", "0008_auto_20190926_1547"), ] operations = [ migrations.AddField( model_name="line", name="date_updated", field=models.DateTimeField( auto_now=True, db_index=True, verbose_name="Date Updated" ), ), ]
18,852
0044dc5d9b625fc015164d9bac2013e90decbb2a
import pandas as pd ## for Data Studio , I've to generate another csv because Data Studio works with only Lat/Long. ## So, generate csv then join Lat/Long columns into one with comma separated. cols_to_keep = ['Town_Name_MMR','Tsp_Pcode','Longitude', 'Latitude'] df2 = pd.read_excel('./pcode_9_2.xlsx', sheet_name='04_Town', engine='openpyxl') df2 = df2[cols_to_keep] print(df2.shape) ## drop duplicated Tsp_pcode rows df2 = df2.drop_duplicates(subset = ['Tsp_Pcode']) df2['combined'] = df2[['Latitude','Longitude']].apply(lambda x: ",".join(x.values.astype(str)), axis=1) df2 = df2.dropna() #print(df2.shape) #df2.to_csv(r'.\df2.csv') #print(df2.head()) ## previous data reading df3 = pd.read_csv("edit_pcode.csv", encoding='utf-8') ## Remove (South)/(East),etc extra word from First_sr column df3['First_sr'] = df3['First_sr'].replace(regex=[r'\(\w+\)'], value='').str.strip() print(pd.unique(df3['First_sr'])) #print(df3.shape) #print(df3.head()) merged = pd.merge(df3, df2, on='Tsp_Pcode', how='inner') print(merged.shape) #print(merged.columns) #merged.to_csv(r'.\pcode_studio.csv')
18,853
26387dbc7b571f51132f502b771c06474fec6622
str='y' while(str=='y' or str=='Y'): src=int(input("Enter the Source:")) des=int(input("Enter the Destination:")) total_km=des-src print("Total kilometer is:",total_km,"km") print("1.Micro","2.Micro","3.Prime") c=int(input("Make ur choice:")) if(c==1): money=total_km*10 print("The cost for your travel is:",money,"Rs") elif(c==2): money=total_km*20 print("The cost for your travel is:",money,"Rs") elif(c==3): money=total_km*30 print("The cost for your travel is:",money,"Rs") else: print("Please make a choice") str=input("Do u want to continue(y/n)?")
18,854
79cd8ce36cb90e19cc34f07cc113ddc79875603a
import cv2 import dlib import os import sys import numpy as np def rect_to_bb(rect): x = rect.left() y = rect.top() w = rect.right() - x h = rect.bottom() - y left = int(x + w/2 - 128) right = left + 256 top = 0 bottom = 256 return (left, top, right, bottom) def resize(image, width=456): r = width * 1.0 / image.shape[1] dim = (width, int(image.shape[0] * r)) resized = cv2.resize(image, dim, interpolation=cv2.INTER_AREA) return resized image_root = '/home/work_nfs3/xswang/data/avatar/Obama/clip/select/images/' save_root = '/home/work_nfs3/xswang/data/avatar/Obama/clip/select/images_crop/' detector = dlib.get_frontal_face_detector() predictor = dlib.shape_predictor("/home/work_nfs3/xswang/data/avatar/Obama/data_processing_code/shape_predictor_68_face_landmarks.dat") names = os.listdir(image_root) i = 0 total = len(names) log_file = 'log/crop_image.text' for name in names: i += 1 file_path = os.path.join(image_root,name) save_file = os.path.join(save_root,name) if not os.path.exists(save_file): os.mkdir(save_file) image_names = os.listdir(file_path) first_path = os.path.join(file_path,image_names[0]) first_image = cv2.imread(first_path) first_image = resize(first_image, width=456) gray = cv2.cvtColor(first_image, cv2.COLOR_BGR2GRAY) rect = detector(gray, 1) try: x1,y1,x2,y2 = rect_to_bb(rect[0]) px1,py1,px2,py2 = x1,y1,x2,y2 except: x1,y1,x2,y2 = px1,py1,px2,py2 pass if abs(x1-x2)<10 or abs(y1-y2)<10: x1,y1,x2,y2 = px1,py1,px2,py2 for image_name in image_names: save_path = os.path.join(save_file,image_name) image_path = os.path.join(file_path,image_name) image = cv2.imread(image_path) image = resize(image, width=456) crop_img = image[y1:y2,x1:x2] cv2.imwrite(save_path, crop_img) info = 'processed the %d of total %d image'%(i,total) print(info) # if i % 10 == 0 or i == total: # with open(log_file,'a') as f: # f.writelines(info)
18,855
70cbf599bf231adaad6cd2b9e951b4de259be161
from sklearn import svm import numpy as np import matplotlib.pyplot as plt def main(): data=np.loadtxt('nonlinsep.txt',dtype='float',delimiter=',') X=data[:,0:2] Y=data[:,2] clf = svm.SVC(kernel='rbf',degree=2) clf.fit(X, Y) print("Intercept:") print(clf.intercept_) print("Weights:") print(clf.dual_coef_[0]) h=0.02 fignum=2 x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1 y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1 xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h)) Z = clf.predict(np.c_[xx.ravel(), yy.ravel()]) Z=Z.reshape(xx.shape) plt.figure(fignum, figsize=(4, 3)) #plt.pcolormesh(xx, yy, Z, cmap=plt.cm.Paired) plt.contour(xx, yy, Z, colors=['k', 'k', 'k'], linestyles=['--', '-', '--'], levels=[-.5, 0, .5]) plt.scatter(X[:, 0], X[:, 1], c=Y, cmap=plt.cm.Paired, edgecolors='k') plt.xlim(x_min, x_max) plt.ylim(y_min, y_max) plt.axis('tight') plt.show() if __name__ == "__main__": main()
18,856
b23f950a6c0f88d1577a42bfad3c8716f9fb35e4
# credits: https://www.kaggle.com/guglielmocamporese/macro-f1-score-keras # https://stackoverflow.com/questions/58931078/how-to-replace-certain-parts-of-a-tensor-on-the-condition-in-keras/58931377#58931377 def f1(y_true, y_pred, dtype="float32"): dtype = "float32" y_pred = K.cast(y_pred, dtype) y_true = K.cast(y_true, dtype) y_pred = K.cast(K.greater(K.clip(y_pred, 0, 1), THRESHOLD), dtype) tp = K.sum(y_true * y_pred, axis=0) tn = K.sum(K.cast((1 - y_true) * (1 - y_pred), dtype), axis=0) fp = K.sum(K.cast((1 - y_true) * y_pred, dtype), axis=0) fn = K.sum(K.cast(y_true * (1 - y_pred), dtype), axis=0) p = K.cast(tp / (tp + fp + K.epsilon()), dtype) r = K.cast(tp / (tp + fn + K.epsilon()), dtype) diff = 2 * p * r suma = p + r + K.epsilon() d0 = K.equal(diff, 0) s0 = K.equal(suma, 0) # sum zeros are replaced by ones on division rel_dev = diff / K.switch(s0, K.ones_like(suma), suma) rel_dev = K.switch(d0 & s0, K.zeros_like(rel_dev), rel_dev) try: # ~ is the bitwise complement operator in python which essentially calculates (-x - 1) rel_dev = K.switch(-d0 - 1 & s0, K.sign(diff), rel_dev) except: rel_dev = K.switch(~d0 & s0, K.sign(diff), rel_dev) f1 = rel_dev return K.cast(K.mean(f1), dtype) # some basic useless model def create_model(input_shape): model = Sequential() model.add(Conv2D(8, (3, 3), activation="relu", input_shape=input_shape)) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Conv2D(16, (3, 3), activation="relu")) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Conv2D(32, (3, 3), activation="relu")) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Conv2D(64, (3, 3), activation="relu")) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Conv2D(128, (3, 3), activation="relu")) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Conv2D(256, (3, 3), activation="relu")) model.add(BatchNormalization(axis=-1)) model.add(MaxPooling2D(pool_size=(2, 2))) model.add(Dropout(0.25)) model.add(Flatten()) model.add(Dropout(0.5)) # model.add(Dense(28)) # model.add(Activation('relu')) # model.add(Dropout(0.1)) model.add(Dense(28)) model.add(Activation("sigmoid")) return model
18,857
2b55f0eaacd01cbbb313c759591ef596cdeb1548
import threading import logging import uuid import events import queue import helpers import socket from config_wrapper import config from critical_section_leaver import CriticalSectionLeaver from painter import DrawingQueueEvent from message_sender import MessageSender from dummy_message_sender import DummyMessageSender import json logger = logging.getLogger(__name__) class ModelThread(threading.Thread): def __init__(self, event_queue, paint_queue, time_offset, init_data=None, init_connection=None): super(ModelThread, self).__init__() # Queues self.event_queue = event_queue self.paint_queue = paint_queue #Event handling self.handlers = {} self.initialize_handlers() # Unique uuid identifying clients in the network self.uuid = uuid.uuid4().hex # Flag indicating weather we want to enter critical section when the token comes self.want_to_enter_critical_section = False # Information about critical section like the timestamp and client uuid which is in the section self.critical_section = None # Time offset between ntp server and local time self.time_offset = time_offset # Value of the last token we have received self.last_token = None # Initial board state self.board_state = [[0 for _ in range(config.getint('Tkinter', 'CanvasY'))] for _ in range(config.getint('Tkinter', 'CanvasX'))] # If we are the first client if not init_data: self.next_hop_info = None self.next_next_hop_info = None self.sending_queue = None self.message_sender = None self.predecessor = None self.last_token = 0 else: self.next_hop_info = init_data['next_hop'] if not init_data['next_next_hop']: # If there is no next_next_hop init data in the response we are the second client so we set # next next hop as our address self.next_next_hop_info = (helpers.get_self_ip_address(), config.getint('NewPredecessorListener', 'Port')) else: # If there are more thant two clients we set the value from the response self.next_next_hop_info = init_data['next_next_hop'] # Address of our predecessor self.predecessor = init_connection.getsockname() # We initialize connection to our next hop and we start sending queue ip, port = init_data['next_hop'] s = socket.create_connection((ip, port)) self.sending_queue = queue.Queue(maxsize=0) self.message_sender = MessageSender(self.event_queue, self.sending_queue, s) self.message_sender.start() self.initialize_board(init_data['board_state']) if init_data['critical_section_state']: self.critical_section = init_data['critical_section_state'] self.paint_queue.put({'type': DrawingQueueEvent.BOARD_CLOSED}) # We signal that client has initialized properly init_connection.shutdown(1) init_connection.close() # We start a dummy message sender event which will create dummy messages to detect connection breaks self.dummy_message_sender = DummyMessageSender(self.event_queue, self.uuid) self.dummy_message_sender.start() def run(self): while True: (e) = self.event_queue.get() handler_function = self.handlers[type(e).__name__] handler_function(e) def initialize_board(self, board_state): for counter in (len(board_state)): x_coord, y_coord = board_state[counter] try: self.board_state[x_coord][y_coord] = 1 except IndexError: return self.paint_queue.put({'type': DrawingQueueEvent.DRAWING, 'data': (board_state, 1)}) def initialize_handlers(self): # Inner Handlers self.handlers['InnerNewClientRequestEvent'] = self.handle_new_client_request self.handlers['InnerNewPredecessorRequestEvent'] = self.handle_new_predecessor_request_event self.handlers['InnerDrawingInformationEvent'] = self.handle_inner_draw_information_event self.handlers['InnerWantToEnterCriticalSection'] = self.inner_handle_want_to_enter_critical_section_event self.handlers['InnerLeavingCriticalSection'] = self.inner_leaving_critical_section_event self.handlers['InnerNextHopBroken'] = self.inner_next_hop_broken_event # Outter handlers self.handlers['DrawingInformationEvent'] = self.handle_drawing_information_event self.handlers['EnteredCriticalSectionEvent'] = self.handle_entering_critical_section self.handlers['LeavingCriticalSectionEvent'] = self.handle_leaving_critical_section self.handlers['TokenPassEvent'] = self.handle_token_pass_event self.handlers['NewNextNextHop'] = self.handle_new_next_next_hop_event self.handlers['TokenReceivedQuestionEvent'] = self.handle_token_received_question_event self.handlers['DummyMessageEvent'] = self.handle_dummy_message_event ############################################################################################ # # Inner Event handlers ############################################################################################ def handle_inner_draw_information_event(self, event): def draw_points(event): color = event.data['color'] points = event.data['points'] try: for point in points: x,y = point self.board_state[x][y] = color except IndexError as e: return self.paint_queue.put({'type': DrawingQueueEvent.DRAWING, 'data': (points, color)}) if (self.sending_queue): self.sending_queue.put( events.DrawingInformationEvent(self.uuid, helpers.get_current_timestamp(), points, color)) if not self.critical_section: draw_points(event) elif self.critical_section['timestamp'] > event.data['timestamp']: draw_points(event) elif self.critical_section['client_uuid'] == self.uuid: draw_points(event) elif self.critical_section['client_uuid'] != self.uuid: pass def inner_handle_want_to_enter_critical_section_event(self, _): self.want_to_enter_critical_section = True def inner_leaving_critical_section_event(self, _): self.critical_section = None self.paint_queue.put({"type": DrawingQueueEvent.BOARD_OPEN}) if self.sending_queue: self.sending_queue.put(events.LeavingCriticalSectionEvent(helpers.get_current_timestamp(), self.uuid)) self.sending_queue.put(events.TokenPassEvent(self.last_token)) else: self.event_queue.put(events.LeavingCriticalSectionEvent(helpers.get_current_timestamp(), self.uuid)) self.event_queue.put(events.TokenPassEvent(self.last_token)) def inner_next_hop_broken_event(self, _): # If we detect that the next hop connection is down we want to: # 1.Try to reconnect to the client # 2.If reconnect fails we want to connect to our next next hop # 3.When we succesfully connect to our next next hop we want to send recovery token question # in case that the dead client was holding the token the moment he died ip, port = self.next_next_hop_info # If we are the only client left we reset the data to the initial state if ip == helpers.get_self_ip_address(): self.critical_section = None self.next_hop_info = None self.next_next_hop_info = None if self.message_sender: self.message_sender.stop() self.sending_queue = None self.message_sender = None self.predecessor = None self.last_token = 0 self.paint_queue.put({'type': DrawingQueueEvent.BOARD_OPEN}) return def connect_to_next_next_hop(self): ip, port = self.next_next_hop_info try: s = socket.create_connection((ip, port)) self.sending_queue = queue.Queue(maxsize=0) self.message_sender = MessageSender(self.event_queue, self.sending_queue, s) self.message_sender.start() self.next_hop_info = self.next_next_hop_info # After we connect to a new client we have to check whether the dead client wasn't in posession # of token self.sending_queue.put(events.TokenReceivedQuestionEvent(self.last_token)) except Exception as e: logger.error(e) ip, port = self.next_hop_info try: s = socket.create_connection((ip, port)) self.sending_queue = queue.Queue(maxsize=0) self.message_sender = MessageSender(self.event_queue, self.sending_queue, s) self.message_sender.start() except ConnectionRefusedError as e: logger.error(e) connect_to_next_next_hop(self) ############################################################################################ # # Event handlers ############################################################################################ def handle_new_client_request(self, event): # At first we want to receive information to properly connect as new predecessor after sending init_data message_size = event.data['connection'].recv(8) message_size = int.from_bytes(message_size, byteorder='big') message = b'' while len(message) < message_size: packet = event.data['connection'].recv(message_size - len(message)) if not packet: return None message += packet client_request = json.loads(message.decode('utf-8')) first_client = not self.next_hop_info # When we detect a new client connecting we want to; # 1.Send him the initial data over the connection we already established # 2.Connect to him as a predecessor # Gather the initial board state (only the coloured spots) marked_spots = [(x, y) for x in range(len(self.board_state)) for y in range(len(self.board_state[x])) if self.board_state[x][y] == 1] # If we have next hop information we send it, if we do not have we are the first client so we send our # information as the first hop information next_hop = (helpers.get_self_ip_address(), config.getint('NewPredecessorListener', 'Port')) if first_client else self.next_hop_info # If we are the first client next next hop is None response = events.NewClientResponseEvent(next_hop, self.next_next_hop_info, marked_spots, self.critical_section) message = helpers.event_to_message(response) message_size = (len(message)).to_bytes(8, byteorder='big') event.data['connection'].send(message_size) event.data['connection'].send(message) try: message = event.data['connection'].recv(8) except Exception as ex: if message == b'': # Only case when we have a succesfull read of 0 bytes is when other socket shutdowns normally pass else: logger.error(ex) #Client did not initializ correctly so we abort the process return # If we are not the first client we have to update our next next hop to our previous next hop if not first_client: self.next_next_hop_info = self.next_hop_info else: # If we are the first client we update our next next hop info to self address self.next_next_hop_info = ( helpers.get_self_ip_address(), config.getint('NewPredecessorListener', 'Port') ) # We stop current message sender if it exists if self.message_sender: self.message_sender.stop() # We update our next hop info with the newest client request self.next_hop_info = client_request['data']['address'] ip, port = self.next_hop_info # We establish a new connection and a new message sender connection = socket.create_connection((ip, port), 100) self.sending_queue = queue.Queue(maxsize=0) self.message_sender = MessageSender(self.event_queue, self.sending_queue, connection) self.message_sender.start() if first_client and self.last_token != None: # If we are the first client we start passing of the token self.sending_queue.put(events.TokenPassEvent(self.last_token)) def handle_drawing_information_event(self, event): def draw_point(event): points = event.data['points'] color = event.data['color'] try: for point in points: x,y = point self.board_state[x][y] = color except IndexError: return self.paint_queue.put({'type': DrawingQueueEvent.DRAWING, 'data': (points, color)}) if self.sending_queue: self.sending_queue.put(event) if event.data['client_uuid'] == self.uuid: return if not self.critical_section: draw_point(event) elif self.critical_section['timestamp'] > event.data['timestamp']: draw_point(event) elif self.critical_section['client_uuid'] == event.data['client_uuid']: draw_point(event) elif self.critical_section['client_uuid'] != event.data['client_uuid']: pass def handle_new_predecessor_request_event(self, event): # The moment we have a new predecessor this means that the client before our predecessor # has a new next next hop address (which is our address) and our predecessor has new next next hop (which is # our next hop) self.predecessor = event.data['client_address'] self_address = (helpers.get_self_ip_address(), config.getint('NewPredecessorListener', 'Port')) # Special case if we have only 2 nodes left if self.predecessor[0] == self.next_hop_info[0]: self.sending_queue.put(events.NewNextNextHop(self.predecessor, self_address)) self.next_next_hop_info = (helpers.get_self_ip_address(), config.getint('NewPredecessorListener', 'Port')) else: # We send information to predecessor of our predecessor about his new next next hop address self.sending_queue.put(events.NewNextNextHop(self_address, self.predecessor)) # We send information to our predecessor about his new next next hop self.sending_queue.put(events.NewNextNextHop(self.next_hop_info, self_address)) def handle_entering_critical_section(self, event): data = event.data if (data['client_uuid']) == self.uuid: return self.critical_section = { 'timestamp': data['timestamp'], 'client_uuid': data['client_uuid'] } self.paint_queue.put({'type': DrawingQueueEvent.BOARD_CLOSED}) self.sending_queue.put(event) def handle_leaving_critical_section(self, event): data = event.data if (data['client_uuid']) == self.uuid: return if self.critical_section and self.critical_section['client_uuid'] == event.data['client_uuid']: self.paint_queue.put({'type': DrawingQueueEvent.BOARD_OPEN}) self.critical_section = None self.sending_queue.put(event) def handle_token_pass_event(self, event): token = event.data['token'] + 1 self.last_token = token if self.critical_section: # If we have received the token and the critical section exists we unvalidate critical secion info self.critical_section = None self.paint_queue.put({'type': DrawingQueueEvent.BOARD_OPEN}) if self.want_to_enter_critical_section: timestamp = helpers.get_current_timestamp() self.critical_section = { 'timestamp': timestamp, 'client_uuid': self.uuid } leave_critical_section_deamon = CriticalSectionLeaver(self.event_queue) leave_critical_section_deamon.start() self.want_to_enter_critical_section = False self.paint_queue.put({'type': DrawingQueueEvent.BOARD_CONTROLLED}) self.sending_queue.put(events.EnteredCriticalSectionEvent(timestamp, self.uuid)) else: if self.sending_queue: self.sending_queue.put(events.TokenPassEvent(token)) def handle_new_next_next_hop_event(self, event): post_destination_ip, _ = event.data['destination_next_hop'] next_hop_ip, _ = self.next_hop_info # We are the recipient of the message if post_destination_ip == next_hop_ip: self.next_next_hop_info = event.data['new_address'] else: self.sending_queue.put(event) def handle_token_received_question_event(self, event): # We check weather the last token we received is greater than # the token from the request # If it is, this means that the disconnected client was not in posession of the token when he disconnected # If it was we have to unvalidate critial secion information and send token further if self.last_token > event.data['token'] + 1: return else: self.critical_section = None self.paint_queue.put({'type': DrawingQueueEvent.BOARD_OPEN}) token = event.data['token'] + 1 if event.data['token'] else self.last_token + 1 self.sending_queue.put(events.TokenPassEvent(token)) def handle_dummy_message_event(self, event): if self.uuid != event.data['uuid']: return else: if self.sending_queue: self.sending_queue.put(event)
18,858
3d2d480736be98a7f7a76296101410950c73264f
import sys sys.path.append("D:\\github\\LeetCode_python") from Utilities.Tree import MNode def postorder(root: MNode) -> list: res = [] if root is None: return res def posOrder(root): if root is None: return childrens = root.children for child in childrens: posOrder(child) res.append(root.val) posOrder(root) return res def postorder2(root: MNode) -> list: res = [] stack = [root] while stack: node = stack.pop() res.append(node.val) childrens = node.children for child in childrens: if child: stack.append(child) return res[::-1]
18,859
b172e1be85980ce1a907799019d1cecbcadf69bc
# -*- coding: utf-8 -*- # Resource object code # # Created: Wed Jul 3 00:58:50 2013 # by: The Resource Compiler for PySide (Qt v4.8.4) # # WARNING! All changes made in this file will be lost! from PySide import QtCore qt_resource_data = b"\x00\x00\xeb\xa6\x89PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4x\xd4\xfa\x00\x00\x00\x06bKGD\x00\x00\x00\x00\x00\x00\xf9C\xbb\x7f\x00\x00\x00\x09pHYs\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd~\xfc\x00\x00\x00\x07tIME\x07\xdd\x07\x02\x0c:,d6\xfa4\x00\x00 \x00IDATx\xda\xec\xbd{\xb4$YY'\xfa\xdb;\x22\x1f\xe7TU\xbfi\xba\xbb\xba\xa1\x1f\x80\xba\x00\x1d\xb0AD@\x14E\x87\x11\xf1\x01\xa2\xcc\xc0\xe0\x0b\x1d\x1dgfy\x1d\xe6.\xbc\xc3\x8cKadfy\xaf\xca\x5cu\xb8\xc80\x17\xaf<\xae\xa8KtPX\x02\xd2\xd0\xd0\xdd\xa5^G\x5c\x8c\xd0/\xba\xbb\xaa\xba\xaa\xba\xaa\xce\xfbdfD\xec}\xff\xd8\x11'w~\xf9\xed\x1d\x91\xe7\x9c<'3\xcf\xf7[+V\xe6\xc9\x8c\xcc\x93\x19\x19\xb1\x7f\xbf\xef\xf7}\xfb\xdb\x80@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x02\x81@ \x10\x08\x04\x0c\x94\x1c\x02\x81@0/\xb0\xd6\xee\xdb\x98\xa5\x94\xb2rD\x05\x22\x00\x04\x076\xe8\xc8\xc0#\x10\xec\xcb\xb5\xa7\xf60\xae\xd9\xc0~\xb3v]6\xfa<2\x9e\x08D\x00\x1c\xfe\xa0\xb3\xeb\x0bZ.`\x81 z\xfd5\xf9[E\xaeW\x8e\xf0-\xd9\x8f\xfb\xdb6|\xbf\xfd\xdaoR\x812\xa9\x90\x11A!\x10\x01\xb0O\x83\xce$\x91F\x93\x8bX.>\xc1Q\x12\xd3\xa8!q\xd5\xf0\xdaS5\xd7b\xec:\xb65\xa2\x00\x00LD<\xec\xc7c\xbe\xd0\xd0\xde\xfd\x98 Q5\xfb\xd1\xf1\xa5\xa9 \x90\x00E\x04\xc0\x91\x1e\xa0\x9a\x0e@\x93:\x04\xb6\xa1H\xf0\xef\x9b\x86\xbf\xcf\xa1\x5c\x9c2(,<\x1979\xef\x9a\x88b[s\x0d)\xf2~\xaa\xc1\xf3*r\x8dZFLh\x8f\x08U\xe4\xf3+\xe6\xda\xb3\x0c\x09\xeb\x9a\xfd\xd0`\xbf&\xff7t\x8cmd\xbf\x10\xe1\x1bF\x88pcO\x9d(\xb0r\xfd\x8b\x00Xt\xd2\xaf{\x8c\x8bX&\x8d2l`P\x98\xe8Bl0\xe06\xb5\x1d\x1b\x1f\xbeI\x1e?J\x03\xc5a\xd5\x8a\xec\x22eU'hc\xa4\xcd}&\x8dzK\x9d>\xae\xbc\xd7)\xef}\xaa\xe7\x8cw\x8d\xe9\x9a\xebN1\xff[Ox,l\xe0\xba\x8d]wu\xf7\xb9\xbfc\xfb\x99\x06\x22\x04\x81\xfdl\xcd\x98ak\x82\x8d&\xae\x80\xc5\x1e\xd3\x0b{\x0ddDx\x88\x00\xd8\xafA\xba\xe9-}L5t\x07b\x83'G\xfe1\x15o\x11\xb7\x22\xeb\x88=&\x0a4\xe2\xf9N\xd3\xe0bml;\xce\xd2\x05\xbc\x0f\x11qS\xe2\xdc\xed`\xa8v\xf1xS\xcb[1\xa4j#\xaf\xe3\xf6S\x01\x92\x0cE\xe3\xb6&\x82\xa7Q;w\xed\x85\xc4C\xdd\xf7R5\x22\x86^\xa7M\x842\xe7(\xc4\xaeIE\x08\xdbw\x0al\x8d\xf00\x91@\x22vKI\xde\x92k\x94\x0a\x9f\xd0~\x8ay\xcc\xffNM\xc7\x93Fi\x87\x06\xdfG\x04\x81\x08\x80}'\xfe\xd8c:\xb0_l\x10kb\xdf!\xa0\xe0M@4\x14\x8cP\xd0\x91\x01i\x92A\xcc\xd4D.M\xd4\xbf\x8d\xec\x1f\xfc{\x1f\xa2\xdd&\xe7\xf6\xa4\xf6tS\x82\xad#N]\xe3\xc64\x15w\xb1\xe3\xae\x03\xdfW\xd5|\xfe&\xa4\xad\x11\xb7\xb8m\xe0\x7f\x81\x89\xc6C\xd7Y\xb5\x9f\x0a\x08\x00]\x1e'M\xde\x93\x13\x06&\xf0\x99\xa9\xc00\x01\x81Tw\xdd\x98\x86\xe2'f\xe3S\xd2\xe5\xc6\x02\x15\x18\x1fl\x80 U\xc0\x11\xa8\xdb\x1f\xccg\xa6\xe4n\x00$\xdes&\x22\x1c\x14y\xad\xaaq!8\xf7\xc54\x18S\xf6<\x9e\x88\x008:\xc4\xdf\x84\xe4U\x83\xad.:\xd1\x0d\x06e\x8e\xa8M\xc0\x92\xa3'wS\x9bp7\xb6#U\xfb\xa1\x0b\xd4D\xc4C\xa8\x8e\xc1\xd6\x08\x85&\xe4l\x1b8/u\xc4\xd8\xd4\x9eV\x91\xf7\xe1\x08\xd5b\xb2\x9a\x8d\xa6\xfb\xc6\xc4\x03\xb5\xca\x11 \x0e.\xb2\xb6\xccwR\x18\xb7\xd0-\x13m\x87D\x86O\xbe\xdcgQ\x91\xff\xe1_?\x9c\xf5\xaf\x03\xc7]3\x8e\x80e\xfe\x17\x15\x12\xb1\xb1P\x81/\xb4\xe3\x04\x8e.E9\x02\xd7\x95\x0e\x5c\xbb6p\xdcM \xe2\xa6(\x98\xdf\x8e#\xf0\x22r-[B\xb8\xca\xfb\xfdL\xc4A\x88\xa5J\x0a\xf2\xbb\xdaH\xa0\xe0\x7f\x8e\x22\xe0\x94\xc6\xc6E\x13\x108M\x8a\xafE$,\xba\x00\x08D\xfdM\x89_\x93AHG\xf6\x0b\x89\x02:\x08\xd3\xc8%\x14a\x87\x06\x80\xba\x81!4P\x19\xf29L\xc0\xaa3\x8c\x18\xe1\x1c\x89:\xa1\x10\xb2\x19\x0d\xc2\x05JMHs\x92\xe8>\x14\xc9\xe9\x1a{:$\xd6T\x848\x11!5\x85f\xc5b6\xf2\x9aP\x94N\xff\xafe\xc4\x81\x0e|\xbeX\x94\x8e\x1a\x97\xab\xc9x\xd2\xc4q\xb3\x91\xeb\x0a\xe0\xf3\xff\xf4Z\x04s\xfdq\x05\x83!!\x14\x22|\xfa\xf98\xe2\xb3\xcc\xf1\xb7\xc4\x89\xb0\x8c\xa0\xab+\xdc\xb3\x91\xeb\x8e\x0b\x1aB\xe3H\x11\xb9\xae\xb9\xffQ4p'\x15\xf3\xddC\xf5\x08&\x12\x8c\x84\x0a#M\xc0\xb1\xf0\xbf\x8f%\xff\xc3\x06\xf6\x0b\x09\x02v\xbc9\x8a\x82`!\x05\xc0\x04\xc4\xaf\x03\x91\x04w\xeb\xef\xa7#\x02@\x07\xa2\x09\xc5D2\x94\xdc\x13F\xf1*\x86D\x15Q\xed\xb1\x01!\xa6\xd6\xeb\xf2l\xb1|\xa2\x0a\x5c|\x96\x5c\xe4\xa1\x01\xca\x22\x5c\x17Q\x80/\xec\xa2\xd1R(RmB\xf4\xaa\xc6\xc6V\x11\xe2\xa4\x162%l\x15pc\x9a\x14\x8b\xa9\x00\xb1 bg7!bD\x84)\x17Ak\xe6{%\x0d\x9d\x08N\x8cp\x8fqD\x1fs\xdc4s\x1dk\xe6\xda\xd2\x08\xcf\x22\x08\xb9\x17\x8a9\xf6\x9c\x00\x02\xe2\x95\xfa\xfeyY]\xcf\x86\xf9=\x0b\xe6<5\x8c\x9bb\x03$\xe9\x7f'\x8e\xf0\x0aoL)\x08I\xfb\xd7\xa7\x89\x04\x0d\x9c\x03b\x88\xb0D\xc4\xc9,\xc8\xf9\xe1\x7f/\x13\x18O\x0c\xf9^\x9c80\x8c\xc0\xe1\x04\x81\x0d\xa4\x13lD\x98\x1c)1\xb0p\x02 B\xfe*2x\xd0\xfb\x89w\x82'L\xc4\xef\x8b\x83$\xf2\xbe\x1a|\xe1\x93\xadq\x09l\xcd\x00\xe3\x0f\x02\x5c\x84\xa0#6|\xc8\xea\xb7\x08\xcf=\xa6\xf6dLY[r1+F\xf5\x1bf\xd0P\x88\xe7'\x15\xf9~\x86\xdc\xd7\x11\x07\x00\x0d\xed\xe9\xba\xfd\xe8\xbe& \xf8b\xe9\x80P\xd1X]\x11g\xac\xb8\xcd2Q\xb0\x09D\xca6\xe2\x0aP\x22W\x91\xd7\xdb\xc0yo\x02\xc7\x8a\x13\xd0\x08\xb8i!\x11\xa0\x08\xc9'\x81\x14FB\x8e_\x129\x8e\xdc\xb9b\x98\xcf\xc8\xb9+\xa1k[\x05\xecn\xcb\x1c?\x9a\xd2\xe3\xc4?\x02\x11r(\xeaE \x9d`=R\x0e]\xd7\xb1\xb4\x82\x22\x81\x8ae\x82\x01\xed\xa5\x01By|\xc3\xa4'l\xc0\xd6\xf7I<'\xc2\xa2 b\xc7\x12qU\x10\xa1\x13K\x15\xb0\xee\xc8\xa2\x0b\x81\x85\x12\x00\x84\xfc\xeb\xf2\xfa\x94\xf0U\x80\xd85!~\xed\x09\x04\x1dx\xdf$\x92\x16\xe0\x0a\x96TDy\xd3\x1cpA\xec\xbaPa`]\x14\x0ff@\xe2Tq\xe1]\xd4*`k\x1a\xc6J\x8c\x15%\x85\x04\x8cB}\xce\xd0\x06\xecs\x15 _\x15\x88\xd8\x11\xb1\xeeu \x8d@_\xa7\x1bF\x90\xdc\xb5FI\xdb\x04\xf6\xa1\x11\xada~/\xed\x0d\xcc\x94|\x0b\xe63$\x017\x8a\x9e\xb3\x9a\x89J9G\x84\xbeO\x12\x10\x1a\xf4\xf3%\xc42\xe7\xc8\x1e\x01\xc7M\x11\xf1\x8d\xc0\xe3\xd5\xfb\xa7D4\x22\xf0\xf9\x93\xc0u\x01\xf2\x1b\xa4\x84\xcc\xfcs<\x01\x9f\xd3\xe6\xfe.\x88\xdb\x12:\xffs\xe6\xbb\x1a\x86\xb8\xfc\x88>'\x9f;\x0f\xd8\xfa\xd4\x95\x0a\xd5!\xd8\xc0\xf9\xd7\xa40\xcf\x12\x91b\x18\xb7\x82\xb3\xfaM\xf9\xb7!\xdf\xd7\x7f\xdcz\xcf\xf9\x8fQ\x01\xc09\x07`D\x88=*b`a\x04\x00C\xfe\xb1h\x9f\x12zhS\x84\xf0\x13\x22\x0e\x14\x11\x03:\xe0,\xc4\xd2\x10!\xfbY1\x17\x8db,;\x1b\xb0\xc7M@\xc9\x87,i\x13\x89\xec)\xc9kFQ\x9b\xc0\xff-\x02\xe9\x02\xcb(\xef\xd0\xff\xe7\xea\x18T\x80$\xb9\xfc7H\xf4I\x09=a\x22_\x10R\x08E\xd4\xa1A\x9e~\x1en\xf0\x0c\xd5j\x18\xc6\xd2\x0e\xa5kb)\x10\x15\x10H\xf4\x18\xe8@\x9aJ\x05\xd2H:\x92^\x08\xbd7=\xfe\x8a\x08\x86\x84\xf9M\xe8wH\x88\x80\xf1\xbfS\xca|\xf7\xeaX&\x11\xe2\xe7\xbe\x17j~\xe7X\xd3!\xc5\x08\x83\xc2\x1b+B\xd7/u\x08\x0c#\xc4\xe9\xf5X\x1d\x97\xdc\xbbO-~\xcd\xb8q\x96D\xec!\xa7O\x07\x1c\x03\xce\x9e\x0f\x05\x17\x5c\xba\xb0\x088\x18\xfe\xf1\xc8\xc9g)\xbc}r\xe2\x0aP\xa1@\x9d\x01*\x0al\x8d\xfb\x10\xac]X4\x11\xb0\x10\x02 @\xfe\xb1\x88\x9fF\xf3\x8a!wJ\xfai\xe0q\xea\x0a\xd0\x01LG\xecT\xaeR9d\xd9k\x8c\x17\xf7py=E.Z\xc3\x10\x0c\x22\x91\xb9\x05\x9f[\xe4\x8a\x00\x0dc\xed\xd3\x82\xa2<`9r\x03EhN4\x1d@\xa8\x15\x0cF\xd8\x809\xf6`\x22aK\x22M\xce)\xe0H\xab\xc9\xd4\xb2\xba\x19\x07\xdc\xe0\xeb\x13)\x8d\x0eCb\xa8\xce\xad\x00Cn:\xe0\xa0hB\x9c\xdc\xe0\xaf\x02\xef\xa9\x02\xe4n\xc9m(]\x06&M\xa0#nA\xf59\xdb\x18\xad\xba\xf7E\x81!\x02\x22\xd6)P\xa1\xbeW\x01-\xa0\xd5\xe4\xf1\xa2&\xa5\x10\xaa\xb2\xb7\x01\x17\xc80\xd7\xb8\x0d\xd8\xe4`\xaeGK\xc8\x9c\xcb\xf3\xdb\x1a\x17 \xf4\x19c\xc5\xc0\xdc~\x06|\xe1\x1e\x8d\xf2\xad\xe7XP\xc2\xf7\x09>\xf3\xc8<#\x91~\xc6\xbco\xe1\x8diy@\x08\xd4\xb9\x02\x0b%\x04\xe6^\x00LH\xfe\x9a!\xed\x18\xe1'd?\x8e\xfcS\x92.H\x10\xae)\x08\x91\xbf\x0e(r\x8e\x0c\x0dCvt\x90\xe0\x22\x95\x98e\xa7\x98H\x9f\x8b\xeec\x15\xb9@\xb8h\x87KQ\x84\xc4\x05\x17E\xd8@*\x85F\xfe\x9c\x1bP!e\xc4A\x82\xf1)[t.9\x18\xe2\x88\xd5\x05p\xb3\x02L\x804\x8b\x80\x80\x01\x89\xe8\x80\xf84\xc4\x82\xd8\xeb!\xeb\x9e\xbbN\xe8{%\xcc\xe7\xf5\xc5H\xc2\x10\x95b\xc4\x137\x8f\xdfzB\x1a\x01\xdb\x1f\x9ee\x0f\xf0\x05\x80\x09\xf9\x8d\x12F\xf0\x85R\x22\x9cp\x89\xfdN\xa1\xa9\xb3\x9c\x80\xa2\x82\xac@\xbc_\x00G\x98u=5\xea\xecy\x04D\x01\x02\xd1\xae\x0a\xdc\xb7\x01\xe2\xa7\xc5|\x5cQ\x1fu\xfe\x0c3N\x18&\xc5\x01\x12\xb1\xd3\x88\xbf [\xb5O\xee\xb9\x01\x85'\x0cr\xef\xb1\x9c\xd9\x9f\xdb\xb8\xe0\x06\xa1\x14\xc1\xbc\x0b\x81\xb9\x16\x00\x0d\xc8\x9f\x12\xbfj@\xea\xd5ci\xf9w\x8b\xec\xeb;\x01\xfe~TPh2x%5.\x00\x97\x87\xa6\xd14\xb5\xf3\x80xe?\xb5\xebi\x95\xbdB\xb8 \x90\xe6\x18\xe9\xfbZFxpE~E\x83|!M/\x84\x0a!C\xb9}\xea\x94(\x12ir$\x9e >\xad\xd3\x7f,e\xa2n\x9a\xbb\xa7Q\xbdf\xa21\x8e|\xb8)Z\x8a\xf9}@~\xbf\x94\x5c\x0e\x059\xcf+\x81\xd5B\xb8r_\x914\x07\x17\x15\x03\xe3\xb5\x0e:p\xbe\xd2(>4m\xcf\x8f\xe8Srn\xb6<A\xa3I\xfa%!\xe4n\xc9{qnB\xa8\x1e(\xe4\xe8p=\x04\xb8\xa6B\xdc<\x7f\x80/\xe8\x0duZ,\x88\xd0\xab[\x13\x80s\xf4Bn\x80A\xb8\xb9N(g_7\x0d04=8\xf4\xf9\x0a&e`\xc0\x17\x1fr\x84n\x99\xe8\xdd\x8f\xeesB\xfe\xfe\xfd\xcc\x13\x03\xbeh\xc8\x02\xff\x8b\xab'h$\x04\xe6Y\x04\xa4\x0bN\xfeT\x00\xc4\xc8\xbf\x22\xf3\xd4\x8b\xea\xab\x8d\x13\x01I\x8d3\xa0<\xb1@\x05\x00\x02\x11mH\x98\x85\xe6\x05sS\x00A\xa2nn\xfe\xbf\x0a\x905\x22\xb6 \x15\x03\x06\xfc\x94\x1b\xcb\xa4 L \xb5\xe0G\xec9\xb9\xd0\x00\xbe&\x82#\x1c\xc5\x10\x8ff\xfeV\x81H\x93F\x96\x9c\xd5\xddd\x9d\x08\xcbD\xef\x1a\x93\xf5O\xaf{\xaf\xd8:\x13@\xb8@O\x05\xae\x7f\xeb\x111w\xfe\xd9\xf2\xfc7\xcc\x98\xe1\x131\x98\xe89\xc1x\x9d\x85&\x02B\x07R\x02M\xfe\xe6\x1c\x82X\xc3\xa1\xba\x19\x1b\x93.\x00\xc6\xbd\x9e\xfe\xe6\x86\x08(\xee\xb7\x0b\xd9\xed\x08\x5c\x9b\xa1\x9a\x1eN\xb4\x87\xea|B\x16\xbe\xaaI+\x84\xd2\x87\x5c\x80\xa0\x02\x81\x02\x1dC\xfc\xe2\xbc\x02\xe39{J\xd8E\x80\xdcs\xb2\x0d\xca\xd7\x0d\xbc\xd7\xa5\xc4\x15H\x02\xae\x02\x1d#\x83\xd7\xb1\xb5vn\xdd\x80\xb9t\x00& \xffP!\x1f\xb5\xf7[\xdec)s\xbfU\xee\xdb\xf6\x5c\x01\x1d\x10\x04:\x90\x12H\x18B\xb1\x81\xfcgl>\xb0\x0a\x10\x83\x09\xa4\x0a\xd0@\xb5\x87\x06\x0b\x1bI\x0dp\xf9<\x8b\xf1\x19\x00\xbe\xba\xe7\x04\x86f\xd2\x04\x86\x89\x9e\x14\xe3\x0e\xa8@\x94I\xa3\xff\x94D\x9e4\xda\xf7\xa7}\xa6\x18/ \xe4D\x05\x98<o\xe83\xd2\x88\xaa\x08D\x954\x92S\x08O\xbb\x0b\xb5}\xe6\xaei\x8dpC*J\xa2\x96\xb1\xd1m\x80@\xe9s\xa8\x11N\x1ci\x03\xe3S\x03C}6\x9at\xe6L\x98\xebJ#<e3\xd6\xdd\x90\xba4\xb114\xd6\xeb^!>\xc3EER\x00\xb1\xd6\xb9E@P\xda\x80\xad\x8f\x88c\xa0#\xe9\x03\xcb\x8c5\xa1\xce\xa0\x5c@\xa1H\xda\x90\x8e\x07\xb4@\xb0\xda/#B\xc0\xcf\xebg\x84\xf83\x8f\xf8\xfd\xe8?\xf7\x04@\xf5\xdc\x80\xb8\x06}/\x00\xc9\x18\x11\xc29\x02v\x11\xdc\x80\xb9u\x00\x1a\x92\xbf\x1f\x89s\xe4\xef\x13|\x12\xb8\xad\x9eo\x05\xd2\x02\x94\xfcS\x8c\x17\x08j\x12\xf9$\xcc\xa0\xe1\x13\x93ar\x8b\xd4nF\xc0\x22\x0eU\xff7]\x91\x90\xab\xf2\xe7\xdaq\x9a\x80\x180\x8c\xe5Gs\x8e9\xf8j\xe2P\xe3\x11\xda\x80\x86N\xdb\x0aM\x17\xe3\xf2\xfd\xfek\xb8TM\xa8h\x94\x1b\xecU$=a\x22\x04\xc25q\x8aEl:\x10\x85h\x84\xf3\xd3\xfec\x5c\xce\x1b\x91\x88\xb9n:-\x02\xefo\xc9\xb9\x0e\x22\x16T\xe0u\x0a|\x7f\x00*\x0e\xa8\xf8\xe0\x84\x01&\xb4\xfc\xeb\xa2\xff\x90\xf0\xe2H\x93\xab\xab\x08\xa5\xe8T\x84\xbcc\xefi\x22Q;\x22\xe4\xcd5\x13\x03\xea\xd7\x0b\x00\xc2\xfd:\x10\x09\x12h\xaf\x04j\xf7s\x15\xff\x5c\xa1_AH\xdf\x92\x88\xde\x10b\xf7\xa3\xffJ\x00t\x08\xd1\xb7\xcb\xe7\xaaM{\xaf\xd3\xdec\x05\xf8f_&\x1c\x9bZ5O\x22`\xee\x04@\x19\xfd\x87:z\xc5\xc8\xdf\x8f\xea\xb5G\xec\x9c\x08h\x11\xd2O\xca\x93&%[\x8b8\x02)\xc6g\x04$$*M\x10\x9e\xa6\x18\xb3\x83c\xd6\xa5a\xfeN\x18;\x9d\xb3\x0b\x81p\x13\x1e\xcb\xa4\x14bE29\x19\x90\xfc\x9e\x05\xa1&By\x80\xfc\xb8\xc5D\xb8A:\xc5hc\x18:5\xcc\x04~\x13?o\xec\xe7\xa1\x13B<\x08\xfc>\x9489\xd7&\xd6\xe8\x87\xcb\xf3\xda@z\x07$\x02\x03\xf8u\x0bB\x1d\xecb\xb9{\x8epC}\x12\xe8\xfb$\x81\xf3\x94\x0a\xa6\xa4\x86\x9c\xeb,\xfe\xd0g\x8c\xb5\x10FD\xb04]\xc1\x13\xe0\xa7m\xd69\xa7M\xc4v\x93\xd5;Cmv\x81x\xbf\x0c\xff<1\x91\xf7C\xc0\xf2\xb7hV\x90\x88\x1a\x11\xc2\x15\x0d\x1b\xe6\x96s\x04\xfc)~~\xa4o\x18\xab\xbf\xb2\xf9\x0bO\x08T\x91|\xdf{\xae\x22\xfe\xbe'\x12\xfa\xe5\xf8\xed\xbb\x05\x89\xe76d$-\xc059\x9a[\x110W\x02 \xb0\xb0OlKI\xa4\xefG\xed\x5ctO\xffn\x13\xe2\xe7D@Z\x93\x0a\x08u\x18\xac[\xeb<6P\x87,\xc9PN\xb8n\xc9\xd2\xba\xe6AE \xa2\xe0\x1ak(O\x0c\xd0\x01(\xd6+\x80\x1b\xbc\x8a@\xf4\xafH\xb4i\xca\xdf\x8cF\x8d\x9a\x90\x14W\x8c\x99`\xbcS\x1c\xf7Zj5\x87\xe6\x8ds\x1d\x159\xcb\x9fs?Td\xa0\xae[\xc2\x96\x13\x07`\xce'\xd5 \x12V5\x968\x10\x9f\xd2\x0a\xe67\xe2\xd2\x0d1\xf1A\xeb:t\xe0\xffp\xad\x80\x9bF\xfd@}\xae\x9f\xbbvbb\xdc6\x10\xf017 \xb4\x1cp\x81\xfa\x1a\x01\xdb \xb5W\x17\xd5\xd7-\xed\xcd\xd51\xd4M)n\xb2\x15L\xca\x90:\x01\x05C\xfc\x99\xe7\x00TB`\xe0E\xfc\x1dO\x14\xb4\xcb\xdb\xb4|\xac\x1a\xeb\xab\xc7r\xcf\x0d\xa8\x9c\x00\x7f|\xe2\x9c\x003\xcf\x22`\x1eS\x00M\xad\xff\x10\xf9\xb7\x18\xf2\xf7\x09\xbf\xfa\xbb\xcd\xb8\x01m\xc6-H\x99\xb4B\x82\xf1>\x03\x5cO\x80\x84\x19\x9c\x11!\x19\xae\x17\xbe\x8a\xe4\x12u$\xb2\xe6\xa2Sn\xae\x7fh!\x1f.\xdfO-2\xc3\x90{\xa8\x9a\x98s\x15\xb8\x01Y3\xc7J\x07\x8e/%\xf1\x14\xf5\xeb=\xa8H\xf4\xcf5k\x8a-\xd0Ca\x02n@\x93\xa8\x0e\x11!`\xd0l\x81\x22\x9f0\x0dC\xbe\xa1Eph\xb4o0>\x9f\x9f\xda\xfd6\xe0\x9ep\xf7\x9bD\xf1\xa1u\x03\x80\xfa\xc5\x83\x10\x89\xf0\xb9J\xfe\xd8\xfe\xa1TJ\xdd\xfa\x1b\x88\xfc\x86!\xc2\xe6H\x15\x0d\x9e\x03\xe2Kq\xdb\x88\xe0\xb0\x0d\x84Jh\xdf\xd8\xe2f\xa1TA\xa8\x8f?\x9d\xa7O\xa7\xfa\xf9b\xc0\xcf\xdb\xf7\x19\xf2\xcf='\xa0z\xbcO\x1c\x80\xea\xefJ\x00$\x9e\x08H\xbc\xd4\xa5\xdf\x928vM\xce\x85\x08\x98\x1b\x01\x10\x89\xfe\xb9j\x7f\xdd\x80\xfc\xdb\xe4\xb6\xe3\x91>\x15\x02mF P\xf2\xa73\x038\x01\x10*j\xa2\x95\xca\xc0xC\x1a\xae\x09N\x9d\xed\x18\x1a\xac8\x8b=6\x90\xd4U\xf4\x9a\x88\xb2\xa7\x17;\x8d\x86c\xeb\x03\xe8\x80\xc5\x1d\xca\xd1\xd3cLk1\x00\xbef V\x84\x86\x08\xe1\x84\x0804\x90\xd3\xa8H#\xbc|)M\xedX&\xda7\x01\xc2G\xc41\x8a-\x88\xc3\xb9\x1d6\xe2\x82\xc4V\x18\x0c\x11:7\x7f\xbe\x89\xd0\x02\xe2-\x8fm\xc4\x95\xa8\x13\x00\xb6\xc1~M\x83\x93X\xdb\xdfFC]\x03A0)\xe1\xc7R\x11u\xb3\x0f\xea\xdc\x8bXO\x91P3\x1d:\x15\x90\xda\xff\xc0\xf8\x0c\x00\x7f* \x15\x00~!`\xd7\x8b\xf8}7\xa0\x8a\xfe+\xf2o\x13\xf2oy\x82`\x80\xd1\x22\xef\x817F\xe4\xc4\xf5\xe4\x8a1\xe7F\x04\xcc\x9b\x03\x10\xeb\xf1O+\xfe\xe9\xe0Om\xfe\x8a\xf4}\xa2\xa7\x22\x80>\xc6m\x5cmA\xac\x08\x10\x91\x811\x16\x91\x01\xe1\x85G\x10\xb1\x149\xc2\x07\x9a->\x13\xca\xe9\xd55 \x09\xe5\xfaL\xcd bP\xbf\xd4o\x93.\x8f\x9c0\xac\x9b\xfb\x1fj\xdf\x1b\x8b`C\xc5a\xb1\x81?V\x88\x15+2\xb25\xd1\xa1B\xb3i\x85\xb1\xaaw\xae\xe8LG\x08\x93\xbb\x16M\x03\x22\xaf\x8b\xf4\xeb\xf6o\x92\xd7\x0f\x09\x80\xd052in?d\xed\xd7\xbd\x87m \x14b\x02\x80#\xe6&u\x04u\xfd\xfac9\xff\xba\xf39\xf6\x19\xea\x16\x1e\x0bu\x16\xf5\xa3\x7f\xae\xc7\x7f\x8e\xf1)\x819\x89\xf8\xab\xbf3B\xee\xdb\x1e\xe9W[/\x12\xc8)O\x04\xa8@z`.E\xc0\x5c\x08\x00\xaf\xf0OE\x06\x1en\xae\x7f\x8a\xf1j\xfeP\xc4\xdf%B\xa0K\x88\xbf\x1b \xffIR\x00\xdc\x94\xb6\x90\x8dY\xd7\xfd\xceF\xc8\x07\x11\x92\x8a\xe5(\xb9\x8b\xdd\x04\xc8\xabi\x9e\x8f\xbeG\xa8Wy(\xf2\xe1R\x00\xf4X\x84\x08\xdc\xb7\xa9\xe9\xef\x00\xc4\xa7\x98\x85\x96\xafm\x9a3\x0e\xd9\xa9u\xcb1\x87\x06\x7f[#\x08P\xe3\xe64\x9d\xff\x8e\x88\x88\x8c\xb9 u\xcf\xd7uP\x04sM\xe8\xc8\xfb6\xcd\xe3\xd7}\xb7\xa6d\xdf\x94\xe0\xf7<\xdc\xd5\xa4\x17\x9a\x90\xba\xaa\x11\x05\x93<\xae\x1a\x90|\xddc\xa1\xc0\x81\x0b\x1aB)\x81\x02\xe3\xad}\xb9t@E\xfa\x95\xfd\xdf\xc70\xdf\xefG\xfd=\xef\xbe_\xdb5@x]\x98\x0c\xc3BB\x10\x07 \x94\xda\x9ci\x110\xf3\x02\x80X\xffh\x10\xfdk\x8c\x17\xe6\xd1\x8a\xff\xb6G\xee>\xd9\xb7\x01,1\xd1?\xdd\x9f\xab\x03\xa0\x9d\x01\xb9\xa2\xb3\x10\xe14\x1dXC\xeb\xd4s\xd3\x03M@\x004\x19\x00c\xf3\xd8Q\x13\xc9\x9b@\xba\x80\x13\x00\xa8\xb1\xc0)Ip\x0b\xcc\xa0F\x04\xa8\xc8\xe3:\xe2*\xc4,\xe4\xdd\x1c\xd3\x90\xc5_w\xfc\x9bDs\xa1H4Vy^W\xecV'$c\xa9\x10\xce\xe2\x8f9(\x93\x08\x8b:A1\xa9\x9d\xdf4\xfa\xc7.\xac}U#\x00\xf7\x22\x12P#Pb\xc4<\xa9@\xc0\x84\xefi'8\xa7cN\xa2an\xe9\xf4\xc0XM@e\xf9W\xd1\x7f\x95\xff\xdf.\xc7\xf3m\x12\xfdW\xf7\xfd\xf6\xee~\xe0\xd0+\xdfK\x914E\x85|\xdeD\xc0\xbc\xa4\x00B\x83s\xa8\xd9\x8f&.\x80O\xfc-\xcf\xfao{\xd1?\x8d\xfc;\xdest\x7fn\xfa 7\x050\xd4\xa7\x1c\xe0\x97Lm\xb2\x8c,7\x00\xda\x9aA\xban\xc0\x0f\xd9\x9b\xa8\x89fc\xf9=\x83\xf1\xfc\x98\x8d\x10>\x97K\xac\xcb\xe7\x86\xc8\x9ck\xd8\x13\x12\x01\x1c)\xa9]D\x9d\x93\x12\x84m0\x98\xd7\xe5}\x9b\x0c\xdc!1\x10Kc\xd4\x11d\x93\xa68un\x14\x1a\x9c\xe7M\x05A\xd3\xc7l\xcd\xff\x099*1\x92\xdd\x8d\x80hJ\xf0\x93\x8a\x05;\xe1k\x9a\x9c7M\xf6k\xfa?l\x03W\x80s\x07\xb8\x94@\xa8.\xc0O\x07Ty}?\x88\xab\xdc\x80\xaa\x0e\xa0\xc78\xba\xfe8\xdec\xc6\x92\xca9P\xc4\x0d\x00F\x1b\x19Mz\xacD\x004\x14\x03\xb4\xe2\x9b[\xe0\x87k\xef\x9b2\xb6\xff\x92\x17\xf9w=\xbb\x7f\x89\x88\x836I\x09\x84\xa6\x01\xd2\xcf\x960'\x90F8\x8f\xa9\x1a\x0c\xd0\xb1\xfe\x00u\x03\x18\x22\x22\x01\xa8\xcfGr\xe4\x14\x9b:\x14\x9b\x1bl#De\x99\xa8Q\x05DS\xac\xe7|\x93%\x99\x9bD\xfd1\x82\x99\x84\x00\x9a\xda\xb0\xbb\xf9[\xedr\xc0\xd9\x8d%\xae\xf6\xb0\xaf\xda\xe5\xfb\xef\xb6POM\xb8\x9f\xaa\xb9V\xea\xd2\x03u\xa2:t\x8d\xd5\xd5\xf34=\xbf\xf4\x84b\xa0\xce\x81\xb3\xbbx]\xdd5>Iz\xa0\x22\xfd\x94\x11\x00t\x9d\x80\x8a\xf8+7\xa0\x8d\xe1\xfc\xfe\x96w\x9b\x22<\xa3\xab\x22\xfeX\x0b\xf7~\xcd\xf7\xe5\x96KV\xd6\xda\x99\xea\x168\xd3\x02`\x17\xb9\xffXo\xff\x16!\xf2\xae\x17\xddW\x84\xdf*o\x97\x88\x03\xd0\xc6h\xc1 M)\xd0%\x835\xe2\xf9\xe5\x10\xd1\xe8\xc0\x85\xa1\x03\x16-g\xd3\xeb\x09\x06:\x1b\x19\xccb\x03@]\xd1Q\x93\xe9Iu\x83J\x9d\xfd\x1b\xbb\xcfU\xed\xc7\x96\x05\xae\xab\x16\x9f\x84\xfc&\x1d\xac\x9b\xda\xb1\x93Z\xb6\xb1H\xd5N\xf0]\x9a\x16\x11\xd6E\xd7\xbb}l?\xc5W\x1d\xc9M\xfa\xff'\x15'{=\xc7\x9aD\xe5\xaa\xa1\xb32\x09\x91\xefU\xdc\xee\xc6Y\xe4\x5c\x81P\xe7Q\x7f\xc6@\xcb\xbb_\x91}\x86\xf1>/-\xcf\x09P\x08\x17n\x03\xe3\xfdBT\xc4\xb1\xa3\xce\xeeX\x1b\xe6YJ\x05\xcc\xfb,\x00n>7\xb7\xe0\x8f?\x8d\xcf\xb7\xfa\xab\xdbe\xef~\x978\x02\x1d\x8c\xa6\x00|\xcb?6\xfd\x8fk[\x1a#.\xba\x8c*\xcd\xed\xea\x06V\xa6\x9a\xc0\xf6\x9cd\xe0\x9c\xc4\x86\xae#\xfa&\x05Mu\x03g\xcc\xa2W\x0d\xf7\x9b\xd4^\x9e$Rnj\x9f\xeeu\xf0\xc4.\xfe\xc7~\x90\xe5~\x90i\xdd9\xbc\xdbh}\xaf\xdfKM L\xf75\xde\xa9\xf9\xdfuN\xdf4~S\xbb\x8f\xe7\x86\xad!\xcfI\x1cD*\x06*w\x80\xd6\x05$\x9e#\xc0\x89\x00?x\xf3\xff\xf6\xd7z\x81\x17\xd8\xd9\x1awGED\xcd^\x8e\xeb\xd1\x13\x00\x81y\xff\x94\xf8C\x0e\x00\xb5\xfc\xab\x1f\xbdCH}\x89\x10\xfd\x12\x11\x04\xb4\x10\xb0z\xbfP\xd7?\x9a\xff\xb75\xd1']\xaf>\xb6t(\x22\xf6\xe1\xa4\x91\x94m(\x14bs\x84c\x0e@\xacB\xd9\xd6\xbcw\x9d;\xd1\xb46\xa0\x8e\xd8\xd5.\x8f\xdf~E\x83\x16\x93\x17f\xeef\x8aY]D\x8f\x86\xe7\xd6\xa4\x82\xb1\xe9\xec\x94\xdd\x92\xea^\x0b0\xf7[\xf8L\xf3\xfd\xd5\x94\x9d\xa8\xfd\x16\x89M\xbe_\x93\xf3\xac.=\xe0\xaf\x8fQ5\xa7*0\xba\xc2_\xd5\xe1\xcf\xef\x00\xdb\xc7x\xdd\x16] \x8e\xab%\xd2$@k\xa3\xbe)\x12\xbb\x0c\xf3\xac\xb8\x00\xb3\xee\x00\xc4\xe6\xfd7\x99\x09P\xa9:?\x8f_\xd9\xfc~\xc4\xdf\xf5\x1e[\x22B\xa1\x8d\xf1\x96\xc0\xbe\xf5O\xed\xa3\x04\xcd\xda\xa5\x86\xec\xfa&U\xdbu\x03\xf3n\xa34\xdb\xe0\x82l\x9a\x13\x9c$\xd2\x9f4b\x9c\xa4\xb8\xac\xe9\xc0\xa9\xf68H\xef5\xe2\xb4\xbb\x18@c\xf5\x22\xbb\xfd.{\xb5\xf1\xf7\x1a\xa5Ok\xdf\xd89e\xf7i\xbf\xbd\x08\xb7\xa6\x11tS\x87n?\x88z\x9a\xa2\xa7I\xdf\x8a\xba\x8e\x99\x1a\xe3i\x01\x8d\xd1\xb5P\x0a\x84\x97\x7f\xf7\x03F\xdf\xb9M\xc07\x1a\xabKI\xd0\xa5\xb5sO\xa4\x14\x13\x04S\x22\x00\x22\x03\x09G\xfcti_.WO#z\xdf\xf6\xf7\x9d\x80\xca\x01\xf0\xd3\x05\x9cm\xe4o\xa1V\xbf*B^u\x15\xd3M\xc8=v\xe1\xab\x9a\x8b,\xa6\xc0\xf72\xa0\x85\x1c\x80\xbd\x0cRM*\xd1\xf7B\xf2j\x86\xce\xf1I\xa1gd0\xd9\xcfB\xb6\xdd\x12\xb8\xda\xc3\xb8\xb2\xdfBf\xbf\x85\xa5\x9a\xc2\xf9S\x17\x85\xdbC:\xe7\x9b\xae\xb7\xc05\xc2\xf2\xfb\x8a\x18\x8c;\xc4\xd5:\x00\xa1\xd5a\xe9\xdc\xffPo\x94:\x81\xe2/BF\x17\x10\xb2\x98\x91\x82\xc0\x99\x14\x00\x8c\xfd\x0f\xd4wo\xe3\xaa\xff;\x18\x9f\xd3_\x91|\x0b\xa3\xf6\xbf\xef\x06\xd0\xc6@TL\x84,\x7fn\xa1\x93&\xcaZO8`N\xa2\xd2u\xe0\xe2RS\x18hl\xc3\xc1r\xbfr\x8b\xfbQHv\x10\xd1\xe6n\x07\xe5Y\x88\xd4\xf6r\x8c&\xa9\x99\x08\xdd\xdf\x8d5.\xd8\x9f\xebj\xbf\xa76\xee\xd6\xedj*\xfe,\x11\x01\xb4\xa0\xaf\xaa\x09\x08u\x8b\x0d\xado\x11\xea\xbdQ\xd7\xbb\x80:\x03c\x9f\xfb\xb0S\x01\xe9\x8c\x9f\x9cuK\x88\xd2\xae\x7f\x5c\x95''\x04\xfc\xfc?\x17\xf9\xfb\xf6\xbfO\xfe\x9c\x95\x14j\xea\xa3k\x06E\x8bf\xd6v]\x94\xd3dJ\xd1A\x11\xd9^\xed\xd2\xfd\x22c\xb5\xcf\xef7\xabN\x80=\xe4\xcfiw\xf1\x1d&\xa9\x07\x10b_L\xb1\xa1vq^O2\x9d\x99\x8e\xad\xd5x\x5c \x9c.\xd6\x81\x00\x13\x84\xc8}\x17\x80\x92\xbd\xdf\xa50Ex\xfd\x0f3#\xd7\xf0\x5c\xcd\x02\x08M\x01\xa4\xf3\xef\xa9\x08\xf0\xc9\xbf\xb2\xfd\x97I\xa4\xbf\x84\xd1\xea\x7f\xbf^\xc0\xcf\xfdW\xff\x8b\xeb\xf2\x07\x84\xbb\xfb\x01\xcd\xad\xfcX\x7f\x80\xddF^\x07Q\xd9\x1c\xea\x1d?m\xa11\x8f$\x7f\x18b\x01S8\x07\xd4!}f\xc1\xd1s&l\x831\x8e[s \xb4jl\xb5\xba_h\x9c\xe6Rk~\x94\xef\xf7\x1e\xf0o\x81\xf1\xce\x85\xbe\xc3[\xcc\xd2\x81N\xe7\xe8d\x88\xf5\xfd\xf7\xf3\xff!\x01PE\xfe\x9c\xe5O\xa7\xfb\xf9=\x03\x12\x8c7\xfc\xe1V\x90S\x0d\xc9\x9a\x9e\xb0z\x17\xf6\xdc$\xf3\xb8\x0fj0\xde\xaf\x0ae\x8b\xdd\xe7D\x85\x5c\x84\x90\x05\x8b\x7f\x9e\xda\x86c\x81\x8d\xb8\x00\xb1E\xc0\xe8\xff\xe1\xaa\xfai\x87B_\x10\xb41lM\xdc\xc2h\xcd\x80&\x22\xe1Pk\x01fN\x00D\xf2\xff ?\x18\xcd\xc5\xa7\x84\xf49\xe2\xa7\x1d\xfeh\xdb\xdf\x0e\x89\xfe9\xf2\xe7\x16\x95\xe1\x22\xffIW\x17\x9b\xd6\xbe\xbb\xa9p\xdem\xd5\xb2\xdd\xe7\x0b\xbd\xees\x0b\x81\x09\x04\x22Z\xeb\xd2\xa3\x96\xd9/\xd48\x8cvZE$\xea\xefb\xd8s\x80\xaeK\xd0.\x1f\xab\x0a\x0e\x0d\xf8\x05\xc6$\x05\xd0 \xf2\xf7\x7f$\xdaf\x97\xf6\xe3\xaf\x5c\x806\xb3\xd1Z\x00.\xfa\xf7\xdb\xfd\xc6\xa2\xff\x10\xf9O\x1aY\xed\xb6y\xc6n#\xf1P5\xfd~\xd8\xe9\xb1^\xf3h\xf0\xdc$\xdf_\x88_ \x10 \x12\xc0\xd0Fj\x5cJ \xd4*\x9c6b\xa3\x16\xbfO\xfa\x15\xd1\xd3\xc7\xaa\xae\x84\x09\xf8\xa9\x83#\x81\xefa\xb8\x00\xe9\x0c\xff\xa0>|\xf2\xa7\x16\xbc\xdf\xed\x8f\xf6\xec\xe7\xc8\x9f\x8b\xfc}\xdb\x9f\xb6\xf9\xa5\xd3Bh\x8bH\xff\xf3\xd9\x9aH|\xd2\xc8u\x1a\xc5l\x87\xdd4\xe5\xa8\xe7\xed\x05\x02\xc1t\xc7\x9c&\x05\xd3!\xbb\x1f\x0cY\x17p\xceq\xf5\xb7\x1f\xe9\xfb+\x11V\xe4\x9f\x83O\x01\x18B\xfetj\xa08\x00\x91\x1f\x96k\xd4\x10Z\xee\xb7\x15\x88\xf2\xfd%\x7f;\x8ch\xe0\xec~\xaeGt\xd3\x1e\xf2\xd8c\xa4\x1d\x8a\xaa\x85(\x05\x02\x81`2G\x00\x84xC\xf5W\xa1\xc5\x888\xa2\xf7\x97 \xf67.5@S\x01\x87^\x108\xeb\x02\x80\xb6`\xe4\x96\xf8\xa5)\x00?\xe2\xaf\x88\x9e\x16\x00\xfa\xc5\x81\x9cx\x08E\xfe\xb1\xc5|\xf6\xaaV\xf7C\x08\x08\x04\x02\x81\x80_\xc4\x8aK\x09\xc4\x04\x007\xd5\xcf0\x91\xbf\x7f?#\x0e@\x8e\xf1~1\xfe\xba/;5\x0a\x87\x91\x06\x98\x87\x1a\x00\x8e\x84i\x17\xa7\x84D\xfd\xfe\xea}\xdc\x0c\x00\xdf\xf6\xa7\xab\xfc\x85\x22\xff\xd02\xbe\xd3\xb2\xae\xea\x16K\x91\x228\x81@ h\xee\x06\xa8H\x90\xc9\xf5\xf4\xf7\xe7\xffs\xa4\xefG\xfb\x83\x92K*\x11\xe0\x07\x94\x95\x10\xa0\xeb\xbd\x80\x88\x02\xa9\x01 \xd15\xed\xf4\xc79\x00\xa1\xa2?:\x0b\x80F\xfe~\xad\x00\xed\xefO\x05\x00w\xf2\xd4\x15\xa6\xd9]~o4$v!~\x81@ \xd8\x9d\x1b\xc0\x89\x00\x9f\x13\xfd\xa8\xbf\xc5\x08\x80\xcc#\xfc\x1cn\x81\xa1\x8e'\x042O$\xa4\xde{\xf8\x91\xbf\xc1!\xcf\x04Hg\xf8\xc7\x0a5o\x88M\xfb\xf3#\xfd\xaa\xd5oU\xf8\xe7\xf7\xf5\xe7\xc8\xbfio\xff&\xe4/\x91\xba@ \x10\xcc\x8f\x1b\xe0\xa7\x04\xaa\xaa\xfd\x14|\x0d@\xe1E\xfeU\xf4\xbf\xe4\x09\x81A\xc9/yy\x9b\x11\xde\xb2\x18_\x1cH\x04\x80\xd7\x03@\x05H\x98\xce\xfbO\x18B\xa7\x05\x804\xe2\xaf\xc4\x00W<H\x97\x83\x8cM\xf5\xdb\x8fi~\x02\x81@ \x98\x1d\x11P\x05m\x09C\xfe~\xf1_\xd7s\x02\xdaL\xf4\x9f{B`\x80\xe1\xd2\xc4\xa1\xde\x00\xcaQ\xe0\xc1\xd6\x01\xcc\xaa\x03\xa0\x18\xe2\xe7\xc8\xdf/\xe2\xe3l\x7f\xda\x09\x90[' V\xe9\xaf s\xd0\x05\x02\x81\xe0(\x88\x00Z\x98W-)\x5c\xd5\x98U\x0d~\x0a\x86\xf8\xfb\xe5>]\xef~\xab|\xaeU\xee\xaf<\x87\xc1`\x06\x16\xb3\x9a\x19\x01PF\xff\x9c\x22\xa3\xc4\xef\x93?-\xe2\xf3;\x00v1\x9e\x1ehc\xbc\xf2\x9f\xcb\xf9s\xcd\x22\xf6~\xd6\x9d=\x0b<\xf8 \xf0\xc0\x03\xb0ox\x83\x5c\x86\x82C\xc5\xd3\xbf\xf03\x00\x80/?\xeb\x9dr0\x04\x87\x8a\xef{\xdf\xcd\xb8\xe6\x8e6\xae\xbd\xad\x8dw\xdc\xf8?\x0fZ\x04\xf8|c\x18'\xa0\x8a\xdc\xfd\xa2\xbe6Fk\x01\xba\xe5\xfd\x81w\xbf\x0aL3O\x0cT\xcb\x03+O\x08\xf8\xe2\xc3\x1c\xb4\x12\x9a\x15\xf2\xf7\x0f\x02\xcd\xf3\xa7\x84\xc8\x97\x00\x1c+\x0f\xf4\xb1r;^n\xcb\xde\xfd\xea\xb9\xa5\xf2q\x7f\xe5\xbf6\xe3\x04\xa4\x08W\xfdOl\xff\xab\x87\x1e\x02n\xbc\x11h\xb7\x01\xad\x01c\x80\xa2\x00\xf2\xdc\xdd>\xf2\x08p\xff\xfd\xb0\xdf\xfd\xdd2\x02\x08\xa6\x8e\xdb>\xf9F,\xddy3T;\x85n\xa5P:\x05\x0c`\x8b\x1c&\xcfa\xf3\x1c\xdb\xf7>\x86\x87^\xf6^9X\x82\xa9\xe3u\x7f\xfcT\x5c\xfb\xf46\xae:\xd9B\xd2RH[\x1a\xa9V\x80\x01\xf2\xdc\x22\xcb\x0dV\xcff\xf8\xd5;\xbe4U\xfa\xf1n}\xcb\xdf\xcf\xf9WD\xdf\x07\xd0\x03\xb0\x05`\x1b\xc0f\xb9\xad\x97\xdb&\x80U\xefo\xff\xf1\xcd\xf2u\x95[\xd0\xc70M\xe0O14\x07\x99\x02\x98%\x01\xc0\xad\xf0\xe7\xdb\xfb\xfe\x8a~\x95\x00X.\xb7c\x84\xf4\x8f\x038\xe1=_\xedO\x9b\x00Q'@#^\xfc\xd7\xe8\xb8\xa9\xf3\xe7\x81\xe5eG\xfc\xed\xf6\xf0\x89\xa2\x18ny\xee\x04\x81\xb5\xc0\xa3\x8f\xc2>\xfb\xd92\x22\x08\xa6\x86\xafYy\x8b#\xfdV\xea\x04\x00R(\xb4J\x01\x90\xed\x08\x00kr\x18\x9b\xe3\x8bW\xbd]\x0e\x9a`j\xf8\xa9\xbf}\x1a\xae\xba\xa5\xe5H\xbf\xa5\xdc\xa6\xdcY\xa9\xadB\x96\x9b\x1d\x11\x90\x1b\x83^\xdf\xe0?^?\x15g\x80\xeb\x00H\xe7\xfc\xfb9\xfd\x9e'\x02|\x01\xb0\xe1\xdd\xae\x02X+\xefoz\x22`\xc3\x13\x11\x03\x0ck\x03\xb2\xc3\x12\x00\xfa\xb0O\x04f\xf1\x1fj\xfbs\xd3\xff\xe8*}\xb4\xc7?\xd7\x0e\xd8o\xf5\x9b\x90\xff\x11Z\x15*\xb44o\x98\xfc\xff\xee\xef\x80\x13'\x80\xa5\xa5Q\xf2\xdf\xd9A\x01I2\x14\x07\xad\x16p\xc5\x15P\xf7\xdc#\xa3\x82`*x\xc6C\xff\x0a\xba\xdd\x86\xee\xb4\xa1\xdbm$\xe8@\xa3\x03\x8d\xb9\xffu\xe8\x00\x00 \x00IDATv\xb9u\x90$\x9d\x91}\x9eq\xff\xbf\x92\x03'\x98\x0a~\xfc\x9e\xdb\xb1tU\x82V[\xa3]n-\xa5\xd1\x82B\x0b\x1a\x1dUn\x89F\xa7\xad\xd1\xe9$X>\x9e\xe0\xa7\xbf\xf0\xb4\x83\x08\x82i\xf19\xe5\x22ZsF\xa7\x99\xfb\xcf\xd1\x9a\xb5\x16\xea\xa7\x98\x1fhP\xaeg\xe4\x9c\x08\xe5\xdci\xf7?\x9f\xc0;^DOs\xfd\xdd\x80\x18\xa0\x1d\x04C\xe4\xbf+\x97D}\xf2\x93\xc0UW\x01\xdd\xae#\xf9\xa1\xcaq\xb7I\xe2\x08\xbf\x22\xffN\xc7=V\x0a\x02\xf5\xf1\x8f\xcb\xe8 \xd8W\xdc\xf1\x97?\x01\xdd\xe98bO\x1d\xd9+\xb4\xa0\x90@Y\x0d\xa55T+\x81j\xb7\xdc~\x95\x08\xe8tp\xc7=?!\x07P\xb0\xafx\xc3\xc7oE\xeb\x98F\x9a(\xa4\x89B\xab\xe5H\xbf\x0d\x8d\x14\x1a\x89u\x03n\x9aj\xb4J\xf2\xeft4:\xdd\x04\xc7\xaeH\xf1\xc6O\xdc6M\x11\x10\x0aF)\x0fQ\x87\x9a+>\xf7\x17\x96K0\x9an\xf6W\xb3\xd5\x11\xeeYl\x01@\xac\x7f.\x0d\xc0\x1d\xf8\xea\x80\xa7\xdem7\xa0\xc8\xe8\xf4@:\xe7?f\xf9O4\xedO}\xf0\x83\xc0\xb5\xd7\x02\xc7\x8f\x0fI\xdfZg\xf3\xb3/P\xae.@k'\x0a\xd2\x14H\x12\xf7>\x02\xc1>\xe0\xd6\x8f\xbd\x1e\xba\xeb\x08]iU\x1a\x9c\x06\xd6\x14\xb0\xc6\xc0\xa2(7w\x1f0\x80\x06\x94V\xd0\xcbm\xe8n\x1b\xb7\xfe\xf7\xd7\xcb\x81\x14\xec\x0b^\xf3\xa1[\x90vUI\xfe\x1a\x0a\xee\x9c4\xd6\xa2\xb0\x16\x85\xa9\xce\xc2\xe1Yi`a\x15\xa04\xb0|e\x82cW&x\xcd\x07n9\xe8`\x94\x8a\x00N\x08\xd0ft\xdc\xca\xb2>\xefP\xfe=\x94t\xfc\xa1\x09\x00b\xfd\xd3\x83O\x9b\xfe\xd0\xe8\xddW]]\xef\xd6'~\xee\x07\xa0\xf9\xfe\x98\x08\x98\x0c\xd7_\xef\x22\xfa*\xafoL\x98\xfc+\x81P\xedc\xads\x04\xba]\xa0\xd3\x81z\xeb[e\xb4\x10\xec\x09\xb7\xbc\xff\xd5\xd0\xcb\x1d\xa8$\x05r\x03\xbbC\xfc\x85\x13\x01#C\xac7\xec\xda\x02\xd6\x1a\xc0\x1a\xa8n\x0a}\xbc\x83[\xde\xffj9\xa0\x82=\xe1\x9b\xdfz\xbd#\xffTC+\x05\x93\x97\x84o-\x8cq\xf7\x87\x92\x14\x18\x91\xa7\xe5>\x06@\xfb\x0a\x8dc\xd7\x1d\xc8\xe4\xb5XP\x9a2Q\xbd\xefN\xb7\x03\xd1\x7f\xc53-\x86{\x0e\x05\x87=\x0dPEH?%\x07;Ex\x09\xdf6q\x00\x9a\xcc\xfbO\x10_\xe0g\xb2\xbcL\x92\xb8\xe2>`H\xfcJ\x85\xc9\xdfw\x08\xaa\xd9\x01J9\x11\xb1\xb4$#\x86`o\xca\xfex\x1b\xb0\x80\xcdJR7\xc5\xf0TVt\x0eTE\xfe\xc69\x03\xe5\xfe\xd6\x16@Z\xbe\x97@\xb0\x07\xb4\x96\x14\x92\x96\x82-,\x8aAI\xfe\xc6\x221\xde\x99\xe8\x0d\x97\xb6\x92\xa7\x95;`\xdd}k\x81\xa4;\x95`\x99\xf6\x06\xb0\x11\x11\xc0\xe5\xf6\xb9\x0e\xb34\x0dP\xbd&\xda]\xf6 \x9b\x01\xcdR# EH\x99\x8a\x80\x16s\xdba\x88\xdf\x9f\xeb\xdf\xc6\xf84\xbf&\x0b\xfdL~\x86\xe5\xf9(\xc1\x87\x04\x80O\xfc\xd6:\xe2\xafD@\x9e\x03Y\x16\x16\x0e\x02AS\x87-3\xb0\x99\x8b\xe4m\xb9\xd13{\xa7Wu\x19\xf5\xbb\xdbb\xb8\xbf5\xb0\x85\x81\xcd\x8d\x1cP\xc1\xde\x06w\xa5\x1c\xf1g\x16\xa6(#\xfe\xc2\x11\xbb\xa5\x94[IRka,\xdcf\xb0\xe3W\x19s\xa0\xad\xf3}\xf2\xb7\x1eg\xf8nt\x8b\xdco\x91\x00\xb5JWo3\x9cS\x89\x0a\x7f\xb9\xe0\x83\x0b\x14\x0eep\x1a\xcf\xfdk\x22\x02|\x82n{\x8fU\x84\xee\xcf\xe5\xa79\x7fZ\xf9\xdf\x22\x16L\xa8\xe1\x0f\x02\x91\x7f-\x1b\xab_\xfe\xe5!\xe9W\x0e@E\xee\xfe\xbc\xff<\x1f\xde\xf7#\xff,\x03\x06\x83\xe1\x96eP\xafx\x85\x8c\x1a\x82]\xe1\xcaW?\xd3E\xfef\x18\xfd\x8flE\x0e[\x140y9\xff\xbf\x18>6\xdc\xa7p\xefQnW\xbe\xfa\x99r`\x05\xbb\xc2\xd3_q\xc2\x11\x7f\x06\x14\xc50\xfa\xdf\xd9\xca\xfc\x7fn,\xf2|\xb8\x15\x85E^\x98\x9d\xd7\x18\x0b\x98\x1c\xb09\xf0\xed\xbf\xfc\xe4i\x91=7\xf6s\xf5\x00\x09\xd9\xb8E\xe9\xfc\xe0S\x95\x8f\xd1\xe0\x96\x06\x9d\x07\x1a\xfd\xcd\x8a\x03\xe0G\xff\xc0x\x01 ]\xc8\x87k\xff\xeb\xa7\x01BE\x7fu-\x7fw7\x1dC)`k\x0bX_w\xf6}\x96\x8d:\x00I\xe2\x8a\xfc\xaa\xe8\xbfr\x02\x8ab\xf8\xba\x8d\x0dw\x7f{\x1b\xe8\xf7Gg\x11\x08\x04\x93\x5cL\xa9\x86\xed\xe5\xb0\xdb\x19\xcc\xc6\x00\xaa\x93@\xb54\x14\x12@\xb9[\xa54T\xaa\xe1\xea\xb0\xcc\x8e\x03\x00\x18\xd8\xac\x80Y\xeb\xc3\xac\x0f`73\xd8\xed\xdc\xed+\x10\xec&\xcaL\x14\xf2\xbeA\xb6m\x90t\x14\x92\xb6\x81n)\xa8\x040\x03\x0b\x0d\x05\xad\x94\x1b\x9c\xb5\x82N\x95[-\xc7\xda\xa1\x13PX\xf4\xd7\x0d\xfa\xeb\x05\x06\x9bf\x9a.)\xed\x10\x18+\x0a\xa4\x1dj[\x81\xfbm\x8f\xf0\xab\xb5\x01hq\xe1\xe4\xbc3\x8f\x02\x80\x99\xf7\x1f\xab\xfe\xa7\x05{4\xc2\xef\x12\xd2\xa7\xe2\xa0\x8dp\xe5\xff\xfe\xb5\xfa=w\x0e\xb8\xe9\xa6\xe1\xf4\xbe*\x1dPU\xfaWU\xfe\xbe\x00\xa8\x22\xff\xad-`m\xcdm\xab\xabn[[\x0367e\xe4\x10\xec\x0a\xc5z\x1f\xc5J\x0fH\x14\x90h\xb7i\xedH\xbf$\x7f\xa4n\xfa\x9f\x13\x00\xc50U\x90\x15\xb0\xb9A\xb1\xd2G\xb1\xdaG\xb1\xdaC\xb1\xd2C\xb1\xde\x97\x03+\xd8\x15\x06\x9b\x06\x835\x83\xfe\xaaq\xbc\xed%\x5cM\xbf\x1c\xdc\x95\x13\x01\xba\xa5\x90\xa4j\x98\xff\x87s\x02L\x06\xf4\xd7\x0a\xf4V\x0cz+\x056\xce\xe5\x07\x1d\xa0r3\x02\xa8\x10\xa0\xfdj\xb8\xc2s\xbf\x08\xb0\x0av3\xef\xb9\x03M\x01\x1c\x96\x03@\xe7\xfaS\xf2\xa7\xd6J\x07\xe39\x16j\xb5p5\x00uy\xff\xdd\x17\xfd\xf9\xf8\xf2\x97\x81\xdbn\x1b\x15\x00>\xf9S\x01P\xa5\x03\xb2\xccE\xfc\x15\xf1W\xe4\xbf\xb6\xe6\x5c\x01\x81`7\x02\xe0\xfc&\x8a\xd5\x1eT\xa2\xcbMA%\x0aP\x09\x14\xb4s\x03R\xe7\x0a\x0c\x1d\x80bX7\x90\x150\xab=\xb7\xad\x94\x22\xe0\xbc\x08R\xc1.\x05\xc0\xbaAo\xcd\xa0\xb7V\xec\x8c\xb8J\x95u\x01}\x8b\x04\x0aZ+$-@\xa7\xce\x01p\x02\x00\xce\xfa/k\x07\xfak\x8e\xfc{+\x05.}yp\x90\x5ce1\xda\xab\xdf\xe7,\x9fgh-\x00\x17\x90\xb6\xe1:\x01&\x0c\x07\x1e\xbc;s\xc8\xe7Fh\x9e\xa5\xc2\xf8\xf4?:\xb5\xcf\x8f\xfa;\xccAO=\xdb%D\xfe\xd83\xf9\x03\xb0\x1f\xf9\x08p\xf1\x22\xb0\xb2\xe2\xb6\xd5UG\xe0\x9b\x9b\xe3\xdb\xfa\xfa(\xe1\xfb\xa4\xbf\xba\xea\xde\xe7\xc2\x05\xd8\xfb\xee\x03\x00<\xe5\x0f\x7fHF\x10\xc1D\xd8\xba\xef4\x8a\x0b[(V\xb6\x1dy\xaf\xf6P\xac\xf6\x1d\xa1o\xf6`6\xfb(6{(6\xfb\xe5\xd6\x83\xa9\x9e/\xf7\xddy\xdd\xca6\x8a\x0b[\xd8\xba\xef\xb4\x1cX\xc1D\xf8\xc3?tC\xe9\xe9\xfb\xb6\xb0u!\xc7\xf6\xc5\x02\xbd\xd5\x02\xfd5\xe3\xb6\xd5\x02\xfd\x15\x83\xdez\x81\xfef\x81\xde\xa6Ao\xd3\xa0_n\xbd\xf5\x02\xfd\x15\xf7\x9a\xdej\xb1C\xfe\xdb\x17\x0b\xfc\xfdG\xd6\xa6\xcdK\x88\x04\x87\xa1\x805\x8d\xdc\xa7\xfbWN\x00-\x08<\xd0\x86@\x07\xea\x000\xf6?\xc0\xb7^T\x18\x9f\x06\xe8\x17\xf5q\xdd\x96\xb8jL\xce\x01\xd8u\xb3\x9f(\xbe\xf2\x95\xe14@k\x87\x91\x7f\x15\xfd\xb7ZC\xdb?\xcb\x86\x0e\xc0\xd6\x96#\xfd\x8b\x17\x81K\x97\xdc\xed\xe5\xcbxV\xf1\x8b\xd0I\x0bW\xbe\xf2YxV\xff\x17\x90\x9d_\xc7\xe0\xfe\x8b\x18<p\x11\xa7\x7f\xec\x8fdt\x11D\x91\x9d^\x83\xcd\xcb\x88\xdeX(\xad\x81\xf60\xf2Wi\xe2\xf2\xfa\xba\x9c1\x90W\x0e@\x01\x0c\x0c\x8a'\xb6\x90\x9f\xdbD~~\x13\xf9\xb9\x0d9\xa0\x82Z\xbc\xfb\xdd\x0a\xcfx\x06p\xc7\x1d\xc0\x93\x9e\x04\xbc\xeaU\x80\xb5\x0ay\x0el_^\xc2\xc6\xe3\xb9+\x06\x1cX\x98\xdc\x026E\xbal\x91\xa4C\xeb_\xa7\xce\x050\xc6\x0e\x0b\x07\xcb\xd7l^\xc8\xb1\xf6X\x8e\xb5\xc7\xb2\xc3\x0cV}\xf2/0^\x0c\x98\x82o\x12\x94\x82o\x05\x1c*6\x5c<\x01@\xbe$\xc0O\x87P\x18o\xb4@\x09\x9e\x16\xfc\xf9\xf7SF<4\xe9\xf5\xbf\xb7\x83^\x09\x80\xa2pE|\x9d\xce\xb0\xddo\x95\x1a\xf0\xab\xfd\xab\xfb\xbd\xdeP\x00T[Q I\xbaPHam\x0e\x0b\x8d\xd65W }\xee2\xba\xff\xe0F\xdc\xf1\xd7?\x89\x07\x9e\xf3[2\xe2\x08\x82(\x1e\xdft\x0d\x802\xb3#\x04T;\x19\xdd:.\x0di\xfb\x05\xec`ts\xc4\xbf\x89\xe2\xfc\x06\x8a'\xb6\xe5\x80\x0a\xa2\xf8\xeb\xbfVx\xf5\xab\x87\xcb\x9b\xb4Z\xde\xc0\xaa\x00[\x00\x1bgs\x14\x83\xa1\xa5o2\x8b\xb4\xab\xa1\xdb\xaeG@\xd2.\xb7\x96B>0n\xda`\xdf\xee\xdcn<\xee\x04\xc0\xea\xc1\x0b\x80X_\x00:-\xd0\xe7\x1c*\x064&[uv!\x05\x00\x02j'TXQE\xfft\xde%u\x00h\xe4\xcf)\xad\xd0\x01\xde\xf3A\xb7\x9f\xf8\x04\xd47\x7f\xf3P\x04\xf8\xfd\xfe\xab\xdb<\x1f%\xffj\xf3\x1d\x80,\x03\x8a\xc2\xf5l\xb7\x09,4,4\x90(X\xad\x01\xab\x91^w\x1c\xb7}\xe6G\xf1\xd0\x8b~[F\x1e\x01\x8b\xcd\xbb\x1f\xc1\xb1\x17>\xc59\x00y\x01\xe4\x8c\x00h\x97\x02`\xc0\x08\x80s\x1b\xc8\xcfm\xc2\xac\xf6\xb1y\xf7#r@\x05A|\xe63\x0a\xb7\xdd\xe6\x86\xb8\xca\xf0\x1c\x19\x5c\x15`\x0a\x8bl\xdb\xa08\xe7\xc8\xbf\xda\xd2\xb6r\x02\xc0\x13\x01:u\xb5\x01\xb9/\x00\x06\x16k\x8feX{,\xc3\xc3\x7fq \xf5(>\xe9[4k\x0e\x14Z\xca\x9e\xce\x04P\xe0\x1b\xd2\x1d8fA\x00h&Jo\x83_|\xc1\x9f\x0eH\x97\xf4\xe5\xfa3\xd7M\xfb\xdbW\xd8\xbf\xf8\x0b\xa8\x97\xbc\xc4\xcd\xef/\xdb\xfa\x8e\x08\x01cx\x01p\xf9\xb2\xab\x0d(\xd3\x03\xcf9\xf5\xc6r\xca\x96*\xbf\x89[\x22\xd3Z'\x00t\xdaBr\xbc\x8b[\xff\xec\xf5x\xf8;\xde'#\x90 *\x02\xb2\xdc\xb9\x00\x93\x09\x80M\xd8\xcdL\xc8_\x10\xc5\x9f\xfd\x99\xc2\xc9\x93\x8e\xf4\xdbm~\xf6r\x92\x00gN\xf5p\xd3\x9d]\x00\xc0\xf6\xa5\x02&s\xe4\xbeC\xfe\x9e\x00P\x1a;\xc4_\x89\x80\xbcg\xb1~:\xc3\xc3\x9f>\xd4bTU\xb3iB\xfe\x09\xe3\x0c\xf8N6u\xa5w\xfa\xe1Xk\xb5R\xca\x1c\xc4\x17:\x10x\xf9\x7f\x85p7%\xbf\xbf\xff1\x00\xcb\x00\x8e\x038\x01\xe0\x8a\xf2\xb1+\xcb\xed\x8a\xf2\xf1e\xefv\x19\xc35\x01h\x0bF\xba\xfc\xe2\xd4,\x17\xf5\x92\x978\x01@]\x00`<\x050\x18\x0c\xeb\x01\xb2\x0c_w\xdf\xeb\xa0l\x02\xa5\x9c\x00\xa0\xdd\xb1\x8d\xc9Q\x5c\xdaF~n\x0d\xd9\xe3\xeb\xc8\xcf\xaf\xe1\xd1\x1f\xfa=\x19\x89\x04c\xf8\xfe\xdf\xb9\x19W\xdf\xde\xc6\xfb\x7f.w\xbd\x00&\x10\x00\xb6_\xe0\x87\xde\x9e\xe2\xf2c\x03|\xf8\x9f<&\x07S0\x86\xf7\xbf\xdf\x91\xff\xf5\xd7\xbb\x9c\xff\xd5W\x0f\xa7\xe7W\xb3\x9d5)3\xbf\xe9\xce.\x92\x96\x97\xf3'\xe4\x9f\xb4\xdd\x1bT\xb6\xffN*\xa0g\x0f\x83\xfc-\xb95\xe5V\x94[\x0e7\xa7\x7f\x00W\xd9\xbf\x05\xd7\xedo\x1d\xc0\x1a\x80\x0d\x00\xab\x00V\xca\xc7.\x97\x8f\xaf\x96\xcf\xad\x01\xd8\x04\xd0/\xdf\xa3\xba\xcd\x01\x98\x83\x10\x00\x87Y\x03\x10\xca\xcbkO\x1d\xf9\x0aJc\xd4\xea\xe7\xd2\x034\xea\xe7\x96\xf9\x9dz\x91\x85\xfd\xf4\xa7\xa1\xbe\xe9\x9b\xdc\x14\xbfj\xc5\xbfj\xab\xba\x00\xd2v\xc0Y\x86g\xdf\xf3j\xd7\xb3]\x0d\x0f\xd5\x88\x00\xf0{\xb4\xb74\xf4R\x0a\xd5Mq\xcd\x9b\xee\xc4\xa5w\x9d\x92\x11I0\x82\xf6\x15\x1a\xed\xae\xc6O\xfd?\xcb\xf8\x8d\x7f\xbc\xe5\xd2\x01\xdb\xf9\xce\x8a\x7f;\xa3\xb31\xb0\xc6\x96\xc3\x9b\xeb\xbd\xfaS\x1fX\xc6\xe6\x139\xda'\xa4\x01\x90`\x1coz\x93\xc2+^1\xcc\xf5\x97\x99\xcb\x11\xc2W\xca\x0do~\xcf\x9e\xd3\xf7\xf5p\xf2y\xce\x09\xb0\x06P\x99E\xbe\xed\xa6\x04B\x03:q\x8f\xbb\xcd\xee\xdc\x7f\xe4\xb3\x87\x1e\xf9\x87\x9a\x03\xd1i\xec\xfe\x0c6\xdf\x11\xa8:\x01\xd2\xe7\x12\xc6\x05PU\xd0<\xed5\x01\xf4!\x1cH\xeeo\x9f\xb0\xb9\x5c\x0a]h!\x01_\x0f\xa01Y\xc3\x9f\xa9\x09\x01\xfb\xd9\xcf\xbab@\xba\xf9\xd6\x7f\xb9}\xf5\x1f\xbd\x14\xcf\xfc\xfc\xab\x5c#\x16\x98\x91U\xdav\x9a\xb4\xf8-Z\xab\x0d\xce\xd6M\xae\x93\xc5\x83\x04\x8c\xbaoig\xb5\x1a\x8b\x9f\xfd\xb3\xe3\xb0\x83\x1c\xb6\x9f\xbb\xa2\xbf~Q\xde'\x7f\x0fr\xfc\xec\xc7\x8e\xbb\xf9\xd7\xc6\x22\xed\x88\x00\x10\x8c\xe3\xba\xeb\x9c\xed_\x955\xf9\x0b\x9b\xda\x00eU\xcf=zO\x0f_\xf7\x86\xabvr\xfb\xfe\x96\xf7\xab\xcd\xec\xdc?D\xf2W\x81\xe0\xb5.\x05\xe0\x17\xb3s5\x02\xf4\x96k\x89\x7f \xee|z\xc8\x07\x95[\x07\x80\xe6Qh\xb3\x05n\x91\x1f\x1d \xff\xd8\x9c\xff\xa9\x1f`{\xef\xbd\xc3\x7fz\xe7\x9d\xa3\x11\xd7\xa9S\xb8\xf5\xa3\xafGz\xe3\x89\x9d\xa5Z\xd9\x9f\xdd_\xa4\x85\xf6s\xcf\xdc\xc0-\x8b\x07\x09(\xbe\xfeM\xd7\xe0\xab\xbe\xeb\x04\x8a\xbc\x5cJ\xd5\x00\xff\xe63W#\xd1\x0a\x89R\xf8\xc5o\xb8\x08\xe8j\xe5\x15\x8b\x7f{\xef\xb5;}\xd9\x07\xdb\xc6ua+\x5c\xa1\xd6\xd7\xbf\xe9\x1a\xfc\xe5\xbb.\xc9A\x15\x8cD\xf7U\x0cS-ib\xcc\xb0\xffY\x88\xfc+\x91\xf0\xde\xd7\x9c\xc5\xd9\x17\x01g\xce\x00\xdf\xf1\x1d\x16'\xef\x5cv\xceT\xe9\x0c\x9c>\xb55\xb3_\x1d\xe3n2\xc79\x5c\x9b`_\x1c\xf8Nw\xf5:\x8b#0\x0d\x10Ld\x9e\x04\x88<!\xb6I\xcb;\x80\xdc\xf2\xbe\xb1\xaa\xffCeI{j\xdc\xa2wK\xaf\x96s\xb0\x079\xa0\x8c\xdbP\xde\xear\xa5\xb6\xca\xfe\xb7f\x18\xc5\xf9\xf9\xda\xac\x90\x11I0\x82\xa4\xad\x5c\xa5\xb5qD\x9ee\xc6\xf5^W\x0a\x85Rx\xcb\xa7\xafAR\xda\xae\x85\xb5\x18\x0c\xcc\xce\xd2\xab\xd9\xc0\x0c\xab\xaf3\xbb\x93\x97\x15\x08*T%L\xfeB\xa6\xfd\xfe0%P\xc5$\x95 \xf0\x97@\xb1vX\xfaTuM\x9fa\xc2\xaf\x13\x02u\xcb\xd9s\xd1\x7f%\x08(\x17\x8e\x05\xac\xd3N\x03\xcc\xc2,\x00\xea\x06h\x86\xd0\xfd\x83\xda\xc6\xb8\xdd\xdf\xb4\xd9\xcf\xcc\x8cd\xc7_v;\xae\xfa\xd1\xe7@uSW\x8cel\xd9\xa7\xbd\xdcZ\x1a\xd0j\xb8N\xbb-m\xff^\xe1z\xb3\xaf\x94\xdd\xdb\xd6\xfb\xb0\x9b\x19\x96_\xf8\x14lI\xc5\xb6\xa0D\xbem\xd0_+\xcaiU\x85#\xff%\xebz\xae\xc3\xb9\x00Ik(\x00\x8a\xaa\xf7zn1\xd80\xd8\xbe\xec\xfa\xae\xf7W\x0b\xe4\xdb\xb2\x1c\xb0`\x88\x17\xbeP\xe19\xcfq\x13\x97\xd2\xd4U\xf9\xab\xb2\xbdo\x9a\x0e\xc9_k\xf77\x15\x00Y\xe6&>]\xba\xe4\x9a\x9f\xbe\xece\x0a\x7f\xfe\xe7vV\xbf.Y\xa8x\xa7\x16 d\xff+B\xf4I@ \xc0\x0bhi\x1dA\xe19\x02S=0\xe9!\x1cLJ\xc6!\xd2\xa7\x07\xa5ZJ\x91[\x83\x99{\x8dF\xb8\xf0\xef\xd0\x85\xc0\xc6\x9f?\x88\x1b\xff\xf3?\x1aVc\x1b\x8c\x90\xbfj%\xce\x01(\xa3\x7f\x14f'\xe27+=\x98R\x04\x14+=\x14k}!\x7f\xc1\x08\xb6/:\x02\xd7i1\xec\xae\xd6\xb3n\xd5\xb5\x92\xfcu)\x00v\x16]\xc9]\x93\x96\xc1\xa6\xddi\xbb\xda[1\xd8\xbe(\x0e\x93`\x88\xbb\xef\xb6x\xfd\xeb\x15VV\x86\x11~u[M\x03\xf4\x97A\xa9\x8a\x01\x81\xe1\x04\xa8K\x97\x86\x22`\x86\xc9\xbf.\xf2\xe7\x22x\x8e\xc7\xe8\xc2@)\xc6\xd3\x071\xf1\xb10\x02\x80\x13\x01\xf4\x80rm\x15[\x18\xb5\xfd\xb9\xe9}\xa1\xaeJ3\xeb_\x9aK\xdb(v\xa6c\xa9r\xa1\x96r\x8aV)\x00\x80\xd16\xadv0t\x00\x8a\x95\x1e\x8a\xcbn\xa1\x96\xb7\xe1\xd9\xd8\xb8\x90\xe3\xe2\xfd\x03\x5c|\xa0/S\xb7\x8e8\xd6\xce\xe4\xe8].\xa0\x13\xb7\x1c\xabN\x0a\x14K\xda\xd5\x00\xa4\x0a\xba\x85\x11\x07\xc0\xe4\xd8i\xce\x92m\x18\xf4.\x1b\xf4.\x17\xe8].\xb0v&\x97\x03z\xc4\xf1;\xefPx\xc6\xad\xc0\xed\xb7\xb9\x02\xc0\xf3\xe7\x1d\x81S\x01P\x89\x80\xaa\xfb\xb9/\x00\xaa.\xe8U\xeb\x93K\x97\xdc6\x87\xe0\xd2\xcb\xa1\x80\xd6'\x7f?\xda\xf7\x85@\x12\xe1\xb0\xa9\x22\x9d\x91\x83\x19\x9a\xaeW\x11~,-\x10[\xe5o\xa6\x93\x97\x83\x87/\xa3em\xb9V\xbbr\xe4\xdfJ\x80\xd2\x01P\x89\x82-J\xe2\xcfJ\x11P\x09\x80\x0b[\xc8/l\xa1\xb8\xe0V~\xeb\xe0\x18\x92\xab[X~N\x82\x1b\x9f\xdd\xc5[V\xbe\x06\xeb\xe7s\xbc\xf3\x19_\x96\xd1\xeb\x08\xe2\xf4\xbd[x\xce\x1b\xafF\x91\xb9\x00B\xa5nnu\xd2r\x9d\xd6\x92\x96\x97\x02\xc8\xedN\xbf\xf5\x22\xb3\x18l\x1al=\x91c\xfdl\x8e\x8d\xb39N\xdf\xbb%\x07\xf4\x88\xe2K\xff]\xe1\xc9O\x02\xbe\xef\x1f\x02\xed.\x90v\x00t\x9du\x7f\xfa\xb4#\xf3\xa2\x18\x0a\x00\x9f\xf8\xab\xfbJ\x0d\x89\xbf\xba\xbdx\x118{\xd6uP\x9fSp\xd3\x00\xb9\xda3?5\xe0\xbb\x01I\x19\xdd'\xde~\x9c\xc8\x98j\x1d\xc0a\xd7\x00p.\x00\x9d;\x99\x10\x05\x95\x04\xc4@\xd3y\xff3#\x0a\xb2\x07W\x80\xc2\xee\xd8\xfb\xaa\x93@wR\xd7\xb4\xa5\x93\xba\xf6\xbfeS\x16\xbfAK\xf1\xc4\xe6\x0e\xf9\xe7\x17\xb6\x80\xc2\xa2m5\xb4\xb5P\x16\xd0\xcaB\xa5\xc0\xf1kS\xfc\xc4_\xdd\x81\xff\xf2\xdc\x07d$;\x82X}4s\xb6~\xee\xec\xfd\xce\x15\x09\xd2N\xd9p\xa5\xa3\x90\x96\xc5}~\xcb\xd5\xbco\xd1_+\xb0qv(\x00\x04G\x13\x7f\xf5{\x0aO\xbd\x05h/;\xf2OJ\xf2G\xc7\x91\xfe\x993\xc3\xa8>\xcbF\x97@\xf1\xfb\x9fU\xcb\xa3\xf8\xdb\xe9\xd3\x8e\xfc\xe7X\x00\xf8\xe0\xd6\xb4\xf1\xa3\x7f\xba.M\xc2p\x1c\xb7\x22\xe0\xd4\xeb\x00\x0eR\x00p$\xec\x1f\xb8\xd0\x81\xa4\xaa\x89\x9b\xf2\x17ZN\xf1\xc0\xe6\xfd\xef\x06\x1b\x9fz\x08\xc7^\xfcT\x17\xe5\xe7\x16\xaa;*\x00T\xaaG\x88\xdf\x0c\xdcl\x81\xe2\xe2v\xe9\x00l\xc2\xf6\x0b\xfc\xca}7\xb8\x03\x90Zg\xf7Z\x03m\x15L\x0et\x97\x13\xbc\xf1\x93\xb7\xe1\xbd\xdf\xf2\x90\x8chG\x0c\x83u\x83\xb5,\x83)\x17^\xe9\x5ciF\xc8?\xe9\x94]\xd7H\xdf\xf5\xfej\xb1C\xfey\xcf\xca\x81<z\xb0\x9fz\xafR'o\x00\xd2.\xd09\x06h\x8f\xfc\xd1\x01\xee\xfb\x1c\xf0\x82\x17\x8d\xb64\xe9\xf5\xc6\xc9\xbf\xdd\x1e\xce\x10\xa8\xb6^\x0fx\xe4\x11G\xfew\xdd5w\xe7W(pU\x11!\xc0\xf1\x94F\xb8\x91\x10\xfd\x7f\x0b5\x0b F\xce\xdc\xd4@\xce\x1d\xd0D4\x1cx\xb7\xbf\xfd\xc2\xe6]_\xc1\xb1\x17?\x15(,\xd4rkT\x00t\x12\xcf\x01\xc8\x87\x0e\xc0J\x0f\xc5\xe5m\xd8\x81\xc1\x7f\xf8\xdcu0\xd6\x02\x0a0\xca\xc2*;\xf4\x9aZ\x0a\xad\xd4m?\xf0\xff\xde\x82\x0f\xbd\xe6Q\x19\xda\x8e\x10\x1e\xbbw\x0b7?\x7f\x19\xebgs\x98\x1c\xe8\xac\x1aG\xfe\x9e\x0bP\x09\x80*\xfa/\xfa\x16\xfd5\x83\xcd\x0b9\x8a\x9e\xc5cb\xff\x1f9\xf2\xff\xbd\xffC\xa9[nt\xe4\x9fv\x5c\xfa\xc8\x96\xb1\xa8-\x00\x95\x01\xca\x02\x9f\xff\x18\xf0\x82\x97\xbbz\x80jes\xce\x01\xa0\xd1\xff\xd6\x16\xf0\xd8csE\xfetA 0<\xa3\x02\x8f\xd1\x15\x03\xfd)\x82\xad\x88 P\x07!\x02\x0ec\x16\x00\x22\x07\x0a\x18/\x82\x88\xcd\xf3O\x10\xef\xcc4\xb3\xd1?'\x02T7\x1dK\x03\xb8\xbc\x7f>\x9a\x06\xc8\x0a\xd8\x81\xc1/|\xf6\x1aW\xc1]~\xb3b\xa7w`9\xff\xdbX \x05Z\xcb\x1a\xad\xae\xc67\xfe\xecu\xf8\xdc\xff\xfe\x84\x0cqG\x08\xef{\xc76^\xffo\x96\xb0y!Gou\x18\xf9;\x17\xc0]ry5\xef\xbfr\x02\xca\xde\xeb\xef}\xbb,\x03|\xd4\xc8\xffg\xff\xa9R/{\x81#\x7f\xab\x80<\x03l6:\xf7\xcd\xed\x09 \x03>\xff\x87\xc0\x0b\xbe\xc7\x15\xf5ml\x8c\x93\x7f\xab5.\x00z\xbd\xb9\x8c\xfc\xebx-V\x13\xc0\xf1U\x12x\x8e\xabe[\xc8>\x001\xe2\xf7S\x04\x00\xdf*\x98\xed\x9f<\xaf\xd8\xbc\xeb+n\xf9\xd6\xed\x1c&\x19\x94\xbd\xda\x95\xfb\xe9\x8d\x85\xb5v\xa7O\xbb-,~\xfe3W\x8d\x90\xff\x8e\x00\xb0\xc3-/\x86B@\xb7\x15\xbaWJ[\xd7\xa3\x84\xb7\xbf]\xe1\x05/\x00\xfe\xe4\xff\xda\xc6?\xfa\xf1%\xd8\xc2E\xfbj\xd3\xad\x05\xa0\xb4\x9b\xdeG\xfb\xae\x9b\xcc\xe2c\xef\xdd\xc6\x85\x0b\xee=\xde\xf2\x16I\x03\x1c\x05\xf2\x07\x80+O\xb8~\xfc\x83\xcc\x91\xbf\x19\x00&\x0bDP\xa58\xb8\xfbw\x81\x17\xbe\xce\xe5\xfa\x07\x83\xd1Y\x01J\x0d\x9b\x05U\xdd\x02\xef\xbe{!\xce'.\x98\x0d\xb5\xb3\xd7\x18-f\xe7\xdc\x81\xea=\x0c\x16\xbc\x15\xb0%\x91?]k9\xd4\xc67$\x16b\xd6\xc9|\x89\x80\xbb\x1f\xc1\xf2\x9d']\x03\xa0D9\x11\x00x\xe4\xef\xc4\xc0\xbf\xbe\xbb$\x7f\xc2\xe7\x85\xb5;\xed\x5cw\xee\x97\xed\x5c\xf3\xbe\xd9y?\xc1\xd1@\xb7\xeb\xacYk\x81S\x7f\xb4\x8dk\xae\x01n\xfb\xa6%(\x0d(m\x87\xe7\x97G\xfe\x0f\xdf\xbd\x8d\xcb\x97\x81s\xe7\xdck\xbb]9\x8eG\x85\xfc\x01\x17s\x0c\x06@>p\xe4_dN\x00\xec\x0c\xac\x1ew\xdb\xdc=g3\xe0\xaew\x03\xdf\xf8\xc6\xd1u\xcf\xaa\x86@>\xf9\x9f:5\xf7\xe4\xefG\xe4u\xeb\x02\xf8.\xb6\xcfO\xbe\x18\xd0\x1e\x0fW\x82!\xf7\x02_Sr\xc0Tf\x02\xa4\x87x\x10\xe9}\x15QS\xdc\x81\xa4B\x81\xfe \x98GA\xb0u\xea\xf4\xc8\xdf\xcb\xcf;\x89\xad\xfbN\xe35\x1f\xbc\x05'nJq\xe2\xc6\x16\xb2\x9e\x81Q\x0aI\xd5\xd1M+\xd8\xaa\xa1\x8b\xb7e\xdb\x06\xd9\xf60\xb7\x9b\xf7\xa4\xa3\xdbQB5E\xab*\xc2\xea\xf5\x80\xff\xf9\x09g\xeb\xfb\xf3\xb6\xab\xf6\xac\xd6\xba}\xb6\xb7G\xd7\xad\x12\x1c\x1d\xf4\xfae\xf4?\x00\x06}\xa0\xbf\x0d\xf4\x12@\x95\xad\xd7T\xeaj\x00\x12\x94\xa9\x81\xac\x14\x02\x03\xe0\x03\xbf\x04\x9c\xbd\x00\x9c9\x0f\xbc\xf6\x7f\xb1\xe6y\xcfS\xfa\xbe\xfbBK\x03\xcd]\xa0V\x11\xbfeD\x00H`J\x8b\xd5\xb9<\x7f\xea\x89\x01Z\x08_m\x05\xa6\x9c\x06H\x0f\xf1@r'\x80fl\x15x\x22\xc026J\xe8dR\x8c\xe30w\xd8\xba\xcf\x09\x82\xedK\xc5N\xf1\x96N\xe1\x88\xbf\xda\xda^K\xd7r3\x03\x8b\xde\x9ak\xe6\xb2}\xb9@\xef\xb2A\x7f\xcd\xe0\xe4\xf3\x96q\xfa>)\xec:\x0aX]u\x8dV\xaav\xad\xd5\xd2\xac\xd5\xd6n\x8f\x0a\x00c\x1c\xe1W\x0dZ\xaaV\xad\x82\x85\x87\x02\x80\xe7=[\xe1\x05_\x0b\xac\xac\x01\x89\x17\xc9g\xa6$\xfe\x96\xdbZ\xe9\xa8\x000\x99\x13\x0d\x17W\xdcv\xa9<g\xee\xbb\xcf\x9a9&\xfc&\xfc\x15kh\x17\x9b\xde\xae=^\x03\x13\xc8\x1e\xd81\x9b\x85F@\xd6#v\xc3\x10\xb7&\x1b%~:\x85pf\xe7\xfd\xefI\x08\x5c,v*\xb7\x93\xd60\xf2OZ\xe3\x02\xc0\x0c,\x8a\x01\xd0_/\xc9\xff\x92\xbb\xdd\xbe\x5c\xe0\xd1{\xb6q\xff\xfd\x0a\xf7\xdf\x0f|\xe7wJnw\x91Q\x91x\x9a\xba\xad\x12\x00U\x9bV_\x00T\xe4_\xb5i\xf57\xc1\xc2\xc2\x02\xc0\xc7\xde\xa0\xd4\xd3\xaf\x03\xee\xf9\x01\xe0\x0d\xf7\x02\x97\xd6\x00\xe5\x96\x22\x81V@V\xb8\xe8_\xa7@\xbb\x14\x00\x1a\xa3\xe4?\xc8\x80K+C\x11\xc0\x04^u\x7f\xcf\xb5x\x02\xef`s\x84O]\x82$\xc0_\x07R\xd7\x96\x1e\xc6\x09\xe7\xc1\x10kE{\xb7\xd4\x11\xa0*IcqTe-\xce\xffm\x0fI{i(\x00<\xf2\x1f\x11\x00\x03[\xe6\xee\x5cC\x97\x8a\xfc7/\xb8y\xdd\xd6\x02\xb7\xdc\x02\xdcp\x03\xb0\xb2\xa2\x90e\xc0\x93\x9e$B`\x11\xf1\xf0\xc3\xc0\xf5\xd7\x8f\x0a\x00\xbfG{%\x00*\xf2\xaf\x04@\xd5\xa6\xf5\xc2\x05\xf7\x1e\x82\xc5\xc4\x857+\xd5i\x03\xdf|\xbb#v\xd5r\x16\xfe\x0d\xd7\x0e\xc9_i`P\x00II\xfc\xd5\xb9\xa3\xed(\xf9\x0f2\xe0\xe2\xaa#\xff\xbf\xfdrc\x92_$\x11\x10\x9b\x85\xe6\xa7\xb2S\x86\xcb\x92H\xb0:\xd5\x8e\x80\x87\xe9\x00p\xc5\x80\xf49\x1b\xb0E4\xe2u\x04\x0b\x87/|p\x15_\xff\xe3\xd7\xc0\xe6\xae\xd9O\xda\xf5\xe6s\xb7\x14\x90`H\xfe\x03W\xf4\xd7_5\xd88\x97c\xe3\x5c\x8e\xcd\xc7s\x0c6\xcc\xce\xa2\x1cI2\x8c\xfe\xfe\xee\xef\x14\x9e\xf9L\x11\x01\x8b\x86\x8b\x17\x1d\x81g\xd9\xb0\x08\xcb\x9f\xa7]\xb5i\xf5\x9b\xb9\xf4\xfb\xae\x00\xf0\xf4i\xb7]\xbc(\xc7q\x11\xf1w?\xadp\xf2*\xa0\xdbv\xe4_-\xaf\xb6\xb1\x05<\xf280\xc8\x1d\xa9\x1b\xe3n;\xeda\xf4\xdfj\xb9>\x00\x83\x0c\xe8g@\x7f\xe0j\x07\x1e9\x0b<t\x1a\xf8\xe0Gm\x0e>\x05\xbb(\x84\xdfT\x08\xd0\x15\x00-\xe3\x0e$\x887\x14\x9aj\x1d\xdbA\x0a\x00\xeeD\xb0$\xc2\xa7\xc4ok,\x17z\xdf\x92\xf7_\xa8\x93\xed\xd2\xfd\x03\xd8\xc2\xc2\x14@\xfb\xb8v\x02\xa0\x14\x02:Q\xc3b\xbf\xbe\x9b\xd7\xdd_w\x02`\xf3\x5c\x8e\xcd\x0b\x05LaG\xa2Ak\x1d1\xa4)\xf0\x89O(|\xeb\xb7\x8a\x08X$\x9c:e\xf1\xe2\x17\xab\x9dV\xad\xdb\xdbN\x00t:\xae\xba\xbf\xd3q\xfbU\x05\x82\xd5<m_\x00,@\xd5\xb6\x80\xe0SoT\xb8\xf9* m\x01\xed\x0e\x86+\xae$e\x8b\xdf\xb2\xb1O\x15\xd9\xaf\xac;\x01\xb0\xb3\xb5\x80\xc2\x0c\x89\xbf?p\xc2\xe1\xa1\xd3\xc0C\x8f-\x5ct\xbf\xdb\xc8\x9fKMS\xc2\xf7\xdd\x01\xcd<G\xff\xd7B\xcd\x02\xa0\x11\xbf\x09\xfc\xed\xf7BV\x11Ei\x17\xdd\x09x\xe8\x93\x1b\xb8\xf5%\xc7`\x0a\xa0s\xa5\x13\x00iW#\xed\xba\x05^|\xf2\xcf\xfbnQ\x97\xcds9z\xab\x06\xc5\xc0\xe2\xcc\xa9\xde\xf0\x07(\x0b\xc1\x92d\x18\x15~\xf0\x83\x0a\xaf}\xad\x0c\xf8\x8b\x84\xedmG\xe4\x93\x0a\x80\xf3\xe7\xdd\xfe\x82\xc5\xc2\x87~@\xe1\xa9W\x95Q|U\x00j\x00\x14n\xd0<\xf5S\xc0\xf3\x7f\x0b\xb8py(\x00\x8e-\x8d\x0b\x80\xbcp\xe4\xdf\x1b8\x01\xb0\xba\xee\x04\xc0\xa7O\xd9\x9c\x19\x83\x17\xd1\x05\xe0\xba\x02\x02\xe3ui\xd5-\x15\x02\xfe\xe3\x5co\x9b\x03\xa9c\x9b\x95\x22@\x0e\x9a!~\x1bp\x03\x9a\xb8\x0e\x0b\x81\x87?\xbd\x89[_r\x0c\x9d+\x93R\x00\x94.@\xdbw\x00\xdcm5\x0d\xb0\x18X<v\xcf\xe8h\xee;\x00\xd6:28v\x0cx\xe5+\x15>\xf2\x11\x11\x01\x8b\x82\x7f\xf7\xc3\xc0/\xfc\xd7!\xa1\xfb\xe4\xef\x0b\x00_\x04\xac\xaf\xbb}\xdf\xfa\xc3r\xfc\x16\x09\xaf\xfc*\x85\x9f\xbc\xd3\x11\x7ff\x80\x22\x07L2>\xa0\xde\xfb#\xc0\xf3\xdf\x03\xacn8\x01\xb0\xd4%\x02\xa0]\xf6\xfe/\xb7~\xdf\xed\xeb\x91\xff$c\xef\x22\x8c\xd1u\xcb\x03#\xe0\x10\xf8\xceu\x12p\x154\x09\x8e\xe7^\x00\xd4\x11\xb9\x0dl\xfe\xc9B\x1f\xab\xfba\x16\x0a\x0f\x7fz\x13Oy\xd11\xd7lC+\xa8\x04H;\x0a\xf9\xc0\xc2\x16\xa3\x8d]\x8a\xcc\xe2\x91\xcf\x8d\x93\xbf1\xc3[\xbfQ\xc7\x1dw\xc8@\xb9H0\x00~\xfd\xcd\xc0\xbf\xf8\x8f\xee\xf7\xadj?\xaab@\xc0\xb9\x03\xfey\xd0\xef\x03\xbf\xf9fW\x10&X\x1c\xdcq5\x90\x1b\xa0_\x94\xd7{\xb9\x8dy\xce\x05p\xcf?\x01\xbe\xe1w\xca\xde\x10ew?]:\x86\xed\x96\x8b\xfa\x0b3<o>\xf3W#\x91\xff\xa2G\x10\xb1>\x00\xfe\xfdP\x0b{N\x18\xf8\xf7\x0d\x16\xb4\x13 G\xdcvx\xda\xb9^w\x18M\x01\xe8\x1a\xc2W\x81\xdb\x85\xc6#\x9f\xd9\xc4\xc9\xe7-\xbb\x8en\x09P\xf4\x95;H\x1e\xf9?\xf4\x99m(5$\xfa\xea\xbe\xbf\xe5\xf9\xb0\xf8\xab\xdf\x97Ar\xd10(\xdb\xb9~\xe8m\xc0\x8dO\x02^\xf2\x13C\x11P5\xf9\xf1\xc9\xff\xae\xff\x02\x9c\xb9\xe0\xc8_\x9a\x00-\xe0\xf9P\xb8\xc8\xbf\xda,a\x00S.\xf8c\x0b\xe0\xb3\xafq\xb7/\xfa\xfd\xa1\x00\xd0\xdaY\xff\xc6\x0c\x05\xc0}_\xb0\x05\x16p\xeau\x0d\xf1\xc7\x5c\x00\x8e\x93\xa8\xdd\xcfu\x13\xf4\xa7\xbb[\x84k\xdc\xe6\xda\x01\x08\x05*\x9c;`\xe0\xda\x22\xfa\xc2\x80\x8a\x87\x90\xa0X\x14{)\x08\xda\xd0\xe7\xe4\x9d\xcbx\xdb?\xdf\xc6\xc9\x93\xc0M7\xb9\x0a\xee*\xd7_E|>\xf9\x17\x05\xb0\xb6\x06\xac\xac\xb8\x86/\xeb\xeb\xc0\xe6\xa6\x0c\x92\x8b\x82W\xbeT\xe1{\xbf\x0d8\xd6\x05\x96:\xce\xba\xfd\xc8\xaf\x02h\xbb)_i\x8btt\x1b\xb8\xa9\x5c\x97\xd7\x9c\xa5\xbb\xb6\xe9\xde\xe3#\x9f\x92\x94\xd0\x22`3\x03\xd6\xfb@'\x05:\x09\xd0\xd6\xc0\xc0\x00*\x19n\xed\xa4\x5c\x1b\xa2p\x1d\xfe\xf2\x02\xf8\xaf/\x01\xce\xac\x03\xa7\xd7\x80\xff|?p\xea\x0bVZ\x8a\xf2\x82\x80V\xf0\x03\xe1\xdc~\x8a\xd1\xe2?\x7f\x0a\xfc\x81u\xb3=,\x01`\x18\xf2\xf6\x1f\xb3\xa5#@\x0f\xe6Q\xb0\x97v/\x08Nm\xe1?\xfd'\xb53\xcd\xcbo\xfcRM\xfb\xf2\xc9\x7f0p\x02\xa0j\xf8r\xf1\xa2\xdb\x06_T\xb8x\x11\xf8\xfb\x07\x81/=\x08\xbc\xe9\xdf\xcb!\x9fG\x9c}\xc2\xcd\xcbn\xa5@\x9a\x94\x0d\x5c\xda\x80*\xcf\x85vk\xd8\xd0\xc5\x96\xd3\xb9\xfa\x83a3\x97\x8b+\xee=\x04\xf3\x89w)\x85\xaf\x01\xf0\x0c\x00\xd7\x00\xb8\xf85\xc0\xc5\xed\xd2\xca/\xe7\xf9\xf7J\x01\xa0K\xf2o%C\x07 /\xdct\xc0'\xb6\x80\x0b\xe5v\xea\x0b\xd6F\x88\x90Z\xe3v\xc1\x1d\x01\xce\xf1\xb0\x88\xf7\x03\xa8R\x03\xf0\xf8\xcdz\x7f\xd3c6\xd5\xc1\xf7\xb0j\x00@\x88\x9f\x8a\x80\x02\xa3)\x01*\x1c\xb8\x03s\xa4R\x00!<\xfe\xf8h\x81WE\xfe\x95\x00\x00\x86\xb6\xff`\xe0\xa2\xfe\x8a\xf8/\x5c\x00\xce\x9c\x01\xecq\xe0D\x0a<\xe7\x0a\xe0\x99O\x03\xfe\xdb\xdb\x15\xfe\xa9\xac\x087w8\xf5\x05\x8b\x9f\xfba\xe5\xa6~&eK\xe06\xd0*\xe7t\xfb\x02\xa0\x9f\x0d\x0b\xbb.\xae\x00O\xac\x00\xe7.\xba\xf7\x10\xcc\x1f\xfe\x9bR\xf8^\x00\xcb\x00:\xe5@\x7ff\x1d\xb8\xb09\xb4\xf2\xb5\x02z\x85K\x09\xb5\x88\x00\xc8\x0b\x97.\xe8\x17N\x00<\xb1\x05<\xbe16\xd6\xda\x9a\xf1W\xd5\x90\xe5\x22\x8a\x80\xd84u?\x98\xa5\x0b\x04\x85\x8a\x05\xa7\x8a\xc3\xee\x04h\x09\xb1\xd3\xa9\x22\x95\x00\xc8\x89@\x08\xa5\x03\xa6\xae\x98f\x1d\xbf\xf2+\x16\xff\xf2_\xaa\x91\xc8\xdf\xdf|\xf2\x1f\x0c\x9c\xf5\x7f\xf6\xac\xdb\xce\x9cq\xcf'\xc7]\xdbO\x9b\xb8\x22\xa1\xe7>\x0bx\xe7\xcf+\xfc\xcc\xdb\x84\x0c\xe6\x0d\x0f>\x0ad\xf9\xb0\x00p\xa93.\x00\x06\x9e\x00\xd8\xee\xbb\x1a\x80G\xce\x02\x8f\x9e\x95\xe37\x8fx\xa7Rx\x19\xdc\xf4\xfe\xae\x17n\xe6\x06xx\xd5\x11{^\x86UW\x16\xa3\xe4\xdfN\x5c\xeb\xdfA\xee\xc8\x7fP8\xe1\xf0\xc0%\xe0\xd7>oCAW\xaco\xcbQ \x7fN\x04X\x12\xe5S\xb27\xc4-\xb0Lp\x8c\x88\xab2\xd7\x0e\x80\xbf\xd1\xfc\x7fu`rB\xfc!\xf2\xa7\xefq\xe4\xf1\xa5/\x0d\xab\xb9\xbb\xdd\xe1\xb6\xb4\xc4O\xf9:s\xc6\x09\x80\x0b\x17\x80Sw\x01\x18\x94gF\x07\xc8\x96\x80\xd62\xf0\xd5O\x03\xde\xf6/\x15~\xfe\xd7\xe4\x10\xcf\x13\xce^p\x02 \xcb]\xb5\xff\xf2\x92\xeb\xfe\xd6-k\x02\x80aC\x97\xde\x00\xd8\xdav\x9d\xe0\x1e=\x0b<qY\x8e\xdf\xbc\xe1mJ\xe1\x85\x00\xda\xa5\x00H\xbcA\xf1\xbe3\xc0\x8b\x92Qr?\xd1v5\x01\xddtX\x1b\xb0\x9d\x03\xbd\x1c\xe8e\xee\xf6\xe1\x15\xe0\x81\xcb\xb5\xc4\xd7\xa4y\xdbQ\x00\xd7\xaa\x9e\xf6\x05\xf0\xbb\x01\x86\x5c\x03n\xed\x9b\xf9u\x00\x94R\xd6Z\xab\x98h\x9d\x9e<\x06\xe3\x85\x80\x96\x11\x0f@xv\x80\xc5\x11N\x05|\xf4\xa3\x16\xdf\xfe\xed\x0ay\xeeH\xdf\x17\x01\xfe\xd2\xb0\xbd\x9e+\xfa;{\xd69\x01\xfd~I\xfe\xe5V-\xf6\xd1N\x80c\xcb\xc0\xed7\xcb\x00;o\xf8\xdc\xdfX|\xe3\xd7\xa9\x1d\x11\xb0\xdcu\xe4_\x89\x00`H\xfe\xbd>\xb0\xd5s\xe4\xbf\xba\xee^+\x98/\xdc^F\xfd\xc00\x87\xea\x87\xa2\xfd\xc2\xe5\xf2\x07\xa5\x008\xd6\x06\xba\xc9P\x04\xa4\xba$\xffr\xdb\xce]\xf4\xff\xf1\x07l]\x14\xba\xdb\x14\xec\xa2\xf4\x00\xe0\x8eA(Ub\x19\x9e\xe2z\x07 \xf0\xba\xb9v\x00\xa8\xc5A#\xfb\xb2/\x15\x0a\x12\xe1\xfb5\x01\xd5\xdf\xf4\x07\xb0\xe2\x028|\xfc\xe3\x16\xdf\xf2-\x0a\xc7\x8f\x0f\xa3\xffnw\xe8\x0cT\x0e\xc0\xf6\xf6p\xfd\xf7S\x1f/\xc9\xbf$~;@\xb9\xb6\x80\xf3b\xb4\x9e\xe8w\x0d]\xdcv\x81.\xfe\x99\xc7/|\x8b\xc2\xdb\xbf\xd1\x15l0\x00\x00 \x00IDAT\x1ex\xcb_6\x17\x00[\xdb\xc0;\xbe\xde\xbd\xf6\xdf}R.\xa7y\x82v\x97/2o\xc0\xf4/\xb4Sg\x80;o\x02V\xfbN\x00,\xb5J\xf2/E@\xa2\x86\xc4\xdf\xcb\x81\xcd\x01\xf0\x89\x87\xac\x5c\xab\xcd\x85@\xac\xe1\x8f\xbf\xf8\x0f\xd7\x1b\x00L\xa0;\xd5\xc2\xf7Y\x10\x00\xa1\xe8\xdf\x94tD\x8b\x02i\xfa\xc0\x90\x83%(\xf1\xc9OZ\xfbM\xdf\xa4T5\xef;)\x0d'\xbf\xf1O\xb5\x12\xdc\xbd\x7fPF\xfd\xc5\x90\xf8mI\xfeyY\x1d\xbe\xdd\x03\xbe\xff\xe5\x0a\x1f\xfe\x98\xad#\xfe\xfd~^~\xd7]\xa2UZ\xbe\xef~1\xf0cw\xb9\xdf\xb1j\x04\x94\x94\x82\xceo\xe8R\x14\xc0{^\xec\xa6|\xb5\x129~\xf3\x84\xefW\x0a\xaf,\x07M?Z\xa2\xba\xfd\xde3\xc0\xf3or\x17\x5c\xaf\x18\x9d\x15\x00\x00E\xd97\xa4\xb0\xc0g\x1f\xb1\x980\x1a\x9d\x84\xb0\x16\xe5\xba\xe6\xbe3m\xea\x13K\x93p\xbd\x03t\xc0\x09\x98{\x01@\x09\x9c\xda\xfa\xc6\x8b\xfe\x15\xb9o\x18!\x00\xe6=\x04%>\xfbYg\xdd=\xff\xf9C!\xe0\x93\xff\x9f\xfe\x9fnZ\xd8\xca*\x90\xb6\x01U\x0a\x00\x9b\x01E\xe6\xac\xe0\xb5\x0d`}\x0b\xd8\xd8.\xfb\x867W\xa6{}~\xd2\xfdE(\x10\xf42`{\x00l\xf4\x81\x0f~+\xb0\xdc\x01\xfe\xe1\x1f;\xf2\xaf\x1c\x9d\xaa\xa9\xcb\xc7\xbe\xcb\xcd\x13?\xbb\x01l\x0c\xdck\x05\xf3\x03\x0b`\x03\xc0\x16\x80M\x00k\x18\xad\x1e\xd3\xe5\x80o\x01\xfc\xf9\x19w\xfbm7\x0d\x97\xfeM\x94k\x04TX\xe0\xde\xc7\x1a]\x9a\xdc\x18@\x8b\xb9\x17\xf5:\x0d\xad\x05@y\x8ek\xf2C\x05\x010^\xc7v \x9cv\xa0\x02 P\x07`\x98H\xdezD_Y\xfd9\xc2m\x82m\xc4>\x11\x00\xb8\xf7\xdea\x05\xefo\xbeU\xa9[n\x00n\xbe\xc1-\xfa\xa1Zee\xb8'\x00\x8ar!\x90\xd5\x0d7%\xec\x89\xcb\xc0\xa5\x15\xe0\xfc\xa5]\x93\xf7~\xb8EM\xf6k:\x7f\xf6H\x9c\x1b\xd5\xfc\xed4\x01Z\x1aX*\x80\xf7}\xbb\x9b\x12\xd8N\xcai\x80e\xd3\x97'\xb6\x9c\x00\xb8\xe0\xcd\xfb\x16\xcc\x0f\xce\x03\xb8\x047\xf5\xaf\xf2\x97{\x1e\xfb\xb4=\x01`K\xa7\xe0\xddg\x80\xc7\x00<\x0a\xe0\x9f\xd9\x89.i\xd5\xd0\x0d\x00\x8eN?\x80\xd81\x02\x11\x02~P\xeb/\x13\xcc\x1d\xd3\xa9\xad\x07p\xd8\x9d\x00\x8dw\x10\x80\xf1v\xc0\xd5\xdf\x03\x22\x14rF8\x1c4)\xcd\xef@qi\xb8\xa8G\xb77$\xffJ\x00\x98\xb2)\xcc\x8e\x00\xb8\xecD\xc0\xf9K\xc0g\xfe\xaa\xd1(\xd1d\x91\xa6\xc3\x16\x0bu\xfb/\xc4`\xf5\xd0e\xe0)W:\xf2oi`\xb9pb\xa0\x9d\x00\xed\xb4\x1c\x89\xca\xaa\xf0~\xe1\x04\xc0\x13\x9bN\x0c<$\xb3\x00\xe6\x0a\x9f\xb1\x16\xff\x5c\xa9\x9d\xa9\x7f\x95\x00H\xe0f\x04T3\x03\xaa\x01\xb5_:\x06\xe7\xcbm\x1f\xa3\xe1I\x9f_$\xc2\xa7\xb5\x00\xb4\x92\xbf\xf0H\xdd\xb7\xf8\x13\x84\x8b\x03\xa76f\x1e\x96\x00\xe0\xaa\xf7\xfd\xa6?\xbe\x00\xf0\xa7\x02\xd2\x13\xca\xd4\x0c\xe4GUyF\xf1\xc5\x07]\x1a\xa0\x95\x02W\x9epB\xa0]\xce\x0d\x87\x19\xce\x09\xef\x97k\x81\x9f>\x0f<v\x0e8}n\xdf\xa2iu\x80\x82`\xb7B\xc1\xeeq \x98\x09\xfc\xe9\xfd\x16?\xf2\x5c\x85\xcc8\xcb\xff\xaa\xdc\x11\xbf/\x00\xfay\xd9\xf4%\x07V\xfa\xc0#kn\xea\xd7\x9f\xde/zz\xde\xf0\xa8\x17!\xa1$\xfa\xb6\xb7\xa5\x1e\xf9\xf7\x01\xac\x00x\x18\xc0\x97\xf6/\xda\x9d\xf9kb\x8a\xe3\x07\xd7\xdf\xdf\xff\xee\xd4\xfe\xaf\x88\x9f#\xfb\xa6\x0b\xde\xcd\x9d\x00\xe0\xecz\x9f\xf8\x0b\x8f\xfc-\x89\xfa\x0b\x22\x0a\x80xS \x01\x17\x15>\xe6\xa6\x03\xe6\x05p\xdd\xd5\xae9\xccR\xc7-\xfbi\x8ck\x06SU\x86\xaf\xae;\xe2\x7f\xec\x9c\x13\x03\x81\x8bz\xaf\x95\xfdj\xc1~\xb7\x99\x12\x9e_\xbe\xe8\x9a\xbbd\x05p\xf5\x12\xb0TN\xf9\xea\x96W\xbf?\xe5\xeb\xf2\xb6#\xff\x87W\xe4:\x99G\x9c+\x89\xbd\x22\xf9+\xe1\xa6\x05v\x01,\x95\x0c\xb4\xedmO\x94\xe4\xff\xa8\x1c\xba\xfdp>\xb8\x0e~\xa1\x0e\x89\x09y\x8f\x02\xe3S\x049\xbe\x5c\x08\x07\x80~A\xebY#\xbe \xa0\x22\xc0_\x9f\x8ck\x13L\xed\x93\xa3\x88\xba\x02={\xcf\xff\xb0\xf6\x1b\xbeV\xe9\xa2\x00\x9e|\xdd\x90\xfc\x97:ee\xb0'\x00\xd67\x9d\x00\xd8\xea\x01\x9f\xff\x9b\xe0t 5\xc1\xe7PG@\x08\xcc\xd4\xf9w\xd7W,^\xfcT5*\x00Z\xee\x16(\xa7|eC\x01pz\xdd\xbdF0\x7f\xf8\xbc\xb5x\x81R;\x02\xe0\x84'\x00\xba\xe5\x89\xe9\x0b\x80s\x00\xce\x00\xb8\xc7\xca\xef=\xa5k\x9e\x8ei\x9a<g<\x17\xc0\x12\x111\xf5)\xd3\x07.\x00\xcaB@js\xf8\xb5\x00t\x86@\x017\xad\xb5\x22\xf8\x1c\xa3\xf5\x01\x86\x88\x87\xa3\xec\x004\xfe\xfe\xf7\xfc\x0fk\xbe\xe1k\x95^\xdd\x18\x92\xffR\x07P\xda\x13\x00}W\x07\xd0\x1b\x00\x9f\xff\x1b;iT\xab\xf6@\x8a\xb3\x90\x22X\x08\xf2\xa7\x22\xe0\x89-7\xf7\xbb\x9b\x12\x01\x90\x03\xdb\x99\xab\x03\x10\xf2\x9f{\x11`_\xa0\x94z\x14\xce\xf6\xf7\x05\x80%\x02`S\xc8\x7f/\xd7\xb9\x09D\xf9\x5c\xd4\xaf\x19\xe7\x80\x06\xab\x16\x07\xdc'e\x16\x96\x03\xa6S\xfch3 \x7f\xcb\xc9~\xb1\xe5\x80\xb9\x83+\xb5\x00\xde\x89U:\x01\xaa\xd7\x07\xd6\x1275L\xa9\xd1\xb5\xbe\x0b\xe3\xf6c\xc8X5<\xa6\xb1\xa8~R1aw\xf9\xfc\x91&\x7f_\x04|\xe3-\x0a\xdby9\xef\xdb\x9f\x06h\xdd\x14\xb0\xcf=*d\xb0\x08\xd7\xf7\xe7\xad\xc57\x94N\xc0\x16F\xd7\x9b\xf5\x07T!\xff=_\xef\xa1\x5c}hQ \xba\x1fW\x0bp`\xcb-\x1f\xb6\x00\xa0\xcb\x01+\x8c\xcf\xf3/0>-\x90v\xb9\xe4\xea\x01\x04\x0d\xe0\x93\xfb\xf3\x9e\xe5z\x05\x18\x03\xdc\xfb\xb7\x96V\xa2\xc6\xe6\xfbNr\xb1 &\xea\xce\x11\x15!z;#\x83\xc1\xcc\xa3\x22\xf8;oR#\x8d\x80N\x9d\x91\xcbf\xe1\xaem\x8f\xdc\x9f\xaf\x14t9p\xde'\xa4?\xadk_\xd5\x8c}U_&\xda\xec'4\xe7\xdf\x06\x9c\x81\x85\x10\x00~\x93*nq\x1fn\x06\x00\xb7\x22 m\x0atT\xa6\x9cLB\x80\x8d\xdc\x90\xfb\xc6\xd7\xfa\xe6\xc8\x17\x81\x93RMp\xa1L\xf2:\xc5\xfc\xbeM\x17\x1d\xb1\x07x\xf1\xcf\x15\x84\xf0\x8f\x16\xee\x15\xd2?\xa8@\x16\x81q\x92\x8e[\xbe\x08\xb08\xa4\xc2a}\x18GK)\xe5\x1f0j\xe7\xd3\xa2@\xdf\x01\xa0\xab\x03r-\x82\xcd\x11<\x01w3\x05g\x12U\x19\x22[\xb5K\xb2\x9d\xf4u\x93\x14\x1e\xc6\xf6Q\x0d\xbe\x87\xff\x18\xb7\x85\x8e\xa3t\xa2\x14\x08\x8e\xf6X\xabj\x1c\x81j\x0d\x00\xea|\xeb\x08\x17N\x95\xcf\xf4\x8c\x1cT\xae\xf8\x0f\x18MW\x19\xf2\x98A}\xe77\x19\x90\x0f\xe6\x82P\x07\xf0\xba\xa6\xee\x81\xad\x11\x1b\x94\xccCsw\xeb>\xf7n\xbf\xb7@ X\x9c\xa8\x9f\x1b\x87,3\xdeh\x8f\xdf*!\xe0\xf3\x1f\xbc\xc7td\xcc[(\x01@\xed}\x9a\x02(\x02\xd1>\x10_O@\xa2\xb1\xdd\x9d\xc8\xd3t!\xf6\xebuM\xa2z[\xa3\xcc\xf7*^D\x10\x08\x8e\xeau.\xe0\x03\x8b&c\x02\x15\x02\xfe>\x96\x88\x81\x03\xf9\xfd\xf4\x8c\x9c\x90\xdcr\xc0\x94\xf8\xfd\xa8?\x946@\xe0\xd6\xca\x85\xbd\xe7(|\x96\x0b\xed\x9aZ\xfd2\x08\x0aD\x04\x08\x0e\xe2\x18\xfa}P\xa8\xe3\xe8\xbb\x02~\xf4OW\xc65\xd3\xe6/=#\x07\x93\xb6\x03\xf6k\x00\xaa\xc1\x9b>N\x85\xc2Q=\xd1wCl\x8b\x18\xad\xaa}\xdaG X\xd4qB\xce\xff\xe9\x8c3\x8a\xb9\xcf\xcd\xa0\xd2\xe4qC\x84@t6\x81W;\xb7P\x02\x80.\x04D\x05\x81\xc5h\xf1\x1f\xad\x13\xe0\xdeK\x06\xfb\xfd'A5'\xdfM~w\x81@pX\xe3)\xad3\xf2m\x7f*\x0a4q\x09L 0\x9e\x1a\x0eM\x00\x105\xe3\xdf7$\xaa\xe7:\xfeU)\x01\x8b\xc9\xd6Q\x16\x0b\xac9\x89*!U\x81@ \x98\x88C\xb8~\xfe\x0a\xe3K\xff\xfa\xd3\x9b\x13\x84\xa7\x09.\xa6\x00`\x0e*\x17\xe1g\x18/\xf2+\x18\x87\xa0\xae\x91\xc2Q\x8e\xea\xf7\xd2\x82W\x88_ \x10\x08\x9a\x8f\x89\xdc\xec\x00?\xda\xe7l~?\x15\x90\x80/\x8e\x9f\x0af\xa5\x150\xc8\xc1\xa8\xa2|_\x15\xd1\xa2@.\xe2?\x90%\x14\x17\xe4D\x15\x08\x04\x02\xc1\xfe\x8e\xb7\x5c\xe5\x7f\xe89\xaeA\x9b\xdf-p\xaa+\x01\xce\x8a\x03@#\x7f\x9f\xfc\x0bB\xf8\x8aD\xfeT%-\xda\xb2\xb2\xbb%|!\x7f\x81@ 8X\x1e\xabkin\xbdH\xbf\x8a\xf6\xa9(H\xc0\x17\xb6O\x05\xb34\x0b\x80K\x03\xf89\x13\x7f\x11 \x8d\xd1\xa9\x80!!p\x14E\xc0\x22\x17\xf9\x09\x04\x02\xc1\xac\x07`\x5c@FS\x00U\xee?\xc4[\x072\x1e\xa73t\x00\xfd\x83\xe0\xdf\xafZ\x00\x83\x11\x06\x9c\x888\xaa\x0e\xc0~\x9d\xb8\x02\x81@ \xd8\xfbx\xca\xcd\xff\xf7\x85@\x15\xccZ\xe6\xb1\xd8\xe2g\x0b\xe3\x00\x80\x10;0\xbe$0-\xfe\xa3}\x94-#\x22D\x00L\xd7-\x10\x08\x04\x02A|l\xe5:\x02R~\xe2V\x04\xb4\x88\xaf\x12\xb8P\x02\x80N\x01\xb4\xde\xe72\xde\x01\xf5\x0f\x84!\x8fQ!\xb0\xdbEj$\xea\x17\x08\x04\x02\xc1~s\x1b\x8d\xf0\xb5\xc7s\x1aC7\xde\x9f28u\xfe\x9a5\x01@#{\x7f\xb9`\x15PD\xdc\xeb\xc5\x09\x08\x13\xbe\x90\xbf@ \x10L7\xfa\x07\xc6\xed}\x85\xd1E\x80\x14\xe1`*\x12v\x1e\x9fF\x17\xc0Y\x11\x00~\xe4o\x99H\x9fZ\xfe\x5c\x03 \x7f\x13\xb2\x93\xc8_ \x10\x08\x0ez\x5c\xe5\xb8\x87\xb6\xff\xa5\x0b\x00\x19\x84\xd3\x05S\xe7\xe7C\x15\x00\x81n\x80tU$\xba\xf4/\xed\x0b\x10s\x14\xc4\x01\x10\xf2\x17\x08\x04\x82\xc3\x1a_\xb9\xe6?\x5c\x0a@1\xbcl\xa7\xcd\xd1z\xc6\x0eb\xf5\x85\x0dsPCV\x7f,\xff/\x10\x08\x04\x02\xc1a\x08\x02\x15\xe1Z\xcb<N\x0b\x02\xa7\x8eY\x12\x00\x5c\xc1D\x81\xd1\xaeH\xdc\x82A\xaaF\x10\xc4\xfe\x8f@ \x10\x08\x04\xd3\x22~\x10\x07 !\xd1\xbf\x22\xf7\x8f\xec4@`\xd4\xd6\xf7\x0f\x06\xed\x04XW\xe8\xb7_\xbd\xf1\x05\x02\x81@ \xd8\x8b\x18\xe0\x16XK<\xa2\xe7n\x0f\x04\x87.\x00\x98\xeaF\xedE\xf2\x09\x89\xe8\x15\xc6\x0b\xfd\x0c#\x04\x8c\x9c{\x02\x81@ \x98\x01'\xc0\x82\xef\x07P9\x01\x06\xa33\x06h\xee\x7fj<\xadg\xf0\xc0\x15\x91\xa8\xdd\xb7\xf9\xa9m\x02r\xb0i\xd3 \xb1\xfe\x05\x02\x81@\xb0\x1f\xe4NI\x1e\x81\xfb\x0a\xe3\x1d\x00+\x07\xc0_\x17\x00\x8c\x13\x90,\xbc\x03\xc0\x908]+\x99K\x0f\x00\xe1\xc2?\x85\xc9\xd3\x02\x02\x81@ \x10\xec\xa7(\xa0S\xfe\xa8\xc5\xaf\x02\x7f\xfb<6U\xde\x9a\xa5\x1a\x00\xff\xcb\xfb\x11>m\x8d\xa8\x18!\x10\xea\x05 \x1d\x01\x05\x02\x81@p\x10\xe4\x1fs\x02(\xc9'\x18\x9f\x16\xe8G\xffGn\x16@\xec`j\x8c\xe6E\xb8\x0eK>\xc9\xcb\xa2@\x02\x81@ 8l\xee\xe2\xba\xfd\xf9<\x96x\x1bM\x07\xec\xbc\xceZ;\x15'`\x96\x1c\x00\xba\xb4/=p\x09\xc6\x8b*\xb8e\x80\xc5\xea\x9fO\x88X\x13\x08\x04\x8b\x22\x02\xb8\x1a\x80\x84\xe1\x5c\x9a\xfe\xf6S\x05\xc0\xa2\xa7\x00Je\xa3\x22j\xc9O\x0b\x14\x18_#\x80\x1e\xbc:\x22\x11\xa2\x99\x1d\xc1G\x7f\x13)\xd6\x14\x08\x04\x8b$\x06\xb8\xc04T\xf4G;\x04r\x9c\xb8\xafHg\xf4\x80i\x86\xd0}Ed\xc8A\xb1\x13\xfe\x0f\xc1l\xfc\xceM~7\xe9\xf2(\x10\x08\xe6m|\x0bU\xffWc\x9fo\xf9+\x8c\xb7\x03\xe6\x1e[H\x01@\x0f\x0c\xb7 \x0277\xd2\x04HA\x22\xc8\xc5p\x08\x04\x02\x81`\x9eH\xbf\xc9}E\x88\xdf\x82\x9f\x09p \xc1\x8e\x9e\xc1\x83\x87\x06B\x80\xeb\xa3\xcc\xb5\x06\xe6\xc8D\xc8E\x84\x81@ \x10L+\x98\x0d\x11?\x9d\x11\xa0\xcb \x9c\x13\x06\xb1\x1e\x03\x0b'\x00@H\xde'\xf1\x84\x10\x80\x9f#\x89M\x07\x14\x1c\x0d\x11 \xbf\xb5@ \x98UA\xa0\x03\x04\xaf#\xfbT\x5cH\xf9n\xb1\x04\x00\x99\xda@\xab&+\xf2\xa79`\xcb\x10\x7f(\xd725\xe5$\x10G@p\xe0\xbf\xb5\x9d`?)\x06\x16\x1c\xb6\x13\xa0\x08\xc9\x03\xe1\xbc\x7f\xd5\x12\xd8\x9f\xf6\x9e\xe0\x084\x02\xe2\x0a&\xb8)\x7f\xfeE\xeb\xa7\x02B\x05e\xd2\x0b`q\x07}qyD\xe85\xd9\xcf\xd6\xecWw\x1e\xc99&\x88\xf1\x16j\x82L\xae\xa8O3\xf7+\xbeK1:\x13`\xea\xc1\xeb\xac\xd6\x00\x80\x89\xe0-\xf8\xe2\x09\xbb\x8b\xf7\x16\xccG$\xd7t \x96\x81\xfa\xe8\x90\xbf\xad\x11\xfcu\x8e\xc0\xa4bB\xce-\xc1$\xfc\x12\xea\x03\x10\x0bz)\xe1[0S\x08\xa7\xd1\x0ch\x96j\x00|\x0b\x9f\xf6@\xae\x9a(p\x078t\xe1\xaa\x86?\x98\xe0\xf0\xc5^\x13B\x97\x1a\x0f!\xff\xbd\x92t\x9dH\x98\xd4I\x10\x08\x9a\x8cw\x9c\xc3\x1dZ\x0a\x98{\xcd\xe29\x00\x81\xfc?w\xd0\x12\x22\x08\x0c\xc6\x0b\x05\xb9\xb9\xe22\x0b`\xbe\xa2\xff\x18\xb97\x89\xf8\xe4w=Z\xe4?\x8d\xdf\xbd\xc9\xf9)\x10\xc4\x88\x9e\xf2\x17\xc7g\x5c\x94_9\xdc\xad\x88k\xb0\xef\x98\x85>\x00!%D\x17\xf5\xb1\xcc\xc1\xe4\xd6\x01\x00\x0e`\x15%\xc1\xcc\x93\x86\xfc\xfe\x8bM\xfc\xb3\xf4Y\xe5\x5c\x134q\x00\x80\xf1\xc5\x80\x12\xe2\x0a\x14\x18O\x09L\xad/\x80\x9e\x81\x83\xc3\xfd\xed[\xfe\x08\x10?\x02\x07H\xc8\x7f~/\x94I\xc9\xc1\xee\xe1\xbd\x04\xb3G\xa6v\x06>C\xd3}\xc4\x0d\x104q\x02\xfc\xc7\xfdE\xec|\x8e\xf3\x83\xdf\x14\xa3S\x04\xa7:\x13`\x96\x04\x00\xb5\xfc\x81Q\xfb\xdf?\x806\xf0>v\xc2\x8bY0\x7fQ\xa0\xd4\x01\x1c]\x01xP\xe7\x9c\x14\x9d\x0a\xa6\x11\xfd\x03\xe3\x0b\x02%\x01\x1e\xd3\x9e#05\xcc\xca4@M>\x0f7E\x82\xa6\x03\x9a\x14\xed\xc8\x85:\xff\x11\xa1\x91Cq\xe4E\xdf~9\x0b\xb6\xc1\xff\xde\xcd\xb4@\x0b\x09>\x04\xbc\xa0\xa5\xd5\xfe\x96\xf0\x1ew\x9bD\x5c\x85}\xc5,-\x06\xa4\x03\xca\xc9\x17\x03\x86\x88\x02\x8bx\xcbE\xb1\x82\xe7o\xf0\xaf\x1bHC\xd3?\x15\xb3\x8f@P7_\xbb\x89(h2\xddX\x88_P7%\xd0w\x00hO\x80$\xc2\x7f\x93\x9e\x87s\xe1\x00p\xf9{ni`\xcb\x0c\xfc\xb6\x86 \x84\x00\xe6\x7f\x90\xa6\x0d\xa0&\xb5\xfd-d\xea\xe0<\x0f\x9e\xb3\xe4:\xd8H\xb4/b@\x80H\x10J\x1f\xaf\xce\x1f\x1d\xe0\xe3P\xd1\xe0\xd4\xa3\xee\xc3<X\xc0\xf8Z\xc8~\x81\x84\x9f7\xa9\x9c\x00\xcb\xb8\x00b\xc3\xcd\xc7\xc5QG\xd6M\xa33\xf9\x8d\x05\xbb!\xfb\xfd\x10\x84\x934 \x93\xf3T\xc6<?\xd2O1\x9a\xe7O<\xbeK0\xee|OM \xeb\x19>`\xc0x\xe5\xa4\x7fpB+&I\xe4?_\xd1\x9e\x0d\xfcvu\x8d\x9e\x80)Xb\x82#q\xce\x1d\xc4\x92\xab\xe2<\x09b\xe7\x85&\xc1\xad\x22A\xaf\x01\x9f\xe2\xdeW\xa43tq\xd2b\x08\xcb\x08\x01\xba\x82\x12w\x81\xcb\x05\xb7X\x11\x1bw\x11p\x22@\x84\x9f`\xd2\xf3\x8b\x13\x01M\x8a\x00UD\x90\xd6\x89\x0f\xc1\xd1\x8b\xfciW\xdb\x8a\xf8\x0d\xc3g\x09\xc3w\x8b\xb5\x1a`\xa4\xa7\xb1e\xec\x12\x0d\xbe\xe8\xcfNx\x11\x0a\xe6\x93\xfc\x81p\xdd\x87b\x94\xb5`\xfe\xa3tu\x80\xffk\x92\xf3Gaw\xd6\xbe\xb8\x01\x8b}\xbe69g5sN\xd0\xa5~c-\x80\x17\xb6\x11\x10]\x10\x81\xae\x09@\x0b\x01C=\x93\x9b^\xe8\x82\xd9T\xca1\x22\x08\xb9\x012\xa0.\xb6\x08\x88m\xfb}m\x1fD\xfaP\xc6\xa2\xa3)\x0c\x14\x89\xee9\xfe\xe5\x9a\xdfM\xbd\x0e@\xcf\xc8A\xe2\xd4\x0f\xd7\x1f\xc0o\x12T\x09\x04S\xf3\xdeB\x12\xf3\x19\xfd\xfb\xf7\xb5\xfc\x96\x82\x1a\xa1\xb0\xdfB\xa0\xee}\xed\x1e\xcfm\xc1\xe2;\x01\x5c\xea\xd2O\x01\xf8\x05\xf0\xb4\x18>9*\x0e@\xe8\xe2K\x02\x8a\xdf2\xfb\x1bHe\xf8\x22]L\xf474\x0d/\x02\x89\xb0\x04\x07\x15\xb5\xd7\xcdf\x11\xc8yC\xff\xd6\x84\xb7B\x11\xbe\xaa\x19\x0f\xf7\x0d\xe9\x8c\x1c(\x8d\xf1\xdc?\x97\x1e@\xe0\x80\xe9\x88H8\xdc/\xf7\xab\x1f\x06n\xb9\x0d\xb8\xf9\x16\xe0\xf8q\xe0\xe2\x13\xc0\xa5\xe1f\x7f\xee\x87\x8ez\x94\xef\x9f\x07\x06|\xbe\xbf\xae\xf6CE\xdeS\xe0\x1f\x90\x0f~\x108y\x12\xb8\xe1\x06\xe0\xc9O\x06\xac\x05\xce\x9e\x05\x1e\x7f\x1c8{\x16\xf6\x07\x7fp\xd1\x88z\xd2H\xdc\xee\xc3\xe7\x98\xb4\x90\xf0\xc8\xe2\x96\x0f\xbc\x1a\xc9\xf5\xc7\x90^w\x0c\xe95\xc7\x90\x5c{\x0cf\xbd\x8f\xc1W.#{\xf82\x1ey\xcd\x07\xe7=x\xe1\x08\xbd\xce\xed\xf6\x9f\x1f\xe9\x19`\xadUJ){\x18\x17\xcd\xfe\x8d\xfe\xae\x08\xd0\x9f\x13\xd9\x06\xd0\xf5n\x97\x01,\x95\xb7'\x00\x1c/o\xaf\x02pEy[\xdd\xaf\x9e?V\xbe\xa6z\x9f\x14\xc3\x85\x154\x0e\xb8C\xa0\xfa\xb3\x07\x80']\x0ft\xda@\xa7\x05t4`\x0d0(\x80A\xeen\xb7\xfb\xc0\xa5\x0b\xc0\xc3_\x86\xfd\xe9W\x1eu\x11`\x03Q\x14%\xf9\xd8\xb4\xcf\xba%4\x8f\xec\xa0\xabN\x9dr\xc4\x7f\xe2\x04\xd0j\xb9Mk\xc0\x18\xa0(\x80<w\xdb\xfa:p\xe6\x0c\xec\x9dw\x1e5\x01\xba\x9fB@My\xff\xb9\xc7S?\xf2:\xb4\x9fq-\xd2\xeb\x8eAu[\xd0\xad\x14\xaa\x95B\xa9\x040\x80\xcds\x98\x22\x87\xcds\xe4\xe7\xd6\xf1\xa5\xa7\xfd\xda\xac\x9fK~\xeb\xf2\xa2\xdcr\x00\x83r\xeb\x01\xd8\x04\xb0\x05`\x1d\xc0\x1a\x80\x15\xef\xf6Ry\xbbZnk\x006\xca\xd7l\x97\xef\x91\x01\xc8\xf7S\x00\x1cv\x0d@l.?\xd7\x0d\x89.\x12\x84\x80ur\xa8\x0e\x80\xfa\xdc\x13.\xc2Z\xee\x94\x9b\x1eJ\x9a\xaeu\x12\xa5k\x81c)\xf0\xe4\x1b\x80\xa7?\x0b\xeaW> \x96\x19\xff7\xf7\x9b\xaa]\x9ekG\xf3\xc0~\xfa\xd3\xc0\xd3\x9e\x06\x5cq\x05\xd0n\xbbM\x07.\xfdc\xc7\x80\xa7=\xcd\xbdf\xb1\xcf\xb5i\xa6\x93\xa4ke4\xea\x7f\x0d:\xcf\xba\x1e\xad\x1b\xae\x80^jC\xb7ZP\xad\x16\x94J\xa1\xd1\x82V\x1dh\xd5\x86\x86\xdbZO\xba\x12_\xfd\xc4\xff:\xefn\x14\x17\xbc\xd0\xa9\xed\x93\x14\xb7\xcf\xbd\x00\xf0\xed\x0ezP|\xf8S\x01\x13\x8f\xfc5\xc2\xf3x\x0fm\xc0W\x7f\xf2\xf7\xc0\x15\xcb\xc0\xb1\x0ep\xac\xed|\x89j\xeb\xdaR\x04h\xa0\xdb\x02\xba\xa5;\xd0\xd6\xc0S\x9f\x0e\xf5K\xef9\xea\x22\xc0\x06\xc8?6\xdd\xafnI\xe0#m\xb5\xaa\x8f~\x14x\xcaS\x86\xc4\xdfn\x03\x8a9$Z;W\xa0\xda\xe7\xe4I\xf7\xda\xc5\x17\x9d\xb1\xa2\xbf\xc3\x14\x8e\x0b)\x02N\xbe\xe7Uh?\xe3Z\xa84\x81JS\xa8V\x0b\xba\xdd\x82V-h\xb4\xa0\xd0r\xe4\xaf:Ht\x07\xba\xd5\x86n\xb7\x91,w\xf1\xf4/\xfe\xcc<:L\xb1\x96\xf7>\xa8[\xcd\x89\x84\x85\x13\x006\x12\xf1Wk#\xd3\x0b\xd2D\xd4\x96=L\x17@\xfd\xceg\x80+\x8f\x03\xcb]`9uQ\x7f\x15\xf9w\x00t\x12G\xfcKmG\xfe\xdd6\xd0N\x86\xdbMO\x81\xfa\xf9w\x8e\xbe\xe7\x87?|T]\x00\xd5\xe0\x02\xb25\x02ba\x07\xd2F\x07\xf3\xc3\x1fvNTE\xea\xadV=\xf1\xfb\xdb\xb5\xd7\x1e\xb5\xf3\x0f\x88;\x90\x93\x0a\x82#]\x10\xf8\xda\x0f?e\xe4\xef\x1b\xdf\xf9\x0a\xb4\x9ez\x15T;\x81JR\xa8$u\xd1?\x1c\xf9\xbb-u[\xea\x88_\xb7;\xe5m\x1b\xc9\xf1%\xdc\xfe\xe9\x1f\x9d\xb7s(\xc4w~n_{\xbc\xe6\xb7\xb87\xe4=-\x10\xed\xa331f\xa1\x08\xd0\x22>\x1b\x80\xeb\x8a\x14k\xa0\xe0\x0f\xfa\x07v\xf1\xa9_\xff\x03\xe0\xb6\xa7\x01W\x1d\x07R\x05\xe8\xf2_\x1b\xb8L\x10\x94\xbb-T\xb9\xa6\xa1*%N\x01\xb4R\xa0\x9d:\x11\xf0\xa4\x1b\xa0~\xf4\xcd\xc0\xff\xf6\xcf\x5c\xe4\xf6\xf2\x97C=\xf0\x00p\xfe\xbc\xdb.\x5c\x80\xfd\xb1\x1f[\x94\x81\xd6F\x1e\xb7\x81\xc7\xd5a\xbb<sqp\xdf\xf3\x9e\xd1\xc8?I\x5c\xc1\xdf\xd8\x8ejx[\xdd\xb7\x16\xe8v\xddv\xec\x18\xd4{\xde\x03\xfb#?rd\x0f%\xc2+O\xda\x86\xaf\xdf\xab\x18\x9e\x0b|\xf7\xbbO\xe2\xf8\x0d)\x8e?9\xc5\xf1\xebR|\xd5w\x9c\xc0/\x16\xcf\xc2\xe5\x87\x06x\xdf\xbb\xae\xc7\xd2\xf3OBw\xd2\x92\xfc\x13(\xa5\x81\x92\xcb\xec\x0e\xdf\xb9\xf3\xd0\xa2\x80U\xa6<\x0a\x1a\x0a\x09\x92\x13KHN,\xe1)\x1f\xfeA<\xf2\xfd\x1f\x98\xb7s\x88r\x94f8.\xc5x1\xbc\xbf\xaf\x86\xab-\xd87\xa4\x87x@\xfcH\x1f\xe4\xc0\x84\xec\x0f\xae0\xcc'\x0c\x8b\xc3\xea\x0ax\xd5\xd5.\xdf_\x18\xa0\xb0\xe4'/?F\x8e\xb2\x8c\xa3\xda,\x90\x19w\xde'-\xa0\xdd\x05\xda\x1d\xe0\xc4U\xc0m\xb7\xb9\xd7,/\x037\xdf\xec\x22\xb9\xa2\x00\xb6\xb6\xa0>\xf5)\xd8\x97\xbet\x91E\x00}n\xa6j<\xe6\x02\xc7\x8f\x03KK@\x9a\xbaB?\x9f\xfc\xad\x1d%\xfc\x119n\x87\xcfw\xbb\xee}\x8e\x1f\x97\xe3\x19\x1f\xc7\xea\xaa\xfe\x17^\xa8\xfe\xf0\xa7n\xc3W}\xd7\x09\xb4\x8fi\xa4-\xe5\xb6D#\x85\xc2u\xb7v\xa0\xaf\xea@u\x13g\xfd+\x05\x14\x16\xd6\x14P\xd6q\x9b%G\xd4\xc2\x94[\xe16[\x00\xcaB\x1do#\xb9zi^\xcf\x95\xbabt\xbf\xff\xbf\x0e\x9c7\xfb:\xcbmV\xfa\x00p\xd3\x1e\xf4P\x12\x8e\xf4\x06H0>\xe5\xef\xc0\x96O\x0c\x22\xd1@\x91\x97\xb5\x9f\x16\xc8My\xeb\x11\xbeO\xfe\x99q\xfb\xf8\xb7E)\x04\x94\x1e\x1f\x90\xab(my\x19\xb8\xfdv\xa8?\xf9\x93E\x1bD\x9bD?M-Y\x11\x08KK\x8e\xf8\xb3l(\x00\x8cq[\x90\xaa\xec\xe8f\x8cK\x11,-\x1d\xf5\xa3\xb9\xd7\xf1d\xa1\xcf\xc7\x7f\xfc'O\xc5\xd5w\xb4\xd1=\xa6\xd1n\x95[R\x95\xf0it\x90\x00Z\x01Z\xc3\xe6\x16v``\x8b\x02\xd68b\xb7\xa6\x00LE\xf6\xee\xd6\x0d\xfd\xe5V\x9e\xb7\x16\x06\xb0\x06\xaa\xad\xe7\xe9\x5c\x89\xf1\x91\xc1\xf8t\xc0\x14|\xaf\x9b\xa9\x04\xb5\xfa\x10\x0f\x12G\xd8t\xca^\x82x^\xd8\x12Et(\xdfG\xfd\x8b_r\xe4\x9f\x97\x06M^\xba\x00>\xf9\xd3\xa8?\xb7C\xa1\x90UB \x07\xb2\x81{\xd3\xe7\xbdtH\xfcI2\x9a\xa7M\x12\xe0\xa6\x9b\xa0>\xf4\xa1E\x1f`w\xdb{}\x92\x05^\x16\x13Y6N\xfe\xd6\xd6\x93\xbf\x19\x0e\xb8\xb0\xd6\xb9NY&\xb1~| o2(/d\x85\xffk>t\x0b\xae\xb8\xb9\x854Uh\xb55Zm\x85VRe\xf4]v\xff\xad\xdf\xb6\xe2\x0e@V\xb8\xcd\x14\xb0\xc6\x0co\xad\x8b\xf2aGE\x80E\xf5\xbc\xb7\xc1\xc0\x1a\x83'\xff\xd2\xb7\xce\xf3\x18G{\xdd\xc4\xfa\xda$\xd3\x22\x7f\xe0pk\x00\x14\xea-\xe0P\xe4\x17\x9a\x1b\x1e\x9b\x1a8=\xb4\xda\x8e\xf0wf\x7fV\x16+F{\x15\xee\x90\xbe\x1d\x0a\x81\xcc\x00Y\x01\xe4\x03G\xfeY\x06\x0c\xfa\xc0\x89+\xdd{\xa4\xe4'2\xc6\x09\x80$\x01\xae\xb9\x06\xea=\xef\xc1\xed\xcf\xfc<\xda\xb7^\x83b\xbd\x8f\xfc\xdc\x06\xf2s\xebx\xe4\xfb\xe6rZa\x13{\x8b\xfe\xd6\x1a\xe1\xe6@G\x93\xa9^\xf7:\xe0U\xaf\x1a\x92\xb8o\xeb\x87\xc8\x9f\xee[\xb9\x07\xe5\xa6^\xf7:\xd8\xdf\xfd]\x91\x01\xcdV\x02\xb45\xe7\xf6\xdc\xa5\x05\xfe\xe0\x0f\x14n\xb8\x01\xb8\xfez7S\xf4\xa1\x87\x80w|\xf1&\x5cu[\xbb\xb4\xfb\x15Z-\x8dT+\xa4PH\xa0\xa0\xad\x82R@re\x17\xb6_\xc0\x0e\x0a\x17\xf9\x17\xc5\x08\xf9\xbb#\xa1F\x0f\x92\xb5%\xe9\x97.\x81-\xdd\x80\xc2\x05O\xaa\x9d\xcc\x83XT\x11\xce\xb3\xe0\xd3\xdb\x07z^\x1cv\x11\xa0\x01\xd0B|&\x00-\x88\xe0\x9c\x82Ps\x18{ \x17[6\x00\xb6\xb7\x81\xed-`k\xb3,\xe7P@\xab\xdcR\xed\x08;c\x04\xc0\xf6&\xb0\xbdQ\xden\x01\xbd-\xa0\xbf\xe5D@h\xb0NS\xa0\xd3qn\xc0\x15W\xe0\xc1\xdf\x06\xbe\xf6]\xd7\xc0\x5c\x9b\xa1}\xf3U0y\x8e\xaf:\xf3s\xc8\xcfm\xe0\x81\xe7\xfc\xd6\xbc\x8a\x00\xc5\x0c\x96\xb6F \xe20.\xa2\x99C\xbf\x0flm\xb9t\xd1\xd6\x16\xb0\xb9\xe9l\xfc*\xef_mZ\xbb\x8dZ\xffy\x0ell\xb8\xd7mn\xba\xf7\xe8\xf7\x85\xfa\x9b;M\x0b\xe3@\xfd\xf5_;\xe2\x7f\xf9\xcb\x87&$\x00|\xd7[\xaf\xc6\x1d\xdf\x91 \xed(\xa4\xa9\x82V\x0a\xd6Z\x18\xebb\xa1\x9d\x03\xa4\x00\xdb\xcfa\xb72\xd8\xed\x0c\xb6\x9b\xc2tS\xa8\xad\x04\xaa\x93\x00\xc6B)W\x10\xa8T\x02(\x0d\x95$\x802Cw\xa0\xdc\xcc\xc6\x00fs\x00\xb35\x80\x1d\x14\xb3|\xd8\xea\x9c\x1e\x85\xf1\xf4\xb5\x06\xdf\xea\xde\x04\xc6\xbb}9\xa7\x0e\x5c\x00\x90)\x0c*0\xf0'\x8cZ\xe6\xda\x02s\x17\x98=p5u\xe1\x0cp\xd3S]\x01_\xbb\x03\x98\xdc#\x7f\xe5\xae\x9c$%\x02\xc0\x00y\xe6\x88\x7f}\xd5m\x1b\xd5\xed:\xb0z\x89\x91Kf4\x8f\xdbj\xb9B\xadk\xae\x81\xb6m\xc0*X\xab\x01\xab\xa1\x8e+\xe8v\x8a\xdb\xef\xfeQ<\xf8\xc2\xdf^\x04'`\xd2\xc6*GW\x04\x9c?\x0f\xac\xac8\xa1Xu\xfdK\xd3Q\xf2\xaf\xd2JU7\xc0\x8a\xfc\x8b\x02\x18\x0c\x80\xd5\xd5\xe1\xb6\xb2\xe2\xdeS\xb0_Ba.\xce\xcd\xbb\xefVx\xc63\x9cv\xa4\xb3H\x97\xaeI\x90v\x154\x14l\x0e\x14\xb9Ea,{\x15\x17\x97\xb6Q\xac\xf7Q\xac\xf6\xcbZ\x00\x05UnvP\x94\x02 \x81\x82vE\x82-\x0d\x0b;$\x7f\xe3R\x07f\xb5\x8f\xe2r\x0f\xc5\xe5\x1e\xb23\x1b\xf3\xe0\x00\x00\xe1\x1c>W\x14\x08\xf03\xe0\xe8\xe3s_\x04\x18\x9a\xb6\x970\x07'\x89\xa8\xeb\xd0\xda\xc9\x07+j\xde\xff\x1b\xc0\xda\xe5\xe1\xb6\xbe\xe2\xb6\xb5\x15`}\x03X\xdft\xb7\x1b\x9b\xc3\xfb\x15\xe9\xaf\xaf9\xe2\xdf\xf0D\xc0\xea\xa5\xd1b-\xdf\xa2\xad\x04@Q\x0co\x93\xa4\xcc\xb6\xb5\xdd\xfc\xd9N\x0b\xba\xd3\x86JR$W\x1f\xc3\xad\x1f{\xfd\xce[\xfd\xe0\xef?e^\x07O\xb5\x8f\x03\xf0B\xc3\xdeu\xd7(y\xaf\xac\x8c\xde__w\x11~\xb5U\x91\xfe\xda\xda\xf8\xbe\xe5\xdf\xf6\xae\xbb\x84\xc6\xa7#\x06f\x06\xbf\xff\xeb\xc3\x8f\xf6\xb1\x8f)\x5cw\x9d\xd3\x8d\x5c\x0b\x09\x95\x00&\xb7(\x06\x16yI\xfe\x85q\x0e\x80\xb1\xa82\xf8(`a\x8dEqi\x1bf\xb5\x07\xb3\xdawD\xbe\xdaC\xb1\xd6\x87Y\xe9\xc3\xac\xf4`Vz(6\x87\x9b\xa9\xb6\x8d\x9e{\xddJo\x87\xfc\x8b\xcb=\x5c\xfa\x8d{\xe7\xf9\xf7\x0f\xe5\xfdmD\x0cL\xc5E\x9a\x95>\x00:`\xa1\xd8\x80Z\xe2\x0e`h\xaa\xd8\xc1\x5cp\x97\xce\x0f\x1d\x00\x18\xa0\xa5\x81\xb4\x8a\xbe\x06\xeeJ\xda)\xfa\xcb\x5c\xf4\x9fg@o{(\x06\xd6.\xbb\xf7\xb9|\x01\xf8\xc2}C\xf2\xa7\x02\xa0\xea\xdd>\x18\xb8\xad(\xdc\x9c\xdaVR\x9eI\xce\x090\xfd\x1c:I\xa1\xbb\x1d\xdc\xf2\xa1\x1f\xc0O\xbc\xfa\x8bx\xe6\xf7\x5c\x817\x9f\xfej\xac\x9f\xcd\xb1v6\xc3\xfa\xd9\x1c\x7f\xf4\xa6\xd3s\xc5o\x13\xfe\xa6G\xd3\x098sfXCRm\xfe\xdf\xfez\x00\x95\xed\x9fe\xee|\xca\xb2!\xf9_\xbc\xe8\xdeK0\xeb\xe7\xf9\xc4x\xd7/(\x9c\xbc\x1e8\xf9d\xe0\xc9\xd7\x03\xdf\xf3\x9d\x80\xf9\xb2\xc2\x87\xff?7\xf3\xd8?U\xfcX\x04\x00L\x01\x14\x03\xeb\x22\xff\xa2\x14\x00\x85\x85R\xb6\x1c\xcd\x87\x9c\xf5\x8b\xa7\x9e\x84\x7f\xff\xb2u\xe4\xe7\xb7J\xaa+]\x80D\xc1\xb6\x0b(\xed\xa2~\xd5J\xa0Rw\xbb\x93\xff\x1f\x94\x85\x83\x83\xa2$\xffm\x14\xe77\xe7\x99\xf4+^2\xe0g5%\x08\xf7\xc6Y(\x01`\x99\x03\x10\xca\xeb'\x8cs\x11\xb2N,#\x04\xa6O\x02\x8f<\xe0\xae\x8e$-'s\xb4<\xfb\xb5\xdc*\xdb\x9f\x0a\x80\xd5\x8b\xc0\xc5\x0b\x8e\xfc/\x9dwi\x81^\x8f\xcf\xcfV\xf9\xddj\xeb\xf5\x80\xedm\xfc\xd5\x0b\xdf\x87\x7fp\xf7k=\xddm\x00\x0d\xa8N\x0a\xd5M\xa1;)~\xf5\xcd'\xf0\xaf\xdf\xb1\x81+\xafka\xf9\xca\x04\xd7<\xad\x8d,3\xf8\xbe\xf7\xdd\x8c\xdf\x7f\xfdc\xb3x\xd1\xd8\x06\x8f\x09\xe9\xb3\xe7\xe3#N(\x16e\xae\x94\x12\x7f\xb5)5\xb4\xfd\xab\xa2\xbf\xc1\x00x\xe2\x09G\xfc\xa7O\xbbM0\x89\xd8\xb4\x887\x10:t\xbc\xef\x97\x15\xbe\xf7e@g\xa9l?\xd2\x05t\x07\xf8\xb9_\x05\xbe\xf9\x9b\xcb\xace2:\xf4T\xb8\xf5E\xcb\xb8\xe9y\x06y\xcf\x22\xeb\x1b\xb4\xfa\x0aYOa\xd0S\xb0-\xa0P\x0aI\xb9\x99rT7\x9b\x19\xf23k\xb0y\x01\x9b\x1bg\x13$\x0a\xba[@\xa5\x09\xd0\xaa\xec\xff2\x05`\xcc\x0e\xf1\xdb\xac\x00\x06\x06\xc5\x13[\xc8\x1eYE\xf6\xe0\xe5y#~0A)W\xd8^\xe5\xfc}\xbe3\xe4\xb5\xa5\x10\xdb\x9fU\x01\x0fT\x000\xf9\x7f\xffK\xfb_\xd6'z\xdf%HPo\x097QN\xfb/\x0aN?<\xbcR\xb2\xfe\xb0\xa9\x8f\x7f\x9b\xf5]q_6(o\xfbN\x00\x5c:\x0f\x5c,\xc9\x7f\xe5\xa2\x1b\x9076\xc6\x05@\x9e;\xc2\xf7\xed\xd9\xcb\x97\x81\xd5\xd5Q\xf2\xf7sg\xa6pB\xa0\x9bB\x9f\xe8\xa0c\xb7\xa1\xad\x81\xd2\x80nY\xc0\x027>\xb7\x8b\xef\xfa\x8d\x9b\xf0\xc7?uf\x16/ \x1b\x10v\x82\xa8#ui(\x00\xaa\xad\xd3\x19\xdf\x00'*\xe9\xe6\x93\xff\xea\xaa\x1c\xcf\xdd\x09\x81ID\xeb\x81\x89\xd8\xdf\xf8\xb7\x0a/}\x1e\x90v\x81\xce\xb2\x1b\x9aT\x17@\xd7-\x16\xd9n;\xa3\xb14\x17G\xb2\x91J\x01_\xf9\xec\x16\x9e\xfb\xc3m\xf4.\x17n\x1cI\x5c4\xaf\x12\x85<\xb5;\xe4\x9fh\x05\xdd*;\x9e\x16\x06\xf9\xe3\x1b\xb0\xe5\xcc'\x9b\x19\xd8\xdc@/\xb5\xa0:\xae P\xb5\xd3\x9d\xfb\xb6W\xc0\xf6s\x98^\xee\x8a\x08{\x05\xb2\xc7V1x\xf02\xb2\xaf\xac\xce\xf2\xef\xde\xa4\xf8\x8f\xf2\x1b\x15\x8f4(\xa6\x8b\x06-\x84\x03\xe0\x7f\x19\x8d\xf1T\x00\xd72\x91#n\x1d\xb8\xe8\x0e\xccJ\x03\x00\xfb7\x9f\x83\xfa\xbao\x1c\xda\xf4\x15\xe9w<\x11\x90g\xa3\xe4?\x18\x00\x83\x9e[\x12\xf8\xd2y\x97\x06\xc8\x06\xc0\x87\x7f\xc7\xe5i}\x09^Eg\xfd\xfe\xa8\x00XYq\xed\x81w\xe6\xcdz\x02\xa0(`M\xeen\xb3\x1cJ+\xb4S\x0d\xe5\x8al\xa1\xad\x851\x16\xadT\xe3I_\xd3\xc1\xb7\xbf\xe3\x06\xfc\xdeO\x9e\xdb\x19\xfb\xcf\x9c\x01\xde\xf0\x06;K\x17\xcfnD\xc0\x91,\x08\x5cRg\xb0\xbd\x8a!\xf9\xe7\xf98\xf9w\xbb\xa3\x02\xa0\xd7\x1b\x17\x00\x1b\x1bXR\x92\x02\xd8\xe3\xf86\xb5\x1cn\x1d\xfe\xef\xefS\xb8\xe5\x0a\xe0\xa6+\x80\x1b\xaf\x04~s\x0bx\xc1\xd7\xba!\xa9\xd5\x05:\xc7\xe0\xd6))\x05\x80\xd6\xc3S\x80\xd6\x1c\xfb\x0bHn^\xc8\xb1\xbdR\x94\xc4_\xb81%\x01\xd2\xc4\x91\xbfN\x14\x92\x96\xdb\xa0\x80\x9f\xfc\xd0q\xfc\xd6k7P\x5c\xdc\x82\xcd\x1d\xf9#3\xae;\xa0G\xfc\xaa\x9d:\x07\xa0\x9f\xc3\x94\x22\xc0\x96\x22`\xf0\xd0\x0a\xb2GV\xb1\xf5\xb9Gg\xf5\xb76\x0d\xc8\x9f\x0bjhC\xa0\x8a\xd7\xcc.\xc7\xca\x99\x16\x00\xaa&\xcak\xb2\xfck\xa8pB\xe1\x10\xdb\xc5\xfe\xff\xec\xbdy\x94$W}\xe7\xfb\xb97\x22r\xa9\xad\xf7\xd6\x8a\x90Z\x0b\x12j\x09\x04j\x09[\x06\x84W\xf0\xc3 \x01\x96\xc1\x03\xf60\x07\x8f\xc1o\x96c\xde\x8c\x8f\xc7\xef\xcd\x98\xb1\xc7~3\xb6\xd1\xb3\xe7\xbd\x01\x8cy\x0f\x03^0\x9b\x04\x03\x18lf\xb0-\xb1h\x01,\x10\x92\xd0.u\xb7\xa4\xee\xae\xea\xda3\xab2\x96\xfb\xfe\xb8\x11\x95\x91\xb7nDfUWVee\xdd\xef9\xf7DUeTV\xe5\x8d\x88\xfb\xfd\xfe~\xf7\xb7\xb4E@\x02\xf5Q\xa8\x1a^\x80$Y\xed\x05h-\xc3\xcc\xa4N\x01\x0c[\xf0\xc1?\xd2\xe4\x9f\xf7\xc1\xe5\xf7g\x97\x97\xb5\xd5\x9f\xed\xcf>\xf7\x1cLMu\xa4\xcb\xacX\xffq\xeaB[\xd6#Y\x8atP\x8e@?\xb8(\xa4\x97\x16\xf0\x08\x04{.\x0a\x18\x1f\x87C\x87t\x19\xf90\x84\xc7\x1f\x17\xdc~;\xbc\xfb\xddj+\x1f\xac\xb5\x10\xbf\xf3\x10\x00\x8d\xbb\x8e\xb1\xef_\x5c\xcf\xe9\xbb\x17\xe0\xe8\xd1\xf5y\x00\x1a\x0d\xf6^'\x98\xfa\x7f\x8e\xb9\x09\xddf\xb8\xf5\xd5\x82\x9b.\x87\xd7_\x916\x1c\xf5A\x06ph\xaf\xd6}~\x0dD\x00J\xe6\xa8+u0\xb6Z\xedP\xa38\xb6\x97\x90hN\xc5,<\x17\xe9\x07\xce\xd3\xe2@H-\x00\xa4\xdf&\x7f/\x10(\x01\xb1R\xbc\xed\xfd5>\xf6.\x1d\x19\xa2\x9c\xe0\x00\x00 \x00IDAT\xd4\x17\x85\x09j9\xb6Z\xffB\xcaU\xd6\x7f\xb2\xd8\x22<67\x88\xe4o\xabKSd\x88\xd8\xf2\xffau\x9f\x9b<\x17\xe6\x85\xc0P\x15\x022\x152\x16\xd7\x87Y8\xc1$\x7fs\x82{\xb5\xfa\xfaF\x12+\x22\xa0V\xebt\xffg\x8bm+\xef\x01XN+\x08\xa6\x15\x00\xff\xf3oj\xf2\xcf\xc2n=\xaf\x1d\xec\x97\x09\x80V\x0bN\x9d\xd2\xc4\x9f\x8d8&^\x5cj\x13\x7fj\xfd'Y\xa4\xed\xdc2\xf1\xfc2\xc9B\x8b_\xbb\xf6\x04\xff\xe9\xde\x03D$+\x91\xbbJ(dU\x10\x8cH\xae}\xc7n\xbe\xf1\xfe\x99\x95x\xb1]\xbb\xe0G\x7f\x14\xde\xf3\x1e\xc1{\xde3\x10\x22`=\xd7rGz\x01ZON\xb3\xe7\xa5\xbb\x98\xfeVC\x13\xba\xe7\xf5&\x00\xd2\x9e\x13{^\xaah=9\xe3\xd8t\x9b\xe1=\xaf\xd2\xe4\xbf\xab\x0e\xd5\xb4\xe3\xb8\x08\xe0\x9f}\x03\xde\xf8\x13 |]O'iARi\xff\xde\xf5?\x017\xdc\xa0w\x1f\xb3^P\xd9-bf\x90&1\xcc\x1d\x8dHBHBP\xb16*\xbcJ\x9b\xf8e@[\x00\xb4t\xc6\xc0\xcd\xbf\xe9s\xdb\x7f\x8cHh\xa1\x9e\x89\xc1\x97+\xc4/S\x11\x00\x90\xa4\xc4\x9fy\x00\x92\xa5hP-\xff\xb56\x9e\xb3\x95\xb1\xcf\x0b\x84\x84\xd5\xbd\x00\xfaV\xde~\xab+\x01\xda\xea\xf8Cq\xc3\x04\xdbv\x80-\xa5\xb0o\xb5\x93{\x16\x01W_\xaf\x17S/\x95\xc7\xd2\xd3O\xcfJ\x99\xd5\x9c\x7f-\x89\xe1\x9f\xbdE\x07neO^\xad\xa6\x19\xd8\xe6\x9e=q\xa2M\xfe\xb3\xb3\x5c~\xdbO\x10\xcf7;\xc8_\xb5R\x01p\xba\xd9\x1e\xd3M\xfe\xd3\xbd\x07\x88\x95\xd2#\x8d\xdc\x8d\xd2(\xde$QT'\xbc\x95\xb4\xf1,-<\x08\xe0\x87~\x08\xde\xfdn\xc1\xad\xb7\xaa\xcd\xb8'z!\xfa\x9d\x9d\xeb\xdf\x03\xe2S\x0d\x88\x14{^4\xc1\xf4}\x0d}/.-\xb5\xefI/\x8d5\xca\xa7\x94\xa6\xc7=/\x8a\x09\x9f\x98#\x9en\xba\x89\xdcFx\xf7\x0f\x0b^}1\xd4\x03]\xa0\xb4VE\x97Z\x0b`b\x0c\xa24\xde3jA\xdc\x02\x15\xb6\x09\xfe\xee/\xc2?\xfd7:|$\xbb=2\x1b$#\xff,\x8e\xf4\xde\xcf5\xb9\xee\x0du\x92P\xad\x8c\xb8\xa5\xf0\xab\x02\xaf*\xf0k\xe9\xb1*I\x22E\xb4\xa4\x88\x96t\xe0\xe0+\xde\xa2\xf8\x87\xbf\x04\x15+D(P\xcb\x11HA\x92f\x07\xa0@\xc5:PP\xa5\xcd\xd5\x1aw\x0d\xac\x17\xca\x16\xcbVt\x9e\xc9i\x9ee\xdd\xcb\x0b\x81\xbe\x97\x8f\xde\xea,\x00s1\xcf\x7f\xe8\x98\xd5\xcd\x81\xbaEU\x0e\x0c)\xa8\xef\xde\xd5\xbe\xf2\x87\x8f\xa4\x8b\xae\xd7A\xfc*M\xf5\x13?\xf5S\xf0\xd8c\xbar[^\x00T*v\x01\x90y\x00\x1a\x0d.\xf9\xc0\xb5\xc4\xf3M\x90t\x90\x7f\x87\x00\x98n\x12O5\x89\x9e\x99'V\xe3D*\xb5\xfe\x95\x22Jt*O\xb4\xac\x88\x97u\xcen~\xaf/+:X\xad\xc25\xd7\x0c\x94\xe2^\xeb\xf5\xdeq\x82\xe1\xdc=\xb3<3\xad\x17\xd3\xdd\x87'\xf0\xf6h\x0bk\xf2o\x9bV\x01\xb0\xff'\xea\xa8eE<\x1d\xd2zr\x8edn\x99s\xf7\xb8\x00\xc0\xed\x84k\xce\x86\x91\xd4\x81(\xbd\x95n\xbb+=uZi\xf2Qf\xb9'\xadNW\xea3\xcf\xc0\xf3\x9e\xd7&\x7f\xcf\xd3\xce\xc7\x8c\xfc3\xe7\xa4\x94\xf0\xb7\x1fn\xf2\x13o\xaf\x13\x87\x8a8T\x84K\x09~Uj\x11P\x13\xbaJ`U\x12\xb7\x12\xc2\xa5\xb6\x08\x08\x1b\x8as\xf7\xb4x\xf4\xcb\xf3\x00\x8c\x1c9\x0f\xa4@e\xc5\x812\xd2\xbfg\xdbe\x9f\xf4\x12\xc7d\x13\x05\x19\xc7%t\xd6\xbf\xc9{\xbb\x13\xcb\xd7\xdbV\x00\x14UG2[\x01'9a`K\x9d\xc8\xdd\xde+\xbf\xbf5i\x80e\xcc\x93\xe5\xf4\x17\xbd\xfe\xe5/#~\xf2'ab\xa2M\xfe\xf5\xba>\x9a\xe4\x9f\xc5\x00,/s\xe1\xef\x5cN<\xdf\xd4u\xb1\xa5\xe8 \x7f\xb5\x1ck\xd7\xff\xa9E\xc2\xe3\xf3D\xcf\xcc\x93\xcc\xb7XZ\x8cW<\x00Q\xa2X\x9e\x8bY\x9eKh\xcd%\xb4\xe6\x13\x96\x17\xda\xf7V\xe6\xa0\x10\xa2]yx@\x1e\xb2-\xf3\xeel'\x5c\xac\x16\x988\xec\xf3\xd0\xfd\x10>1C2\xb3\x8c\xa8y\xec\xbe\xcaGT}dM?n\xc9R\x82Z\x8e\x08\x9f\x9cF-\xc5\xc4\xd3M\x92F\xc8\xe5\x87\x179pl\xc1M\xe4\xe6\x90\xc3\x86\xa0\x92\xda\x19\x91\xd2\xbb\x8bIn\x85_h\xe8:d\xf5*\x8cV\xb5PP\xe8\xed\x01Y\xd1\xc7\xf9yx\xf2I\xed%P\xaa-\x00\xb2\xac\xd1\xbc\x00\x08C\xf8\xb3\xff\xdc\xe4\xad\xbf^g\xeexH\xd8HV\xac\xfe\xbc\x08\x88\x96\x14Q\xb3\xed\x01X\x9a\x8by\xeco\xda\xf7\xd56$\xfa\x22C\xb6\x1b\xd9\x9b\xc7\xc4\x22\x02\xc0\xbe\xe5\xdd\x97m\x00\x7f@\x1e\x0aU2\x81yU\x84!\x10\xf2\xf1\x02f\xdd\xffmU\x7f[\xfd\xcd\xdf ^\xfe\xf2\xb6\xec\xce\x84@\x96\xfa\x17\x86m\x17m\x14q\xee/\x9dEtb\x1eQ\xf7\x91\xf5@\x0b\x80t\xafL\xa5#\x9eY\x22:>O\xf8\x8c\x16\x00*Nh\xcc\xc5m\xf7\xffr\xc2\xd2\x5cBc*\xa21\x15\xebq*\xee\xa8=\x94\x0f\x22\x0fCx\xedk\x05\x9f\xff\xbc\x1a\xf4E\xb3\xe8\xf7v\x94\x17\xe0\xcb_V\x5cx\xe3(\x97]\x0e\x0f?4\xaa#\xaf\xd3\x02,Y}\x08`%\xcaZ\xc5\xba\x8c\x9bj\xc5\x5cv\xf9\x22\xa7\x1fk\xf1\xed\xbfs\x9d\x95\xb7\x0b^\xfb\x02\xc1\x9b\x0f\xc3r\x1aV\x94\xa4C\xa0E\xfc\xa9\xd305\xa3\x97\x17?]f\x96cM\xfc\x22\xdd2\x88cx\xea\xa9\x8e>P\xec\xde\xdd\xe9\x98\xac\xd5\xf4\xda\xd0l\xea\xf1\x1f\x7f\xa9\xc9o\xfeI\x9d\xc6\xa4N\x0b\x14i\x06\x80_\xd3\x01\x81\x19\xf1'\xb1B\xc5\xf0\xd4\x1d\x8b;\xe1r\xd8\x0cQ,\x1c\x96\xf1[>\x10\xb0\xcc\xc8\xd9\xd0\x07\xd2\x1f\x90I\x22G\xf6yQ\xe0a\xdf\xf3/SV\xdb\xf7\x8e\xb9\xe3\x0e\xc4\xb5\xd7\xea'\xb3\xd9\xd4\xc7\xacPK\xae\x04\xf0\xde\xeb$\xadGO#\xeb~[\x00\xf8r\x85\xf83\x11\x90\xcc-\x13>3O|\xaa\x81Z\x8ex\xd7\x9f\x8f\xd3\x9c\x8b\x89\x92\x84xY\xef\xd9-\xcf%4\xa7b\x9aS1\x8b'#\x16OF\xab\x8a\x0ef\xc9\x07KK\xed\xcc\xb1M\xb2\xf0\xcfD\x0c\x14=x;J\x04\xbc\xf1\xa5\x0d>u\x0f\x5cr\x89b\xfc<\x9f\xef\xfc]\x15%%b9\x86\x85\xb4\xf5t\xa2R\xf2O\xb8\xe6\xc6e\xe6\x8fGL?\x11\xf2\xa6#\x0d\xc7\xaa\x9b/p\xd7\xed)\xa8\xf9\xb0\x14j\xf2_\x89\xe0\x8f\xdb\x11\xfc'O\xc3\xc9\xa9T\x00\xa4;@K\x91\xce\x0e\xa8\xa4\x02\xe0\xcf\xff\x0b\xbc\xf5\xd7\xf5V@&\x00\xf2\x8e\xc9\xbc]\x92\x09\x80f\x13~\xe6\x9a&\x9f\xbd\xbb\xae\xd3\x01\xa5\x22^\x16\x84M\xd2\xfd|V\xc8\xff\xf8\xbd\x8d\x9dp\x0d\xcd\xf5\xa7\xa8Sd\xde\xc3m\xae}\xb6\xda8\x1b\xae\xc6\x07%\x06\xc0L\xeb\xb3-\xd6\xc22\x19[\x96_\xdb\xb7I\xb9\xf7\xde\xce\xbb\xe8\xc8\x11\xd4=\x9d[\x08c?z\x08o\xffH\x87\x00\x10\x15\xaf\xc3\xfaO\x96\x22\xdd9kf\x19\xb5\x1c\xf1O\xfe\xb0Jc.J-\x7fE\xd4\xd2\xc7\xd6|\xa2\xcb\x02\x1f\x0buTo\xac\x98\x9bkg\x1f\xce\xcc\xe8\xa0\xa0\xd3\xa7\xdb\xd9\x87[\xf0\x80\xad\xe7\xde\x12]\x84\xc0\x8e\xc0#\x8f\xc0M\xd74\xb8\xfd;#DK\x8aK.\x8d\xf0k\x02\xbf.\x09jzj\xc2%E\xd4\xd4V\xda\xf4c\x8a\xc5S\x117]\xd3\xe0\x91G\x1cCo\xc2=m\x8beY\x97@\x9di\xc2\xf4\x12L,A\xd5\x83\xaa\xd4\x0dG\xa5\xafS\xf5\xe2\x18\x1e?\x06a\xd4\xee*\xbe\x1cj\xb7~&\x00*\x01\xfc\xdf\xef\x86\x7fy\xab\x0e5\x0aC\xdd\xfe\xd7\x14\x00\xadV\xa7\x00\x98\x9c\x5cM\xee\xe7\x1d\x19\xe1\xf8=;FD\xae\xd58Q\x14g\xb4\x89\x82\x9fm8\xfc-~\x00\xf2\x85\x10\xf2[\x01\xca\xf2=\x94\xf7\x02(\xfazs*\x01\xf6\xeb\xae\xbagu\xfc\xc0\xc2\xff|\x9c\xd1\x1fy>\xf8\x02\xe1K-\x00j\xfeJ\xee,a\xb2b\xd1\xa9\xe5\x98\xd7\xfck\xc1\xdc\x89\x88\xa0\x9e\xee\xc7\xa5\x0b~\xb8\xa4X\x9e\x8d\x99;\x1a2{,\xa21\x19\xf1\x8dO/1;\xab\xc9\x7fyY\x17\x81\x9b\x9c\xd4cjjK\x04@?\x94\xfa\x8e\xf1\x02<\xf7\x9c\xbe\x96\xaf\xbd\xaa\xc1\xe7\xef\x1bI\x0b\xb6\xa4\x01Z\xa9\x00\x88\x96t\x10\xa8J\xad\xb4\xd7\xbeH\x93\xff\xe4\xa4c\xea\x01\x10\xb3\xbd\x0b\x80%\x98j\xc2h\xa0\x9b\x90\xfa\x12\x96R\x01\xe0y\xf0\x89\x9f\x86\xb7\xfe\xad\x16\x00\xadtKo\xd7\xb8\xce\x14\xa8W\xf5\xb1V\x85\xe6\x12\xfc\xeb7\xc1\x1f}J?\xefss\xed\xe6\x91Yj`Z\x81\x9c(\xddn\xb8\xf3\xce\xd5\xfc\xb7\x83\xc8\xbf\xecz\x17\xd5\xb9\xb1e\xae)\xbag\x12\x0c\x85\x00P\xd8\x83\x1f\xba\x95;,\x8a\x19(+\xff;\x94\x8b\xfd\xe2\x9dO\x010r\xfd\xf9$\x8d\x08\xe1\xa5\xe93\x89\x8e\xa0%Q\x1c\xben\x89\xa0.\x98|X\x12\xd4\x05A]\x12\x87\x9d\x02\xa05\x9f0w4di.\xe6\x0b\x1fhv\x90\xff\xf2\xb2~\xf8''\xe1\xd9g\xe1\xd81\xb8\xf7^\xb5\xdd\x1f\xc8\xbc\xc0\x1cz\x11\xa0\x1a\xfa\xfaE\x11\xbc\xfa\xca\x06\x9f\xffV\x1d\xe1)\xa2%\x90\x0b\xfa\xe3g\xeeY\x15\xc3k_\xda\xe4\x91G\xf4\xc2\xaf\xdc\x0e\xc0\xb6\x12\x06\xf7>\xa3x\xeb\x8b\x84\xeeC&\xdb\x02\xc0\xf7t!\xa0\xaa\x07\x7f\xfcr\xf8\xe5;t6@\x18\xc2\xf8h\xa7\x00\x08|h.k\x11\xf0\xca\xc3\xfax\xf7\xa3\xed\xa4\x91F\xa3\xbd+\x19\xc7p\xd7];>F\xa4\xac\x08\x90\xb2\x90~F\xf2\x89\xe5<\xcf\x22\x0a\xa4EPl{\x01`#i\x93\xd8m\xd6\x9a\xea\xc1\xd2\xef\xa5\x1b\xe0\xd0,\xfce\xf9\xb1\x17\xbdj\x8c\xcax\x9b\xfc\xfd\x11\x81\x8a!j\xea\x94\x9d\xa8\xa9\x08\x1b\x09a3\xe1\xc3\xbf\xd5\xd4\x8b~\xdao(s\xed\x9d>\xad\x83\x82\x9ezJ\x17\x94\xdb&.\xb6n\xc2o\xe8\xb6\x8e\x8ap\xcf\xfd\x8a\xd7\xbdJ\xf0\xdc\x8c\xde\x0ex\xc99M\xeauV\x06t\xbar\x1fyD\x17\x829{\x14>w\xb7\x0b\x00\xdcnxbZ\xf7\x1ck\xc5\xfa\xb87\xd45\x01j>T}\xf0\x04\xfc\xd6\xd5\xf0\x1f\xbe\xab\xb7\x03F\xeam\xf2\xafW\xc1\x93\xd0H\x05@sIg\x0d\xdcs\x8f\xbb\x0f\xfa\xe0\x15(\x13\x0cq\xee\xdc\xd8b\xb8\x0c\x85\x00(Z\x8cm\x01\x7f\xf9\xad\x82\xec\xa8\x0a&\xa5\x17\xebnGX\x7fO|u\x81\xe7\xfd\xd0\x88n\xd6\xe1\xeb\xa6\x1d\x90\x0b\xcaI\xf4\xf1_\xbd\xa1\xc9C\x0f\xe92\x04Ji\x95\x9f\x11\xc2\xec\xac&\xff\xe7\x9e\x83\xaf}M\x0d\xca}RT\x0b\x02z\xaf\x08\xb9c\x02\x01\x9f\x9b\x84}\xbbaj\xa1]\x07(\x1b\xd0\xd9/(\x8a`_U\xff\x8e\xc3\xf6\xc3\xd7\x9eV\xdcp\x81 \x8c!\x8caWM\x0b\x80\xba\x0f#i\xf3\xc7F\x087\x1d\x84\xcf\x9c\x80\xa5\xe5\x5c\xd1\x1f\xd9\xbe\x1f\xa2\xf4~\xf8\xc6}\x8e\xfc\xfbl\xc0$t\xa6\xff\xe5k\x00d^\x81\xbee\xb7\xf9[<\x19\xe6\xde~R\xe0\x05XO\x91\x9f\xb5\x14d\x18Z\x1c\xfdF\xdb\x8f{\xfeuz\x0f8\x89\xe1\xf8\xdd\x0d^\xfer\xc1\xb9\xe7\xc3\x83\x0fj\xf2\x1f\x19\xd1\x0bD\xb3\xd9\x16\x01\xf3\xf3\xda\x0b\xb0\xc5\xe4\xcf\x1a\xbc9\x03S\xffaPp\xf7\xf7\x14\xd7]%\xd85\x0e\xfbwC\xbd\x06\xdf}Z\x17v\x01M\xfaW_\xa0-\xbe\xc9\x19\x9d*v\xf7\xf7\xdc\xc2\xbf\xddE@+\x86\xf1j\x9b\xfc\xeb\xbe~(\x1a\xa1\x1e\xcf\x8f\xe1\x99\x19\xb8\xe3)}\x7fxR\x97\x08v\xd7\xfe\x8c\x0c\xd8\xa2\xf5\xa9\xc8\xb5/-\xe7\xc5\xac\xce\x10\xe8\xcb\xb6\xe5\xa6.\x90i;\xe0\xec\xc3{\xe9\xa8\x02\x15:zR1\x02\x8c\xa5cw\xee\xeb=\xc0\x841F\xd3\xf3\xb3\xdf\xad\xa0\x8b_\xfa\xb9\xbfQ\x168\xb8\xa3q\xc3\x0d\x02?\x0d\x12\x1a\x19ig fe\x07\xe2x`\xc8\xdf\xe1\x0cq\xddU\x82J\xa0\xf7\x84}_\x0b\x01\xd0\xc4\x1fEi\x99\xd8\xd0\x11\xc0\xd0<\xdb\x17\x08<\xa1-\xfb@jO@\x9c@#\xd2\xc7(\xd1b\xc1aC\x0cZs\xc4@\x94\x8e\xe5t,\x01M`\x1eX\x00f\x819`\x1a8\x9d\xfbz&=';\xaf\x094\xd2\xf7\x0a3\x81 \x848\xe3\x8b\xb7\xd5i\x80\x12\xbb+\xdf\x96\x0f))\xcf\x14\x10;\xd5\xca?#k!%\xf7k\xaf\x154\xd2r\xf1\x19\xf1\xbb\xbd\xbf\xe1\xf3\x04d\xb8\xfejA#-\xf3\x1f'p\xd7w\xdd\xb5\x1eFO\x00\xc0\x91\xf3\xb4u\xbf\x18\xea\xf8\xe0(\x81{\x8f\xbb\xeb\xbd\x81<V$\x08\xf2\x5cT\xd4\xe5V\x19\xfc\x96Xx\xd1<w\xc3.\x9e?`\x93hFI\xdaH\xdeV\x1c\xa8hb\x07\xaa?\xc0 c\x9bG\xf7;\xac\x11\x8e\xf0w\x0e\xeeqd\xdfO\x14\xb5\x03\x16\x05\x86jY\xbb\xe0\x8c\xdf\xf2\xdf\xcb~\x91\x7f\xa6:\xb6R1\xe5'&O\xfaf\x1b\xe0\xc4\xf0\x08\x98\x13\x9a\x18\x93\xb6\xe3\xf2\xbd\x1d\x1c\x1c\x1c\x1c\x06\xc2\x03`\x13\x09f*\xa0*\xe1\xa9|s\xbc\xc4\xe6\x0d\xd8\x08\xf7\xffV\x09\x00,\x1f\xc8\x9c\x80\xa4d\x02mQ\xff\xf9\xbe\x00\xc9:.\x90\x83\x83\x83\x83\x83C\xbf\x0d\xdd2\x98%\x81E\xbf\xf9zS\x05@\x81j\xb1Y\xef\xb6\xe8\xc7\x84\xce\xd2\x89\xc2\xf0\x00$\x05\x93\xe6<\x00\x0e\x0e\x0e\x0e\x0e\x9bI\xfa6\x12W\x86\xc1j3v\xbb\x19\xaf\x1b\xcagr\x00&\xcc\x96F\x91\x14\xa8\xa8\xc48bX\xff\xbdN\xa2\x83\x83\x83\x83\x83\xc3\x19\xdb\xb5\x05_\x17\xa5\xba\x9b\xa4\x9f\xf7\x5cKV\xd7\xc0\xe9\xdb\xfe\xff \x08\x00a!\xf8\xfc\x87\x8f\x0d\xe5d\xfb\x9f\xcd\xf4\x0b\x07\x07\x07\x07\x07\x87\xcd\xe62\xb5\x86\xd7L\xbe\x92\x05FkR\x22.\xb6\xad\x00\xb0\xa5\xf3\x99_\xdb\xda!&\xa9(\xe8\x96:\xe8\xe0\xe0\xe0\xe0\xe0\xb0\x19\x5cF\x17\x0e\xb2Y\xf0f\xe6@\xbe\xd0O~\xab\xa0\xaf\xdc\xb6\xe9\x02\xc0\x88\x03H,\x1e\x00r$_\xd6\x16\xd1\x14\x0a\xeb\x09\xbapppppp8\x13\xcb\xbf\x9ben\xebWc\xebYcF\xfc'\x05|\xb6a\x82@\x0e\xc8$\x16\x89\x82\xbc\x18\x88-\x93\x92}\x06\xdb6\xc0\x8ei\xf8\xe2\xe0\xe0\xe0\xe0\xb0\xa5\xdcef\xb2\x89\x92s\x8a\x8a\xfb\x98\xaf\xf5=\xa0]n\xf1\xc4\xa9\x02\x0f\x80m\xbfDX\xc4@Yp\x84\xab\x01\xe0\xe0\xe0\xe0\xe0\xb0\x15\x86lQ\x04\x7f\xd1\xd67\x86\x11l\xd6\xc4\xe9\xe6e\xd8V\x02\xa0\xac\x18P>\xed/\xb1\x10~\x992R=\xfc=\x07\x07\x07\x07\x07\x87\x8d\x86\xe8\xc2;6\x81 \xd3\x91\x94\x18\xac\xb6x\xb8\xa1\xf0\x00\x14}H\x95\x9b\x94\xec\xff\xcc{\x01l^\x83\xb2\x0b\xd0\x97V\x8a\x0e\x0e\x0e\x0e\x0e\x0e\xf4\xe6m\xeee\x8b\xda\xac\x83\x93?w\x85\xc7\xd2\xc6z\xdb^\x00\xd8J\xfd\x9a\x9e\x00[\x1e\xa4*y\xaf^Z3:!\xe0\xe0\xe0\xe0\xe0\xb0\xd9\x06\xaf(\x11\x01I\xeeg\x92\xce4\xf8\xbed\x04l\x89\x0002\x01\xbaU\x00\x0cio\x07\x98=\x02\xd6\xeb\xf2w\xb1\x01\x0e\x0e\x0e\x0e\x0e\x1bm\xd0\x16\x19\x9cE\xa9\x80&\xf7\xd9\x82\x00M\xa10tY\x00\x89\xe1\x09H\xd0\xbd\x8f\xcd\xcaIf\x9aDQk`\x07\x07\x07\x07\x07\x87M\xb5mK\xac~\xd3\xfb\x9c\xf1U\x84\xbd\x0dp\x9c\xe3\xe7\xbeq\xdb \x94\x02\xb6\xa9%S\x18\xe43\x00\x92\x12\xc2\xef\xa5\xe2\x128\xa1\xe0\xb0\xf6\xfb\xd3\xc1\xc1\xc1a-\xeb\x85-X\xdd\x96\xff\x0f\x9d\xde\xef\xac\xfeMR\xf2{C#\x00b\xca\xab\x01\xe6\x8b\x02\xd9\xac\xfd\x22A\xe0\x16o\x07'\x02\x1c\x1c\x1c\xb6z\xed\xe8V\xcb\xbf\xcc\xbd_\xd4\xe4n\xdb\x0b\x00[*`~\xc4\x05?\xb7Y\xf6.\xe7\xdf\xa1\x1f\x10\xee\xberpp\xd8@\x11`\xbef\x0bx\x8f\xb1\xf7\xc9\xd9p\xce\x96\x034Qf\x0d\x80|\xce\x7fQ\xc9`X]?Y\x95L\xb6\x83\x83\x83\x83\x83\xc3V\x19\x14Ee}\xcd88S\x14\x0c\x9d\x07\x80\x82\x0f\x9a\x14\xa8\xa3L\x19\x99\xa4o\x12|Q\xd5$W\x1a\xd8\xc1\xc1\xc1\xc1a+\x8d\x5cJ\xb8+\xcf\xc9\x9bR\xd4N\x0e\xc8\x84\xd8<\x00\xf9J\x80\xa6B\xca\x8b\x01\xb0\xa7V8\x0f\x80\x83\x83\x83\x83\xc3\xa0\xc0\xd6\xaf\x06\xec\xd9\x03\xaa\xe4\xf7\x86\xce\x03\x00\xf6\x82@\xa2\xc0\x1b\x80\xe5\xe7E\x9e\x01\x07\x07\x07\x07\x07\x87\xcd\xe64\x1b\x84a\xe4\xda8\xd0\xf4\x5c\x0fO;\xe0\x95O\xb5\xba-\xb0\x99\x05\x90\x18\x93d\xcb\x89,\xeb\xb3\xec\xe0\xe0\xe0\xe0\xe00(V\x7f>\x06@\x96pX>.\xa0\xac\xd4\xfdPx\x00l\x93eSE1\xf6\xb2\xc0\xb6\xf4@W\x14\xc8\xc1\xc1\xc1\xc1aP\xbc\x006^S\x14\xa7\xc0\x9b\xdc&\xfa!\x02\x06E\x00\x88\x02\x02\xcf\x93?t\x06\x01\xe6\xbd\x07\xce\xf2wpppp\x18\x14\x08\x8a\xcb\xdc\x9b(Ky7=\x07C\xe7\x01\xb0\xed\xfd\xdb>t\x91\x82\x12\x16\xb5\xe4\xe0\xe0\xe0\xe0\xe0\xb0\x95\xbcVf\xb5\xe7\xb7\xb8\xcd}\xfen\xe9\x82C#\x00l\x01\x80E\x81\x106\xf2\x87b\x97\x7f\xb7\xeaK\x0e\x0e\x0e\x0e\x0e\x0e\xfd\xe04\xe8\xcd\xcd\xaf\x0c/@\x99\x01<\xf41\x006O\x80\xb2\xa8\xa5\xb2V\xc2E*\xcc\xc1\xc1\xc1\xc1\xc1a\x10x\xae\x88\xdc\xf3|\xd7w#vP\x04@Q*`\xbe\x0b\xa0\xc8)\xa5\xbc8\xb0\x05\x06\x9a\xfd\x96\x9d\x17\xc0\xc1\xc1\xc1\xc1a+\xb8\xcd\x96\xff\x9f5\xfc\xb1\x15\xbc+\xf2\x12\x0cu\x1d\x00r\x93c+\x87\x98\xb5G\x94\x14\xbbS\xc0\xa5\x04:8888\x0c\x16\x84\xc5\xfa\x8f\x0d\x11\x90?OP\x5c\xd7f\xc3xm\xd0\x04\x800\xac~\x93\xe4c\xca\xb7\x09\xf2\x13\xe8\xe0\xe0\xe0\xe0\xe00\x08\xdc\x96\x94X\xf5\x12\xfb\xd6\xb6\x8d\x0f\x87\xce\x03\x90\x9f\x9c\xc42A\xb6\xe8H[U@W\x01\xd0\xc1\xc1\xc1\xc1a\x10\x88\xbf\xac!\x9d*\xe0\xbe,\xe5]\xe5<\x03\xd2\xe6\x090\x0a\xe9mO\x01\x90\xfb\x106\xf2\xb6\x95\xf85'\xd1\x1cN\x0488888\x0c\xa2\x180\xdd\xfb\xe6~\x7f\x92\xf3\x06\x98=o\x86>\x0b@X\x04@\x91j*\x12\x02\xb6\xd7\x1d\x1c\x1c\x1c\x1c\x1c\x06E\x0c\xd8\xb2\x00\xf2\xb1n\x9b\xc6cr\x80'J\xe6&\xaa\x9b\xeb_\x18\xaa\xc9\xa5\xff98888l5\x8fa1T\xcd\xbd~\xb3\xde\x7f\x92\xf3\x06\x14y\x13\x86N\x00t\xab\xe1ovOR\xfd\x9c\x18\x07\x07\x07\x07\x07\x87u\x12~\x99\x10\xc8s\x9a\x8d\xff\xb2\x9f\xc7\x05\x1c7\xb4Y\x00`\x0f\xfa\xcb\xd2%2u$\x8c\xdf\x17N\x1488888l#Q )o`g\xc6\x06l8\x06q\x0b\xa0\xa8\xb9O>:\xb2hb\x9d\xdb\xdf\xc1\xc1\xc1\xc1a\x90\x88_\xd1\xbd\x8d\xbd\xcd\x0b\x90\xdf\xceN\x18\xd2B@\xb6&>f\xb4$\xd8\xf7\xf8m\x15\x96\xb0x\x10\x1c\x1c\x1c\x1cv*\x11\xb95ps\xad\xfbnB\x00:\xa3\xfc\xb3\xfa6e]q\xd7\xf27\xb7\xa5\x07@\x18D\x9f\x9f\xa4|0`\x91r\x12%J\xcb\xc1\xc1\xc1\xc1\xc1\xa1\xdf\xc6k\x99\xcb_Xx\xcd\xb3\x18\xb8\xdd\xbc\x04C'\x00\xba\x05O\x98\x13Wt!\x8a\xbc\x00\x0e\x0e\x0e\x0e;\x99\xa4\x1c\xfa\xcb[\xbd\xd4\xee/j\xefk\xeb\xfc'-\xde\x82\xa1\xdc\x02 \xf7!\xcd\xc93o^\xcf2!\xbdN\x8c\xf3\x06888\xec4\x82r\xeb\xde\xd6\x08\xad\xa2\xd6\xf5\xf9l6\xc1\xea\xee\x7f\xb1E\x18\xf4\xa5\x0a\xe0\x96\x0b\x00\xa5\x94\xc0^%\xa9H1\xe5k$\xdb&\xd95\x02rpppp\xeb\xdf \xcd\xb7\xc0\xde\xf3&/\x06L\x038o\xe4&\xf4\xc9\x933(\x1e\x00[\xd0\x9fi\xe1\xc7\x94wG\xeaV\x7f\xd9\xc1\xc1\xc1\xc1\xc1a\xb3EAY\x9a\x9f\x19\xd4nr\xa0\xe8'\x8f\x0dR\x16\x80\xe9\x0d\x10\xc6\xa4HVg\x04\x88.\xefa\xfb;\x0e\x0e\x0e\x0e\xce\xfaw\xd8h\x0e\xeb\xf5\xda\xc4]\x04Bl\x10\x7f>\x10~(=\x00\xe6Mk\x06Q\x88\x82\xd7m-\x167%z\xd2\xc1\xc1\xc1a\x00\x89\xdf\xads\x83'\xb8L\x8e\xcaj\xfe\x9b\x06m\xc2\xea6\xc0E\xdc8T\x02\xc0\x0c\xf83\x15Ul\x90\xbeY;\xb9\xa8\x86\x80S\xc9\x0e\x0e\x0e\x0e\x0e[-\x06l\xae\xfd\xbc\xc5\x9f\x9dc\xa6\xc1\xc7\xf4\xd1{=h1\x00\xe4\xd4\x910&%/\x04\xbc\x02\xf2/R\xc2\x8e\xec\x1d\x1c\x1cv\xb2\xe5\xef\xd6\xc0\xad#\xff\xb2\x06v\xe69\x91!\x0a$}\xf4\xec\x0c\x92\x00\xc8\xe7Ez\xb4]!\xd2B\xf4\xb6\xa6@\xaa\xc7\xf7wppp\x18v\xd2q\xd8:\x1e\xb3\xa5\x00\xe6\xf7\xf4m\xd1\xff\xa6g@\xb2\xda\xdb\x9d\x0c\xab\x00\x80\xd5\xfb\xfd\xf9\xc0\x87(79\xb6\xad\x82\xa2\x9f;8888!\xe0\xb0Y\xd7\xc0f\x90\x8a\x02\xf2\xce\xa7\xfaI\xca\xab\xd9\x0e\xb5\x07\x00\x8bR\xca\xfe\xb78\xf5\x08\x88\x82I6S)l\x93\xe5\x82c\x1c\x1c\x1c\x86\x95\xf4\xdd\xda\xb6\xfdD\x9a\xca\xf1\x5c>\x08\xd0\x16'\xb0\x22\x1e6\xb2\x08\xd0\xa0\x08\x00\xdb>H~x\xb9\x09\x90t\xbaY\x12\x8b0p\x0f\x85\x83\x83\xc3N$\x7f\x17\x0708\x5cV6\xefyc7\xb6\x90\xff\xa6\xc1\x1f\xa0\x9bYX\x86\xcc\x91\xbc-\x8a2\xef\xfa\xb7\xd5\x11(\xbb0n\x9b\xc0\xc1\xc1a;[\x91\x0e\xdbS\xb0\xd9\xbc\xd9X8\xcel\x827\xb4\x02\xc0\xfc\x80I\xc1D\xd8\xba%\xd9\x1a%\xa8\x92Iwppp\x18\x16\xe2\x17N\x1c\x0c\xf45R\x05doV\x00,\xba\x9e\xb2\x9f\xde\x81Al\x07l\xab\xfc\x97MB^\x10\x88\x02rw\x0f\x81\x83\x83\xc3ND/F\x8e[\x1f\xb7F\x10\x14q\x94*x]X\xc8\x7fh+\x01\xdaR%\xf2\xc4nF\xfb\xcb\x9c\x10\x90\x96szy \xdc\x83\xe0\xe0\xe0\xe0,U\x87~\xcd\xb1\xb0\xf0\x9b*8'\xb6x\x0b\x92~\xff\x93\x83\x9a\x05`\xeb\x95,-\x13d\xb6S\xcc\xbfVt\xa3\xbb\x9b\xdf\xc1\xc1a;\x11\x89\xea\xd3\xfb:\xf4\x0fEM\xeb\xcc\xb9\xcf\x07\xb8\x9b\xbc\xd6\xf7\xec\xb5A\xab\x04\xa8J&\xb2(\xea\xb5\x9b;\xa5\xe8o988888\xf4\xd3\xa0-\xf3\x0c\x98[\xddI\xce\x1b\xd0ML\x0c\x9d\x07\xc0\x8c\xe8\x17%$o\x16O\xb0\xb9\xff\x95S\xbe\x0e\x0e\x0e\x0e\x0e\x03\xc0g&\xe7&\x14\x07\xae\x17\xf1\xe0P\x0a\x80\xb2Z\xfeqn\xb2\xe2\x9cB\xb2\xa5\x05\xca\x1e\xbd\x0a\xce\x03\xe0\xe0\xe00\xac\x16\xa6\xc3`_#e\xe10\x91\xe3/i9\xb7o\xb1\x00\xfe\x80M\x94M\xfd\xe4s\xfem\x82%\xef6)\xab\xc1\x0c\xbdm\x118888\x0c\x92%\xd9/\xf2w\xe9\xd1\x9b\xcfoe\xfc\x94/\x19\xbc\xaa\xe6\x8d\x10b\xb8z\x01\xa4e\x0d\xcdt\xbe\xbc\xea\xc9\x97\x05\xceG\xfb\xab5X\xf7j\x0d\x0f\x96\xb3\x10\x1c\x1c\x1c\xb6\xc3s-6\xe8yw\xebD\x7f\xc5\x9b\xc9o\xd9\xf0\x8ck`+r\xd7w\x8e\x1e\xa4\x18\x003\x9dO\x16L\x10\x14\xbb\xf7\x8b\xf6Uv\xe2\x8d\xef\x94\xbd\x83\xc3\xce\xf4\x14\xb8\xde'\x83!\xd4\xba\xf5\xa9\xc9s\x9d\xe8\x22\x1c\x86Z\x00\x08\xcb\xf7y%dNdly]\xac\xe3\xef8888\x0c\xb3\xe5\xe9\xbc\x00[\xcbi\xb6j\x7fy>K,\x96\xbfY\x03\xa0o\x22`\x10\xeb\x00\x98\x93\x91WH\xd9\x1e\x89\x99\x1a\xd8\xab\xbb\xc4\xdd\xe8\x0e\x0e\x0e\xdb\xd9\xaa\xdc\x0c\x03\xcca\xe3\xe7\xd6L\xfd3\xad~\xdb\x16\x81\xad\xcf\xcd\xd0\x09\x80\xa2r\x89\x89EI\xd9&\xd5\xb6\x7f\xe2\xe0\xe0\xe0\xe0\xe0\xb0\xd5\xbcV\xd4\xec\xc7,\x00d6\xb3\x8b7\xe3\x9f\xf4\x07p\xe2\xcc\x8e\x80\xa4\x93\x91O\x93\xc87\x07\xcaO\xb89\x9c\xd2\xed\x117\x7f\xe4|&\xce\xf7\x19\xdb\xef\xb38\x19\xb3x*\xe2\x93o>\xea&fH\xf1\xb9\xcf\x09\x0e\x1e\x04\xa5\xe0\xc4\x09\xb8\xe9&\xe7\x1c\x1bV\xfc\xd5{\x858\xb0\x17\xf6\xed\x83\x93\x93p\xfc9\xf8\xa7\xbf\xa1\xdc\x05\xef/\xf9\x8b\x12\xce1\x1b\xd9\xd9\x8c\x5c\xc9&d\xadm9!*\xa5\xbc\xd4\xdd\xe1\x03\x01PM\xc7H:\xc6\x81\x89t\xecJ\x8f\xbb\xd3\xb1+\xf7\xdahz~\x1d\xa8\x01\x95\xf4=\xfd\xf4\xfd%\xf6\x16\xc2;\x1a\xff\xec\xce\x8b\x988/`\xe2\xec\x80JU\x22\x810R4g\xb5\x08X\x98\x8c\xf8\xf0+\x9ep\x8f\xf4\x10\xe0O\xfeDp\xed\xb5p\xd6Y\x9a\x0c\xaaUH\x12\x08C\x98\x9c\xd4B\xe0[\xdf\x82_\xfa%\xc7\x0d\x03nU\xf6\x84\x7f\xf8\xa8\x10\x07\xf7\xc2\xfe}0\xb1\x0b*5\x88\x13h5\xe0\x99\x13\xf0\xccs\xf0\xf2\xb7)\xe75\xdd\x18+?_\x92>JG\x08\xb4\x80%\xa0\x094\x80\xf9t\xcc\x00\xb3\xc0\xe9\xf4\xeb\xe9\xf48\x97\x1e\x17\xd2\xb1\x94\x8e\x10H\xd2\xcc\xb9\xa1\xf4\x00\x88\x92c~\xdf?_\x13\xa0\xa8\xf1\x8f\xcb\xf7\xb7\xe0\x82\xcf\xbe\x05ow\x9dx\xaa\xc1\xd3o\xf88\xbft\xd7!\xce\xbd\xbaNP\x95\x04UA\x80D$ \x94B\x8c@p\xae`d\xbf\xc7\xdb\xbet!\x1f{\xf5\x93n\x02\xb71n\xbdUp\xcb-\xb0k\x97&\xfe7\x7f\xe2<\xc6\x0e\xfa\xa0`\xe1T\xc4Go:\xce\xe8(\x1c8\xa0\xcf}\xf7\xbb\x9d\x08\x18@\xf4\x9c\xfa\xf7\xa5\x0f\x0a\xf1\xd2+\xa1>\x0a\xd5\x1a\x04\xb5\xd4,\x02\x84\x07\x07}-\x02\xef\xfa\xb8\x10\xd7\xbfYq\xdbm\x82\xbd{\xe1\xf4i\xb8\xf9fw\xed7\xf0:\xd9b\xdb\xf2\xfcdn\xc3'\xb9\x9f{\xfd\xe6\xb0A\xf1\x00\xc8\xd4b\xcf{\x00j9\x0f\xc0\x98a\xf5\x9b\x1e\x80\xf1\xd4\x030\x9a\xfen=}\xaf`\xa7{\x00\x9e\xff\xd7o%8w\x1c\xff\xacq\xfc\x83\xe3\xa0 \x9eZ$\x9aj\xac\x1c\x7f\xe5\xf5\xdf\xa7\x82$@\xa2bE\x18)B\x95\x10)Es)f\xe6X\x8bS\x0f.\xf3\x89[\xdc\x96\xc0v\xc4{\xde#x\xedk\xe1w\xbe\x7f\x1e\xbb.\x08\x18;\xcbgt\xbf\xc7\xd8>\xad\xff\x17NE,\x9e\x8aY8\x151{4\xe47^x\x9c/|\x01\xde\xf3\x9e-%\x02g\x99\xae\xd33\xf0\x89[\x858|\x09\x9cs\x1e\x8cM@\x90\xad\xa65H$\x84MPM\xf8\xf2w\xb4\xe0\xdb\xb7\x0f\xf6\xee\xd5C\x08x\xee\xb9\xf6\xf8\xe9\x9fvb`\x03=\x00\x8b\xa9\xf5\xbf\x90Z\xff\x99\xc5?\x0dL\xe5<\x02\x0b\xb9\xb1\x08,\xa7\xef\x17\x0f\xb3\x07\xc0V\x01)/T<:K\xfe\x9a\xe9\x81\xca\xf0\x14\xac\xdbu6,x\xc1\xb3\xff\x86\xd1\x1f\xb9\x10Q\xf1\x91\x95\x00)\x02T\xac\x10\xbb\x04r\xa4\x86:g\x9c$\x0cy\xdf\xed\xf0k7\xfd\x00\x1fA\xe2\x09\x84\xa7\x10\x0a\xa4RDQB\xe0KF\xf6\xf8\xbc\xfeC\xe7\xf1\xd9w\x1cw\x8f\xfd6\xc3\xb5\xd7\xc2\x7f\xf8\xe6\xd9\x1c\xbee\x8cJM\xe2W\x04AU\xe2\x0b\x01\x09L\xec\x09\xa8\x8f{\xec~^\xc0\xc1\xc3U~\xf3\x13g\xf3\xce\x97<\xd7\x13\xd9\x9c\x01Iw#xG\xfek7\xe6\xd4\x87~K\x88K.\xd0\x16\x7fP\x83`$%\xff\xaa6\xb1\xa4\x84\xaa\x84\xdb\xbf\x067\xdc\xa0\xbdA\x95\x8a\x1eR\xea\x98\x90\xfd\xfb\xb5\xa7\xe8\xd0!x\xf6Y\xc19\xe78\x11\xb0A\x86uQ\xfa\x9f\xea\xf2\xbb}{\x16\xb6T\x00(\xa5Lw\x88\xad\x14p\x962a\x0a\x83\xa4\xc7\x89\x1ajKB\xdc~\xbb\xde\xd4=p\x00Z-\xed\xc3K\xc7\x0b\xdf4\xb2B\xfe\xda\xc1\x1f\xa0\x88QJ\x80\x90(_\xa0\x14T/\xdd\xc7\x7f\xfe\xd8\x85\xfc\xbb\xb7=\x996]P$B\x0f!\x04~M\x10\x8c\x08\x82Q\xe9\x1e\xedm\x86\xb7\xbf]p\xf4\xb2\x83\x5c\xf63\xa3T\xaa\x92\x0f\x7f\xe2R\xfc\x83\xa3x\x07F\xf0\xf7\x8e\x82\x82hr\x91x\xb2A4\xb9\xc8\xdb\x7f\xf6\x11.|\xe5(\xff\xf5\xf3\x07\xb9\xed6\xc1\x87?\xac\xd6J\xfe\xaa\xc7\x85\xd0\x11\xfc\xc6\x13\x8e\x18\x1d\xd1{\xfd^\x15\x94\x00\x95\x80\x8a\xf4\x0a*\xf4c\xcf\x9f}\x06^\xf2\x12\xf0\xfdN\xf2\xefxC\x01A\xa0\xcf\xb9\xf9#\xe73\xb2\xcf\xa3\xbe\xd7cd\x8f\x87\x17\x08\x16ND\xcc\x9f\x88\xf8\xf8\x1b\x9ev\xb3\xbf6c\xd3\xe4\xb7\x84\xce\xaa\xb7\xc20r\xfd\xd4\x8b0|\x02\xc0\x98\x14\xb35\xa29\x99\x09\xabs#E\x81\xba\x1a\xfe'\xfe\xdb\xdf\xd6\xc4\xffS?\xa5\x9f`\xcf\x83(\xd2ca\x01\xa6\xa7y\xe0\xfbW\xc0\xb7\xbe\xc5\x8b~e\x09\x89\x16\x01JD\xa8@\x82/PJ\xa0\x92\x04\xe1\xfb\x04\xe7\xef\xe2w\xde\x7f.\xbf\xf6\xae\xe3D$\xc4J\x11+E\x94$\xc4\xb1\x22\xd5\x0c\x5cx\xe3(O\xfe\xdd\xa2{\xcc\xb7\x09\x1e=g?\x87\xae\xabS\xadK\xfe\xf2\xe1\x1fa\xf4\xc7G\xf1\xf7\x8d\x22k\x01\x22\x08 \x81\xca\xa1\x90d)$\x9aZ\xe4/\x1f>\x8b\xd7\xed\xfa;\xce;R\xe7\xd1\xf9\xfd\xeb\xb1rz)\xcc\xe5\xc8\xbf\x0f\xb8\xf1\x88\xe0]oN\x03\xfdZ\x10\xb7 iuN\xfa\xfb?\x0e/|\xa1^22\x01\x90'\x7f!\xf4R\xe2y\xf0\xba?>\x87s_Z\xe3\x82\x1b|\xea{<jc\x12?\x90\xf8R\xb0\xf7\xc2\x84(T\xfc\x9bc/`\xe1d\xc4\x07^\xf2\x98\xbb\x00\xc5\x22\xa0H8\xab\x12\x0e\xdc\x94,\x80A0\xe9D\x81e\x90\xed\xdb\xe7\xab\xfe\xc5%\x9fAn\xb6\xfbdS&\xe7\x0f?\xb5\xfagO?\x0d\x97^\xaa}u\xb5\x9a~Z\x95j\x8fjU{\x04\x0e\x1d\x82+\xaf\xe4\xbe\xdf\x8b\xb49\x80JCK\x04\xc2\x97\x88\xc0C\x04~:\x02\xfc\xfd\xa3\xfc\xef7N\xa7\xc4\xaf\x88\x13E\x14\xeb\x11\xb7\x14a3a\xf4\xa0\xef\x1e\xefm\x84\xb3\xae\xaaQ\x19\x93|\xee\xf4\x8dT.\xddOpp\x02Y\xaf\x22\x83\x0a\x92\xdc\xf0\xab\x04{'\xa8\x5c\xb2\x9f\xcf\xcd\xdeH\xa5&9\xebpm=\x04\xee\xac\xfb-\xc2\xc1}\xd0\x5c\x82\xe5\x1c\xf9'!\xa8\x10\x08\xe1U7\xebe\xa1V\xd3\xe4\xef\xfbm\xb7\x7f6@/'\xaf~\xefY\x1c\xbc\xb2\xca\xdeC\x15&\xce\xf2\xa9\x8fy\x04\x81$\x90\xda\x97X\xc5\xa3\x22$\xe3\xbb\x02\xf6\x1f\xaa\xf2\xabO_\xb6\xea\xff\xb9\xe0S?\xb7\x13I\xbf\xa8$s\xdec\x9d\xefr\x9b\xef\x0b`+\xfc\xa3J\xb8m\xa8<\x00fe\xbf$g\xf5S0ye\xa5\x14\xb1\x5c\x081\xe8\x8b\x95\xf8\xad\x0f\xc1\xbe\xb3`\xffA\x1d\x9ds\xd55\x88\xcf|\x0b\xe6\xa6avF\x8f\x7f\xf1\x86\xf6\xe6\x9d\xf5\xaa\xfa\xfa)N\x12\xfd\xc4_y%\xdf\xf9\x0f\xdf\xe4\x9a\xdf>Ko\x01dC\xc5\xa88\xd6\xee\xc1\x9aD\xd4}\xaaW\x1c \x8a\x97\xb4\x00P\x8a(%\xfe\xb0\x91\x10.*\xc2\xc5\xc4\xad\xb4\xdb\x08\x95q\xc9W\x1a\xaf\xa0r\xf1\x18\xb2Z\xe1\x81\xdb.\xd3\xc2q\xef^\xd8\xb3G\xaf\xfa\xd9\xb6\xd1\xd4\x14/\xbc\xf9\x11\xfc\x03c|\xe5\x89W\xf0C\xe3_]\x8f\xf5\xee\xc8\x7f\x8b\xb0\xd8\x80\xc5&\xb4\x96 LG\x5c\x05\xa9\xf4\xb8\xe2\x0a\xa8\xd75\xe9\xc7\xb1v\x16&\xe9\xe3\xacT\xdb\x13\xf0\xca\x7f\x7f\x80\xf3_Ve\xecl\x1f\xdf\x97\x04\x15\x89\x1f\x08|)\xf1\x11\xf8\x08<!\xf4\xde\xac\xaf\x10\x1e$\xa3\x1e\xe7}\xe8ux{\xebx{\xeax\xbb\xeb\xd4_r\x1e\x97=\xfa\xabD'\x17\x88O-\x12\x9dZ\xe0\xf8;>7\xac\xd3or\x98\xf9,H\x0b\xa1{\x05^\x81\xbc\x11\xdc\xd7\xe7i\x90\xda\x01\xdb\xeaW\x8b\x1e\xacz\xb3\xba\x92\x19\x99\xb9mR\x02\xc5\xa7\xff\x11^\xf1\x1a\xbd8W+P\xf5 \x8a\xa1\x15ii?;\x03s3\xf0\xc9\xbb\xe0\x97_\xb3\xfa\x0d2\xdf]&\xe7\xc3P\x7f?>\x0e\x87\x0f\xf3\x9d\x9f\xfb\x0c/\xfa\xab\xeb5\xf9'\xa9\x00H\x22\xfdu\x1cC\xa2\x905\x9f\xc6lL\x94$D-\xc5\xd2LL\xe3T\xcc\xe2dLc*b\xf1d\xecV\xdam\x84;[/#8\xaf\xc6\xc3w\xbc\x14\x0e\x1f\x86W\xec\xd3\xc4_\xa9\xe8M\xde$\x81\x0b.\xd0\xf7\xca\xd4\x14\x0f<|%|\xff\xfb\x1c\xba\xf4\x0e\xee\x9c~\x99#\xf7m\x84\x93\xa7aj\x06\xc6G!\xf0\xf5h\xc5 \xab *\xda\xf2\x8f\x22X^\xd6\x02 I\xda\x02@\x08\xbdd\x5c\xf5\xe6\x09\xaexC\x95\xdan\x0f\xdf\x17\xf8\x9e\xd0\x02@\x88\x94\xfc\xf5f\xa2\x92 +:PX\x02\xff\xef\xdf\xbf\x98\xfa\xf5\x13x\xbb\xebx\xbbj\xc8ZE{\x16\x91$\xcf\xdf\x8b\x8a\x22\xa2\xa9E.\xfe\xce;y\xec\x9a\x0f\xec$\x8f@\x91\x87\xc0\xb6]m\xcbP\xeb\xeb\x96\xf6\xa0Eu\x99q\x00f\xc4\x7f\xa6\x9a\x12\xca\x9b-\x98\x13)\x06\xddZ\x11\xff\xf0\x1c\x5ct1\x1c\xd8\x07#U\x18\xf1t\x12dM\xe9(\xdeQ\x1f\xf6\xed\x86\xf3\xf4\xed\xf6\xab\x00\x00 \x00IDAT.\x80\x8b.\x87?\xfcT\xa7\xefN\x08-\xe1\xa5\xd4\xa4\x9f\xf9\xf8\xb2\x85\xbeZ\x85\x0b.0\xc8?\x1dQ\x84j\xc5$\xcb\x11*JX\x9c\x89X\x9c\xd2\xc4\xdf8\x15\xd3\x98\x8ci\x9c\x8aX|.\xe2\xf8=\x0d\xb7\xd2n\x13\x5cq\xf3\x04r\xac\xc2\xe3\xf7\xbc\x04^\xf9J\xb8\xe8\xa2v\x05\xa0 0n@\x01\xbbw\xc3\xf3\x9f\x0f\xafx\x05\x8f\xff\xe3K\x90\xf5\x0aW\xdc<\xe1&r\x9b\xe0\x9e\xfb\x15\xcfM\xc1\xa9i\x98\x9c\xd6\xc7\x93\xd3Z\x18\x9c>\xad\xc9\xbf\xd5\xd2\xc78\xd6\xc3\xac\x07\xb8\xeb\x82\x00\xbf.\xf0+\x02\xdf\x93x\x9e\xb6\xf4\xc5\x8a9\xa5H\x14$Bo'\x0a\x0f\xfe\xdbmWP\xbd|?\xc1\xf3v\xe3\xef\x1dE\xd6\xaa\x88 @\x08\x1f)*+\xc3\xdf=F\xf5\xa2\xfd\x5c\xfe\xec\xbf\xdd\x09\x84_d\xe4\x9a_\xe7\x7f\x16[~.\xfb\xc9U\x83\xe0\x010[\x1f&9\x17\x89\xadG\xb2-]\xd0\x9cP\xb5\x99*\xaa\xeb\x07|\xe3_\xc0\xe8\x01\x18\xdd\x0b\xadEX\x9a\x85\xa5Y\xd4\xa7\xdf\xaa_\xbf\xfd{z\xe1\xadW\xa1\x1a@U\xac\xa4\xedh?\x9b\x02)@\xf8\xfa\xfbj\x00\xe7\x1f\x82\xff\xf3\xa3\xf0\xebo\xd3\x8b\xb7\x89L\xde\x0b\xa1E@\xbd\x0ecc$\xadP[\xfd\xa9\xf5\x9f4Z$\x0b-\x92\xf9\xf48\xb7\xcc\xe2TD\xbc\xa4\x88\x96\xb5\x07`\xfe\x99\x90\xe9\xc7CN?\x1e\xbaUv\x1b\xe1\xf4\xb5G8\xf9\xfd\x97\xc0\xab\xaek\x93~\xa5\x02\xef\xfd8\xec\xda\xa7s\xbdP\xe9\xd6\xd24\xfc\x8b\x9b\xb5x\xacT\xe0\xc8\x11\x9e\xfa\xea\x02\x07\xaf}\xc6M\xe46\xc2\xe3G\xdb\x8b\x9e\xef\xc3R\xa4\x9d\x89\x95\x0a\xcc\xcd\xe9\xf8\xe0\xd1Qh6aiI\xdf\x12\x99\xdd \x04T\xc6$~U\x22\x85@\xc5\x8a8\xd2[\x81\x00B\x09b\x91\xa9\x01\x9d-\xf4\xde\x8f\x5cD\xf5\xea=\xedl#\xdfG\x06>Bx\xb4}\x06\x12\x85\x04)t\x00\xb2\x14\x5c\xf2\xdd_\xe1\xd1\xab\xdf\xa7\xdf\xf7\xcf\xff\x5c\x8b\xcf\x89\x09\x18\x19\xd1e)''Q\xff\xe4\x9flg\xc2\xb7Y\xf9\xca0X\xf3|&\xb1o_\x0b\xfa\xd8\x14h\x90b\x00\xf2\x1e\x00\x0a>\xb0\xad\x12\xa0\xb9\xef\x9f`\xaf\xc4\xb4\xa9\xfb\xfd\xe2\x96Oj\xd2\x1f9\x00\x17\xbf\x0aF\xf6\x82\x17\xa4\xe4?\x07\xcb\xb3\x88w\xdc\xa9\xbf_\x9c\x82\xdf\xbb<%\x7f\xda\xc3\xcf,\xfb\x94\xf8E\xba\x99W\x91P\xf1\xe0\xacs\xe17?\x00\xbf\xf5\xae\xd5\xe4\xafT\xa7\x9f/\x8a@J\xe2\xb9\xc6\x8a\xdb?iE$3\xcb\xc4SM\xe2\xa9\x86N\x05{v\x81\x85g#\xc2EE\xab\x91\xd0\x9c\x8a\x99~\xac\xc5\xe9\xc7Z,\xcf\xba\xfd\xff\xed\x84\x93\xc9\x8dp\xf5\xd5Z\xfc\xfd\xe9W`\xcf>M\xfc/~\x99&\xff]\xbb;\x05\xc0\x17\xee\xd7\xc7\xe9\xd3\xf0\xd3W\xc3UWq\xf2\x9b.\xe3c;ar\x06\xc2H\x8f(\xd2N\xc3\x91:\x8c\xd6\xe0\xd9g5\xb7\xfa~;\xc5oy\xb9-\x00|\x1f\x84\x14$\xa1\x0e\xfa\x8dc\x1d\x08\x1c'\x0a\x81 6j\xd0\xfc\xfe\xfb\xce\xa3r\xd9\x04\xa2\xe2!=\x1f\x19\x04\xa9\xdb\xdfK\x89_\x0b\x00%<M\xfcJ\xa0\x94D(\xc9c\xff\xf82\xc4\xb1/j\xe2\x7f\xf1\x8b5\xf9\x8f\x8f\xebc\xab\x05SS\x88\xfb\xee\x83\xa9)\x98\x9aB\xfd\xec\xcf\x0e\x93W\xc0\x0c\xf03\xb7\xaa\xb3\x9f\xf7-\xf8o\xd0\x04@Q\x80\x9e*\xb1\xf4\xcd\x09\x1e\x98\x94@\xf1s\x9f\x81C?\xae\x9f2/\x00?\x00?\xeda$\xc7\xd2\xa2\xdc\xfb\xd2\xfd\xfd\x06L?\x06\xbf\xfa!\xf8\xff\xde\x95\xd6.L\xa3\xf5\x11 =\xbd\xe9\x91yl\x85\x82\x8a\xaf\x05@\xc5\xd7\x8b\xfa-\xbf\x0c\x9f\xfc`\xe7\x96@\x9e\xf8[-=\x96\x97y\xf0u\xff\x93K>r-\xaa\x15\xa3\x96c\x92\xd9%\xe2\xc9\x06\xf1T\x83\xe8\xc4\x02\xf1L\x93S\x0f\xb4\x05\xc0\xd2\x8c\x16\x00\xe1\xa2\xe2\xf8\xbd\xce\xfd\xbf\xadp\xd9e\xda\xa2\xfa\xab;\xe0\x87\x7f\x22-\x08\x1f\xe4Fj\x80\xf8\xbba|\x0c\x0e\x9e\xa37\x8d\xe7f\xe1\xd3\x7f\x0b7^\xa6\xb3M\x1c\xb6\x0d\xee\xbd_q\xeda\xc1\x0f\x9e\xd4\x8f\xfe\xee\x89\xb6\x00\x98\x99\xd1\xfd\x1e2\xf2\xcf\x0b\x80 \x80\xd7\xbe\xb3\xceE?\x9ah\xf2\x8f\xb4\x00\x88\x12\x85\xaf\x14\x02\xd5\xb1\xc2\xfe\xce?\xf7\x18\xfd\xf1QDM\x93\xbf\xf0|\x84\x9f\x91\xbf\x87P)w\x09\x10\x9e\xb6\xd7$>\x0a\xc1}\xef\xdf\x05W\x1d\x82\x8b/\xd6\xf7g\xf6\x0f\x05A\xdbcy\xe0\x80\x8e\x85\x8a\x22\x08C\xc4\xa7?\x8dz\xe3\x1b\x07\x9d\xe4\xcdZ5&\xa7\xe5\xbd\xd7ykJ\x1a\x86\xaf\xec\xe1\xbd6\x04r\xc0&\xd2\xe6\xbe7\xfb''tf\x09t\xb3\xf27u\x9f_\xbc\xe1cp\xd1+\xd3\xbd\xf7\xd4\xf7V\x91\xedB\xc7\xbe\xea<VG`\xe2<\xd8s1\xbc\xed\xbd\x10%\x10\xa9v1\xc9|Q\xc9\x10\x08\xd3\x8f\xefW\xa0R\xd5bb|w{S/\xab\x05\x90E\xfb4\x9b\xd0h\xe8\xb1\xb8\xc8\xa1\xffv\xb5\xb6\xf8'S\x8b?%\xfe\xd6\x133\xb4\x1e9\xcd\x0b\xafir\xea\x81\xe5\x95\xe1\xc8\x7f\x1bct\x14\xfe\xfb=p\xcd\x0d\xda\xd2\xaa\x05\xedQ\x17\xba`v6\xb2Z\xf1\xb54\x16\xe0\x9a\x1b\xe0K\xff\xa8\xdf\xc3a\xdb\x89\x80\xc5&<v\x0c\x1ex\xac=\xae\xb9\x10\x1ey\x04\x9exB\x0b\x81\xa9)\xed\x11\x98\x9d\xd5\xdb\x03\x9f\xfa\xc3&\xad\xc54\xebg9!l)\xa2\x96\xce\xf7\x8f\xe2\x84(J\xf41I\x90\xbbk+\xe4\x8f\x90\x90\xa84\xa6(\xd1C%z\x9bQ\x97\x15[\xc9<\xba\xef\xbdh\xe2?\xff|;\xf9CZ\xb1(\xb7l{\x1e\xdcx#\xe2c\x1f\x1b\xc4\xe9\xee\x96\x12\x9b?\xda\xf6\xf3\xcdl6\xc9\xea\xcc\xb6\xbeq\x99?\x00\x93WT\x09P\xb2:\x90\xcf\x14\x09\xd2B\xfe\xdd\xa2/\xfb\xf7a~\xe6\x8f\xe1\xd0\x8fB\xad\x9eZ\xfdAg?\xc2$U\xd1\x22-\xf0$\xd2\xeb\xefy0\xba\x1f\xf6\x1c\x82\x9f\xfbO\xf0\x89\xff\xa3\xfd\x893\xe2\x8f\x94\x1ea\xd2\x1e\x09\xdaC\xe0\x070?\xdfv\xfd'i%\x90\x99\x99\x8e\xca\x80LO\x13\x9f\x8aI\x1a\x11\xaa\x19\x924B\xe2\xd3M\xc2'gh=9C<\xd9`j\xaeE\x12\xa9t\xe0\x82\xfe\xb6)\xc4/\xfc\x02\xec\xbb\x02\x8e\xbcR\x9b\x80\xb5\x9c\xe5\x9f\xc5\x97T\xf2\xf6Gn\xabI*\x1d\x88z\xf8Z\xf8\x9f\x7f\x8f\xf8\xe4'Q\x1f\xfd\xa8\x9b\xd4m&\x02\x00\x8e\x1c\x16\xcc.\x80\xef\xe9\xd1\x10m\xfb \x0c\xb5\x91=2\xa2w\x89FF\xa09\x1d\xd3<\x1d#}\x91\x0eP1xB\xe0K\x9d\xfe\xe7\x05B\xd7\x10\x91\x02\x15'\xa80ng\x12y\xc2X\xdd\x05\x08\x85\x22\xe1\xbe\xdfZ\x84\xab\xae\x82\x83\x07\xdb.\x08\x93\xfcW~W\xb4\xcb\x11*\xa5\x8f\xd7]\x87\xf8\xc0\x07P\xef|\xe7\xa0z\x00\x8a^\xb7\xb5\xa9\x97\x16\x0e\xccs\x9d\xa4\xcf\x01\x80\x83 \x000\xc8^Z\xdc%\xc2\xf8\xda\xb6\xef\xdf\xcb\xc5\xe8k\x0c\x80x\xf5\xadp\xfe\x0fk\x8b>\xa8\xa6O\x1c\x9d#J\x03\xf92w\x9aP\xbaN\xa7'\xf5\xa8\x8dkO\xc0\xcf\xfco\xf0\xf9[\xf59QJ\xfea6r\x02 \x8c l\xe9\x07dn\xae\x93\xfcm\x02\xe0\xf8q\x96\x1f\x0aV\xc8?i\x84$s\xcb\x84O\xcc\x10\xcf.\xd1\xb8\xeb\x98[9\x87\x05\x95s\xe0\xb2\xab\xa16\x02\xb5\x8a\x1eU\xbfM\xfc+\x02 \xddf\x922\x17p\xaa\xd2\xdf\x09\xe0\xb2\xc3\xf0\xad\x197\x9f\xdb\x14\xf7\xdc\xbfzI\xbc\xfezA\x18j\x11\x90\xc5\xdde\x22`\xfexH\xf3\xa2\xa0S\x00D\xe0I\x81'\x05~ \xf0*:gP\xb5\x12\xbd\x95\x18\xb73\x8a4q\xaf^i\xef\xfb\xd5\xa3\xba)\xc5\xee\xdd\xed\x0aD\x9eWL\xfeRj\xefi\xbeB\xd1\xc8\x08\x1c>\x8c\xb8\xf5V\xd4\xbb\xdf=\xa8\x22\xa0\x1b\x07\x15\x09\x81\x84\xf2*\x80b\x18=\x00E\xea&K\xf73\xa3%\xcd\xd6\xc0EV\xffZ.\xdc\xc6L\xea\xbe\xcb\xa06\xa6\x17\x5c?\xdd\xb7\x97\xb9}3\x95\xd37\xd9\xe5\xcd\xbc\x02Y\xda\x9e\xe7\xeb\x0e\x1e\xd5\x09M\xfc\xa0I?R\xed\xad\x810NG\xab=ZK\xf0\xfa7\xc3G\xff\xb8c\xbf\x9f\xd9YM\xfc\xcf=\x07O?\x0dss\xb4~\xa0V\xc8_5C\x92\x85\x90d\xb1\xe5\xc8\x7f\xd8p\xf1\x95m\xf2\xaf\x07\x9a\xfc}\xc0S\x9d%I\xb2u%k>\x1a\xa4?\xaaW\xa0V\xd5\xc9\xe3\x17_\xe9\xe6s\x88p\xd7]\x8a\xeb\xaf\x17<\xf2\x08\x8c\x8d\xb5\xad\xff\x91\x11X\x9eK\x98y2D%\xb4\x05@\x08\x9e\xa7\x89\xdf\xab\x08>\xf2/[\xd4_\x16\xa7\xe4\x9f\xacX\xff*\x89\x11i:\xc1\xaa\x05ybB\xff\xa1\xacl\xb9\xe7\xb5S\x0f\xa03\x1f1\x13\x00&FG\xf5?|\xf1\xc5\xdba\x9aU\x81003\xde\x12\x8bG \x7f\xfe\xd0W\x02\x14%\x13\x94\xaf\x0b\x90\x91\x7f\x96/\x09\xbd\xd5\x1d\xdf\x1cT'\xda\x95\xf9\x92\xc4\xf0U\xa4\xff^\x9c~\x828\xfb:\xb5\xd8\x91 \x03\xdd\xc1\xc3\xab\x82_\xd3\x85\x7f\x909\xab?\xf5\x00,-Ac^\x8f\xc5yX\x9c\x83\x859x\xdf{5\xd9g\xe4\xbf\xb4\xa47\xf8\x8e\x1e\xd5\xe4\xff\xf4\xd3\x8c\x8eO\xb2\xfc\x90BE\x09\xc4\x09*\x15\x16\x8d{]\x87\xbf\xa1C}T\x13x%-\x0c\x15%\xab\xed\x88\xec\xbe4\xe3M\xa2\x04\x94\xd4\xf1%\xb5\x11\xfd^\x0eC'\x02\xae\xbdV\xd0h\xb4\x0b\x87\xfa>\x5c>\xde\xe4\xd1\xc7\xc5\xca6\xa0\x8a\x03\x92\x10\xfcZ[\x00\xbc\xe5\xf7}>\xfd\xe1%\x92\xb9eD\xd5C\xd4<\x92\x9a\x8f\x18\xf1!P:\x05Pz \x12\x90\x89^\xc1k5\x9d\x8a\xeay\xfa\xbe3+\x11a\xdc\x93\xab\xe845\x94FG\xd3\xf4\xd5\x81'\xff\xa2\xaf\xbb5\xcb\xb2y\xbb\xfb\x16\xd0>HY\x00\xd2\x22\x0c\xf2\xfb!\x94\xb8Bl5\x9777\x03@\x00I\x94\xea:\xd5I\xfe\x22\xf7\x9fe\x22 Q\x10+\xdd\xb9#\x1b\x0a\x1dP#\x04\xdc\xf0\x0a\xf8\xeb/\xe5\xc8?\xd1\x9bv\xcbK\xba\x1a\xe0\xdct:f`f\x12\x8e\x1fo\x07\xfc5\x9bzLOk\x01p\xec\x18\xea\x8e;\xb4\x17\xed\xc8y4\xeeq\x84?\xf4\xf0\x03\xbdy\x1b\x85\xed\xf8\x91\x8e\xa7'w_\x9a\xe4\x1f\xe5\xbcNJ\xe8\xf7r\x18:\xdc{o\xe7\x12y\xe4\x88\xe0\x9e{\xf4\xcf\x9e\xff\xf2Q\x92H\xf7\x12hN\xc7\x04u\x89?\x22\xf4\xb1.\x88'\x9b\xc43M\xf0\x05\xc2\x93\xc4\xbe\x04_\xa2\x82H\x0b\x00\xe1!<\x0fQ\xf1x\xe0\xa7\xff\x1a\xb2\x08\xfe,\xf8 #\x7f\xd3\xf2/\x22\xff\xec<\xa5\xb4R\xd9^P%|\xd5K\xf7\xcc\xdcT(!\x84\xd80n\x1b\xb4\x99\x14\xd8\xcb!\xe6=\x02\xb6\xb4@\xd1\xe5\x1c\xdb\x05\xd90\xaf\x81\xf8\xb1\xdf\x85\x0b^\xd6v\xe8$*-\x96!;\xff\xe2\x8a\x07 %\xff$\xe9\x14\x00q\x04q\x08I\x0cc\xe7\xc0\xec|'\xf9g\xee\xfe\x8c\xf8\xe7\xa65\xf9O\x9e\xd0\xe1\xbd\x19\xf1g\x22`n\x0eN\x9cX!\x7f\xc0\x91\xff\x0e\x80x\xf5-\xf0\x9a\x9fK\xc9?i\x93:\x86G\xaaC\x00\xa8\x82\xa1\xefI\xf1\xea[P_\xfa\x84\x9b\xdc!FF\xfe\x00O\xdd\xb1\xa8E@\xa8\xa8NH\xfc\xba$\x18\x11\xfaX\x17D'\x16\x88&\x9b\xe0I\x84\xaf\xbb\x8b\xe2I\x94\xef#\xa4\x87\xf0\xbd\xb4\xd9\x98\x07\xe7\x9c\xa3-\xfe0\xd4#o\xfdw\x13\x00\xf9\xb4\xe6\xec\xdc$A\xfc\xee\xef\xa2~\xe37\x06\x8d\xe4mi\xeb\x8a\xf2\x0e\xb7\xd9\xcfl\x91\xff\xaa\xc4\xe8\x1d\x0a\x01`+\x87hV\xf5\xcb\xba\x00\x9a\xa9\x13\x19\xbb\xc6%*js\x9a\xffxi\xa4j&\x00\xe2\x5c-\xa2\xfc\xa5\xcb^K\x94\xe1\x01\x885\xf1\xc7\xad\xf6 \x81\xb9L\x00\x84\xb9\xfd\xfeeM\xfc\xd3\x93p\xe2\xb8\x1eq\xb4Z\x00\xb4Z\x10\xc7\x1d\xe4\xef\xb0S\x14\x80\xcc\x91\x7f\xce\x9a\xcf\x22\xabM\x99\x1d\xe7\x08?V9\xd1\x90K)\x15\xd2\xcd\xeb\x0eC&\x02\x1a\x93\xe0U:=\x00D>\xe1S3\xe9}\xc5\x8a\x10P\x9e\xbfB\xfc\xa2\x92\x0a\x80,0\xd9$\xff|\xb5\xd2\xac\x19A^\x04\x14\x90?Q\xb4\xba\x94\xf5\xf6\xf0\x02(\x0b\xc7\x99Yp6\xc3u\xa8\xb3\x00\xf2\xfb\x1c\xd2\xe2\x05\xc8~\x9e`\xcf\x00(j\xbf\x08\xc5\xc5\x14\xc4\x86N\xec\xf2\x1c\xb4\x9a\x10-A\xb4\x0c^E\xef\xa1*\xd1>J\xd9&\xfc<\xf9GK\x105 \xcc\xc6\x22\xb4\x16\xf4{\xce-t\x92\xff\xf2\x92\x1e'\x8e\xc3\x89c\xfa8\xf9\x1cL\x04\xf0\xd8c\xe9^\xaf.\xf4\xad\xee\xba\xcb\xad`;\x15\x8bsZ\x04\xd6\xd3z\xaf\xcb\xcb\xbaGl\x22!\x16\xfa\x98\x08=\x90\x9d\xdbLY\xa0\xe9r\x13\x96\x1a\xb0\xb4\x08\x8dE\xfd\x9e\x0e;R\x04\x00\x9c\x7f\xfd\x08r\x01\x84/\x10\x02\xf6\x07-\xa6\x8ey\x10%\xa88\xbdo\x04\xc8Z\xa0\xe3\x02*9\x0f@V\x83xqQ\xc7\x02,-\xb5\xef\xcb,& \x0b\x08\xcc\x07\x00\xe6\xc9_e\xf1OiM\x93\xb9\x81\xbe\x1f\x8b,\x7f\xb3i]Q\xe3\x1f\x8f\xd5\xc5\x81\x86V\x00\x94\xe5\xe9+:{&\x97\x89\x84\xbc\xfb\x7fS\x5c\xff+\x98;\xa6\xb3\x00\x82:\xf8\xf5,q6M\xef\x13:\xba_\xfa\x86\xeb_i\xab?\xeb\x0d\xb0<\xb3\xd2#@\x0b\x8a\x06\x9c|V/\xc4\x19\xf1g_\x9fzV\x0b\x80\xe9I\xd4w\xbe\xe6V)\x87\xce\x9b\xfc\x1f\xbe\x88\xf8\xb5\xf7\xa6EV\xd2\x82T~\x00\x81\x84@\xe4\x8e\x01\xab\x03M\xd3\x0c\x93\xf9\xb4\xf3\xe4\xdc\x0c\xccO\xa3\xfe\xe1\x8bnbw0\x8e\xdde\xaf\x072z\xc3\x05:\xa88JP\xad\x08Q\x0b\x905\x1fQ\xf7\x115\x1fY\xf7\xdb\x84=;\xdb\x8e8\xcc\xa2\x0e[\xadN\x01\x90\x95%4=\x00a\xa8\xd3\x9a\xa7\xa7\xf58\xb6\xa5YKe\xe9\xe7\xaa\xc4\xea\xcf\xf3T>\x03\x00:3\xdf\x12Vw\xb6\x15m\xc7\xc8\xc6\xc5\x01\x0cZ)`[S\x9f|\x15@s\x8f%\xe9B\xea\xaa`\x12m\x7fo\xfd\xff\xfcw>\x8cx\xcd\x1fi\xf2\xf7\xeb\xfa\xdfZ\x11\x00\xbe\xde\x22\x90A\xea\xee\xcf\xdc\xff\xa9\xcb?\x5c\xcc\x11\x7f*\x02\x16O\xc1\x9bn\x82\xa3\x8f\xe7\x04@\xeex\xfa$\xcc\xcd8\xf2w(\x11\xa53\x9a\xf8\x03\x8b\x00\xf0\xd3E\xd6\x14\x00Q\xd2\xf66\xcd\xcdh\x11\x90\x09\x01\x07\x07\x9b\xb3\xe9kO\xaf\x88\x80\xa4\x11\x22\xea\xbe\xf6\x02\xd4\xfd\x15!p\xf0\xa6\x09N\xde{J\x0b\x80<\xf9{\x9e\xf6\x02d\xc4\x9f\xd5\x05\xc8\x04@f\xfd\x87\xa1\x16\x0a\xd3\xd3+5M\xd4\x87?<(\xbce\xa2h\x0b\xba\xa8U\xbd\xcaqY\x5c\xc0\x83}\xcbv\xdb2\x01\xa0\x94*\xab\x02hV\x03Ttf\x0a\x14uM\xeavA\xfa\xe7\x05\x98\x7fV{\x00\x82\x9a\x0e\x00\xf4\x84&~/\xd0[\x02\x99\x07 IR\xf2\xcf\x04@\xa3M\xfc\x8d\xd3\xb0\xf0,,\x9e\x84\xa7\x1e\xd6)X\xad\xe5N\xf2o-C\x18:\xf2\xdfaF}\x89\x97\xcc\x8eg\x9f\xd6\x0bk\xe6\x01\x08\x02\x1d\xa8\x15\xe4\x16\xd9 m7\x19&\xa9\xe5\x9fn7E9\x0f\xc0\xe9S\xfa\xbd\x1c\x1c\xba\x88\x80p1\xd4\xee\xff\x9c\x08\x10U\x0f\xd5\x88\xe0\xe4\x92\xeeF\x04\x9d^\x80L\x00\xac\xdc\x93A;\xca?O\xfe\xcb\xcb+\xd5LW\xdegp J\xac\xfd|\x87[\xf3Y\xb6\xc5\xb8%\x94\x17\xff\xd9\xd0\x8e\x80\x83\x14\x03`#\xf7\xa2`\x888'\x100\x5c&\xb6\xf3m\xa5\x167\x16\x93\x0f\xa6N\x9cZ:\xb3)\xf1\xaf\x12\x009\xf2\x8fC-\x00\x1aS\x9a\xf8\xe7\xd3\xa1\x228\xfed\x9a\xca\x95\xb4\xeb\xfc\xc71$\x11\xea\xfe{\xdd\xaa\xe3@\xa9\xb0=\xfaXjA%\xda\x13\xe5\x07)\xf9gb \x80\xa0\x95\x0a\x80X\x93~>\xdedf\x12N\x1c\x85\xe3O\xc1\xf1'\xdc\xec:t\x15\x01#\xd7\x9e\x07K\x02\xb1 \x89=\xa9\x9b\x00I\x81\x0a\x13\x88*:%9\x0b*\xcd\xd2\xf9\xb2\x9e\xc4\xe6\xc8\x93\x7f6N\x9f\xd6\x8d\x0c\x1e|p\x10\x9f\xbd\xa2T?3==\xcf_\x19oy\xac\xce\xff_W\x9a\xe0v\x13\x00E\xea&/\x08$\xf6\xc0?\xb3\x1a`\xd1\xe4\xa9\xcd\xf0\x02\xa8\x87>\x8b\xb8\xfc&\xfd\xb6{\x0e\xb5\xe3\x01\xfc\xba.\xec\xe3\x05)\xf1/\xa7\x81\x7f\xe9h-\xa6\xe4\xff\x8c>.\xcd\xa2\x8e\xdd\xdd\x9e\x90\xc3GP\xf7\xdf\xe3V\x18g\xfdCou\xc7\x01\x84\xfa\xf6\x9d\x88\x97\xfc\x88\x16\x00Y\xb4u\xb5\x0e\xd5Z:\xea\xa9\xabU\xa4\x01\xa6F\xac\xc93O\xad\x0c\xf5\xed;\xddUp\xe8\x0a\xb3\xa0\x98YsD\xfc\xd0\x0f\xb5\x05@f\xd0\x8c\x8e\xea\xc0\xc0lT\xab\xfa\xbe\x0cC-\x0e\xb2\xcc\xa6f\x13\x1e\x7f\x1c\x1e|\x10\xf5\xd9\xcf\x0e\xea\xf3i\xe3\x97\xb2\x18\x00\xd3\xa0\xcd\xbff\x1a\xc42w\xde\xd0\x08\x00,Dn\xba\xfcU\x0fj+)y\xad\x97\x85s\x83D\xc0\xed\x88+nJg\xb6\xd6\x16\x01\xd91nu\x92\x7f\xb4\x0cQS[\xfd\x0b\xcfBk\x01u\xf4\x1b\x9d\xef\xe9\xc8\xdfa\x9d\xa2zE\x04\x14\x09\x80j\xea\xad2cL\x96\x974\xf9?w\xd4\x91\xbf\xc3\xfa\x05\x81QsD}\xe3\x1bZ\x04\xe4;\x97\xd6\xebm\xe2\xcfD@\xa5\xd2I\xfc\xcd4\x9b\xe5\xa1\x87P\xb7\xdf>\x88\x84\xdf\xabp\xcf{\xa9\x13\xecull\x06m\xdf8lP\xb2\x00l\xc5\x7fD\x81\x9a\xc2\x98\xcc\xa2\x09W]\xfe^\x7f>\xcc\x83\xb7#\xae\xb8Y\x97\x06\xce\x93\x7fP\xd3\x05~V\x88?\x15\x01\xf1\x12,\x9c\x80hi\x15\xf9;8\xeb\xbfG\xcfY\xf1\x1b\xe4=\x01y\xe2\xaf\xa4_C\x1a[bd\x9a\x9c8\xee\xc8\xdfa\xe3o\xe8L\x04\x1c=\xaa\xdd\xfa\xa6\xf5_\xab\xe9\xd8\x00\xd3\xfa\x9f\x9bC\xddv\xdbvx^\xcb\xe2\x00lqo\x09\xdd\xb7\x10\x8a<\xdcC!\x00\xb0\x10~\xde\xf2/j\xf9+\x8c\xc9\xb3\xd5\x06\xe8%xj\xe3\xb7\x03\x1e\xbc\x0dq\xe1+\xf5\xde\x7f^\x04\xa0\x0c\xf2_\xd6)\x83q\xe8\xc8\xdf\xe1\x8c\x88\xbe'\x11\xe0\xfb:\x06`\xc5\x13\x90\x13\x00\x19\xf9\x87-\x88\x22G\xfe\x0e\xfd\x17\x01\xcf<\xa3\xc9>o\xfdW\xab:(0O\xfe\xad\x16\xea\xef\xff~\xbb\x08\xf52\xd1n\xab\x0e\x98\xe4\xc4\x81,\xb1\xfa\x87r\x0b\xa0,\x97\xdf\x5c\x00\x13\x8b@(*\x1d\x5c$\x046\xef\x8exR\xdf\xb0\xe2\xfc\xebt\x0a\xa0\x0ct55\x15kO@zT\xc7\xefv+\x82C\xff\xef\xc7\x94\xd0\xc5U\xd7\x81\xb7\x90Fa\xa7\x8f\x7f\x9c\xed\xc9F\xa8\xef\xb9\xfb\xd1asD\x00\x80\xb8\xee:m\xed/,\xb43\x03\xb2\xbc\xff0D\xdd\xbdm\xee\xc7nA\x80e\x15\x00\xa1\xb3;`\x8c=%~\xc31h\xed\x80\x85\xa1x\xa0\xb8\xe8\x8f4\xbeO\xb0\x17P\xe8\x16\x10\xd8\x17/\xc0\xca\x1b\x1fs\x0b\xaa\xc3\x00\xadR\x8e\xe0\x1d\x06\xe9~\xbc{[\xdd\x8fe\xf1e\xaa\xcb\xd7E\xdb\x01\xa6A+Y\xdd\x00\xafo\x90\x036\xa9Ee}\xcd\xc9\x81\xe2\xd8\x80\xa2I\x17\xeeqspppp\xd8 \xf2\xb7\x19\xb2\xaa\x0b\x87%tV\xfbK\x0a~')\xe1\xea\x0d\xe329`\x93\x9b\x14X\xfd6K\xdd6y\xf9\x09\xb2\xa5\x0c\xf6\xe2\x85pppppp(\xe3\x88n\x81\xe66.J\x8c\xa3i\xfd\xdb\xb2\x02\xa0\x8f\x95\x00\xe5\x16O\xa8\xed\x03\xda\x8e\xb6\xc9\x15%\x13os\xbf888888l\xa6a[\xd4\x14\xc8L\x0d\xb4m\x0bd\x1c-\xfa\xc5\xd9\x83\xe0\x01\x10\xc6\xffRF\xfe\xb2@}\x99\xfd\x94\xc1\xb9\xfd\x1d\x1c\x1c\x1c\x1c\xfa\xe7\x05(3>\xcd\xf4>U\xf0\x9a-\x18\xd0\xe4@\xd3304\x02@\xf4\xe0!\xc8\x14P\x16\x1d\x09\xab\xeb\x01\xd8\xaa.\x15\x95S\xc4y\x05\x1c\x1c\x1c\x1c\x1c6\xd0\xd2\xa7\xc0p\xb5Y\xfcf\xe6\x9a)\x12\xccJ\x80\x14\xf0\xd8Px\x00\xca>\x9c\xa03.@\xd2\xb9\x8fb\xab\x07`#\xf9\xbeN\xa2\x83\x83\x83\x83\x83\x83\xc1WyA\x90\xcf\xf7\xcf\xbb\xfcm\x9dnM\xf27\xad\xff\xa1\x0a\x02\xcc+\x22a!\xfe|\x90\x04\x16\xe5T\xe4j)J\xc9X\x8b\x17\xc2\xc1\xc1\xc1\xc1\xc1\xa1\x9b\xb1jf\x9b\x95U\xf8\xcb\x9f\x13Y\xf8)\xcf\x87\xf9\xd7\xe4F\xf3\x95\xdc\x06\x13lSQ\xf9\xc0\x892B_K#\x15\x07\x07\x07\x07\x07\x87\xb5\x10\xbf\xc9=E\x9egS(\xc8\x12\xcb~\xd3\xb8j\x10\x04\x80\xa4|\xef>\xc1^!\xd0,\xa5\x88\xe5=lq\x00j\x8d\x17\xd5\xc1\xc1\xc1\xc1a\xe7\x92~\xb7\x94?\x9b\xf79/\x06\x12\x8b\xf5\x1fY\xde+\xc9\x89\x83\xfc\x16A\xdf\xc4\xc1 y\x00\xcc(H\xd3\x0db\xbaG\xcc\xdf\xcb{\x05b\xca\x83\x00\xd7\xaa\xec\x1c\x1c\x1c\x1c\x1c\x9c\xc5o\xe3\xad\x22>*38\xa5a\xe0\xc6\xe9\xcf<\xe3\xdc\xc4\xfa\x8f)\xb5![\x01r\xc0&\xb8H9\xd9\x02*D\x89J\xcb\x07\x06\x9a\x17\xc6\xc1\xc1\xc1\xc1\xc1a\xad\xe4n3V{\xa9\xf7_\xe6M\x90\xc6\xd1<\xc7\xdc*\xd8\xd0\xbe\x00\x83T\x0a8\xb1\x88\x003B\xd2\xdc\x020E\x82M5\xf5Z\x12\xd8y\x01\x1c\x1c\x1c\x9c\x95\xebPD\xf8k\x11\x0cem\xed)\xe0\xaf\x84\xde\x1a\xd9\x0dE\x16\x80\xc2^\xfc \xff}Q\xa9_s\xdf\x1f\xeci\x80\xb6\x09S]<\x10\x0e\x0e\x0e\x0e\x8e\xdc\x1c\xd6\xc3\x0bE1g\xc2b\xbcf\x1c,\x8d\xafU\x01G\x0f]! \x8cI\x91\x05\x93^f\xd1Cg\xca\x85\xad\xcaR\x91\xf7\xc0)b\x07\x07\x07\x07\x873\x11\x04\xa6\xb5\x9eX\xac\xfc\x18\xfb\xf6u\x9c\x8e\xc4\xe0eQ\xc0\x8bC'\x00ln\x91nU\x92\xbaY\xfcX\xdes-\x04\xefD\x80\x83\x83\x83\x83C/\x1c\xa1\x0a\x0cZ3\x98\xdd\xe6%\xf0\xb0\x17\x04*\xea\x8b3tY\x00\xb6\xb4\x093\x0d\xb0L\x0c\xc4\x05^\x01(.\xc4\xb0\x16Q\xe2\xe0\xe0\xe0\xe0\xe0\x88\xbe\x9b\xa1i3bM.\x13\x96s\xa4\xe5\xbd\x8b\x8a\xfe\x0cU3 [D\xa4\xad\x87r\xbe\x8f\xb2Y\xfa\xd7V (\xc6^!\xd0\xc1\xc1\xc1\xc1\x91\x9aK\x8d^/\xba\x95\xe45\x83\xd1\xcd\x18\x80|~\xbf\xed\x1c\xd1\xc5H\xdeP\xf8\x03zS\x9a\xe4\x9e\xdf[\x89\xbb\x90\xbam\xa2\x9c\x08pppp\xc4\xef\xb0\xd1\xe2\xa9(%\xd0$tEga\x1f\xf3\xfb\x22OBYZ\xe1\xb6\xf7\x00\x14\xa9\x1c[\xd0^\xd1\x04%\x05\x02\xc2\xa6\xd2T\xc9\xfb\x95\xa9:\x07\x07\x07\x87a\xb6\xf8\x9d\xc1tf\xf3*\xb0\xbb\xfdm\x1e\x80\xa2\xebb\xb6\xfd\xb5\x95\x0b\x1e\xca\x18\x00s\x82\xcc\xc9\xca\xbb\xf8\xb3s\xf3\x13\x99\x94\xa8\xb0\xb2r\x8cN\x19;88\xecT\xab_9/\xc1\xba \xbaX\xed\xb6\xaf\x13\x8a\x9b\xfe\xe4\xbf\x97\xc6\xef\x98\xfc\xb6\xa1F\xea V\x02\xcc\x13\xbe\xc0^@\xc1l\x09\x9c?f#\x9f^\xe1\xf2\xfd\x1d\x1c\x1c\x1c\xf9o\xec\xf9;\x85\xecE\x979\xeb\x85\x90\xa5\xc5\xc2\xcf\x1b\xbc\xf9\xa0?\xf3\xd8\xb7~\x00\x83\x94\x05`\x06C(\x0b\xe9'=*\xd7\xa2\xd4\xbf^\xaa,\xb9\x87\xc0\xc1\xc1\xc1\x89\x05\xb7\x1e\xaeu\x8e\xf2Dn\x92z^\x04`9?\x1f\xb4\x9e\x0fv\x87>\x96\xb4\xdf2\x01 \x84(\x22{sbc\x0b\xb1\xdb\xf6\xfe\xcb\xfa/\x17\x89\x0e\xa7\x84\x1d\x1c\x1cv\x9a\xf5/\xfaeQ\x0e\xf9\x5cvs\xfd\x97\xc5\xae\xd9\xce\x17\xd8\xcb\xd9g_{\xac\xde\x22\xd8P\xc8\x01\x9chEq\x8a\x1f\x96\x096]\xfcI\xc1\x85+r\xd5\xb8\x9b\xdf\xc1a\xe7\x92\xa1m\xed\xd9)\xf3\xb1S>\xef\x86\xda\xae\x05?\x13=\x18\xa8\xf9s3\xae2\xbb\xdebpU\x82\xbd+\xeeP\x09\x802/@\xde\x15b\xdb\xeb\xb7\xa5\x0c\x9a\xde\x80\xc4rQ6b\xd1ppp\xd8\x1e\xc4\xbf\x93<~n\xed\xda\x9c9\x16%\x06fQ:`\xd9u\x92\xacno/\xfbym\xfd\x01\x99H[M\xff\xbc5\x1fc\x8f\xf4O,\xbfk;\xc7TY\xbd\xb8U\x5c:\xa0\x83\xc3\xf6_\x9c\xd7Z\x06\xbc\xdb\xfb\xed\xf4\xf9\xdc\xc9\x22\xd2\xe4+\xd3b/K?/#\xfb\xa2{UP\x1c\xbf6\x14\x02\xa0\xa8|bbX\xfd\xa2\x8bX\x88Y\x1d(X$\x08lD\xef\xc8\xde\xc1a8-\xfe\xf5\xf4O/\xaa\x17\xd2m\xcf\x5cl\xc1\xe7u)\xcd[\x03q\x86\x22)O\xfe\xf9\x8e\x80\x19\x8f\xd9j\x00\x0cu%@\x1bQ\xdb\xba\xfc%9\x8f\x80\xad\xc8\x8f(\xf0\x16\xd8J\x0c\xf7MY988l\xbau\xb6\xdesz\xfd=\xb5M\xe7\xc0as\xef\xaf\xa2\x8a\x80&\xefdA~1\xf6\xc6?E\x99qC\x95\x06hs\xab\x98\x84os\x93\x98\xcd\x80\xa08\x1b ?\x89I\x0f\x1e\x00'\x06\x1c\x1c\x06\xd78\x18\xd4\xe05\xb5\xc9\xf3\xe0\xb0\xb9V~\x99\xf5o\xbb\xfe6\xf7}\xfe\x9c\x8c\xbb\xf2\xe9\x81\x1e\xf6n\x82}\xa9\xce(\x07\xec\xa1)\xb2\xd6\xf3V\xbfm\x0f\xa6\xacRR\xb7\x0c\x01\xf7@98\x0c>\xe9;8O\xc3 \x89\x80\xb2s\xcd\x16\xc0\x99;_Z~\x0e\xc51\x04E|'ri\xf4C%\x00LRO\x0a\xdc\x22\x89\x85\xd0c\xbag\x07\x9c\xe9\x05vppppD\xb93E@/\x1c\x22z<G\x14pqLq/\x80\x0d\xe7\xebA\xd9\x020\x03\xf7l=\x94c\x8b@(j\xa6\x90\x14\xbc\x97kr\xe1\xe00\x9c\xd6\x97\x9b\x13\x87~\x8b\xba\xb2V\xbdP\x9c\x09Pd\x84\xaa\x1c\x0f\x17\xb5\x05\xeek\xb3\xba-\x15\x00\x86\x1bC\x95\x08\x83\xcc\xba\x8f\x8dI7\xf3\xfe\x05\xab\x0b'\xd0e\x22\xd7S)\xd0\xc1\xc1\xc1Y\xd3[\xf1\x7fo\xd5\x9c8\xe1\xb1z\x1e\x8a\xf6\xe9m\xc2\xa1(\xa5/\xcf_\xf9l\x80\xa2\xee\x82C\xe9\x01\xa0\x80\xd8\x15\x10\xe5H\xddt\xf1\x0b\x8b(\xc0\xa2\xb6\xca\xfa\x02\x0c\xe3\x02\xe4\xe0\xe0\xc8\x7f{\xfe\xff\x83\x18\xf7\xe0\xc8\xbf\xfb\xf5-K1\xcf{\xb2\xcd\xf9\xccb\x03<\x0b\x8f\x99\xbd\x016\xfc\xd9\x90\x03\xfe\xc0\xe4c\x00\x94\xe1\x0d\xc8<\x02k)\xc1\xe8\x1a^l\xae\x90s\x9e\x94\xd5\x0f\xb5\xc3\xce\x11\xde\xaa\x0f\xcf\x91\xd8\x82\xffE\xb9{\xd1\xfa}\x111\xdb~&\x0bD\x95(8\xefL\xeaX\xf4\x0c\x7f\x80&\xd9F\xe0\x18\xc4\x9fw\xf3\xe7=\x001\xddK\xfd\xaeg\x12\x9d\xf2\xdd\x98\xc5\xc2U\x12s\x18\x94\xeb \xce\xf0z\x89u\xfc\xdd\xb5F\x92\x9f\x89\xa1\xd2\xaf\xba&;\xbd\x1a\xa2y}D\x810+\xab\xde'Jx\xaf\xdb|\xf7\xa5#\xe0\xa0\x94\x026'3\xef\xe67\xa3\xfe\x13\xec\x85\x12\x14\xc5\xb9\xc2\xb6\xf3\xcc\x0b\xe4nn\x87\xcd\xba\xd7\x1d\xb6V\x8c\xf6J\xf0f\xe1\x96\xcd\xbavgb\xf5\xf5\xb3\xb4\xf9N\xbb\x7f{-\xf2c\xce\x8d\xb0\x90~Q\xe4\xbf\x19\xe9\xaf,\xbf/\xfae\x90\xfa\x03<\xe9e5\x98\x8b\xd2\xfd\xcc\x8b\x93tQ\xd3\xc2-\xce\x9bf\xed\xba\xf9u\x9f\x7f=\x04(\xce\xc0\x1a\x16gx\xcfnT\x19\xd6\xf5Zo}u\xff\xba\xfbwC\xe6_Y\x84@7\x91P\xd6QP\x94\x18\xa90\x84\xcd\x80\xf2\x13i\xba\xf03\x02\x8f-dos\xc5\xf4\xb2\x95@\xc9\xe4;\xf4\x87\xfc\x9d\x08\xe8\xfc\xfc\xae\xfc\xf4\x99\x93\x8d\xa07\xf2V\x1b\xf87\xd7z\xbe\xea\x810\xba\xbdw_\x82\xbf\x1c\xf1o\xb80P\x96\xf5M\x96\xdc\x93\xe6y\xca\xf0\x06\xd8:\x0c&\xc3\xea\x01P%B@Y\xc8?\x9b\x0c[i\xdf\xb2}\x95$\xfd\xcc\xbdtqr7\xfd\xc6\x11\xbfC9\x018A\xb0u\xc4t\xa6\x96\xbdX\xe7{\xaf\xc7+\xb0\x15\x1e\x01\xe7\xb5\xebnD\x9a\x95\xff\xca\xb6\x00\xa4\xe5gIN\x04\x98\xbfk\xed_\xa3\x94\xda\x90j\x80\x83\xd4\x0b\xc0\xe6\x0d\xb0\xb9?\xf2e\x81\xcd\xd1K\xdaD\xb2\xc6\xff\xc5\xc1\xcdU\xbf\xe6\xcee\x07l>\x91\x09\xcb\x82\xbd\x15\xcf\x80\xe8\x81\xd4\xb7\xba\xff\x81\x13\xa4\xbd\xcd\x83M\xc0\xdb\x9a\xff\xe4\xcf\xb3\xed\xfd\xc3\xeamk\x99;n\xb8\xa7z\x90\xd2\x00\x8b\xaa\x01\xc6\xd8{)\x97]\x88\xb8\xc4s\xd0\x8b\x9as\xe4\xb6>K\xd6\xc1a\x10\x17\xef2\xaf\x9e\xe8Q,\xf4[\x04t\xfb\xdf\xfb1'\xee\xd9]\xfbZ\xd7mK\xc6f\xc1\x8b\x02\xd1g\x96\xf8\x15\x86\xa7 O\xfa}\xc9\x02\xd8r\x01PP\x0d\xd0\x16\x0c\x91\xcf\x06\xc8o\x0d\xd8J\xfe\x0a\xec\xc5\x80\xd4\x1a\xd5\x9d\x13\x01\x1bo\x01\xed$\xabW\xf5\xf9|\x87\x8d'\xc4\xf5l\x01\xf6\xd3hP\x1b\xfc\x19\xc1\x9e\xcb.\xfa\xe0\x1d\xd9)\x9e\x01Q\xb0\xbe\xd9\x1a\x02\x99\x22@Q\xdc'\xc0\xf6\xbe\x1bz]\x065\x0b\xc0\x96\xe2\x97P^S\xd9\x8c\x1d\x90\x05\x84c\x06a)\xec\x01\x17\x18\x82\xc2\x91\xfb\xc6\xbf\xb7[d\x1c\xb6\xdbb\xdf\xed\x9c\x8d\xf2\x8c\x9d\x89W\xa1\xac~\xbc{\xe66\xfe\xbeP]\x84\x96\x19\xa8nZ\xfa\xe4,\xfe\x22\xab\xdfCW\xc5\x1d\xda,\x00\x93\x14\xf2}\x92\xcd\x87*.\xb0\xf0\x85\xc530\xe8V\xd6 \xa6#:Ktp\xee\x07\x87\xe1\x13\x0a\xeby\xfe\x8az\xd0\x8b\x12Rr\xf7\xd1\xc6_\x8b\xf5\xa6\x05f\xe4\xee\x95x\x10l\xc6h_\xaf\xe3\xa0\xa5\x01\xda\x1a\xfb\xd8\x14\x94m\x82)\x11\x04j\x8b\x1f\xe8\xb5*\xf6\xad~x\x07!\xf5\xc8\xc1a\xa7[\x95\xeb\xcd0p\x96\xfe\xe6\xaf\xd7\x14\x90y\xbe\xc1\x0f\x05^\x00\xd3c\x9d\x17\x06\xd2\xe2]\x18\x9e\x18\x00(\x8c\x030\xdd\xff`/\xfc\x03\x9d\x91\xfd\xdd\x0a1P\xf2\xb7\x06\xe9\xa1\xd9\xae{\xe5.\xb2\xdd\x09'\x87\xc1\xf0$8l\xfc3\x5c\xe6\x9d1\xf7\xfc\xcd\xeb\x98}\xed\x19?\xcfR\xd3\xbd\x1c\x97\xc9\x02^\xdaP\xce\x96\x03z\xd3'=Z\xc2\x0a{\xa0_>\xbf\xb2\x9b\x17@Q\xdc\xceq\x10\x88Bm\xf3\x07f-\xa2\xc1\x91\xa6\x83\x83\xc3v\x11aE\xb5\xfd\xcbj\x07H\xca\xd3\xfc|:\x0b\x03Ay\xcb\xe1\xa1\x12\x00\xb6\x8eH\xbdD\xf2g\xa2!1\xbe7\xbd\x03\xddD\x85\xd8$\x15\xbe\xd6\xfe\xce}\xeb\x07\xdd\x87\x07f-\x11\xd1\xc3J\xfak\xf9\xecN\xf488l\x8f5\xad\x17\xae\x10=\xbc\x87(\xf1\x0e\xd8\x84A\xdf\xd6\xffA\x8c\x01\xc8\x07\xf2\x99\x0b\xa5\xb4\x10\xbc\xed\x22\x98{,\xb6\xd7\xcb\xbc\x01\x83|3*\xd6\x16\x10\xd43\x9e\xf7\xf17\xe1\xef\x1f#\x9em\xf2\xf4\x1b\xffj#\xfeO\x87\x01\xc5\xcd\x1f9\x9f\x91\xfd\x1e(hL\xc5\xdc\xf6\x8b\xc7\xdc\xa4\x0c1>\xf3\x19\xc1\xc4\x04\x9c:\x05oy\x8b{47A\xe8\x97\xa5V\x9a\x19\x00\xf9u;\xbf=\xe0\xb1\xba^@/\x05\xa46\xcc\xc5\xb1y3\xa9\x94H?p\x00T\x81Jz\xac\x01\xe3@==\x8e\x01\xa3\xc0\x040\x02\xecJ\x7f6\x91\xfe|,=w$=Vs#H\xff\x86\x97\x8a\x1f\xb3\xe0B/jn\xb3,\xc4\xb5\x5c\xbbu\x17\x89x\xde'n\xc1?k\x14\xff\xc0(\xde\xdeQd\xbdB<\xdd \x9en\xa6\xa3\x91\x17\x03j\x8d\x9fi=\x8dO\xc4\x10/\x0aE\xe7l\x96\xe7\x89\xb7~\xf1\xf9\x8c\x1c\xf0\x19\xd9\xe31\xb2\xb7-\x00\x1aS1\x8d\xd3\x11\x7f\xf6\xbf<\xe5\x96\xf5!\x22\xfd\xbd{a\xef^\xd8\xbd[\x8f\xc5E-\x02&'\xf5\xb8\xe5\x16'\x06\xd6\xf1\x5c\x9bU\xfb\x14:E/I\x8f\x11\xd0\x02B`)\x1d\xcdt,\x00\x8b\xe9q>\xfdz6\xfd~\xcex}1\xf7\xfbK\xe9{f\xef\x9d\x08!\xce\xb87\xc0\xa0\x09\x00i\x08\x80Z:2R\x9f0D\xc0X\xfa\xfdD\xee\xeb\x91\xdc\xa8\xa7\xbf_I\xdf\xb7\x92#\x7f\x8f\xd5\xb9\x97\xf4\xe0\x9a\x19\x1a\x01p\xde\x87ob\xe2\xf5\x97#\xaa\x01\xb2\x12 \x83\x00\x12A\x12\x86\xa8(\x22\x09C\xe2\xb9&\xcd\xaf\x1f\xe5\xe8\x9b?U\xf4\xbf\xab\x0d\xbe\xbf\xc4\x90,\x12e\x1e\xa6-\x11\x00\xff\xfc\x9e\x8b\xd9wi\x85\xa0\x22\x09*\x82\xc0\x97\x90@\x18&\x84\xa1\x22\x0c\x13\xa6\x1em\xf1\xc1#\x8f\xb9\xe5~\x9b\xe3\xe3\x1f\x17\xfc\xf0\x0f\xc3\xae]P\xa9\xe8\xe1y\x10\xc7\x10\x86\xed\xf1\xd9\xcf\xc2\xdb\xdf\xeeD\xc0:\x9em\xb36M\x92\x13\x00a:Z\x16\x01\xb0\x98#\xf8\xb9T\x04d_g?_\x00\x1a\xe9q)\xfd\xba\x05,\xe7\xde;\x11B\xc4g\xfa\xa1\x061\x08\xb0\xa8Fr~\xe2m[\x02E\x0bp\xc2\xea\xfc\xca\xb2\x1e\xcd\xa2\x0fd\xddm\xc1\xdftqq\xce\x1f\xbd\x86\xd1\x1f;\x84\xacU\xf1\xaaUdPERER\xd1CU\x90^\x05o\xa4F\xf5\x8a\x03\x9c\xfb\xc1\x9f\xe9v\xddD\x9f\x84\xce\xb0/$\x9b2O\xbf\xf8?.d\xf7\xf3\x02*\x15I\xa5*\xa9\xf8+W\xba=|\xc9\xee\xf3\x03~\xf1\x7f\x5c\xe8\xae\xd26\xc6\x07?(\xb8\xe2\x0a\x18\x1d\x87u\x05\xc8\x00\x00 \x00IDAT\xed$\x7f\x00!\xda#\x08\xe0U\xaf\x82?\xfa#\x97p\xb0\x8eg\xd8\xb6\xa6\xab\x12Ao\xcbL3]\xfaE\xdd\x03{i'<4\x02 ?\xc1\xb6\xda\xcb\xe6k\xb2\xcb{\xe4\xf30\xcb&Om\xc2Ms&7\xd8\x86\xfd\xbfg\xfd\xf6\x8fR\x7f\xd9\xf9x#5d\xb5\x8a\xf4\xabx\x19\xf9\xab\x00)+\xda#P\xad |\x1f\xe1\x07T.\xdc\xc3\xd9\x7f\xf0\x93\xdd,\xf6\xadl\xae\xe2P\x807\xdfv\x01\xa3\x07}*UI\xb5*\xa9x\x06\xf1KI\xa5\x92\xbeV\x95\x8c\xee\xf1y\xf3m\x17\xb8\x89\xdb\x86\xf8\x83?\x10\x5ct\x11\xd4j\xe0\xfb\x9d\xe4\xbf\xb2\xe8K\xfd\xf3jU\x8b\x84#G\xe0\xb7\x7f\xdb\x89\x805\x1ap\xa2\x0bQ\xe79\xd6\xdcj6y,_ \xc8\xac\x0e\x98\xff{\xf94\xc1\x0d\xc1 \x05\x01\x9a)\x80e}\x91m5\x02\xbay\x0c\xb0\x88\x8b\xcd\xfclj\x1d7[_\xea\x13T\xaf:\x887V\xc7\x1b\xad#\xbd\x0a\x02\x0f\xa1<\x84\xf0\xc0S\x08OO\x91D\xa0Z\x112\xf0\x11A\x80\x7f\xce\xf8z\x1f\x9e^\xd3iv\x22\xf9\xf7\xfd>\xac\x8c\xa7V\x7fU\x12x\x12\x1f\x81\x8fD*\x01\x12|)\x81\x04\x81\xa4RUTj\x92J]\xe2\xb0\xfdp\xce9P\xafk\xf2\xf7\xfdN\xf2WJ\x93\xbf\xcc]\xda\xd1Q\x18\x1b\x83+\xafts\xb7\x0e\x03\xad(n\xa9\xa8`O\x9e\xc8\xcd\xb2\xbf\x19<\x8b\xc8\x90\x16\x91\xc1F\xb4\x04\x1e\xc4\xa7\xbc\xacI\x82*\x9b\x90\x12\xd7L\x99\x9b\xbf\x9b\xb5-6\xf8\xc6Y\x8f\xd5\xbf\xa1Me\xbc]u\x84\xef\x81R\xa8$\xd6C\xc5(b\x12\xf4Q\x91\xfd,\x01_ k\x1e\xc2\x97\xdd\xe6\xb5\x9b\x97\xa5\xdb\xff\xeb\x9a\x90l\xb0\x10\xba\xf1=\x07\xa9T%\x12A\x92(\xe2\xfc\xc0\x18J\x91\xa0\x90\x15AeLr\xe3{\x0e\xba+\xb1\xcd\x90\x91~\x92\xe8\xfd\xfe$i\x0f\xeb\xe2&\xb4`\xd8\xb3\xc7\xcd\xdd:\x9f\xc5\x22\xe3\xae\x97Ts3\x13@\xb2\xba.\x8dg9\x7f\xc3\xd6\xc9A\x95\xf9\xd9\x07M\x0c\xc2\xcf,\xfe\xfcd\x99%\x14m\xfb\xfb\xbd\x12\x8c\x18\xd0\x9b\xacH \xac\xa7\xc3!*L N\xf4\xb2\x9f\xe8U\xa2M\x03Q\x9b\xfc\x93\x08\x15\xeb\x91\xc41*L\xd8\xf5\xb3W\x16\xb9\xbf\x8a\xfe\x07\xb1\x81s0l\x96\xbfX\xe3\xf5^;!\xd4\x04qK\x11G\xdd\xc9\xbfc\xc4\x0a\xbf\xe6\xb4\xd8v\xc2\xcf\xfe\xac \x0cay\x19\xa2\xa8\x93\xfc\x95q')\xd5\xfe\xb9RZ,8\xac\x89\x13\xba\xb5p69GZ\xbe\xa6\xe05U \x166\xdc#<\x10[\x00i\x06@^\x94\xe4\x89\xde\xf4\x08d\xdf\xc7\x06\xf1S@\xfc\xaa\x87\x09,\xdaj\x10\x1b|#\x15\x91x\x11\x01\x14m\x7f\xac\xf9\xff\x12\xb7\xdd\x06\xfb\xf7k\xb9/\xdf\x06\x0f\xcc\xc0\xd7g\xb8\xf2\x17\x9fE\x89\xf6\xbd\xa8HP*j{\x06\x92\x18\x15\xc5\xa8\xe5\x08\xb5\x14j\xf1p\xe6*\xb8\x17\x11 v\xd8\x82\xd2\x17A\xbaB\xfe9r\x7f\xff'.\xc3\xdbW\xc7\xdf=\x02\x0a\xa2\xe9\x06\xf1\xe9&\xff\xfc\xcd?\xd0\xe2 R\xfa\xf7Z.\x1cc;!\x0caiI\x1f\xe3X\x0f\xa5\xb4\x95o\x92\x7f&\x00\xde\xf2\x17\xe7R\xdb\xe3Q\xdf\xe3\xf1\xe9o]Lk!aq*\xe6\xe3ox\xdaM\xe8\xfa\x9eS\xd3\x00\xb5\xad\xdd\xf9<\x7f\xdb\xb9Y\xaa\xbam\x1b@n\xa4\xb14h1\x00\xf9\xc6\x08\xb6\xe6\x08\x1e\xc5\x11\xfcE\xdf\xaf5\xea\x7f+>\xb7* AU \x06z\x16\x01\xe2\xeb_\xd7\xc4\xff\xf2\x97k?\x9fR03\x03\xb3\xb30;\xcb\xf7\xef\x98\x81\xef}\x8f\xc3\xefZDJV\xbc\x02I\x12\xa1\x92\x88d\xb1E<\xb7L2\xbbL<\xbdD\xf4\xcc\xfcfzE\x86Q\x04\xac%&\xe2\x8c\xd1\x9c\x8cY\x9a\x8b\xa9.J\xfe\xfc\x1f\x8e\xe0\x9f3\xc6\xc8\xcbF\xf0v\xd7\xf1v\xd5\xb5H\x98n\x12\xcf4\xf9\xc8\xb7\xf7\x11\x9dX\xe0'\xcf\xfa&K31\xcdIg\x16n'<\xf3\x0cLO\xeb\xbc\xff\x89\x09h6u\xa0_\xb6\xef\xefy\xfa\x98$\xf0\xba\xf7\x9d\xcdYW\xd78\xe7ZI}\x97G}\x97Gm\xc2C\x08X\x9c\x8a\xf9W\x0f]Jc*\xe6C7<\xee&\xb68FI\x94\x18\x996\xd2\xcfw\xb7\xf5r\x5cg\xf2\x92\xb4\xf0Vb[\xfb\xcf4\x0e\xc0\xdfF\x93\x9fM\x82,!{\xd9\x03\xe1ws\xadnx\xaa\xc5\x06\x91\xc5Z:\x06*@\x88\x13'\xe0\xf0a\xbd\x0aT*\xda\x14\x88c\x18\x1f\xd7a\xc2\xfb\xf6\xad$\x04\xdf\xff{\xf7\xf0\xc2w.j\x0f@F\xfe\xcb\x11\xf1\xe9&\xf1\xa9\x06\xd1\xa9E\xe2\xa9\x06\x8d\xbb\x8f\xf5\x22d\xce\xb4\x9b\xe0N\xb7\xfe{\xe9\x81\xd1\xd3{\x9e~\xb4\xc5\xbe\x17T\xf9zx\x1dc?~>\xb2\x16 *\x01\xb2\xe2#d\x00\x09\x88\x09\x89\x1c\xa9\xe2\x1f\x18%\xb8p7\x7f\xfd\x95kx\xd1\xf478\xfdh\xcb-\xfd\xdb\x08w\xdf\xad\xf8\xf5_\xd7\x15\xff\xb2\xf4\xbfV\xabM\xfeA\xa0\xc7-\xef?\xc8\xb9G\xaa\x1c<\x5c%\xa8\xea\x9a\x10~ \xf1=\x81L\x04r\xb7\xa06*\x998[\xf1oO\x5c\xce\xef\x9f\xf5\x90\x9b\xdc\xee\xcfa\x99G@\x95pZQL@^\x0c\xe4\xb7\xba\x87>\x06\xc0V\xeaPa\xdf?\x91=X\xc6b\x9d\x7f\x7f\xa3\xeb\xb4\xf7\x12\xe0\xa7,\x7f[\x15|_J\xae\xe2\xbe\xfb`dD\x93\x7f\xb5\xda\xe9\x07\xcc6\x04\xb3\x88\xa1\xf3\xcf\x87\xcb/\xe7\x81\xdf_\x22\x9eY$\x9aY\xd4\x84\x7frq\x85\xfc\xa3g\x17\x08\x9f\x9c\xdd,\xf2v5\xf2Ww\xbd,\xea\x1dPz\xde\xc3_\x9c\xe7;\xfeK\xa9]}6\xb2Z\xd1\xa3R\xd1\xa9\x9ef%\x00_\xbfV\xbb\xeal\xbe\xe3\xbf\x94\x87\xbf8\x8f\xc3\xf6\xc2\x93O\xc2\xb3\xcf\xeaj\x7f\xa7N\xc1\xc9\x93\xfa8=\xad\x1d\x7f\xaf\xff\xbd\xfd\xec\xbf\xbc\xca\xae\x0b\x02|_P\xa9H\x82@\x12x\x82\x00IE\xa4w\x83\xd0u!j#\x92w\xfd\xe3%nb\xd7\xb7\xeeI\xec{\xfe&\xf9\x9b\x85\xe8\x12\xec\x1d\x007\xdc{\xbd\xe5\x02\xc0\xd8\xff\xb7YA\x92\xf2\xd6\x8a\xc22y\xf9\xd7\xcdX\x82\xb5N\x5c?\x0a\x01\xad\xf7w{\xca\x12\x10\x7f\xf37\x82\xf1\xf16\xf9wN\xb8&\xfd\xcc+\x90\xe5\x0b\xed\xdb\x07\x97_N4\xb3H|j\x91\xe8\xa4\x16\x01\xd1\x89\x05\xc2\xc7\xa7Y~\xe0$\xad'\xa6\xd7\xf3\x10\xec\x94H\xb2A\x14,\xea\xec?\xf8I\xaa\x97\xeeC\xd6\xd3\xda\x0e\x95\x0aR\x06)\xe9\x07zx\xb9\xd7\xaa\xba\xfeC\xf5\xe2}Eu\x1f\x1c\x06\x18O<\x01\x0f<\x00\x8f?\x0e'N\xe8r\xbf33\xed]\xbf\xfd\x97W\x189\xe8\xe1\x07\x02\xdf\x97\x04\x81 \xf0\xf4\x9d\xb0B\xfcRR\x0d\xbc\x95\xa2Q\xb5Q\xc9\xdb\xbet\xa1\xb3\xf6\xed\xdcc[\xef\xcc\x88~\xf3\xe7\xe4\xacz[=\x00\xbf@\x18\xf4\x1a\x80\xdd3\x061\x06 _\x9eW\x15\x90x^9I\xca#\xff\x8b\xb2\x04`k]\xfde\xb5\x0dl\xc4oV\x83*\xde\x12\xd8\xb5K[\xff\x95J'\xf1\x0b\xa1\xc9>\x8f0\xd4?\x0b\x02\x18\x1f\xe7\xf1?\x5c\xe4\xbc\xd74I\x16[$\x0b-\xe2S\x0dZ?\x98\x22<>G\xe3\xaecgrm\x8b\xdc\xd6.\xd2l\xe3-\x90\x959\x0d\xce\xdf\x85\x18\xcd\x15v\x12\x01\xba\x12\x80\xae\xfd\xa0\x9f \xc5J%\x80\x18d5@\xd4*\x04\xe7\xefr\xb3\xba\xcdp\xd7]\x8a\xeb\xaf\x17D\x91\xce\x048p@\xe7\xf9\x8f\x8e\xc2\x7f\xf9\xeb]\x5cq\xb3GP\x15\xf8\xbe\xc0\xf74\xf9{\x08|\x04R\x81\x14\xe0\xfb\xed\xe5U\x22\xa8\x8fz\xd4\xc6\x5c]\x88\x12Q \x0a\xf8\xa5W\x11\x90\xff\xfd\xa4\xc4\xc85\xb7\xc1\xcf\x18\xfe\x00.^yx\xc6\x04\xe5\x09\xddF\xec\x8a\xd5\x95\x97\xcct\x0c\xd3\x0b\xd0m\xbfUl\xd0M\xb2QV\x7fi\x10\xa0\xf8\xdc\xe7\x04\x17\x5c\xa0\xc9>\x9f\xfc+\x84\xcd\xfd\x92\xce\xb2\xa7c\x02\xeau\xd8\xb7\x8f\xe5\xef~\xab-\x00\xa6\x97\x88\x9e[8\x13\xf2\xef\xf6\x7foT\x06\xc1N w\xb5\xd6\xe7I\x8eU\x90\xbe\xee{\xa5\x92\x04\x88Q\xd9\xcb\xe9=\xd1\x91\x10\xa8\xd2\xba\x0f#>r\xb4\xe2f~\x1b\x8b\x808\xd6q\xbf\x99\x00\x18\xd9\xe7\xe1\xd7\x04\x9e\x94\x88\x84\x95\xba\x10+7Lz[dwC\x92\xa6\x87\x8a@\xd7\x85\xf8\xf9\xcf=\x9f\xbfx\x9dk\x16U\xf2L\x8a\x12#\xaf[&\x97g\xf0\x9a\xb9E\x90\x17\x15\xd1F}\x089\x80\x13j\x9b`[\x0a\x84-\xb7\xdf\x8c\x1bP\x96\xd7\xc4:\xfe\x87~\x88\x9b2\xab\xdf\xb6\xdf\xab\xe8\xbe/\xacV\xac\xfa,\xd7'\x1b6\xf2\xcf'\x0agyC\x9e\xc7\xd2wO\xb0t\xff)Z\x0f\x9f&:>\xbf\x11\xe4\xdfm.6\xdc\xb5\xb5\xcd\x16\x12\xb1\xc6s{\x9a\xaf\xb1\x1f;\x04\x89B\xb5bT\x9c+\xf8\x94\xac\xaa\x02\xb0\x92\xfd\xb1\xf2z\xa2s\xc8\xc6~\xec\x90[\xea\xb7\xa9\x088~\x1c\x1e~\x18\xee\xbf\x1f\xbe\xfb]\x10\x9e@E\x10\xb5\x12\xa2H\xd7z\x88UZ\x17\x22K\x135\xc8?\xab\x19\x91\xb8)\xb5\xad\xdd\xdd\xb6\x05l|\x92`\xcfN39\xca\xcc\x16(\xf2\x5c\x9f\xd1Z9hY\x00\xd2\xb2\xd0\xd9\x5c\xfc\x1e\xab\xf3!mA\x15\xc2\xe2\x1d\xe8E\x8dm\xd6\xc2\xdf\xad1L/U\xa8V\xce\x15\x7f\xf0\x97\x1e\x17U\xda\x84\x9f$\xed\xce\x1f6\xf2\xcf*\x80\xc4\xb1\x0e\x17n\xb5`y\x99\xf9\xbf~d+\xc9Pm\xd3\xc5\xa0\xf4\xda\xf4p\xfdl\xe7w\x9b\x8f\xd2\xfbV\x8eU\xda\xe4\xaf\xf4 \x11\x1du\x1fV<\x00\xf9\xba\x0f*F\x851\xaa\x15#\xc7\x9c\x17`\xbb\xe2\xde{;o\x9d\xeb\xfe\xd7}D\xad\x848\x94\x1dE\xa1\x10\x9d7RL\xa70H\x94\x22\x89u}\x88\xe7}\xfcM\xf9\xce\xa0;\x89\xec{Y\xb3\xcc\x94@(\xce\xf1/\x8a\xea\x97\xb9\xf3\x8a\x82\xdda\xb5G{(\x04@^\x08\x98\x0d\x15\xf2\x95\x01\x93\x9c:\xb2UT*[,\xcd\x85\xb6\xe8w\xc4&\xddT\xaa@Q\xaa\x02\x17\xd3\xca\xf7\xe2w?\x12\xb0{\x1f\xecN\x1b~\xbf\xe0J\x98\x9f\x85o\x9f\x82\xbf\x7f\x14\xfe\xf5\x9b\xca\xc9?I\xb4\xb7\xa0\xd9\xd4\x8d\xc2\xe7\xe7u\xb4\xd0`y\x82\x86\xc5\xca\xb7\x91{/\xe7\xaf{>\xe6>\xfb\x10\xe7\xff\xe9\xcd$\xcb!*\x8cPq\xcc\x03\x9f\xbc\xb4\xdd ~bB\x9f\x98\x85\x88\xcf\xccp\xc5\x1b\x7f\x80Z\x8aH\x1a!\xc9B\x8b\xb9\xcf\xba\x14\xb0a\xc1\xd2LLk!!\x1cW\x84-\xa5\xbd\x00j\xb5\x00H\x14m\xf2O\x14\x7f\xf9?\x0e#w\xd7\xf0\xce\xaeQ\x1b\xafq\xe9\x03\xff\x8a\xf8\xb4.\x1e\x15\x9fnp\xec\x9f\xde\xb6\x13\xbctk-\xd8Vd\xe1\xe7\xdf\xcb\xc3\x9e\xb6^d<H68Cj\x90b\x00L7\x88,\xf1\x0a\xe4'5\xc1^-\xb0\xe8\x02\x94\x91\xcdfz\x03\x04\xe5)\x80\xa5\xc1\x80\xe2\xe3wUy\xc9\x0d\xb0k7\xec\xde\x05\xb5\x00Z\x11,,\xc0\xfc\x1c\xcc\xcd\xc1'\xef\x85G\xef\x87w\xdd\xa4\xf7\xf9+\x95N\xb7\x7f\x18\xea\xc5\x7fr\x12\xa6\xa6\xf4\xf1\xd81\xb7R\xf6W\xb4l\xaa\xc0\x89N-\x22j>O}\xef\x1a\xb8\xfez8\x92V\x89\xd9\xb5K\xc7|(\xa5\x05\xe0\xec,\xcc\xcc\xf0\xe0}\x97\xc0]wq\xfe\xd9_#:\xb5\xe8\xae\xec\x10a\xeeXHc2\xc6\xab\x08d\x05\xbc@\x90\xb4\x14\xbe\xd45\x00|)\xf0*\x82X)\xa2D\xf1\xe1O^B\xf5\xf0\x01\xaa/\xaa\xe1M\xd4\xf0\xc6k\xc8\xd1*\xc2\xf7QaD<\xd3 \x9anr\xe8\xae_\xe2\xf1\xeb\xffd'?\xfb\xaa\x07\x01o\x06\xb1\xdb\x02\xa3\x8b\x8c\xd3\xb2\xc6xC!\x00( n[\x10_\xa6\x9c\xcc\xcf`\xcb\x08\xc0\x10\x12[\x15lV\x14\xb5o\x12{\xd2\xc5K\x00\xa0\xc4\xed\xdf\x1b\xe1\xe2\xcb\xa1V\x81j\x00U\x1f*\xd9\xa7\xafA\xc5\x87\xf1\x09h\xb6\xa0\xb5\x04\xef\xfd3\xf8\xe5\x9b:\x05@V4<\x13\x00\x93\x93:\x81x\xd1-\xfa\xc3\x84\xf0\xf8<'\x96_\x01\xaf:\x02\x97_\xae\xb3=*\x15}\x14B\x0b\x80 \xd0\x1e\x81\xd1Q8\xfblH\x12\x8e}u\x81\xbd\x93_p\x138Dh-&,<\x1b\xe1U\x04^ R\x01\xe0\xe1\xcb\x04\xdf\x97x\x15\x81_\x15\xc4\x89\xe2c\x9f\xba\x90\xda\x8b\xf7R\xb9d\x9f.\x1e\x15\xf8\x88\xc0G\xfa\xba\x97\xa4\x12\x02\xc6G\x91\xb5*\xc9\x81Q.\xf9\xde\xaf\xf0\xe8U\xef\xdb\xe9\xe4\xbf\x96\xed[\xb3\xb6\x8d-%\xd0Db\xe3\xab3\xa9\x06\xb8\x1dr;d\x81u.J\xd4\x97\xe8B\xae\xbd\xec\xb1\xaaM\xb8y\x8a\xfen~$\xf9\xef\xc5_|c\x84\xb3\xce\x86\x91\x0a\xd4+0\xe2\xc3\x08PS\xb9\x01\xd4|\xa8xp\xe0l\xb8\xe0\x12\xf8\xbf\xfel\xa5\xfc/\xa7Ok\xc2?uJ[\xfe'O\xea\xc4\xe1\x1f\xfc\x00u\xef\xbdn\xa5\x1c\x22\x9c\xae\xbdR7|?\xef\xbcvy\xb8\x8c\xfcMd\xe5\xe2\xce9\x07\x8e\x1c\xd1\xbf\xeb04x\xe6\xde&\x93?Xf\xfa\xf1\x16\x0b'#\x1aS1\x8dS1\x8d\xe9\x98\xc6lDc.\xa21\x1b\xf3\xa7\x7fz\x0e\x95K\xf6\xe2\x9f3\x86\xf0=D\x10 \x83\x00\xe9\x07\x88\xacv\x84H\x8bG\x89\x0a2\xa8\x10\x9c5\xc1\xa1o\xbcc\xd8\xc9^\xac\xe3\x9c\xb2*\x80\xf9\xa3m;ZX\xb8p\xc3\x02\x00\x07U\x00\x14\x05\xfee\x96\x7f/U\x91T\x0f.\x1a3\xe2\xb2\xdf\xde\x00\xd1E%\x96u\xfaS@\x22\xfe\xdb\xe7F\x99\xd8\x0d\xe3u\x18\xa9\xc2\x88\x07uR\x01@\x9b\xf8k\x15=*\x9e\x1e\x13\xbb\xb4\x08\xf8\xf7\xb7\xb6\xc9\xff\xc4\x09]<\xfc\xa9\xa7\xe0\xa1\x874\xf9\x7f\xc1Y|C\x87#Gt\x91\xa7\x8c\xf8\xb3\x92\xd0\x1dw\xa6h\xbf\x96\x8d]\xbb\xf4\xef:\x0c\x15\x1e\xfe\xc2<\x93?h1\xf5P\x8b\xd9\xa7B\xe6O\x84,\x9e\x8eX\x9c\x8di\xcc\xc6|\xf4\xd61*\x97\xecE\xee\xadi\xab\xdf\xf3\x91A\x80\xf0\x83\x95\xc2Q\x22+\x1b\x94/ 5R\xc5\x1b\xab\xf3\xfc\xcf\xfd\xfcN\x98\xc6^\x8cC\xd1\x85\xf4\x05\xc5\xa9\x84\xb2\xe0\xe7\xddxo\xcd\x18\x84-\x00[>\xbe-\x922_\x13\xd9\x8c\x90,\xcb\x08(k\x05,z\xb8\xd0\xfd\xa8\x03`\xf3@t/\x09<\x9e\x92\xff\xf8\x08\xd4\xa4v\xfbgC\x08 \xc8\xcd\x96\x82\xe5T\x00T}\xa8\xd5a\xcf>\x9d\x17\xb4\xb8\xd8\x1e\xd3\xd3\xf0\xc8#\xa8\xaf|e3D\x90\xc3f>X\xbf\xf0\x0b\xf0\xf3?\xdf\xae\xfaX\xb1D\xf4g\x9dbV\xee<\xa5\xcf\xabV\xa1VC\xfc\xc2/\xa0>\xfaQ7\x99C\x84G\xbf4\xcf\xc5?>F\x12+j{<*\xa3\x92\xca\xa8$\x18\x95x\xfbF\x90\xa3\x15\xdd+\xc2\xf3\x91\x9e\x9fZ\xfei\xf1\xa8t\xe0I\xa4GZSB\x22|\x81\x1c\xa9\x22G\xab;\xe2\xd1\xa2\xf7\x0a\xad\xa2\xc4\x03\xa0\x0c#4\xe9\x81\xb3\x866\x06\xc0,\xe0S\xd4WY\x19\xe7S\xf0\xbd\xcdeb\x9b\xd4\xb2\xe6?\x9b\x95\x09\x90\xfd\xad\xa4H\x10\x88\xdf\xfc\xc0\x04/\xbeV\xef\xf9+\x01\x91\xd2$/\xd1\xe5\xbb\x10\x10\xa2G\x84n\x96\xac\x04x\x01TjP\xadA}\x14\xbe\xff\xfd6\xf9/,\xc0\xfc<\xea\xab_u\xd5\xf8\x86\x11/x\x81\x0e\xf4\x0b\x826\xb9\xe7\x8f\xb6\x14Q\xd0\x95!\xebu\x1d\x13\xf0\x82\x17\xb8y\x1cB<\xf6\x95\x05.z\xd5\x18\xd5qI0\x96\x09\x00\x81\xdc\x13 \xab\x9a\xfc\x85\x10\xa8D\xe9\xe2P\xc4\xb9\x95X\x80PY\xb5\x00\xbdl\x09\x90u\x1foW\x8ds?\xf0Z\x9ey\xe7\xe7w\xaa\xe5\xafJ\xbc\x00\x1d\x1e]V\xc7\xbd\xe5\xad\x7f\x81\xbd\xd2\xe0P\xb6\x03.k\xa4`NJ\xb7\xe8\xc9^+\xcd\xd9\xce\x11\x9bp\xc3\x14\x05\x04\x967\x02:p\x8e\xce\xd7\x8f\x12\x08\x93\x9cT\xca\xe5\xf0d\xe4\x1f\xaat$\xed\xa1\x00!uU\x904\xe7_}\xf3\x9b\xdd\xbc\x13\x0e\xdb\x19\xa3\xa3\xed\x1a\x0fY\xf0'\xb9E|\xd5\x95W\x9di\xa2B\xe8\xf7p\x18J<\xf1\xd5\x05\x00\x9e\xf7\xb2\x11\x1d\x18X\x11\x88W\xa6\xa4\x1f\xa6\xb5 \xb2\xa2P\x1d\xf7M\x9c.\x14i\xc9\xa0\x95\xe2R\x09\x0a\x85\x7f\xce\xf8N\xf4\x02\x98|T\xd4\x8a\xde\xe6\xe9\xce\x1b\xb5\x09\x9d%\x84m\xde\x86\xa1\xf3\x00\xf4b}\xab\x02\xd7\x09\x94\xe7Y+\x8a\x03'\x8a\xdec\xa3\x08\xb0\x17\xf1aV~\xb2\x8b\x80(\x84(\x86X\xe5\xac\xff\xd4\x82\xcb\x0b\x800}=L \x8c\xa1\x15C\x18A\xd8\xd2\xe3\xf4\x12\xea\xdbw&\x8e\xe4w\x00\xd2V\xcf+\x84\x9e\x0d)\xed\xe4\x9f?/\xcb\x14\x09\xc3\xedl\xad\xb9\xfb\xbb\x07\x1c\xfdfC\xeb\xc5\x1fy>\xa3-]\x00J\x85\x9d\xd5#\xf5\xe6k\x9b\xfc\xf5\x04g\xe4\x9f\x1eU\xa2\xc5B\xb4\xe3\xea\x06\x16\x95\x98/\x22\xf9\xa2\xdf\x8bK,\x7f\x9b\x08\x18\xba @[\xbec\xf6\xb5\xc7\xeaNKf\xb3 (\xcf\xff\xef\x96\xb39hBH\x89[>\xb9K\x0b\x80(%\x7f\xf4\x03\x16\x01\xa1H\xbf\xcf\xac\xff\x9c\xd5\xbf\xf2u\xa8\x89\xbf\xb5\x0c\xcdE\xd4\xb7\xef\x8c(o/\xeb0,h6\xb5\x07 _\xf6\xd9J\x95Fq\xa8$iW\x86l6\xd7\xea\xe1\xa2\xc0\xbb\xa5z<\xa7\xd7\xfbQ\xf5\xf8\x9a:\x83\xffkGa\xf1\xce\xa7H\x16\xc3\xce\xd2\xd1I\xde\xbao\x97\x8d\xc6$\xff\xec\xbe\x89\x12T\xa8E\x82\xf8\xe4'\x87izz\xc9\x16\xb3\x91\xb7\xf9u\x99\x875\xe3\xb5\xc4\x22\x14\xfa\xc2Y\xfe6\x98\xf8\xb2\x1e\x00\xf9\xb8\x01\xb0\xef\xf9\xcb\x92\xc9\xeb\xd5\x1b\xb0Y^\x80D\xbc\xfeCuj{\xa1\xbe\x07\xea\xbb\xe0\xc0e\x88w\xdc\xb9\x87\xe5]p\xf71X~\x10\xfe\xdd\x1b!\x94P\x91\x10I\x88=\xbd\xdf\xdfR\xd0J\x05@+\x86\x859\x98\x9f\x81\xd9\xd3z\xccMc\xf1\x9e\x14\x89\x90\xb5\x94!v\x18Dd\x05\x9ej5\xed\xca\xaf\xd5\xe0\x83_@\x07\x93\xee\x82\xf1q}\x99\xe7gu\xf1\xa8\xf9Y\xf8\xe5\x9f\xd1\xa9\xa2\xd3\xd3\xed\xe2Pgv\x0fl\xd49k\xf9\x9d^*)\xba\xfb\xd7\x82xZW\xf7\x13\x15\x89\xa8z\x88\xba\x8f\xf0$B\xc6\x08\xe9#\xa4\x87\x94>\xca\x83$\x89R\x81\x10\xa1\xc2\x88\x87\xbf\xfcB]dj\xcf.\xc4\xd7\xbf\x0e/x\x01\xe2[\xdf\xea\xa84\xa9\xde14\xa9\x82\xcab\x9d\x9b\xde\xdc|\x07\xbf2\xaf\x00\x05\x86\xaa\xed}\xd7*\xc0\x07^\x00\x94\xb9\xe6\x8b:\x22\x09\xcb\xe4\xda\xd4\x18\xd8\xb7\x0e\x06\xc9e\xd4\xb6\xf6\xdf\xfe\xf75\xce\xbb\x0ej\xbb4\xf9\xd7' j\xc1\xf2<,/\xa4\xc7y\xf8\xafw\xc0;\x0ek\x01P\xf1\xa0R\xd5\xd3\xd3JR\x01\x10k\x8b?#\xfe\xd9\xd303\x05'\x8e\xd9n\xa6\xb2\xaf{Q\xc4n!\x1dT<\xf6\x18\x1c:\xa4\x89\xff\x9bG\xe1y\x17\xc3\x0b^\x0c\x13\xe3\x9a\xfc\xc7\xd3\xbd\xda\xf9\xb9v\xf5\xc8\xff\xfe=8\xfa8\x5c:\xa2\x05\xc0c\x8f\xb9y\xdcA\x08\x8f\xcdQ\xb9d/\x22\xf0V\x06\xb1Z!\x7f\xe1\xf9$\x15\x0f<:\xc9\xff;7\xc2\x0b\xf7\xeb\xf4\xd1\xb1\xb1v\x0b\xc2Je\xa5\xca$\xb3\xb3\x88\xbf\xfb;\xd4\x8d7\x0e\xc3T\x89\x12\xbe)\xcb@+r\xe9+\xca;\xbfv\x13\x0f\xdb\xda\x03\xd0Kw3U \x14l\xd5\xff\x8a;\xe5\x0d\xc6\xcd\xb2\xea\x7f\x11\xef\xfcv\x85\xb3_\x04~\x90\x8e\x8a\xce\xea\xf3\x02\xf0&\xa02\x02#\xfbt\x93\xef\xd9c\xf0\xbe\xbb\xfe\xff\xf6\xbe6V\xb6\xf3:\xeby\xf7\x9e\x99\xf3u\xfd\x19\xe7\x8b\x18\xd7i\xa3&qPC\xdb4@C\xda\x10\x08PY\xa8\x09TT$i\x82\xda_\x94\x1f@*\xc1\x8fJTBB\x08\x05\xf1\x8b\x82\x84h\xa1\x09\x09\x94\x16\xa1\x88\x06\xb9r\x936v\xdc$\xb6\xe3&\x22_\xc4\x89\xe5{\xed\x9b\xb8\xb2}\xef\xf5\xf5\xbd\xe7\x9c\x99\xd9\xfb}\xf9\xb1\xf7\xbe\xb3f\xcdZ\xef\xfb\xee9s\xce\x999w-ik>\xce\xcc\x9c\x99\xfd\xf1>\xcfz\xd6\x17\xf0\xf7\xdf\xd8\x80\xffh\x04\xa0\x9c\x07\xff\xc9\xb8\xf1\xf8\xaf\xbc\x08\x5cy\x01\xf8\xfe\x85\xc6\xc3[\x9c'-\xc5\x9b\x0c\xe0\xcf\x82\x8b\xf2\xe9O\xc3\xfd\xca\xaf\x00/\x8e\x80\x1f}\x07\xf0g\xeei\xaaHF\xc3\xf6\xb6\xcd9\x1a\xdc\x02\xec\xb6e\xa2\xe3\x1a\xd8\xbb\x15\xf8\x93G\x80\xfdg\xac7\xc4Mf\xfe\xa51\xa6\x17^\x82\x1b\x14-\x01(Z\x02P\xc2\x0d\x06p\xa3\x12n4h\x09@\x03\xfe\xdf\xf9\xca;\x80\xb7\xdc\x0b\xdc}wSq2\x1c6\x95$\x83\x16^\xce\x9dkH\xe8]w\x01U\x05\xf7\xc4\x13\x08?\xf6cgA\x01\x88\x0dt\x8b\x95wkM\xe9|\x0f\x85\x018C\xc3\x80r\xb2)9C\x92\xe4\xfe \xbc\xb7PH\xc6iy\xb7\x0b1#\xf7\x8b\x0f\x0f\xf1\xea\xfb\x1a \xbfA\x00\xda\xa3\xe3\xda\x9f}\xe3\xdb\x0f\x80\xdd\xdb\x81\xdb\xef\x05\xfe\xe3\x13\xc0\x07\xeekj\xb6Q\xce\x83\xffd\x0c\xbc|\xb9\xf1\xfa\x9f}\x0ax\xe6)\x84\xff\xfb\xe8>9\xd1\xb4\xfd\xd27y* >\xf9\xce\x08\xc4\xa9\xda\xab\x817\xfdy\xe0\x95\xaf\x06vZ\xf0\x1f\x0d\x81\xad\xb6\x8f\x04\xbd\x92\x0a\x00E\x09\xbc\xf2U\xcd{\x9e\xb8\x86#\x9c\x07\xa9\xf3>w-8\xcdy\x1d7\x9d\xed?\xfa,\xce\xbd\xfb\x07\x81: \xf8\x007*\x10\xa6\xa1\xe9\x0b\xb0\xd5\x80\xbf\x1b\x95@\x01\x84i\x85\xa7\xbe\xfa\xf6\x06\xfc\xef\xbcS\x06\x7f`Vn\xea\x5c\xd3m\xf2\x07~\x00\xee\xe1\x87\x11\xde\xf9\xceM\xf6\xf85\xd0\x97&\x02\x86\x0c\x10\xa7a\x02\xa9\x1c\x9c\xf6\xbbY\xd9\xf9\xbfNI\x80\xfc\x87\xf9\x08\xa8\x07\xc4\xeb-\x1d\xdb\x99\xa9E(\x9c\xc0o\x13\x9fw\x1f|`\x80s\xaf\x01\xb6v\x80a\xdb\xadm\x88f\x1b\x04r\xbfl\x88\xc1p\xd8\x0e\xf6\xd9\x01n\xbf\x07\xf8/\x8f\x02\x97\xaf6\x12\xdb\xa5\xe7\x81\x17\xbe\xdf\x80\xfe\xf7\x9e\x06.|\x078\xff$p\xfeI\x84/}\xf6j\xbb/\xf8V\xb7\x9b\x8f\xb0\xd6T\xc2T\xec\xef\x96huZ+\xd6/\xff\x1a\xf0\xa6\xb7\x02\xb7\xde\xde\x0c\x8b\xea:D\xee\x14\xa4sd\xbb\xed\x14\xed\xdf\x87\xcdv\xeb-\xc0\x9b\xde\xda|F\xde\xc2\xa7y>\xd2\xf1\x0f\x91-ga\xb5\x04\xbec\xb4k\x9f}\x0a\xe3'_\xc4\xe4\xdb/b\xf2\x9dK\x98>\xf3\x12\xa6\xcf]E\xf5\xfc5TW\xae\xa3\xbez\x80\xfa\xf2>\x9ez\xe4>\xe0\x9e{\x1a\x0f\xbfk#\xcd\xc1\xbf#\x00@\xf3\xfcp\xd8\xf4\x98\xb8\xeb.\xb8\x07\x1e\xd8\xb8K\xaa'i\x8d\x9d\xdf4\x84\x1d\x04\xaf\x9fc\x9a?\x0e\xc7\xeaT\x15\x80\x10BL\xce(\x22\x80N;\x01\xfa\x08`I\xb1\x97\xbe\x07\xf78\x94\x8d\xa6\xaf\xff\xdf\xfex\x89;\xdf\xd0t\xe9\x1bm\xb5 \x8f\xd9V\xa0\xa9\xdd\xc7\xa8Q\x02\x5c\xab\x08\x94M'.\x94%p\xee\xd5\xc0\xbf\xfbo\xc0\xdfz\x1bpp\x1d8\xdcon\x0f\xf6\x81\xab\x97\x80\x8bO#<\xfe\xd0\x8b\x98\xef\xa4\xe8\xa0\x8fB\x8eu\xaf\x8a\xfd\xa6\xa3\xee#\xf3\xeaVm\xaf\x7f#\xb0\xbd;\x03\xfe\xed!0r\xc0VsJa\xab\xdd\xed\xc5\xa0)+\xed:HNF3\xc2\xf0\xfa\x1f\x96\xce\x8b\x90q\x0d\xa5*n\xc2\x09_\x8bf=\xec\xfa\xe7\x9e\xc6\xdeO\xdd\x0b\xd4\x01\xc5\x0b\xfb(vG(\xf6\x86(v\x87p{C|\xff\xf1\xd7\x02\xef~M\xa3>\x96e\xb3I\xe0\xdf\x11\x80\xd1h\xbe\x11\xd5\xee.\xb0\xbb\x0b\xf7\xf1\x8f#\xfc\xc2/l<\xd7V\xd61\xaf\x90_\xea|\xf1\xe7\xb8\xf3\xcb\xd5\x81\x95\xe6\xb2\xad[\x1f\x00)\x0b\x92\xee\x80\x82\xed \x0f=c2w\xf4\xefqJ\x8aq\xd9h\xfb6`k\xb7\xf1\xfe\xcbr\xb6\x08\xcf\xf4\x01\xdc\x18\xd6}C\xa2\xf5\xed\x856\x04\xca\x11Pn\x01[\xb7\x02O}s\x91\x00\x8c\x0f\x10\x1e\x7f\xe89\xcc\xa6'\x06\x02\xfcE{\x02J#'s\x88@\x8a4\xe4\xaa 7\xeb\x82\x7f\xfcR\xf6\xf6n\x13{\xddn'F\x0e\x1cP\x06\xd6^\xa4\x95f\xbb\x06\xdb\x034\xf9\x01\xdb\xdb\x0d1\xdd\xde\xeds|\x82\x9d\x03g\x88\x04<\xd4\x90\x80\xe2O\x07p\xbb\xc3\x96\x004D\x00\xb7\xbe\xb1\x01\xffN\x91\xa4-\xa5C\x98\x07\x7f\xa9\xef\xc4\xb9sM\x12\xea\xad\xb7n\xda5\x9b\xab\x82\x05\x01\xc7\xf8p7\xcf<\xfb\x02rn\x81W0\xed\xc8\x0d\x17\xd6\xa9\x0a\x80K#\x81\xa9\x00\x85\x22\x95@\xd91!\xe2i\xc6Z\x03\x9f\xdc\xef\x1e\xed5\x17O\xf0@\xed\xe7!\xb8v\xb3\xd6\x107\xb6\xd0\xbc\xae\x0e@(\x80b\xd8\x10\x80\xc1\x08\xf8\xee\x97\x81\xe9\xb8m\xf83E\xf8\xdac\xcf\x92\xfdV+\xd2\x14\xed<\xe5\x90\xdf\xb9\xf08\xca%\xcf\x0a\xa8#\x93X\x1e\xeb\xbes\xf7\xbf\x1fx\xef\x87\x1b\xd0\x87o{G\xb0s\xac\x93fi\x0b\xe9\xaam$\x85\xa2!\x99\xdb\xbbp\xf7\xbf\x1f\xe1\xd3\x9f\x0c+\xbc\xc6\xcd6\x88\x04\x00\xc0\xeeO\xbc\xae\xa9\x08\x18\x95(\xb6J\xe0\xc7G\xb3\xc1R\xde7\xc9\xc9R\x9f\x09\xad\xe3$\xd0\xbc\xff\x96[\xce\xca5\xaf\x91\x01\xe9\xb5\x92b\xed\x99C\xeb\xd9s\xc01$\xb4\x0f\xd6lGJ\xbd\xf1\xe9}\xadL\xa2F^>C\xe8\xe1\x85\xadj\xd1r\xea\xf7\xf6\x15\x9a\x0d\x80\x0f\xb3>P\xce\xcdG\x88\xba\xbf\xfb\xb6QK\xddmu\xf3~8\x84G~\xffi\x81\xd0pE\xa5$L\xd3\xb3\xfbAQ\x02\xa4\xfd\x11\x96P\x09\xce\xb2\xe7\x9e3\xb5\xebd\xed\xf6W\xa0\xe9\x1e9m\x1bC\xb5\xcd\xa1\x1c;\xc7\x80Y3\xa9\x0e\xfc\xbb&RUh\x16\xf6\xdb_\x91KjNW\xf10;6\xdb\x7f\xec\xe2\xfcE\xfe\xab\xbf\xda4\x19\x9bLf\xdd&\xbd\x9f\x07|\xe7f-\xa5)\xf8S\xa2\xe0\xfd&]\xf7}^\xc3\x1b\xd5I\xb2~\x8e* }\xd6\x91\xb3\xff\xa9\xe4\xb0n\x9e\x13_0\x02#\x02\xddkj\xc6\x90\xea\x08P\xc5\xc6/\x9e\x86\xca\x01\xf7C\xef)\xe6\xc0\xbf\xbb\x80hJ\xde\x9c\xe7\x1ff\xc0\xef[\xf0\xaf'\xed6\x86\xbb\xe7\x1d\xf7*D\x8a\x9f\x5c5\x16\x93\x00=\xe2\x89Y\xf4\xc4L%p\x9d\xf5\xc4,\xadm\xf5I)Iy\xf1\xbf\xban\x09\x00\x01\xff\x1b\xb7\x10\xb6@^C\xc0\xbf\xaa\x9a\xcf::\xa91\xf0?+\x17\xc0;\xde\x01\x8c\xc7\xf3\xad\xa6\xe9\x16\x94\xd3Sj7]Up\xefy\xcfY\xf1\xfe5\xc0\x06\xf40\x00_\xab\xbdp_j\x7f\x7f\xa6\x08\x00\x94\x1f\x1a\xa0\xd7\xcf\xf30\x01\x04\x95\xc0\x09;\xda'\xbc\xda\xe3Z\xac\xe6>3|\xf7\xc1\xd0x\xf0\xa1\x85\xe1 \xe7\xe6\xcf\x81\x7fw;\x05|\x03\xfc\xa8\x0e\x81\xf15\x84\x0b\x8f<\xad\xc8J\x12\xb3\xf4\x91\xbf\xe7\x00\xbd\xd6\xb4\x02\xab<9\xcd\xd4\xf3(}~^\xbf\xdazg5\xf1\xeac\xe0\xdf\x02\x7f7K\xa2\xeaZH\x1f6\x9fe\xc7\xd5\xac;\x09\x1ey\xa4\x99$zx8\x93\xfe\xfb\x82\x7f\x087\x06U\x85\x07\x1f\xdcd\xef?(\xf8!M\xff\xa3\xf8T\x0b\xca\x80\x94\xd8\xae\x95\x05\xae\xe4\x9a\x5c\xb7$@\xcex\xf8\x0f\xa5\x1e+\xb0\x18/\x91<^\xce\xbe\x8eR\xf3\xbe\xfc\x0ft\xff\x15\xc0m\xae\xf9\xfa\xd7\x10\xc2\x07=\x0e^h\xf2\x00F\xe7\x80r\x00\xd4\x050h\xb3\xfb\x07m\x9e^\xe5\xe7\xbd\xff\xe9\x01p\xf8\x12pp\xb9\xdd.5\xdb\xbc\xac/\x9d\xa4t_I2\xb5\x13\xc8T,\x1c\xe0\x12*\x8eI\xbe\xa7i\xdf;\xdft\x80\x1cm\xb5\xe3\xa0w\x9a\x5c\x93\xae\x85\xf4?\xffT\x93<\x8a\xd0t\x97\xfc\x17\xefk[I\xb7-\xa4\xaf\x92\x16\xd2\xdf;o^\xbc\xd9\xbc]\xba\xd4l]i\xdfp\xd8$\x05\x8eF\xb3\x84@\xbaQ\x92P\xd7M\xd92i5\xed\xfe\xf5'\x80\xbds\xcdk_~\x09\xe1\x9f}p\x93\x08\xb9W\x9c/N\x10\xb8c\xe6\xb1X\x15P\xb3\xd7;\xe6\xbcJ\x9f\xbd\xf1\x04\x00\xd0\xe3'\xbc\x0a@\xea\x05\xa0\x8dMD\xe2\xb9cm2\xe2\xdc'\x01\xdc\x0e\xe06\x00?\x02\xe0\x1c\x80k\x00\xae\xc3\xb9\x07\x0b\xe0\x0e\x00\xdf\x03~i\xaf\x89\x93\x0d\x8a\xa6\xbcoP\x02\x83\xb6\xbdo\xdd\xca\xb1\xb5o\xe4\xfe\xe9\x01pxy~{\xf9\x22\xb0\xd8'\x01\x0a \x87\xc8\x89\xc9\x89@\x88\x90\x00^E\xe1\x22\xc4#\xa9\x88\x98\xad\xf8b\xfa\xf2\xc3p\xff\xe8_\xce\x08\xc0h\x0b\xf8\xf7\x0f5\xa0\xbfu+\xf0\xca7\x03[\xe7f\x04\xe0\xdf|\xa9m5}\x15\xf8\xc0\x8f\xcc\xb5\x91\x0e_~\xd8v\xa8\xd9\xbc]\xbc\xd8\xf4\xf8\xef\xc0\x9fn\x1d\xe8w\xe4\x80\x12\x80\xban\xc2\x07\xef\xfd{\xc0\x87\xfe1\xb0\xfb\x0a\xb8\xdf\xfc\x0cp\xef\x1b\x80\xdd\xbd\xa6}\xf0\xb5\xabp\x9fx\x08\xb8\xda\xcc\xa8\x08\xff\xf4\x03\xeb\xa8\x08h\xf9h|M\xe5\xde\xbfW\x00]\xf2\xf8y\x1f\x1b1\xf6\xef\x9c[\x9a\x08\xack'@)\x04\xe0\x05\x19\x05\x88'M\xf4\x95\xa9W\xe6\xbd:\xf7\x05\x00?\x0a\xe0\x16\xb29\x00\x07\x00\xae\xdf \x02\xc05\xe07\x9e\x07\xf0y\xe0\x1f\xbc\xabQ\x02\x06#\xa0\x1c\x03\xae\x9cI\xff\x15\x91\xfc;\xef\x7f\xff\x05\xe0\xa5\x0b\x0d1\x98\xcf\xe4\xe7\x09[R;I\x8dlq\xef\x1f\xca\xebs\x87\xbc\x1cwh\xc5L]\xa4\x9f\x9e\x11\x80/n\x03\xaf\xbc\xaf%\x00{\x0d\xf8o\xed6\xaf\x1b_'\xb3&\xae\x01\xff\xfb2\xf0\xe6\x96\x00\x5c|\xda\xf6\xa3\xd9\xa2M&\xc0\x85\x0b\x0d\xb8S\xf0\x1f\x0cf\xcf\x8dX\xa5@\x07\xfe\x1f\xfb}\xe0\x97\x7f\x0dx\xc5\xab\x80\xbd[f\xc0\xbf\xb7\xdb4\x09\xf2a6\x9f\xe2\xe5\xabp\x9f\xfcc\x84\xf7\xff\xe4\xba`S\xcciE\x04\xe09\x86\xd5\xc2s^Q\x08(\x19XY\x02\xe0\xba)\x00\x10v\x16\xf7\xd4\xa9\x87\xcb\xe3'\xb1\xb8\xb5\x87\xde\xa6Q\x03\xfc\xa5I\x80s_\x07\xf0f\x906~\x98)\xf4\xc3V\x09\xd8A\xa3\x00\xd4h:\xb2\x5c\x07\xfe\xc3\xff\x01~\xe9\xaf\xb4\x04`D\x08\xc0\xa4%\x00\x93\x96\x00\x5c\x02\xae^\x04\xae<\x0d\x5cy\x1a\xe1\xe2c\xdf\xc7\xe2p$\xc9;O\xd5\xf1\xc7\xa6N\x05Eep\xcag\xa4\xf6\xa15\x00:n{\xea\x9b\xcdn\xfe\xde}\xc0\xeb\xde\xd2\x9cW\x83A3_b0\x04\xca\xf6tq\xdb\xcd\xf3\xdb\xe7\x80\xaaM\x1e\xfc\xea>0\xfe,\xf0\xd4\xb7l?\x9a-^\xbc\x8f=\x06\xf7\xaew\xcd<\xfb\xce\xdb\x1f\x0c\x1a\xd0\xe7\x04\xa0\xae\x9b\x9c\x81O<\xd84\x97z\xcd\xdd\xc0k\xefi[S\x0f\x80\xe1\xa0\xb9?l\x97\x90b\x17\xd8\xd9\x02n\xbf\x03\x98Tp\x9f\xfa:\xc2\xcf\xbe\xe54~j.\xe0J\xaau\x07\xf4\x92\xdc\x1f\xd0d\xe0\xd0\xb0v\x1dqh\xfb:_\x1bC\x00B\x06\x10\xf1\x1d\x86\x88\x5c\x92JV;\xd66\xa2\xce=\x0a\xe0\x0d\x04\xfc\x87\xd0+\xe8:\xa7\xfd\x0e\x00w\x03\xd8\x07~\xe3\xf7\x80\x0f\xbd\x87\x10\x80\xc9L\xfa\x9f\xee7\xdbK\xe7g\xe0\x7f\xfe\xe1\xe7\xd1\x94\xf7\xf19\xd2A N.C\xe9\x88\x95\xb9\xc5:7j\xeaC\xce\xf17\x12p\x1c\x17\xd6\x13\x9f\x87\xfb\xbb\xbf\x03\xbc\xe2\x0dM\x9b\xe9\xc1\xb0U\x98Z\xf0\x1f\x08g\x87+\x007j\xde\xf3\xdc\xdf@x\xe2?\xd9\x8e4\x93\xcf\xaf?\xfa#\xb8w\xbe\xb3\xadHj\xb7\xb6\xc3\x1fvvf$ \x84\xc6\xf3\xff\xef\x0f\x02\xf7\xbe\x11x\xf5\xdd\xc0mw\xb6\x03\xa9\x18\xf8\x8f\x00\x14\xae9?\xbbveE\x09\xbc\xe6\xb5p\xbf\xfd(\xc2\xcf\xbf\xfd\xb4I@N[k\xaf<\xae\x15b@\x1f\x07\xe1\xefu&\xb6m\xbc\x02\xe0\xa0'Q \xe2\xed{E\x82Iy\x9d+\xf5B\x9d\xfb\x0c\x80{\xd14W\xef\xc0_\xe3:\x03\xcc\xf7\xe3\xd9\x9d\x91\x80\x8f}\x0ax\xef\x8f7M~:\xd0\xa7\x04\xe0\xe5g\x81\x97\x9eA8\xff\xf0%\x22-P\x05@:a\xfb*\x02\x1a\xb0C\x01\xf9\xa0\x90\x80\x5cE\xc0l\xd5\x17\xd3\xfb~\x0b\xb8\xebMM>\xc9p\xd8z\xfe\x83\x19\xf8\x97\x9c\x00\x0cf-\xa7\x07C\xe0\xb6\xbb\xe1\xde\xf7[\x08\xff\xeb\xc3\xb63\xcd\xe4\x85\xe2\xe1\x87g$`<\x9e\x81\x7fG\x04vw\x9b\xe7\x1f\xfc\xf2\x0c\xfcwo\x01\xda\xa6B\x181\xf0o\x07\x9b\xa2p-\x11h\xdbT\x17\x03\xe0\xf6\xdb\xe1~\xf33\x08\xbf\xf8W\xd7\x09\xaf\xa4\xf8=\x98\xa7_\x13\xe7\xb5{L\xb7\xd8\xf4@\x1f[\x9f\x8f\x12\xff_G\x02\x00\xc4\xbb%\x01\xacHN`NZ\x19\x9b\xc71\x9619\xf7?\x00\xbc\x1e\x8d\xb4?\x8a\xec\xda\x929\xe9\x15fT\xb7\x04\xf0J\x00\x17\x81\xe7\xbf\x01\x0c\xf7\x08\x01 \xdb\xc1%\x84\xf3\x0f\xbf\x04\xd2 \x18\xf3\x89\x92\xda<\x04(d 6\x8e9\xd5\xf8&\xa6(h$\x00\xb0n\x82\xc7\xbb2\xdd\xff\xeb\xc0:oB\x99\x00\x00 \x00IDAT\x1d?\x08\x0c\xb6[iV\x00\xff\x1b\x0a@\x01\xb8\xe1l\xd6\x84\xc3\xec={w\xc1\xdd\xff\xeb\x08\x9f\xfe\x87\xb6S\xcd\xe2$\xe0\xfa\xf5y\xe0\xef\xb6\xeb\xd7\x81\xddsM\xcc\x7f4j<\xfea\xd1\x90\x80\xadA3\x9fb\xd8.\x9bC4\x8f\x8bnF\x05Z\x02\x00\xe0\xdc\x0e\xb0\xb7\x03\xf7o\x7f\x1b\xe1#?\xbfNX\x05\xc8\xa5zZ\xa95\xf5\xe8)\x9eU\x98\x0f\x0b\xd4\x8c4h\x84`\xe3\x09\x80V\xab/%Q\x04\xcc\xc7\xbac\xf5\xebR\xd2\xa047`\x05vk\x0b\xfe\xdb\x09\xf0\x97~z\xb7\x1a\x0f\xda\xab\xe0\x1c\xf0\xfc\x17\x80\xe1\xb9&\xf1o\xba\xdf\xc4\xfe\xdb\xfa\xffp\xf1\xf1k\x98\x0dD\x0a\x84\x08x\xe8%\x8f\x9e\x01n!\x00\xb8S\xeeC!\x07.\xa2\xac\xe4\xb6\xc1\xb5\x5c\x80\xe3\xb0\xed;\x80\xe1\x0e\x01\xff\xe1\x0c\xf8;\xca\xe8Z\xf5\xa9\xa3\x8c\x03r\x14\x06C`\xb8\xd5l\xdbw\xd8\xfe4K\x93\x80\xb7\xbdm\x16\xff\xdf\xden\xc0\x7fk\xab\xe9\x19\xf0C\x7f\xa9\x9dv:\x9a\x81\xff\xb0h\xc6R\x0fZ\xe0/\xc9\xaa6(\x17\xeb\x92\xf6v\x81s{M\xb9\xe0\xe9\x01\xbd\x84[RXZ\x9a\xba\x1aK\xfeK\xf5i\x89\xf5\xc79\x13\x04@cU^\xd8\xa9\xdd\xce\xac\x98\xa4\xa2\x01\xff\x09t\xab\xdbk\xc1[S\xdfcj{\xd1^\x01\xdd\x98\xb6\x02\xe1\xff\xfd^\x0d \xb8\xd7\xbd}\x10.>:a'F\x09\xb9q\x04\x1f\x96\xc4YF\x0a\xc8\xb5\x19\x09\x1a\x11H%\xf99\xf4\xcb30\x12\xb0*\x1b\xee\xb4\xc9\xa4e\x03\xf4!\xcc\x96\x1e\x84\xf9Y\x00\xbc\x0a9\x84&\xff\xa4\xdc\x02\x06;\xcdg\x99\x99\xa5\x16\xf1\xc7\x1f\x9f_ \xde\xfev\x84G\x1fm\xee\xff\x93\x7f\xd5\xe6\xa1\x14\xb3\xe4\xd3\xbam<\x85\x8e\x8cv\xe7\xa4\x93\x9bU\x15\x83f8\xd5\xb9\x13\x9d\x1f\x90[Z\x0e\xc4K\xff\xb8W_c1\x0f@R\x07\x02\x16{\x03`U$`\x9d:\x01\xc6\xe6}K\x19\xffR\xe9\x04\xdf\xa9\x9a\x0a\x00\xc6\xae\x8ed\xce}\x84\xf0\x11D\xfe%\x12D1\xdc8,\xce\xfdL\x09\x00\xe1\xe2\xa3\x15\xf3\xda\x0b\xc1K\xa71\x84\x82\xc8\x09%{\x9e\xde:\xf6y\xfc\xbe\x8b\x90\x80\x1c\xf9\xbe\xef\xdf\x0c\xfcWd\xee\x87\xefod\xfdP\x03~\xda\xce\x99\xa0\xedZ\x83\xee\x7f\xdcxm\xd7\xb9\xcd\x01\xaeh>\xd3\xcc\xac\xcf\x82\xde\x81\xff;\x7f\xa6=\x1f\x03PWm\x0b\xe1\xbamr\xe6\xe5\x16\xd5\x0bC\xd0\xc2\xec~(\xe0>\xfc\x91S\xb9\xb4\x14\xbc\x02\xe4V\xeb<L\xdd\xdd\x9f\x12\xc0\xa0\xbf8E \xce\xf40 \x8d\x04\xf08H\x1d\x01\x22\xa9\x8e\x12\xc8\xab\x0c8\xc2\xb0\x93W\xb1\xaf\x95R\xb5\xa5\xe3\xdc\x9d\x0fS\x00\x93V\x09\x10\xe3\xe7\x85 \x059\x85\x89\xe6\x96\xb0h\x0d}R\x0a@\xec5\x01\xa77i\xf1\xe6\xb6\xed\xdb\xda!S\xd3\xd9\xf0(\x1f\x16\xa7\x00vV\x83\xcd\xa4h\x17\x5c\x1fpc`\xd5\xf6m\xb6_\xcd\x96T\xa3FM[\xe9\xaa\x1d\x1cT\xb5\xe0?\xf5\xc0 \x90\xd5\xc3\xcdOz\xe1\x03\xaa\xba\x81i\xde\x03w\xbe\xea\xa4\xbd\xff\x18VI!hO~I\xcdhM\xb7\xd8{\x05\xdf(\xce\xa9C\x84\x8e\x9a\x00\xb8.\x04@\x9b\x7f\x1c\xebI\xcfe\x94J\xd9\xb1A`V5\x16G\x0b\x1fq\xd2\xd9PQ\x85\x5c\x0f\xf0\xef\x80\x7f\x0a`\x8c\xa6aP2y/D\x80\xbf\xdb\x8f\x85\x22U9A\x0d\x0a\x11o_\xfb>H\xa8\x04f'm\xd5a\x03\xfe]\x13\xa9n\x92\xa4c\x87\x85\x9e%5\xf5\xfc\xbb\xc5\xb6j6?m>\xd3\xccl\x19;<hG\x953\xf0\x9f\x9bP\xd9.g4,u\xc3\xf3\xa7\x0a\x80o\xce\xc9\xc1\xf0\xb4\xc0?(\x8e*\xc5*\xa9\xbe_\xda\xa4\xa4?\x1e&\xf08\xc6\xd2\xf5u\xcb\x01\xd0\x00\x8d\xcb+\xb1\x1d\x0c\xc8\xb9\x02\xc3\xf6q\xd9>\xc7\xe3\xe8G(U{\xae\x05\xec)\xe2\xbd\x1a\xa4s\xa5&\x80\xbf\x8f\xa6C\xe0U\x00\x97S@\xca=l\xde\xbd\x8f\xe7\x0a\xf0\x06\x04)\x89+\xe79\x97\xf9\x9c\xd9I\xda\xd5\x8b\xc0\xe4Z\x93DZM\xda\x1amrN\xf2\xe0\x0e\xf7\xfc\xeb0k:5\xddo>\xeb\xeaE\xdb\xaffK\x9e\x8f\x97\x9b\xf9\x12\x07\xd7\x81\xed\x1d\xe0p\x0c\xecT\x0d\x09\x18\x86\xf9\xd1\xd4\xf4\x9c\xa4\xde\x7f7\xacj2\x06\x0e\xf6\x81\x17\x9e;m\x9c\x02\xe46\xbe\x92s\xea\x99\x02PE<\x7f\xde3`\xe5\xb5\xffkC\x00\x9cs!\x84\xe0\x04\xb0\xe7\xf2=M\xf8\x93T\x00\x9a(!%W\x00\x8b1\x7f\x89\xc9-\x95\x98\x16\xc2G\xe1\xdc\xc7\xd0$\x02\xee\x11\x91\x81n\x03\xc89!/\x03\xb8\x02\xe0\xa5\xf6\xb6\xd9Bx\xacoG\xbd\x12\xf1\x90\x00\x9f\x9e\x18\xcb\xdc\x0f\xc8\xcb\xf6\xef\xa3\x16\x18)8\xa9U\xea\xd9/\xc1\xfd\xf5\x8f\xb6I|\xedVn\xb5s&\x5cs[\x16M\x8du7o\xa2\xdb\xaa\x16\xfc\x0f/\x03\x87W\x9a\xdb\x83\xcb\x08\xcf~\xc9v\xac\xd9r\xe7\xe3\xd7\x1e\x83\xfb\xd9\x0f\x01/_i\xce\xb9\x92\x94\xa5\xd6\xd3\xa6\x07\xc0\xb0 \xdb\xa0Y\x1e'\xadR0\x09\xc0\xb4\x02^\xba<\x9bO\xf1\x9f?z\x1a\xe0\xaf\xe1GP<\xfc)\xe6c\xfcS\xc1\xfb\x9f`\x16\xfb\xe5\x98\x16\x14\xdcZY)\xe0\xba\xe6\x00\xf0\xe9u\x1e\xe9$\x0b\xaa\x0cH\xd9\x94>\xc2\xa4R\xcdk2\x80\xeb\x12!\x00\x1e\xf3yy#\x81\x00t\xc7\xfe\x1a\x01\xfe\x8e\x04D\xd9m,\x5c\xc1\x93\xf6B\xc2s\x8fu\xf5\xd3\xfe\x9fK\x00z\xea\xb1\xd9\x89\xc8\xae\x97\x09\xf0\x13\x02\xd0m\x83A\xd3m\xf2\xc6\xc0)?k;]O\x80\x83+\xcd\xbc\x89n\xe0\x94\x99\xd9Q\xec\xf9\xe7\x80\xd7]\x99\x07\xff\xc1\xa09\xd7\xe6\xc0\xbf\x9d)PS\x02P7!\x042\xa0\xea\x84<\xfd\xd4k\xa4\x0a5/\xe0T\xc5H\x01\x07{\xaahO#J\x00O\x86?s\x04\x80\xef\x5c/x\xfc^`L\x95@\x06\xa4f\x0a\x12\x11\xc8\xf1\xf63@\xec<!\x00\x81x\xfd#\x81\x00t\xe0\xcf\x09\xc0\xf3\x00\x9eA\x13\x02P\xbf\x834\x85/(\xfb0\x95\xa0\x97\xfa\x8dZY`\xee\xfe12pZ\xf6\xe2\x93\xad.\xd4\xa9\x00#B\x00F\xcdBL\x09\x00\x05\xffz<\x03\xfek\xcf\xcd>\xcb\xcclY\xbb~\x15x\xee\x99\x16uZ\xf0/\x07@5\x9ey\xfd7\x86\x0a\x8d\x1a%j\xea\x81I\xd5$\x10N\x08\x01\xf8\xfe\xf9\xd3tL\x03\xe2}\xff\xb9cJC\x00\x15S\x01\xa6\x98\x0f\x07He\x81+\xf7\xfa\xd7\x91\x00\xf0\x8cJ-\x17\xa0\xc2bV$\x07|ZZ\xc1\x99\x98\x87\x1e\x0a\xe8\xdb\x1f\x9f\xd9W\xda\xdd\xb9\xd7>\x9ekm\xd5\xdev_gB\xb6\xeb\xadzp\x11\xc0\x05\x00\xcf \x84/\x86\x04\x10\xc7\x806d*\x05\xcb(\x0c\xb9 \xde\x17\xf8\x8d\x18\xac\xfa\x82\xfa\xfa\xef\xc0\xbd\xe5\xe7\xdaL\x90QK\x04\xca\x19\xf0\xdf \x00n\x16\xf3\xaf\xc7\xb3\xc1S\x07\x97\x80+\xe7\x81K\xdfF\xf8\xfa\xef\xda\x0e5;\xda\xf9\xf8\xd5/\xc2\xfd\x85w\x03\xben\xf2M\x8a\xa29\x07\xebq\xa3\x08\x8c\x86\xf3\x04`\xda\xca\xfe\x93\xf1<\x01x\xfa\xdb\xc07\xbfr\xd2\xd8\xa4a\x15W\x01\xb8\x1a]1\xe0\xaf\x14\xf0\xa7\x7f\xe7*6\xef\x07pvr\x00\x005\x0f@\xeb\xa0$\xb5M\xac\x85\x9d\xcdK.x\xa3 \xfa\x7f\xb4\x98x\xbf\xb3$\xfc!\x9c\xfbkh$\xff7\xb7D`\x97(\x00C\xe6\xf9\x1f\xa2I\xfc\xbbz\x03\xf8\x81\x0b\x08\xe1s\xd9\xbbN9I]\xc6k:+\x14\xf2\xe32?3\xb6\xdf\x5c\xa6Te\xe0\x7fl$\xe0w\xe1\xee\xfb\xb9\xd9\x13\xc3\xddf\xeb\xa6M\x96\xc3V\x01\xe8&M\x8eg\xed\xa6_|\x12x\xf1\xdb\x08\xdf0\xf07[\xd1\xf9\xf8\xa5\xcf\xc2\xfd\xc4O\xb7\x09\xa7-\x11\xd8\xbb\xb5I\x0c\xdc\xda\x9e\x81\xffp\xd2\xf4\x09\x98\x8e\x1b\xe0?\xdco\x12\x08\xbf\xfbM\xe0[\x7f\x82\xf0\xe8\x1f\x9e4\xf8\xc7\xbc~\xbeq/\x9f\xc6\xf9)\xf8\xf3\xdb\x8a\xa9\x05Z\x93\x98\x9c5u\xe3\x14\x80\xd8N\xe7^{\xc5\x98\xd1\x14z\xc3\x85\xee`\x0c\xb1\x98\xa0\xe10\xdf7\xff\xc8@\x14\xc2\x1f\xc0\xb9\xbf\xd9~lG\x00\xf6\xc8v@\xb6}r{\x01\xc0\xb3\x08\xe1\xa1\xa5y\x14\xd2=\xfb\xb5\xd7\xf4M\xe2\xeb\xeb\xed/\xdb,\xc8l\x15\x17\xd37:\x12\x10f\x04\x80n\x80<o\xe2\xc5'\x0d\xfc\xcdV\x7f>>\xf69\xb8\xb7\xfdTS\x99\xe2=\xb0\xb3\x0bl\xed4\x1d\xfe\xb6w\x9am\xb4\x03\x1c^o@\xff\xc6\xb6\x0f|\xeb+\x08_\xf8\x83\xd3\xf2\xfc!\x90\x01)\x17\x8d\xe2\xceTP\x01\xa6\x84\x14\xd4\x0c\xec\x03\xf4\xd1\xc0g\x9e\x00H\x8d\x15\x82\x00\xfcTG\x9f\xa2i\xbe\xaf\xc5Q\xf8N\xf4\x11\x15@\x9ax\xc7\xbf_FE\xc0\x03p\xee~\x00w\x0a$`\xaa\x90\x80?\xe5\xe0\xef2O\xc6\xbe`Z\xf48\xd1c\xff#\x1c\x11\xc8\x0d\xf8O\x9c\x04\xfc\x9df\xb8\x94J\x00\xae\x93\x89\x93\xd7\x11\xbe\xf1?m\xc7\x99\x1d\xcf\xf9\xf8\xf8C\x0d\x09\xa8\xa6-\xe8w$\xa0\xdd\xca\xe1\x22\xf8_\xbd\x84\xf0\xf9\x07N\x03\xf4\xa5\x81?^\x01\xffJ\xd9h\x93\x17N\x0cx(@j\x03\xcc\xf3\xd8Vfk\xb3\x10\x87\x10h\xcd\x5c\x89Ys\xfcA\x0b\xf2\xdb\xed\xe3]4Sw\xf6\x00\x9c#\xe8z\x0bA\xdb[\xda\xbf\xed\xb4\xcf\xed\xb2\xcf\xd8\xc2l^o7\x82\x82\xb6\xc2\x95&\xe4\xf5\xde_\xce\xfd4S\x00@@\xff\x00]8 \x84/.sb\xe6v\xf9\xeb\xfb\xd9n\xc9\xd7\xf4%\x0fF\x02N\xd8\xdc\x9f\xfd\xc9v:`D\x01\xa8\x0e\x11\x9e\xf9c\xdbYf\xc7\x7f>\xbe\xf5/6\xe1\xa8\xd1\x88\x10\x80\xf6\x9c\xec\xc0\x7f\xff:\xc2\xe3\x9f;\x89\xaf\x13\x94\xc7A\x01d\x0e\xee]\x5c\xf7\x90yx\xd71k\xf0r\xbd\xdd\xae\xb5\xcf\xed\x93\xfb]3\x98\xee3\xa6\xed-\x0f)x\xac\xa8\x0b\xe0\xba)\x00\x92\xccA\x1b\xf7H\x03\x808\x9b\xea^\xd3\x1d\x94!y\x1d\x0f\x03\x94\xcc\xfb_\xf9\x84@\x1e\xcfo\x08\xc1\xb4\x05\xfd\xc7O\x82\xb0\xe5\x90\x04\xd7\xe3sV\xe1\xe9\xaf\x8a\xb8\x98\xf5=\x1f\x19\xb0\xbb{\xfer\xf3\xfc\x85\xcf\xdb\xce1;\xf9\xf3\xf1\xab3\xc7\xc7\xfd\xb9\xb75d`8Dx\xecs'\xfa5\x12\x18\xa4\xb5n\xe5\xf9hT\xda\x9f2\xaf\x9f\xb6x\x9d\xb2Mk\x15L\xc3\xd9\x1eg\xbc\x0a\x80\xee\xf8\x0e\x94%\xb9\x85\xbe\x866W\xa0rK\xd7H_\x9a\xbe$eW\xd2\xffW(\xdf\xe9X\x08\xc1\x0a\x80\xdfex\xe7\xb9$\xe08\x92\xf5\x96\xa9B0;\xa9\x0b\xce\x80\xdfl]\xce\xc5\xaf=~\xe2\xff2\xe3\xefR\xac?&\xfb\xd3\xa4\xbe\x09\xe6\xb3\xbe\xa5\xc4?\xfa|\xa5\xe0U\x9f\xef\xdc\xdb\xd6f\x1a \x934xI =\x00\x1ds\xa2\xa4 Vf1\x15v2W\x12\xb4\xd2\xc0M\xb0X\xc8bU\xef9\xcaP\x9fM\xda\x97ffff\xb9^?O\xf8\x93<\xffn\x1b\x0b\x8a@\x80\x9c<(U\x17\x1cK+\xe0b\x8dw\xbe\xd4\xfdoaP$\xdbq|\xc7O\x05v&\x91\x80X\x0f\x02@/\x07\xd9\x14sK\x00\xb9D\x10\xdc\x11\x08\x85\x91\x0033\xb3u\xc1\x97\x14\xf0\x07\x01x\xa5\x193\x15\x03~\x8aAc\xc8\xd9\xffT\x1d\x982U \x10\x5c\x12\xab\x00V\x15\xff\x07\xd63\x07\x80\x03\x08\x1d\xab\xc8\x0f\x02\x95\xfcyO\x00\xfaw\x9a\x0bP\xb6\xcf\xd3\xc4?\x9a\xfc\xc7A\xfe\xac\xc8\xd5\xabj\xc6\xe32\xf6M\xac\x8f\x80\x99\x99\x99\xd9i\xe1K\xecy\x0d\xfc\xa5\xfe3S\x05\xcc\xb9\xc7?VH\x01\xef\x0d\xc0\x15i/`\xe0\xcam\x1d\x15\x00^\x13I\x0f\xc0\x14\xf3\xcd\x168\xe8O\x049\x86\xfeMK\xb8\x88I-A9ynfi;GI\xe8\x1b\x960333;\x0d5 \xe6\xf1s\xf5\x99{\xfdS\x02\xf2\xb4\x1a`\x22l\x07\xc2g\xf0.\x80\xdc\xc9=\xd6\xb0\xf4Z\x11\x00&m\xf09\x00A\x00o)\xc6?\x11\x08B\xf7w\xce\xba\xa4\xb9\xcb\xb1x\x8b\xc9\xd8ffff\x9b\x01\xe8Z\xef\xfe\xd8\xdf\xa5x\xffT\xf1\xfey\xdc\x7f\xacx\xfc\x1dI\xa0\xc9\x7f5sj\xf9\xec\x00\x8eG\x12F\x1e\xd9\xd6y\x18\x10\x046TB\x8e\xfdw\xb7\x03,\xc6d\xbaI<\x93\xf6\xfd]I\xe0\x14\xb3\x9e\x03]W\xc0\xcec\xf5\xc8\xcb\xb0\xef\xbe\xa3y\xb9ffff\xa7\x8f\x19\xb9\xaf\x91\x14\xdeT\xfe\x19W\x96y\x92\x1f%\x00c\xb6U\x02I\xa0\x84\x82\x87\x1c\xa4\x16\xc0+\xb7b\x8d\x0ff,\x0b\xb3b\xcci\x029\x11\x90\xd6^rbPa1)P*\x11\x0c8\xa66\x8cfffff\xbd1\xe1\xa8\x04Ak\xf2\xc3{\xfa\xd7\x0a\xbe\xd0\xd8\xfe!\x03\xfaC\xf2\x1c}\xed!\xe6\x13\xd3\xa9* \x85\xa5\x17\x14\x8aU{\xffk\xa9\x00\x90\xe1@\xbcIO-\xec \x9a\xd47!\xf7\xbb\x9d<n\xbd\xfdI\xfb[K\xa2\x14\xd0\x0e\x80\x9d\xb2\xd0)\x005\xf1\xf8M\x050333[\x1f\xcf>\x1c\xe13\xb4P@\xaa\xdcO\x92\xfbil\x7f\xc2\x80\x9f\xde\xe7\xef\xe1\xeau-x\xfd\xfe$v\xee`\xcd\x0f>o\xd2\x13\x08\xf0\x0f\xc8m\x8d\xc5\x10\xc0\x98\xbcf\xc2\x88\x00%\x00%y\x1fM\x5c+\x12\x8cs\xa9Y\x01ffff7\x01h\xbb\xcc\xd7\xa5\xd6\xd4eI\xc2\xb2\xe0/%\xfdM\x05\x8f\xbe\x03~\x0e\xfe\x87\xec>\xaf\x04\xa0*\x02-%\xe4\xc3\xec\x8e\xad\xf6\x7f\xed\x09\x80s\xce\xb7\xb3\x01\xba\x83\xe3\x18+\xa3\xa5|\x14\xd4G\xcc\xdb\xa7\x8f'\x8c\x10\x94L\x05\xe0\xe0\xef\xc9\x09\x19\x0b\x95\x18\xe8\x9b\x99\x99\x99\xc9`\x9b3[d\x15\x9e=\x14\xa0\x07\x03}@\x97\xfe9\xf8\xf3X\xffX\x00{\x0a\xfa\x13A\x1d\xe8^\xc3\xc3\xd3\xf4\xf3y\xeb\xdf\x85\xef\x7f\x1c\xf2\xff&(\x00\xfc`\xd10@'\xffw\x09}C\xe2\xf5w`?&d\xa0#\x09C\xf2X\x03\x7fm\x10P!\x00\x7f\x80>%\xcf\x08\x82\x99\x99\xd9Y\x05yw\x0c\xaf\xcf!\x10\xdaZ\x9b\x0b\xfcZ\xb2\x1f\xef#\xc3c\xfeS\x02\xe8\x07\x0c\xfc\x0f\xd9s\xfbL\x01\xa0*\x80\xd4\xd0\x8e7\xa6;\xd6\xd8\xff\xa6\x10\x00>\xb2\x97\xc7I\xa8\xf4?%\x8a@A\x88\xc1\x84\x00?\x05}z+M\x04,\x04 \xa7'\xa3\xc7|\xf3\xa0\x94\x8ceD\xc0\xcc\xcc\xec\xac\x80\xff*=\xf6\x1c%Az\x8dC\xbck+\xc7\x10\x08^\xbf\xd6\x8e\x97f\xfb\xf3\x8c~J\x02\x0e\x08\xf8w\xc0\x7f\xc0^O?KjQO\xe5\xff\x13\x91\xfe7\x81\x00\xf0\x03\xd9\x91\x80\xee u\xe0]\x11\xd0\xa7\xe5~c\x02\xfc<\xf6Oo)\xe0\x17\x82\x02@\xc3\x00\x1a1\xc8\xfd=F\x02\xcc\xcc\xcc\xce\x02\xf8\xaf\xfasb\x13GC\xe2~\xcc\xe3\xe7$@\x02~)\xe6?!\xe0\xcf\xc7\xfdv\x80\xcf\x9f\x93\xe2\xfe\xdc\xfb\x97\xea\xfd\xd5Ft\xc7\xe9\xfd\xaf5\x01h\xab\x01\x80\xf9<\x00\xde\x0b\x80\x12\x81)!\x02]h`,x\xf8\x92\xc7O\xfb\x01H\x1d\xecJ\xe1d\xed\x08\x81gd!$d+#\x01fffg\x0d\xf8S\xe1\xcfT6?\xf5\xe8sc\xfb1\x02\x10\x03\x7f>)\xd6\x0b\x1e:\xed\xeb\xdf\x01\xf8>yL\xc3\x00\x07\x8c\x08p2 \x95\xa7W\x8cxh\x8d\x89nZ\x05\x80\x1f\xf8N\x01\xa8\x08\x19\xa8\x08!\xa0M\x15FD\x09\x18\xb4\x07\xc8\xb5\x8f\x0f\x04\xe0\x97\xa4\xff\x02\xba\xb4_\x12I\x89\x83\x7fJ\x1d\xd0B\x02F\x0e\xcc\xcc\xccN\x13\xdc\xb9\x03\xb3\x0a\xc9> /\xbb?\x07\xf4B\x82\x04\xc4\xb6\x98\xd7/u\x91\x95b\xff\x1d\xa0\x1f\xb4d`,\x10\x00\xde\x1b\x80\xce\x0b\xa0\x1b\x8d\xf9\xf3q\xf5'\xe2\xfdo\x0a\x01\xf0\x04\x94\xe9`\xa0\x0e\xb4\xa7\xe4~\xa7\x00\x1c\x12\xc0/\x89\x22p\x88y\xe9\xbf\x84\x9c\xf0\xd7\x9d\xb4C\xf6\xb7.\xcc@\xdfS(\x17Q\x8c\x04@\xb9\xd0l\x80\x8e\x99\x99\xd9\xaaA>\xb7\xbc.dz\xeb}\xd6\xee\x1c\xe2\x90\x93[ \x11\x04m\x8c;\x8f\xa5\xf3\xe6n\x1c\xf8\xb9\xe7?e\x9e\xfe\x84y\xf6\x07\x84\x08Po\xff\x00\xf3!\x00\xde2\x98\x93\x00\x1a\xfb\x9f\xfb\xad'\x01\xfekO\x00HS 0\x8f\x9b\xb6\x06\xe6=\x9bKe+\x08)(\xc8g9\x01\xd0\xa5\x84\xbf\xce\xf3\xe7@\x1f\xb08M\x90'\x07.3\x227'y\xd0T\x0333\xb3\xbe^y\xae\x22\xd0\xe75\x0e\xe9\x98|\x1f\xef\xdeez\xfc\xc0\xe2\xd8\x5cI\xf2\xa7\xe0\xef\x050\xe6\x8d~*\xc1\xa3\xd7n\x0f\x18A\x183\x02\xc1\x1b\x09i\x83\xe8\x8e\xbd\xf5\xef&*\x00\x1c\xe8x_\x00\xaa\x028\x85\x04t\x9e;-\x0b\xa4\x0a\x01/\x01\xd4.\xa0!yN\xcb\x0b\xe8\x0b\xd4.\xf3\x82s=$6\x08\x17\x92\xa9\x0aff\x9b\x0b\xe2\xa9x\xfa*\xfe\x87\xf6\x7fCdM\xe1\xcf9\xa4\x93\xf6\xa4\xcf\xe1\xa0\x1f\x145\x81\x03\xbf\xd6\xd0\x87\xaa\x00\xb4\xd6\x9eN\x96\xad\x08 \x8f\xa1\x0f\xf7\x91*\x00x\x09\xa0\xd4(H\xf2\xfay\xfe\xc1\x89\x96\xfdm\x1c\x01 \xc9\x80\x9ex\xe8\x81\x11\x00\x9a\x1b\xd0\x95\x02v\xf7\x07\x98\x8f\xf1\xd3\xdf\x5c\x08\x00\xa91MJ@\x06\xc4\xf3/\x04U!\x90\xc7\x1c\xa0\x97-\x13L\x01\xbd\xf6\x19!\xe33rr\x17Nb\xa1\xcb!2Fb\xccV\x05t7\xc3\xf7\xd7\xca\xe5\xa4k/w\xe4\xb9\x17\xbe\x93g\x9f\xa3y\xf0|M\xcd\xe9\xd4\xe70_\xc6\x07\xc8%s|\xaa+\x07[>\xdd\x8f\x92\x00\x9a\xa4\xd7\xdd?lo\x0f\xda\xdb},6\xf89$\xef\xe3D\xa0S\x12\xba\xfb4\x07AR)N\x14\xfc7I\x01\xe0'%W\x01\xa8|?!@\x7f\x88E\xe9\xdf1\x8f\x9d7\xff\xd1.\x82\xc0\xc0?\x10\x05\x81\xbe\x8e\x03?'\x04\x9a\x02\x90\x9b7\xb0J\x09\xafO\xb5BnKd\xed\xb59\xaf\xcb!2F\x02\xcc\xce\x1a\xb8\xe7\x12\x7f\xed\xba\xea\x93<\x97\xba\xf6\xf8\xeb5i?\x06\xe6ZF\x7fL\xd2\x07\x03{\xc9\xd3\x07\xe41\xb95s\x0a\x83\x00\xfe\xb4\xccO\xea\xf4G\xe3\xfe\xbcw?\xf7\xfc\xc7\x91\xbfW\xcc\xfb\x1f\xb3\xef \x8d\xfb\xf5\x9d\xb3{\xd2'\xd7`\xc3.\x04>\x1b\x80\x0e\xf0\xe9B\x01\xb4\xa6\x1f\xed\xc1\x00\xe6\xb3\xfd\xe9\x08`\x08\xde\xa5SNZ\x1ak\x02co\xbc\xac\x10\xd0G\x0c\xbb\xc8E\x9dsA\xbb\x13X8s\x13\x12S!\x8a\xbe\xaf\xebCt\x8c\x08\x18\xb8\xdf\x0c\xa4!%\xb7\x87#\x5c\xdb!\xe3o!A\x04B\xe29I)\x90\x1c,\x08\xeb\xab\xd4\xc8\x87\x83\xbe\xd6\xce\x97O\x90\xe5\xb5\xfeS\x01\xb0\x0f1\xdf\xfcG\x1a\xec\xc33\xfc\x0f\xb1\xd8\xe7\x9f~~G6\xd4\x98\xbfs\xce\x9f\xc6\x89\xb5\x11\x04\x80%\x03v'c\xcd@\xb8#\x03\x15\x01|Gn\x0f\xc9I&%\x01\x06AZ\xe2\x12\xd3\x90\xc9M\x03\xf6\x9a\x8e\x5c\x04\xe6\xf9\xf3$CN\x024\xc6\x9f\xa3\x04\xc4b\x83\xee\x04\x17\xcbp\x0a\x0b/\xf7\x8e,a\xf2\xe6\x06\xf7\x94\xdc\xbd\xee\x04@\x0bu\xa5\xba\xdd\xa5~S\x8e\xb7\xef\x94\xfb1R 9hP\xde/5v\x93H@\xcc\xd3\xf7\x8c\x00pO\xba\xc2bg?>j\x97\xc7\xfe\xa9\xd7\xaf\x85\x00\xa4\xc4\xbe\xb1\xf0^\xde\xf5O\xca=\xd0\x1a\xff\x9c\x8am\x8c\x02@r\x01\x80\xf9\xe9\x804\x17\xa0&\xe0~(\x000\x95\xfbcY\xa5<\xa6$emV-!\x18\x92\xefQ\x92[\x90\xc7Z\x95\x00%#\x14\xb4=\xf2c\xde9\xb9\x01)\xa2\x10#\x0c}\xbc\xed\xbeS\xc0\xdc\x11_\x93\xf2f\x90\xa1:\x18)\xd8\x0c\x80\xcf\x05w\xbfF\x04\xf5(\xfb,,\xf1\xdbs\xbc\xfb\x98<\xafy\xe5\xda:)=\xcfU\x03\x09\xe4|\xc4\xdb\xd7\xbc|0\xe0\x0f\xc2}\xde[\xbff^?\xed\xef_\x0b*\xc0\x98\x90\x83C\xa2\x08p\xb0\xa7c}\xe9\xfd\x89\xa04P\x22\xc0\xe3\xfe\xc0)\xc4\xfd7\x92\x00('\x9c\x17\x16r\x0a\xac\x159\xb8<\xcb_\x03_\xc7NF\xa9\xa6\xb4f\xc0\xdf=\xa6\x9d\x0a\x0bB@\xbc@D\xb4\xb2A\x17\xf1\x06r\xe4s\x87\xa3%\x0ci\x9f\x13S\x17R\xaf\xd3\xe2\x989Dd\x15\x9e\xfb2\xe1\x06\xb7$\x09:\x0b\x80\xed\x96\xdc\x97\xc7M\x14\xfa\xca\xdd\xa1'\x89H\xf5\x9d\xcf\xf1\xdac1{\xb7\x04\xa0\xf7%C)u \x06\xe4R\xe23\x07i\xfa\x5c\x10\x9e\x8f\x11\x09/\x90\x02\x8d\x04\xd0\xb5\x95z\xffR\xbc\xbf\x86\x5c\xe3\xef\x89\xa7OA\x996\xfc\xa1\x8f'X\xec\x00\xc8\xd5\x811\x01\xfe1\x01~^\xe2G\x89\x80\xd8\xe6\x17\x80?M\xf0\xdf8\x02 \x84\x02\xe8\x09\xc5\x13\x02c\x00%u\xefsX\xec\x14\x15\x04\x09\x87'qP\xd6\xc9\x87\x0dQ\xe0\xd7\xda\x0d\xf3M\x1a2\x14\x0b\x09\xf0v\xc4\xdab\xe5!O8\xec\xb3\xe8\x85#,\xea\xe1\x88\x0b\x7f\x9f\x859\xb5\x00/\xfb?S\xc4+\xf6\xdd\xc2\x12\xff_+\xadr+\x00\x91\x93\xf0\x82W=\xde\xb5\xcf\xb1\x09+<\x1f\xfb\xfe\x8e\xe38.\xcb\xc4\xf4S\x00\x0f\xa66\x86\x0ceT#\x01\x1c\xd0\xa5\x04>0/\x18\x90\xeb\xf7\xa1x\xf8b\xe6<\x16\xe5~^\xef?e\xe0\xcfC\x01\xbc\xfe\x9fz\xfa\x15\x16\xe5}\xfe\xde\x09\x16\x9b\x0bq5\x82\x874N%\xe6\x7f\x16\x14\x00(rR%(\x00]N@!x\xffR\xdd\xa9\x94\x9dY\x01\xd8\x22'\xda\x881\xcdA\xfb\x5cw\xe0;\x12@\xfb\x0f\x14\x11%\x80'\x0cr5BR8\x9c\xe0\xb1\xc5\xee;Ar[\xb6\xed'\xf7\x10V\x01\x02\xa9\xde\x06\xb9eL\xa9\xef\x17z,\xe0\xabX\xa0W5=-7\x06|\x9c\xd7\xdb*HG\xc8\xf4fs\x808 ]W\x9es\x1cB\xcfc\x88\x13\xde\xe7}\x94\x8cT\xd9\x1d\x07\xe6>@\xef#\xde\xbe\xd6\xc7^\xeb\xd4\xe7\x95\xd7\xf0\xcc~\xfa?kem\xee\x88A\x17\xff\x9fb1\xeb\x9e7\xfc\xe1C\x7fj\xe6\xcd\xd3p\x80\x94\xd0\xa7\xc5\xfa%\x12\x104\xf0?m\xef\x7f#\x09\x80\xa2\x02t\x00Z\x0b@\x99\x02\x8f \x9c\xe0\x92d\xc3\x0f\xf0\x16!\x04\xdd\xfc\x81\xae\xe50\xed?Pc\xb1\x02\x81\x83~\xc1<\x7f@\x9eH(\xddrE\xc3C\x0f\x19\x84\x9e2d\xaa\xfe\xde\xf7\x00\xcd\xb0\x04\xf9\x88-t.\xa2p\xf4%5\xab\x90fc\xc4k\x15 \x90\x22?1\xa5`\x95\xa4\xdb\xa3_%GJ\xaa\xd6\xc0<\x06\xde9\x13\xe1rn\x91xon\x89\x9d\xcb8gsU\x9c\x9c\xfd\xa5}W-\xb1N\xf3\xf0c\xde\xba\xd4K\xdfE<\xf6\x0e\xb4\xc1\xd6Q$>[\x22\x00ZC\x1f\x0a\xec\x01\x8bq\xfe\x8e\x00H\xf1\xff\x8a)\x00\x13,\x86\x04\xf8\x1c\x80\x94bP\x09\xff+\xe5\xf5\x9fX\x9f\xff3\xab\x00\x90\x84@\xc7\xe4\xa2\x92\x9d\x84\xf4\xc2\x9c*\x00AO.@\xee\x1b=m\x01\x9f\x1f\xe4a\xfb\xb7!Q\x03:\x15`\xc0\x1e\xf32AZ\xa1\xc0{\x12p\x02\x03\x85\xd8\x80]\x94Z\xc3!\x97\x00JM:\xe7\x09\x89\xb1\x85+d\xca\xf0\x1c\xf8S\x0bh@^|US\x034\xa0NeY\xf7\x01o\x87\xbcL\xe9\xe3\x90\xd1CD\xf9\xc8\x05\xebe<\xd1>\x19\xe8\xb9^v\xaa\x85l*\xb3\x1c\x09);\x97\x0c,\xab\xdc\xa4rx\xb4\xd7\xa4\x08G\xaa\xf4/7)/(\x0a\x80\x06\xf4\xb9\xd9\xf9\x92'\x0f\xe5\xfd\x1a\xe8K\x04\x80\xaf\xc3\x5c\x0d\xe0\xb2?\x8f\xbf\x07\xe6\xb9\xf3\xbe\xff4n\xcf\x13\x02=\x16s\x05h\x12\xa1\xc7b\xe2\xa1\x94,\x1e\xd6\x15\xfc79\x04\xa0\x9d\xf8u\x84M\xf3\x8b\xd0+\xdel\xac\x93\x14\x8d7MZ\xe0\xdfjo\x07\xed\xfd\x81\xa0\x04T\x98\xcf\x0d\xe8n+\x81\x148!$P@Nr\x94\x16\x12\x17!\x00\x1c\x18\xb4\xfd#\x01~\x1fY^\x22\x02^\x00~\xed\xf3C\xc4\x83\xd4\x16L\xd7C\xcaw\x19\x84%\x95\xcc\x98\x0b\x10\xae\xe7g\x1d%T\x90+k\xe7\xc8\xccH\x10\x8b\xd4\xe7\xf4\x95\xdds\x9a\xc6\xa4\xa4\xeb\x9c\xd2\xb2\x18i\xf2=\x09Nl\xb2'\x90_\x9d\x13\x22\xebU\xdf\xf8>2@>(k\x9e\xa4\x0a\xd4\x82\x87\x9f\xfa\xdc\x9c\xd7i@\x1f\x88\xc3F\x01\x9f\x93\x81\xee\xf1\x94\x81o\xc0\xe2\xb0\x1d\x9a\x108\xc1b# ~[1R@\xeb\xf8\xa7\x90\xab\xc3*!T\xc1\x09\xceZ\x81\xffF\x13\x00\x12\x0a\xa0's\xc1Xlw\xa2\x14\xe4@H\xd2\xb1\xd4N\xb2VN\xa4Q\xfb\xdc\x88=\xd7\x01}G\x06\xa6D\x05(YX\xa0\xdb\xef\xa5\xa0\x08\x80\x91\x81\x22\xa2\x06\xc4\x1a\x19\xc5\xf2\x09\x10\x01\xfd\x02\xf93\x04R\xd2\xa7\x13\xd4\x84\x1c\xa0\xcb\xf5ZS\xf2x\x91\xf9>\x97\x90\xf3\xfb\xfc\xdf\x14\xf8CPUrd\xf4e\xc9AJ\x9a^V\x81\xc8\x91\xf5\xfbJ\xf2>\xe2\xc9C\xf0<%Pq\x02\x98\x84\x84g\x1c\x0bqH^\xb7\xd6\x0b?\x15\x1eHI\xfc\xa9\x9c\x95\xa0\xa8r1\x22\xe4#\x12\xbc\x8f\x10\x01\xee\x0c\xa5\x88D\xac\xb4/\x08\xff\xa3\x16\xbe\x0b\xcd\xe7\xd2T\x00Z\x19P\x09\xcfS9\xde\x0bk\xf8\x84\xad\xe74\x14\xc0{\xf7\xd7\x0a\x0ex\xc5\xeb\xa7N\xe8\xc2~Z7\xf0\xdfx\x05@ \x01Aa\xf1S\x02\xca.r2\xf3r?\xe9$\xd8\x22Lr\x8b\x85\x01\xba\x84\xc0a\x0b>#B\x00xr`\x81xn@\xa1\x90\x01\x0e\xfcE\x04\x9c\x8aL\x12@\x09D\x95\x00\xce\xdc8w\x1f\x0f7\x96k\xc0\x09\x85\x16\xeb\x97z,\xd4\x09\xb0\xcf\x01\xf7\xd4\xe3e\x88\xc1q\xa8`)\xefqYI{\x19\xa5!\x15\x97\x0f\x99\x9ej\xcc{\xd4\x06\xc2\xa4f\xc2C!\x0d!#\xc4\x90\x02o*\x9d\x17\x98o<\xa6\xed\xabB \x85.c\xbf:\xccwFM\x91\x9c\x9c}\xe7\x85uT\xcb\xd8\xd7\x94\x02\xba~:\x85H\xf0\xcf\xac\x05r\xa0y\xfc\x9c\x00T\xc4\xeb\xaf\x15\x22P\x11\x0f^j\x0a$M\x08\x94\x9c@\x8f\xbc\xc6>\x0b\x83\x8b\xd6\x11\xfc\xcfB\x08\x80\x93\x00\xae\x02 \xc2\x90cL\x95\xb7\x92\xe4\x99\xa4\x13\x00;\xc4\xe3\xef\xe2\xfcC\x12\x1a\x18\x100\x1d\x92\xb0\x80\x83^%@\xf3\x02hN\x80\x04\xf81e\xc0EB\x01\x1a\xa09\x85\x14\x00\xe91\xc7!\x03\x80\x9c\xe2\xfd\xf6\x01+\xad\xfa\xc1EH@\x0a\xe8\xfb\x10\x82X\xceD,<\xb2lUANrY\xce\xfb\x96\xf1\xf2Sa\x84\x94\x17\xcaeu-\xc3<(\xe0\x12\x22\x1e\xac\x04\xfa\xb5\xf2:\x08\x123\xf7\xf6\xebD8\x22\xb6O\xa4\x1e\xf8\xb9\xc7\xa7\xcfu\x10\x93\xfec!\x12-{_J\xe2\xab\x22\x8e\x14o\xceC\x09\xb6\xcf\x08-h\x8e\x16\x05|^\xf3\xef\x05\xd0\xd5\xea\xfe\xe9\x9aM\xab\x01\xe8\xfd*B\x10\xa4pB\xad\x80\x7f\x80\x5c\x99 \xaaK\xeb\x0a\xfeg\x82\x00($\x00\x0a\x11\x90\x80\x91\xd7\xfbwe~C\xc2,GL\x22\x1a\x90\xe7;\xd0\xef\xee\x0f\x89\xf4?f\x8f\x0b\xa6\x04\x94B\x18`\xc0\x80\x9f\xab\x02<I\xb0\x10\x80OJ\x18\xe4\xca@\xe8A\x0eR\x1e\xbf\x06\xf8Z\xe7=\x9f\xb9\xc0I]\x115\x05\x22DHL\x0a\xc4\xb5|\x89\xb0\x04Y\xc8\x9d\x5cxTY\xbfO\xb6\x7f*\x113g\x90\x0b\x18\xc1\x8e\xc9\xeb\x10@(\xe6\x91J\x9e\xb9\x8f\x00\x86W\xc0?D\xc8A\x88H\xddZ\x12\x9c\x13@\xd5\x09\xfb\x22\xa6\x02\xd1\xffQ\xb0\xe7\x0b\xc8S\xf4r\x09q\xaa\xfd\xae\xf6{\x01\xbd\x0e\xbf\x16~\xaf\x96\xa8\x07\xc4\xfb\x00\x04\xe8\xf3S\x82\xf2\x99\x1c\xe0\xc1\x80\xb6\x22De\xcaB\x01R\xb5\x96\x14\xa3\xd7j\xf6%RQ\x0bDD\xca_\x10CJ\xeb\x0c\xfeg\x86\x00\x08$\x80_\x18\xfc\x82\x19\x08\x07q(\x1c\xe8\x8e\x10\xf00\xc0\x88HH]\x22 m\x0d\x5c\x12E`\xa8\x80\xfe@\x08\x01p2P\x08\x8a\x80c\x04!\x05\xf8E&\xd89a\xa1r\x11\x80\xcbU\x02|B\x02\xe5\xde\x8cc\xd2\xa9\x8fx\xb5\x1a\xe0\xc6T\x0e\xe9u\xd2\x04\xc7\x98Z\x10\xc81\x88\x957\xaeJ\x098\xcak\xfb\x12\x83\x1cI\xdf\x09\x12\xaf&=C\x01t-\xd3<\xa7,,\xf5:^\xd1\xe3\x98\xe7J?O\x1b5\x0b%L@G\x90{\x85P!\xe3\x1a\xd1\xc2\x07\x05\xfb\x9fZ\xe2\xa5\xf6}\xa1\x90\x1a\x15\xa4\x22@\x16\x0b\xc9\xf0\x9a\xfdBPRb$.0\xc7\x8b\xe7n\xf0c\xc8\x93\xfc\xa4pA%(\xb7\xd2\x9a\xee\x05\xef\x9e\x7f\xb6\x04\xf6Z\x89\xf8Fy\xfdg\x92\x000\x12@cc\xa9D1z\x22\x0e!'\x9f\xd4L\xee\x9f2\xaf\x7f\xca\x14\x80\x82\x10\x80\x01\xb9_\x92\xc7N \x04\x05\x16'\x16:,\x8e3.\x14\xa0\x97\x1a\x0cI _b\xbe\x12\xc0)\x0bT\xd1\x13`=\xf2*\x05B\xc4\xdb\xf1\x19\xde)\x12\x0b\xab\x16\x12\x90\x16\xe4BQO4\xc0.\x12\x0aAH\x90\x86\x1c\x8f=W\xfe\x8d\x95d:\xc8Ic\xa9\xa9n\xc8\x90\xf0!\xc8\xed\x1ah\xa42\xce\xb9\x97(y\xed\xdd\xc2\xec \xc7[\xa5\xde\xf0Z_\x0f(dB\x22\xa1>\xf2\x9b\xa5s\xde\x09j\x89V\x05B\xd7)\x89d\xd7\x021\x85\xe2\x99k\xc7\xa9 \xfb\x8dK\xfcZ\xb8 \xf6\x9b=#\x7f\x81\x81\xb7c^\xbb\x8b\x905`\xbe\x81\x0f?7j,\xb6_\x0f\x90\xcb\xech\x99 u\xd6\x02\xe6\xcb\x07\xb5X~\x85\xf9\x04\xc4\x109\xcf\xb4\xb0T\xa08\xb4)\x98y\xa6\x08\x80B\x02B\x04\xf4\xa5\x05a@\x1e\x8f\xd8I2\x22\xc0?\x22\x0a@G\x08\xba$@\x9a\xfdO\xcb\x02\x07\x84 \x14\xec5\x9c\x10@\x08\x07\x80\x11\x01i\xe3\x89\x82t\x11\xd2\xba\x0dj\xb3\x09\x90\x90\xcb%\xcf7&\xd9\xe7x\x96R\x0c9\xf6\xb9\xc8\x08S\xb8Hx@\x9a\xce\x98\x0a\x1fHRnJ\xe6\x87B\x12r\x93%S5\xe3N\xf0H\x97M\xe2Ky\xf3\xda\x90\x97\x98\xa7'\x01AL\xda\xd7\x00 \x08\x1e\x1a_\xe8\xa5\x1e\xf2\x92J\xc1\x1b\xb68eq\x97\x92\x04c$8D\xc8u\x80^\xbd\xa3\x1doJ&\xbc@\x14\xb8\x8a\xa0\x81\xba\xa4n8\x01\xe0\xb5\xfd\x11\x93\xfcy\xbe\x05M\xc4\x05\xe4$CI\x15\xaa\xd8~\xac\x04\xb5@\x92\xfd\xa5\xf8\xbc\x94\xa1\xef\x95\xc7\x92r\x14\xab\x96\xd88\xb9\xff\xa6 \x00\x11%\x80/\xd6\xf4\xe0\x95\xec\xc4\x19\x10\x16\xb9E\xc2\x06\xf4oS\xe2\xf1\xd3$\xc0)\x0b\x01td`\x02\xbd\x22\x80\x13\x80\x82\x01=o\x22\xc4\xf3\x00J&Kk\x09\x82Z\xb2\xa0$\xf9\xe7\x00\x1f\xa0\xc7Ac\x8b\x99\x04d\xb11\xa4\x1aPI\x84!\x95\x13\xa0\xc9\xfa\x80\xdel\x09\x91\xe7sJ$c%bRH\x05\x89\xd7\xe7v\xd9\x0b\x11\x0f2\xe6\xd5K9\x001\x99\xdf\x09\x1ew\x8a\x04\xf8\x88\xb4\x0a\xe8\xed_\xa7\x0cD*\xf6\xdd*\xf6]*a!\xaf\x11\xaf]w\x11U@:\xdf\xeaH\xb8\xac`\xef\xe5\xaa\x1a\xaf\x02\x90f{@\xf8\x9b\xa6J\xb8\x94<-x\xdc\xd2\xe7yF,sf\x07x\xc8}\x15\xa4}\x1d\x14\x82&\x95\x0b\x06!,PGB\x05ZV\xbe\xa4$\x84\x08\xf0\x03z\x82\xe3F\x03\xffQb\x92\x1be-\x11\xd0b\xe7\x05\x03aI\x92\x1f\x09\x1e|\xd9>\xcfK\xfdF\x98\x8f\xf9\x0f\xb1\xd8\x14\x88V\x02t\xc0?\xc4b\x93 \xa9T\xd0E\xc2\x00\x85\xf27 \xdeG@\x8ae\x17\x09pL\x81\x97K\x80\x94\xb4\xc0\xc5\xe2\x98\x1a\x99K5)*\x10O\x5c\x8c\xb5X\x8e\xa9\x01NX\xc0\xb5fL^\x09\xa5\xa4\xa6=\xe6\x90*m\xff\x87\x84\xcc\xef\x14)Xzo\x10\xa4\x5c\x07=\x89\x8f/\xa4\x10\xbcwm\xc1\xad\xa1gW{\xc1+\xe4\xfd\xd69\xf1\x980\xd9Z\xcbZ\x97T\x04\xado\x05\xad\x1a(\x145\x87\x8e\x04\x07\xe2\x83\xba\xb4\x04^\xad#a!x\xd4\xbc#j!x\xe9\xf4\xff\xd6\x82r\xa4\x95\x18\xd6BX\x82\x7f\xa6T\x1eXc1\xd1\x91\x9f\x13\x1a\xe8K\x09vR.\x03W\x03b\xe1\x9f\x9c\xcf\x8e\x11]\xb1I\xd4&\x83\xff\x99U\x00\x045\x00J|LR\x00\xb8\x12\xd0\xfd\xbdk5\xdc\xe5\x02\xf0\xd6\xbf\x9d\x12Pb1\xf1\x8f\x12\x07\x9e\x00(\x11\x10G\x1ek _*\xc0\x1f\xa0O\x1d\x04\xe4\xb1\xc8\x0e\xf1\x92B\x0dX\x01\xbd\x16?%Yk^j\xcc\x83@\xe4=`\x04\xc6#\x9d\xfc\x07A\xd9\x88\xcd\x92\xa0\xbf\xbb\x84\x9ew\x00\xe8\xb9\x0a\xb1\x90\x85\x96e\x1ek\x05\x9b\x1a\x0a\x03E\xca\x86\xe0\xb9;E\xc6\x0dX\xec\xf3\x1e\x93u9\xc8H\x92*\x8f\xed\xd7\x82\xac\x0b,&iy,&\x84q\xc5@[\xf8\xb5\x84\xb8\x1azo\xfbB9\xdf\xe8\xf1\xac\x04U\x0e\xc29\xc6\x13m9\x80\x97\xd0\xfb\x0f\xf0\x1e\x03\x9e]\x8f\xb5@T<Y\x0f\xb4J\x00'\x90\x7f\x0e\x86\xfd\x1a\xd6\xa5\x00\x00\x0a\xdfIDAT\x85p|\x1d\xf4\xc9\x81\xa9\xa4P\x1er\x90J\x00\x9d\xe0\xa1{\x81`h`\xee\x22D\x92+>\xdaw\x15\x89\xf4\xa6\x83\xfeME\x00\xc8\x01\x0b!\x84B\xf0$!\x9c\xbc\x03r\xd2s\xa0\xf7da\x18\x92\xd7\xf2$\xbf\xa1\x00\xf6\xbc\x1c\x90\xdeRB u\x08\xd4\x80\x1f\xd0\x1b\x07\x95\x82G\xcf\x17\xa8R\x91\xf9\xb9|Y`1\x86)y0\xa9p\x8bV\x9e\x19\x22\xf2&\xf7\xca\x5c\xa6\x14\x9b\xd3\x1b \x96\xe8\xa7\xc9\xb5\x1aqH%$\xfaD\x98\xc5\x0b\xf7\xc1\xbe\x8b\xa4\x0cx\xc4'4\xa6j\xf3c\x1e/_$\xb5\xa4\xafXV7\x04)\x9e/\xec1i\xb6\x93\xfe\xb9J@\x09BG$\xa6\xc2\xff\xa9\xa0'\x1bj`\xc0\x93\xfdj\xe1\x1c\xe2\x12\xbeTA\xe3\x88\x03\x91R\x5c\xe9\xb1\x1c\x0a\xd7A\x81\xf9\x8a\x86B!\xc21\x05I\x9b%\x10\x0b'\xc5d\xffB8oy\x83\x22\xe9\x1c\x92\xaeo\x09\xd8\xb5\xea\x83T\xe5B-|.\x94\xe3\x9fj;}\xe6\x80\xff\xa6\x09\x01$B\x02\xbc\xc1\x8eV\x927`\xb2}\x09\xbd\xb6\x9f7\xfd\x19b1\xde\xaf\xf5\x01\x90\xe6\x05\xd0P\x05\x14b@\xc1\x5c\xfa]\xdaov\x02\x88I\xe1\x00\xa9LN\xf3\x86\xb4\x18&\x94\xc5%'\x04\xc0\x17(\xaf\xfc]\x93\xbc\x81\xc5\xca\x07@\x8f\xc9\xf2\xdf\xc5\xc9\x8f\xf4\x19\xa9\xc6IA\xf1\x10\x9d@\xac\x82\xa2\x08hj\x8b\x8f,\xdcE\x82\x04\x00z\xbc\x17X\xcc\xe6\x96\x8e\x8d\x96\xd4%-\xc8\xb5\x22\xdfr\xef\xac\x82\x5c\xe6\xc5\x9bu\x15\x8c\x1c\xd4\x11\xb9W\x92\x85\xc1\x00<\x06\xa6\x9a\xfaB=\xf8Z!{EDQs\x99!\xb5\x82I\xfc\x1e\x8b\xd5\x04^\x09U\xf9\x08)D\xe4\xbbA \xf5!\xa2\x00\x15\xd0\xe74x\xa4\x07\x17\xd5\xca{\x81xO\x08Ma\x88y\xf7\xc9\x90\xd9Y\x04\xfd\x9b\x9a\x00\x08$@\xf2\x9ay~\x80\x13\x00\x9b\xcb\xf9\xf4y\x9a\x03P\x08\xef\xe5\xaa\x00'\x1f\xc0bi\xa0DT\x9c\x22\xf7\x97\x02\xc8s\x8fD\x92\x1e%\xf9\xbfP<\x08\xa7\x80\x9aS.n\xe9\x9c\xd3\x18\xbe\x8b,@\x10$f \xde\xd3=\xe6q\x17H\xd7\xff\x17\x0aX\x07\xe5\xefR\x95\x80\x04\xd4\xfc\xf3<\xe4\xbc\x06\x07y\xf42/#\xf3\x82\xc7\x18\xeb\xbf/\xc5\x87\x83 \xfd;\xcc\xd7z{\xa6\xbap\xf0v\xd0\x93\xb7\xa4P\x81\x14\xe7\xf5\x8c\x04\xd4B\xa8\x816\x84\x99\x92\xef\xc7\x95\x05\x08d\xc0)`\x93\x02})\x1cD\xc3\x88\x92b\xe3\x052\xce\x89\xa3\x17H]!\x1c\x17\xa9\xa1\x17 \xe7\x848\x05\xb4\xa1\x1co\x89\x80\xfb\xc8\xb5\x0b\xe53=\xfb]^\x09\x19H\xd5\x02\xdc[\xd7\xfaE\xc4B\x85\xda\x5c\x02D\xbe\xf3\xc6'\xf4\x19\x01\xe8O\x02\x00\xbd\x94N\xaa\xbd\x97\x92\xf4\xa4\x1e\xff\x85\x02\xfe%\x03\xf8!\x03\xf5\x01\xf3\xfc\x81\xf9\xbc\x80X\x18@k\x10\x14\x9b.\xe8 \xd7\xc1\x07\xa6(H`\x19\x03\xd6\xd8\x02\xa1\x95\xfci\xb1\xcfXs\x16\xafH\xb4\xd2\x02\xe1\x12$\xa6\xab\x99.\x91W= -\xb0\x05\xf2&\x10J\xcd\x8e\xb4\x85\xc9)\xe1\x81\x02r\xfc\xdeE\xf6eL\xfa\xe4\xff\x83'qIa\x02\xa9\xd3\x1b\xf7\xf0i|_\x22\x01\x81\x85\x08\xb8\xbc_\xb3\xbfK\x09\x85T\xea\xe7\xaaB\x8dx\x07B\x1fQN\xb4\x90\x09\x97\xbdS\xad\xa6CBE\x8b\xf5\x94\x08\x0a\x11\xe0\x04\xcf!\xbf/D,W\xc7'\xfe\x1e#\xdd\xb1\xdc\x9cXUBLY\x92H\x7f\xee\xc8c-\x1crSx\xf7F\x00VC\x04xO~)+\x7f\x90\x90\xf1)!p\x88\x97\xfa\x95JHBS\x00\xa0<.\x95\xdfU\x08\xdem\xa1\x00\x13\x04\xf2\xc0\x173.\xa3\x17\x02\xf0\xd4\x91\x10\x80Tw\xac\xc5*\xa5\x19\xe4\x80\xdc3@\xf2Hb!\x09\x9a\xf1\x0c\xc4\x9b\x1e9A^\x97B\x02\x12i( W\x06\xd4L\x89\xd1<\xf6\x987\x07\x85\xd4h#\x97\xa9g\xef\x95\xfd\xaa\x11\xb9\x9c.o9\x9d\xfd\xa0H\xf5\x15\x16\xe7\xc0\xf3zo\xa9S[\x10<O\xa9\xde_*\xf3*\x94P\x07=\xde\xfc\xbc,\x142U$H\xb2FL\xa5sOS\xb3bs\x05\x82BB4\xc5G\x22\xcc\xb1~\x12.\x03\xfcC\xc4\xf3G\x84\x98!\xa2\x22\xa6\xe2\xf6\x06\xf8F\x00\x96&\x01\x80\xdeTG\x8a\xc5\x97X\x8c\xc5\x0f\x04\xa2P@\x8e\xe9\x97\x8aG/\xd5\xfcSo\x9c\x8e\x13\x96\xc0\xbc\xbb\xd0Kr\x7f\x80\xc5\x18\xb6\x96\x07\xc0\x17\xbb\x02r\x02\x14\x07\xb7Rx\xbe\xc6b\x92^\x88\x84\x0a8a\x88\xf5\x02\x90\x12\x03\xb5\x99\xef\xb1Xy\xac\xb2\x81\x93\x03\x1ej\xd1\x1a\xe1\x94\xca\xfe\xac\xd9yV3\x12\xc2\xbd\xf1\x82\xedG\xa9\xfc\xaa\x14<\xf9\xd8\xc2\xae5\xca\xe2\xe0\xe0\x132k\x01y\x84\xab\x13\xf6G\x88\x00~N\x89V\x1dQ\x10*\xa4\xfb\xffKI\x80P\xa4\xf7\x18\xd0i\xbd\xfec=(\x80x\xb9h\x8apJ\xad\xb5cd@#\x83!rm\xf0\xfbZ/\x02~\xbdH\xef\xd1\x86G!\x01\xee\x9a\x1a\x10\x0d;8\xe7\xbc\xa1\x98\x11\x80U\xab\x01\x80\x5c/\xcf\xc3\x04\xa9\xde\xfd\xa5B\x06\xb4\xda\xfd\x92\x81=\x97\xfd\xbbn\x85N\x90\x9e\xe9\xdf\xf9\xf7\x86 7\x0e g-K\x0b\x8b\x83\x5c\xcf\xae\xb5:\x85 aJ\x17wJ\xc2\xe7\x9eE\xa5\xbc\x8e/\xe4Z\x1d2\x14\xd5@Z\xd0y&\xb3\x94\x1cH\x17\xaeR\xf8?1i\xdeE\xf6\x99\x048\x92\xec\xec\x15\x90\x01\xe4\x1c\x01\x9e? -\xf4^Q\x05\xb4\xe4\xc1\x9a\xfdF\xa9\xd4\x8e\x03\xb9V\xee'\xb5]\x0d\x99$A\x1bV#\xb5#\x06\xe2\xfd\xf5\xa552\x15\xfe\xd2\x8e\x83D\x104u\x08\x89s'6\xb5s\x99\xf5=$\xd49~\xde\xe5|\x9eKx\xe3\xb1I\xad@^\xabj\xf3\xe8\x8d\x00\x9c(\x11H\xf5\xdd\xe7ew\x5c\x96\x8f\x0d\xfa\x91j\xfc\x83\xa0\x10\xd0\xff=`\x9e7\x14\xd0/\xa0'\xba\x15\x82\x02@\xdf\xc7\x13\x80x\x9dr\xa9\xc8}\x12h\x15\x90;\x90\xf1\xc7Z\xfd\xbfV~$\xc5\x11S\xc0\xc5\xffg\x01\xbd\xb6^J\xd0+1\x9f\x8d\xcd\x93\xf5\xa4\xe4+@\xae+\xe7\xb7\xb4f\xbbP\x80A\xaa\x0f\x97T\x17\xa9\x19\x12\x8f\xeb\x97\xca\xe2\xcb\xe5pJ\xaa\xf8\xef\xd4\xe2\xba\x9e\x85Ux#\x1e`q\xf2\x9b\xd6\x22V\xab\xedw\x903\xfd\xa5PFHx\x9f7\x12\xc1\x98*\x98Z/\xdd\x11\xd6\x5c\x97A\x14\x8a\x0c\xd0\xcd=G$2*\x11\x93X\xd9\xa9F\x0aR\x13*\x03\xf2\xa6\x1c\xc2d|#\x00\xeb\x16\x16\x90\x00\x12\x0a\x11\xd0\x14\x03@\x9e\xee\xa7\xddw\x91\xd7\xf3\x9a\xe3\x12\x8be|\x5c\xba/#\x1e\x06\x05\x0c\x09x\x02\xe2U\x01ZF\xb2\xe6\xdd\x16\xcc{\x8c\x01v@<\xae\x0f\xc4K\x04%P\x97\xc8E\x19! \x0ez\xa3\x22m\xd6\x82V\x91\xa0\x11\x05\xaf,\xc0\xb1$FD\x00\xbe\x88\x5c\xf3\xb1&J\x01\xe9\xd9\x00\xb1\xc6NR-7\xdf\xd7uDI\x88\xf5\x8c\xe7D\x02\x89\xff\xa3I\xcb7\xee/\x0b*\x0aI8\xca\xfa\x1b\x14\x15\xae\xef\xda\x1d\xeb\x07\xa1\xe5\xc2\xe4\x94\xed\xe6(\x09\xae\x87\xc2\x90\xdeA\x06\xf8F\x00\xd6\x94\x0chcw\x0bE%\xd0\x88\x02/\xf1\x03\x03\xebB\x00o\xde\xf5O\xf3\xf4\xb5\x0e\x7f\xb1\xe1?\xdal\x00\x08\x9e\xbc\x83\x9e\x00\xe7\xa1\xb7\xe8\xcd\xa9\xf9\x07\xe4\xbe\xf4\x92\x8a\xe0#*\x01\xfd\x9c\x1az.\x00\x9fdV ^\x8a\x07,&\x02JmR%/\xae\xcf\x04?\x8d\xf0hR3\x1f\x1c\x13\x9b\x84\xa8%\x8eI\xe4\x82\xe7Y8\xe8Cf\xf8\xf1\xf4\x11P\xf6\x90\x13\xf2\xb4\x1e\xf3\xb1I\x83H\x9c_k\x0d,\x99\x84\xa2\xcf\x9a}\xe2\xbf\xd1\x00\xdb\x08\xc0\xcdB\x04\xf8\xa2\xae\x81l\x11Q\x0e\x90\xf0\xec\xa5L\xfe\x10y\xaf\xf4=8a\xd0\xc0?6,($\xee\x87\x1e\x00\xa7%\xf9i@\x0c\xc8\x9d\x04%\xaf?\x96\xd0\x05\x05\xf8\xa9G)yKZ\xe7A\xa9\xce\xbe\xd0\xbc\xcc\x0c\x09U\x93G%yX\x1b\x0f\xab\xcd\x17p\x903\xc2\xf9w, \x97\x97\xe5\x96g:\xc4\xc7\x00k5\xdd\x80^\xe3]\x0b\xc7.\x96(\xa6\x1eg\x03'33#\x00\xc7E\x06\xa4A2H\x00s\x11!\x12Z\xc9\x1e\x14\x8f]+\xdf\xf3\xd0\x1b\x02I\xc7\xbfT\x80]\x02\x07`\xb1^Z*)\xe4\x0b\xb3\x06\xe8\x1cl%\x99?(\xa0\xac\xf5\xcb\xd7\x92\xefbC\x868\xb0j\x1e\xb8\x06>\x1aHkJ\x81\xd6\x1f (\xca\x8b\x16\xab\xd5\x88\x5clh\x91\x96\xbf\x10\x94\xcfH\xb5P\xf5\x90C>\x9a$\x1f\xcb\xca\xcf\x89\xdb\xab\xde\xae\x01\xbe\x99\x99\x11\x80\x93&\x04\xa9Y\xf4\xda\xe0\x99B9.\xd2b-\xe5\x00\xf0\xd2\xb3\x80\xf8D@\xfe]R\xef\xd3<Q\x89\x84p\x90\x95\xea\xeb%o=V;\xacy\xd6\x01\xf1\x89\x83\xb1V\xc3\xb9\x80/\x95A9\xc5\x1b\x95\x14\x10\x97\xf1\xdd\xa5\x84>\xaddR\xaa\xe7\x96f9H\xa5i\xb1)\x86H(3Z\x8bbd\x80t\xac\xe6;'n?\xf7\x9d\x0c\xdc\xcd\xcc\x8c\x00l\x9aJ\xa0)\x01\xd2}\xe95\x05\xf4\xe16\xdc\xdb\x97\x88\x02\x04o\x1e\x90e|\xad\xdcH\x0a\x13\xc4\xca\x90R-i\x11\x01\x5cM\x15(\x90\x9el\x96\x02s\x08\x00-y\xaf9\xc9T\xa9\xb6\xb1\x80,\xf9k\x00\x0b\xe89\x04!B\xce\x1c\xd2Ic\x121(4/:\xf2\x9b\x11\xf9\xfdP\xc8AH\x10\xb9\x85\xef`@off\x04\xe0,\x12\x82>\xf5\xc49\xef\xd1\xc6\xd8\xe6L\xa9\x83\x002\xb1\x0c\xf2\x9c\xd6\xbfN!\x03Z\x82\x9f\x96\xf0&5f\x09\x11 \xd6\xd4\x83\x9c\xd8{\x11yo\xac\xa2\x00\x112\x94*}\x8a5W\x92\x9e\x8f\x9d\x03\xb1&3\x1a\xc1\x90T\x07 \xdeBX;\x061\xa0O\x95y\xdd\x94\xbd\xd8\xcd\xcc\x8c\x00\x181\xc8)\xf5\x89\xbd&U[\x5cD\xde\xd7\xd7{\x8c\x85\x0dR\x0dIb\x1ev\x0c$5\x0f\x1b\x8a\xb7\xe9\x12\x00\x8e\x847\x9e[\xd2t\x22\xa5O\x99\xe7G.Q\x8c}\xef\xbe%bV\xd3mff\x04\xc0\xec\x84\x08\xc12\x8b\xffqy\x8f\xb1\x9e\xe8G\xf5\xb0\x91\xf00c\x04\xa17\xe0\xc6\x0e\xc52\x80\xbd\xe6\xe7\xcdq\x5c\xf7V\xd3mff\x04\xc0lC\xd5\x85\xa3z\x8f\xcbz\x8e\xb9\x1ev\x16\xe0\x18\xc0\x98\x99\x99\x99\x19\x010\xdb\x0c\xef\xd1<G3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333\xb3\x9e\xf6\xff\x01u\xb6,S\xf9\xcd78\x00\x00\x00\x00IEND\xaeB`\x82" qt_resource_name = b"\x00\x0e\x085\xb9\x95\x00z\x00i\x00n\x00c\x00d\x00a\x00t\x00a\x00s\x00o\x00u\x00r\x00c\x00e\x00\x06\x07\x03}\xc3\x00i\x00m\x00a\x00g\x00e\x00s\x00\x12\x0f4\x99\x87\x00z\x00i\x00n\x00c\x00_\x00d\x00a\x00t\x00a\x00_\x00i\x00c\x00o\x00n\x00.\x00p\x00n\x00g" qt_resource_struct = b"\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x22\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\x00\x00\x004\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
18,860
4b1d4cd34cc5d244afe23092926222ef223f32fb
from pytorch_helper.settings.options import TaskMode from pytorch_helper.settings.spaces import Spaces from pytorch_helper.task import Batch from tasks.bevnet import BEVNetTask @Spaces.register(Spaces.NAME.TASK, 'IV2BEVTask') class IV2BEVTask(BEVNetTask): def __init__(self, task_option): task_option.task_mode = TaskMode.TEST super(IV2BEVTask, self).__init__(task_option) self.cc_oracle = task_option.test_option.cc_oracle self.pose_oracle = task_option.test_option.pose_oracle self.iv_map = task_option.test_option.iv_map self.plane_height = 1.75 if self.iv_map == 'feet_map': self.plane_height = 0. self.map_scale = self.loss_fn.map_loss_fn.magnitude_scale def model_forward_backward( self, batch: Batch, backward=False ): image = batch.gt['image'] fu, fv = batch.gt['camera_fu'], batch.gt['camera_fv'] pred = self.model.forward(image, fu, fv) if self.pose_oracle: h_cam = batch.gt['camera_height'] p_cam = batch.gt['camera_angle'] else: h_cam = pred['camera_height'] p_cam = pred['camera_angle'] if self.cc_oracle: input_map = batch.gt[self.iv_map] * self.map_scale else: input_map = pred[self.iv_map] bevmap, bev_scale, bev_center = self.unwrapped_model.bev_transform( input_map, self.plane_height, h_cam, p_cam, fu, fv ) roi = self.unwrapped_model.bev_transform.get_iv_roi( bevmap.size(), h_cam, p_cam, fu, fv, filled=True ) bs = input_map.size(0) s_iv = (input_map * roi.float()).view(bs, -1).sum(-1) s_bev = bevmap.view(bs, -1).sum(-1) + 1e-16 bevmap *= (s_iv / s_bev).view(bs, 1, 1, 1) pred = dict( bev_map=bevmap, camera_height=h_cam, camera_angle=p_cam, bev_scale=bev_scale, bev_center=bev_center ) pred[self.iv_map] = input_map loss = self.sync_value(self.loss_fn.forward(pred, batch.gt)) batch.pred = pred batch.loss = self.sync_value(loss) batch.size = image.size(0) return batch
18,861
19c754e5a429c606c742286d2228974f8b60fd67
motorcycles = ['honda', 'yamaha', 'suzuki'] print(motorcycles) motorcycles[0] = 'ducati' print(motorcycles) motorcycles.append('triumph') print(motorcycles) motorcycles.insert(1, 'harley davidson') print(motorcycles) del motorcycles[0] print(motorcycles) popped_motorcycle = motorcycles.pop() print(popped_motorcycle) print(motorcycles) first_motorcycle = motorcycles.pop(0) print('The first motorcycle that I owned was a ' + first_motorcycle.title() + '.') motorcycles.remove('yamaha') print(motorcycles)
18,862
c1599649725deb539139cda951facea20f8ceaed
import argparse from collections import defaultdict import operator import sys parser=argparse.ArgumentParser() parser.add_argument('-i','--input',type=argparse.FileType('rU'),nargs='+',help='list of replicates read count files to merge') parser.add_argument('-o','--output',type=argparse.FileType('w'),help='combined read count file for DeSEQ1 input file') parser.add_argument('-d','--deseq',action='store_true',help='if you want just seperate read count file for DESEQ2') parser.add_argument('-p','--prefix',type=str, help='output file prefix or suffix to output file name') parser.add_argument('-x','--exclude_intergenic',action='store_true',help='do not include int regions') args=parser.parse_args() all_isols2isol2read_counts = defaultdict(dict) all_regions = [] files = [] file_count = 0 for f in args.input: gene2count = [] file_name = str(f).split(' ') isol_name = file_name[2].split('.') try: final_isol_name = isol_name[0][1:] print final_isol_name except IndexError: print 'Do your input files contain a "_" seperating the name from the replicate? or are the replicate names unique?' sys.exit() files.append(final_isol_name) file_count += 1 if args.deseq: out_file_name=(final_isol_name+'_'+str(args.prefix)+'.txt') sep_out_file = open(out_file_name,'w') count_line = 0 for line in f: count_line += 1 if count_line == 1: pass else: info = line.strip().split(',') if len(info) == 1: pass else: if info[3] == 'CDS': all_isols2isol2read_counts[final_isol_name][info[2]]=(info[4]) if args.deseq: gene_count = (info[2],info[4]) gene2count.append(gene_count) if file_count == 1: all_regions.append(info[2]) else: all_isols2isol2read_counts[final_isol_name][info[1]]=(info[4]) if args.deseq: gene_count = (info[1],info[4]) gene2count.append(gene_count) if file_count == 1: all_regions.append(info[1]) sorted_gene2count = sorted(gene2count, key=lambda tup: (tup[0])) for x in sorted_gene2count: sep_out_file.write(x[0]+'\t'+x[1]+'\n') if args.output: args.output.write('Gene'+'\t'+str(files[0])+'\t'+str(files[1])+'\t'+str(files[2])+'\t'+str(files[3])+'\t'+str(files[4])+'\t'+str(files[5])+'\n') for g in all_regions: # don't want intergenic if args.exclude_intergenic: if 'intergenic' in g: pass else: first_rep = all_isols2isol2read_counts.get(files[0]) first_rep_gene = first_rep.get(g) second_rep = all_isols2isol2read_counts.get(files[1]) second_rep_gene = second_rep.get(g) third_rep = all_isols2isol2read_counts.get(files[2]) third_rep_gene = third_rep.get(g) fourth_rep = all_isols2isol2read_counts.get(files[3]) fourth_rep_gene = fourth_rep.get(g) fifth_rep = all_isols2isol2read_counts.get(files[4]) fifth_rep_gene = fifth_rep.get(g) sixth_rep = all_isols2isol2read_counts.get(files[5]) sixth_rep_gene = sixth_rep.get(g) args.output.write(g+'\t'+first_rep_gene+'\t'+second_rep_gene+'\t'+third_rep_gene+'\t'+fourth_rep_gene+'\t'+fifth_rep_gene+'\t'+sixth_rep_gene+'\n') else: first_rep = all_isols2isol2read_counts.get(files[0]) first_rep_gene = first_rep.get(g) second_rep = all_isols2isol2read_counts.get(files[1]) second_rep_gene = second_rep.get(g) third_rep = all_isols2isol2read_counts.get(files[2]) third_rep_gene = third_rep.get(g) fourth_rep = all_isols2isol2read_counts.get(files[3]) fourth_rep_gene = fourth_rep.get(g) fifth_rep = all_isols2isol2read_counts.get(files[4]) fifth_rep_gene = fifth_rep.get(g) sixth_rep = all_isols2isol2read_counts.get(files[5]) sixth_rep_gene = sixth_rep.get(g) args.output.write(g+'\t'+first_rep_gene+'\t'+second_rep_gene+'\t'+third_rep_gene+'\t'+fourth_rep_gene+'\t'+fifth_rep_gene+'\t'+sixth_rep_gene+'\n')
18,863
5d243e6a0598459dcdb93239a256f9e52fd7efca
# -*- coding: utf-8 -*- import random import math class QueueError(Exception): pass class DeviceQueue(object): def __init__(self, capacity): if not isinstance(capacity, int) or capacity <= 0: raise QueueError() self._capacity = capacity self._count = 0 def is_full(self): return self._capacity == self._count def is_empty(self): return self._count == 0 def clear(self): self._count = 0 def enqueue(self): if self.is_full(): raise QueueError self._count = self._count + 1 def dequeue(self): if self.is_empty(): raise QueueError self._count = self._count - 1 class ModelEvent(object): def __init__(self, time): self._time = time def get_planned_time(self): return self._time class GenerationEvent(ModelEvent): def __init__(self, time): super(GenerationEvent, self).__init__(time) def __repr__(self): return "Generate at %f" % self.get_planned_time() class ProcessingEvent(ModelEvent): def __init__(self, time): super(ProcessingEvent, self).__init__(time) def __repr__(self): return "Process at %f" % self.get_planned_time() class Generator(object): def __init__(self, excepted_value): self._expected_value = excepted_value def generate_time(self): return (0 - self._expected_value) * math.log(1 - random.random()) def generate_event(self, model_time): return GenerationEvent(self.generate_time() + model_time) class Processor(object): def __init__(self, expected_value, halfrange): self._expected_value = expected_value self._halfrange = halfrange def generate_time(self): return random.uniform(self._expected_value - self._halfrange, self._expected_value + self._halfrange) def generate_event(self, model_time): return ProcessingEvent(self.generate_time() + model_time) class Model(object): def __init__(self, gen_expected_value, process_expected_value, process_halfrange, queue_capacity, eps, with_return=False): self._generator = Generator(gen_expected_value) self._processor = Processor(process_expected_value, process_halfrange) self._queue = DeviceQueue(queue_capacity) self._events_list = [] self._model_time = 0 self._with_return = with_return self._processing = False self._eps = eps self._logger = [] def reinit(self): self._queue.clear() self._events_list = [] self._model_time = 0 self._processing = False self._logger = [] def handle_generation(self): self._events_list.insert(0, self._generator.generate_event(self._model_time)) if self._queue.is_full(): self._logger.append("В %f заявка не попала в очередь из-за нехватки места" % self._model_time) return False if self._processing: self._queue.enqueue() else: self._events_list.insert(0, self._processor.generate_event(self._model_time)) self._processing = True self._logger.append("В %f произошло успешное генерирование заявки. В очереди занято %d/%d" % (self._model_time, self._queue._count, self._queue._capacity)) return True def handle_processing(self): if self._queue.is_empty() and self._with_return: self._events_list.insert(0, self._processor.generate_event(self._model_time)) elif self._queue.is_empty() and not self._with_return: self._processing = False elif not self._queue.is_empty(): self._events_list.insert(0, self._processor.generate_event(self._model_time)) if not self._with_return: self._queue.dequeue() self._logger.append("В %f произошла обработка заявки. В очереди занято %d/%d" % (self._model_time, self._queue._count, self._queue._capacity)) def handle_event(self, ev, processed, rejected): print(repr(ev)) if isinstance(ev, GenerationEvent): if self.handle_generation(): return (processed, rejected) else: return (processed + 1, rejected + 1) elif isinstance(ev, ProcessingEvent): self.handle_processing() return (processed + 1, rejected) else: assert 0 def run_dt(self, dt, to_process): self.reinit() processed = 0 rejected = 0 self._events_list.insert(0, self._generator.generate_event(self._model_time)) while processed < to_process: while True: try: ev = self._events_list.pop() except IndexError: self._events_list.insert(0, self._generator.generate_event(self._model_time)) if math.fabs(ev.get_planned_time() - self._model_time) < self._eps: # process event (processed, rejected) = self.handle_event(ev, processed, rejected) self._events_list.sort(key=lambda x: x.get_planned_time(), reverse=True) if processed < to_process: continue else: break elif ev.get_planned_time() < self._model_time: # timeout of event print("timeout") continue elif ev.get_planned_time() > self._model_time: # return to queue self._events_list.insert(0, ev) self._events_list.sort(key=lambda x: x.get_planned_time(), reverse=True) break self._model_time = self._model_time + dt return self._model_time, rejected, self._logger def run_event(self, to_process): self.reinit() processed = 0 rejected = 0 self._events_list.insert(0, self._generator.generate_event(self._model_time)) self._events_list.sort(key=lambda x: x.get_planned_time(), reverse=True) while processed < to_process: ev = self._events_list.pop() if ev.get_planned_time() == self._model_time: # process event (processed, rejected) = self.handle_event(ev, processed, rejected) self._events_list.sort(key=lambda x: x.get_planned_time(), reverse=True) elif ev.get_planned_time() > self._model_time: # return to queue self._model_time = ev.get_planned_time() self._events_list.insert(0, ev) self._events_list.sort(key=lambda x: x.get_planned_time(), reverse=True) else: assert 0 return self._model_time, rejected, self._logger
18,864
ac9d76b796db670a3b8634bfc42e59d96e36a32f
#!/usr/bin/python #Source: https://github.com/GDSSecurity/mangers-oracle import math, os, sys from time import time from subprocess import Popen, PIPE def modpow(base, exponent, modulus): result = 1 while exponent > 0: if exponent & 1 == 1: result = (result * base) % modulus exponent = exponent >> 1 base = (base * base) % modulus return result def timeSend(f): half = modpow(f, e, n) whole = (half * c) % n str = hex(whole)[2:-1] start = time() p = Popen(["./decrypt", str], stdout=PIPE) output = p.communicate()[0] stop = time() return stop - start, output ################################################################################ def buildTiming(n, e, c): records = {} for trials in range(1, 1000): for i in range(1, 20): if trials == 1: records[i] = [] f1 = pow(2, i) time, output = timeSend(f1) records[i].append(time) #print time, lessThanB(output), i for i in range(1,20): f = open('trials.' + str(i), 'w') for l in records[i]: f.write(str(l)+"\n") ################################################################################ ################################################################################ if __name__ == "__main__": n = 157864837766412470414898605682479126709913814457720048403886101369805832566211909035448137352055018381169566146003377316475222611235116218157405481257064897859932106980034542393008803178451117972197473517842606346821132572405276305083616404614783032204836434549683833460267309649602683257403191134393810723409 e = 0x10001 c = int('5033692c41c8a1bdc2c78eadffc47da73470b2d25c9dc0ce2c0d0282f0d5f845163ab6f2f296540c1a1090d826648e12644945ab922a125bb9c67f8caaef6b4abe06b92d3365075fbb5d8f19574ddb5ee80c0166303702bbba249851836a58c3baf23f895f9a16e5b15f2a698be1e3efb74d5c5c4fddc188835a16cf7c9c132c', 16) p = int('2ea4875381beb0f84818ce1c4df72574f194f7abefe9601b21da092f484fa886ff0de66edf8babd4bd5b35dfdb0e642382947270a8f197e3cbaaa37cb8f7007f4604794a51c3bd65f8d17bfad9e699726ff9f61b99762d130777872eb4e9f1532cf3bfbfc3d2ad5d8d4582cc90a2e59915c462967b19965f77225447ce660d', 16) buildTiming(n, e, c)
18,865
b8fa212eae116d7e07e231154d9e486f0bcbf4e9
# -*- coding: utf-8 -*- import re import yaml import logging def parse_hostname(output): '''Parse the hostname in the show run config and return string''' regexp = 'hostname\W+(\S+)' try: result = re.search(regexp,output).group(1) except AttributeError: logging.warning('Unnable to parse the name of the device, please check the conf on unknown devcie') return 'unkonwn_device' return result def read_yml_file(file_to_read): ''' Read the yaml file and return the dict with cred of the devices ''' result = None with open(file_to_read) as f: result = yaml.load(f) return result def write_to_file(output,file_name): with open(file_name,'w') as f: logging.info('Writing a file to {}'.format(file_name)) f.write(output)
18,866
48983a9ff033f44a4ce976d8739a62e6a0b7c971
# from operator import add __author__ = 'Aaron Yang' __email__ = 'byang971@usc.edu' __date__ = '11/28/2019 4:31 PM' import sys from pyspark import SparkContext def splitFunc(row): col_bar, col_beer, col_price = row.split(',') if col_beer.startswith('Bud'): return col_bar, int(col_price) if __name__ == "__main__": # input_file_path = "sells.csv" # output_file_path = "output.txt" # input_file_path = sys.argv[1] # output_file_path = sys.argv[2] d = [('hello', 1), ('world', 1), ('hello', 1), ('this', 1), ('world', 1)] sc = SparkContext.getOrCreate() data = sc.parallelize(d, 2) # ss = data.countByKey() ss = data.reduceByKey(add).collect() print(ss)
18,867
3ad13014b009750eaa2ec801e7463a96b1068a36
import pandas as pd import io, sys, os from os import path, listdir from datetime import datetime, timedelta from flask import Flask, make_response app = Flask(__name__) @app.route('/', methods=['GET', 'POST']) def hello_world(request): """Responds to any HTTP request. Args: request (flask.Request): HTTP request object. Returns: The response text or any set of values that can be turned into a Response object using `make_response <http://flask.pocoo.org/docs/1.0/api/#flask.Flask.make_response>`. """ raw_text = request.form.get('raw_text') paydate = request.form.get('raw_date') raw_csv = request.files.get('raw_csv').read() print(f'raw_text: {raw_text}') print(f'paydate: {paydate}') print(f'raw_csv: {raw_csv}') #print(f'{pd.__version__}') # can't do this: # print(f'csv3 head regular bytes: {pd.read_csv(csv3).head(1)}') # flask.Response('', headers={'Content-Type': 'text/html'}) # return str(pd.read_csv(io.BytesIO(csv3)).to_dict()) # res = make_response('<html><head><title>JBoss - Error report</title></head></html>', {'Content-Type': 'text/html', 'Access-Control-Allow-Origin': '*'}) #res = make_response(pd.read_csv(io.BytesIO(raw_csv)).to_html(), {'Content-Type': 'text/html', 'Access-Control-Allow-Origin': '*'}) #file_name = make_response(pd.read_csv(io.BytesIO(raw_csv), encoding='unicode_escape'), {'Content-Type': 'multipart/form-data', 'Access-Control-Allow-Origin': '*'}) df = pd.read_csv(io.BytesIO(raw_csv), encoding='unicode_escape') #print(f'df: {df}, type df: {type(df)}') result = reconcile_month(df, paydate) result = result.to_html() #print(f'result of reconcile_month: {result}') return result # Start reconcile.py def reconcile_month(df, paydate): ''' Takes two strings as args. file_name, paydate 'M-D-YYYY' or 'MM-DD-YYYY' Returns final dataframe dfs_x ''' # Find path to file, assign file_name, and print name of file we're running #path = os.getcwd() #file_name = os.path.join(path, file_name) #pd.set_option('max_colwidth', 400) #print(f'file_name: {file_name}') # Create datetime object YYYY-MM-DD from user input our_dt = datetime.strptime(paydate, '%Y-%m-%d').date() #print(f'our_dt: {our_dt}') # FUNCTION CALL to all other functs via coop_df # Return compiled dataframe at html final_df = coop_df(df, our_dt) # try: # final_df.to_html( # 'file.html', # columns=['Month', 'Week', 'Totals_WnT', 'Wages', 'Taxes', 'Employees'], # justify='left', # float_format='$%.2f') # except KeyError: # final_df.to_html( # 'file.html', # columns=['Month', 'Totals_WnT', 'Wages', 'Taxes', 'Employees'], # justify='left', # float_format='$%.2f') return final_df #print(f'final_df output: {final_df}') #print(f'res: {res}, type res: {type(res)}') #if __name__ == '__main__': # reconcile_month(sys.argv[1], sys.argv[2]) # Start coop_df.py def coop_df(df, datetime_obj): ''' Intermediary funct btw reconcile.py and mums_little_helper.py Takes file_name & date as datetime object from reconcile_month Runs all other functions. Returns dataframe to reconcile.py. Dataframe returned represents one paycheck week, unless it detects a week that straddles two months, in which case the dataframe returned will represent two paycheck weeks. ''' # Parse datetime_obj into year, month, day y = datetime_obj.year m = datetime_obj.month d = datetime_obj.day #ps_a, ps_b, dr_a, dr_b = slice_the_cack('datasets/Test file MMG2.CSV', 2019, 10, 10) ps_a, dr_a = slice_the_cack(df, y, m, d) depts = get_employees_by_dept(ps_a, dr_a) account_sums = get_sums(ps_a, dr_a, depts) piece_dict = pieces_of_me(account_sums, depts) dfs = sum_and_separate_by_dept(piece_dict) dfs_x = merge_dfs(dfs) # Check number of months present in initial dfs_x here if dfs_x['Month'].nunique() > 1: # if > 1, find previous week prev_dt = datetime_obj - timedelta(weeks = 1) # if previous week's month == initial week's month, run second time with previous week if prev_dt.month == m: dfs_pw = coop_df(df, prev_dt) dfs_pw['Week'] = dfs_pw['Wages'].apply(lambda x: 'A') dfs_x['Week'] = dfs_x['Wages'].apply(lambda x: 'B') dfs_x = pd.concat([dfs_pw, dfs_x]) #print(f'This is concat with PW:\n {dfs_x}') return dfs_x #print(f'prev_dt loop: {prev_dt, list_of_dfs_x}') else: #print(f'This found PW was out of month:\n {dfs_x}') return dfs_x else: #print(f'This is returning only one initial week:\n {dfs_x}') return dfs_x # Start mums_little_helper.py def slice_the_cack(df, year, month, day,): ''' Takes a Timestamp. Returns a dictionary of the Saturday through Sunday daterange before the previous Thursday where the keys are the int month numbers and the values are the percentage of days in each month of the total days returned in all months. ''' pr = df pr['Date'] = pd.to_datetime(pr['Date']) pr.dropna(subset=['Date'], inplace=True) pr['Year'] = pr.copy()['Date'].dt.year pr['Month'] = pr.copy()['Date'].dt.month paydate_entered = pd.Timestamp(year=year, month=month, day=day, freq='D') #Based on paydate_entered, assign either week-immediately-before or week-of to dr_a if paydate_entered.weekday() <= 2: su = paydate_entered - ((paydate_entered.weekday() + 8) * paydate_entered.freq) sa = paydate_entered - ((paydate_entered.weekday() + 2) * paydate_entered.freq) else: su = paydate_entered - ((paydate_entered.weekday() + 1) * paydate_entered.freq) sa = su + 6 * paydate_entered.freq # # if paydate_entered.weekday() <= 2: # su = paydate_entered - ((paydate_entered.weekday() + 15) * paydate_entered.freq) # sa = paydate_entered - ((paydate_entered.weekday() + 9) * paydate_entered.freq) # else: # su = paydate_entered - ((paydate_entered.weekday() + 8) * paydate_entered.freq) # sa = paydate_entered - ((paydate_entered.weekday() + 2) * paydate_entered.freq) #EX. for 10-3, we assign dr_a the week-of 9-29 thru 10-5 dr_a = pd.date_range(start=su, end=sa, freq='D') su = dr_a[0] #paycheck_span = first arg of get_sums AND a df displaying the sat to sun of dr_a ps_a = pr[ (pr['Date'] >= dr_a[0]) & (pr['Date'] <= dr_a[-1]) ] # # dr_b as week following dr_a # nexsu = dr_a[-1]+1*dr_a.freq # nexsa = dr_a[-1]+7*dr_a.freq # dr_b = pd.date_range(start=nexsu, end=nexsa, freq='D') # ps_b = pr[ (pr['Date'] >= dr_b[0]) & (pr['Date'] <= dr_b[-1]) ] return ps_a, dr_a def get_sums(paycheck_span, dr, depts): ''' Takes a df and a pd.date_range Returns {'fractmo': {9: 1.0}, 'txs_by_emp': {'Adams, L': 46.32, 'Avery, B': 25.77, 'Bingo, Nolan': 39.650000000000006, 'Conde, Barb': 23.59, 'Clyde-Owens, L': 48.42, 'Chorse, MD': 33.42, 'Fray-Chase, Jay': 27.94, 'Gunn, Jim': 46.88, 'Graybranch, Linne': 57.209999999999994, 'Hedrovin, Zed': 15.509999999999998, 'Heart, Ray': 48.14, 'LaRay, Jane': 43.42, 'Lentifold, Eddie': 22.65, 'Mattison, Ronnie G.': 38.1, 'Peace, Jesse B.'': 31.34, 'Peet, Angela L': 61.23, 'Pino, Kola': 29.37, 'Picken, James': 42.79, 'Rich, Chiccie SR.': 35.74, 'Ryan, Noam': 31.37, 'Stark, Nancy B': 3.35, 'Teddy, Aimee': 31.02, 'Van Wilson, Len P.': 61.56, 'Wavering, Lindsay': 41.96}, 'wgs': {'61101 · Salary & Wages-Packaging': 444.38, '61104 · Salary & Wages-Bakery': 2602.4799999999996, '61107 · Salary & Wages-Deli': 774.28, '61109 · Salary & Wages-Produce': 643.31, '61141 · Salary & Wages-Admin': 4110.31, '61142 · Salary & Wages-Store': 2804.06}} ''' fractmo_dict = {} #print(f'paycheck_span: {paycheck_span}') #Finds the week before dr passed originally #This daterange represents the days that were actually worked #Allows fractmo_dict to iterate over appropriate week prevsun = dr[0] - 7 * dr.freq prevsat = dr[0] - 1 * dr.freq dr = pd.date_range(start=prevsun, end=prevsat, freq='D') for d in dr: try: fractmo_dict[d.month] = fractmo_dict[d.month] + 1 except: fractmo_dict[d.month] = 1 #divide each value by the sum total = sum(fractmo_dict.values(), 0.0) for key in fractmo_dict: fractmo_dict[key] = fractmo_dict[key] / total #print(f'get_sums: {fractmo_dict[key]}') paycheck_span = paycheck_span[ (paycheck_span['Num'] != 'Accrued Pay')] #Group paycheck_span by summed amount in each account for the week wnt = paycheck_span.groupby(['Account'], as_index=False)['Amount'].sum() #Dict of taxes sums per week by employee name vnt = paycheck_span.groupby(['Account', 'Name'], as_index=False)['Amount'].sum() #print(f'vnt: {vnt}') emp_txs = vnt[ (vnt['Account'] == '61210 · FICA Expense') | (vnt['Account'] == '61230 · NYUI Expense') ] #print(f'emp_txs: {emp_txs}') txs_by_emp = emp_txs.groupby(['Name'])['Amount'].sum().to_dict() #Dict of taxes sums per week, by department, according to emp-dept assignments # hold_tbe = {} # for n, t in txs_by_emp.items(): # # hold_tbe[n] = t dept_taxes = {} for d, l in depts.items(): dept_taxes[d] = 0 for n in l: dept_taxes[d] += txs_by_emp[n] # print(f'hold_tbe: {hold_tbe}') # print(f'dept_taxes: {dept_taxes}') txs_for_depts_emps = dept_taxes #Dict of only salary & wages accounts' sums wgs = wnt[ (wnt['Account'] != '61210 · FICA Expense') & (wnt['Account'] != '61230 · NYUI Expense') ] wgs_sums_dict = wgs.groupby(['Account'])['Amount'].sum().iloc[:].to_dict() return {'txs_for_depts_emps': txs_for_depts_emps, 'txs_by_emp': txs_by_emp, 'wgs': wgs_sums_dict, 'fractmo': fractmo_dict} def get_tax_dept(ps): ''' Returns the department and amount for the employee where the employee made the highest total amount for that month. file_name (str): path to csv file year (int): year over which to look for dept month (int): month over which to look for dept employee_name (str): name of employee to look up ''' #concatenate your two paycheck_spans #frames = [ps, pst] #print(pr['Date']) #pr = pd.read_csv(pr, encoding='unicode_escape') #pr['Date'] = pd.to_datetime(pr['Date']) # drop null dates (just the last row) # drop that weird first column, the useless Clr and Balance cols too #pr.drop(columns=['Unnamed: 0', 'Clr', 'Balance'], inplace=True) # # Remove FUPAs # pr = pr[ (pr['Account'] != '61210 · FICA Expense') & \ # (pr['Account'] != '61220 · FUTA Expense') & \ # (pr['Account'] != '61230 · NYUI Expense') ] # create month and year cols #pr['Year'] = pr.copy()['Date'].dt.year #pr['Month'] = pr.copy()['Date'].dt.month # get sum totals per employee by y/m/name/dept ps = ps.groupby(['Name', 'Account']).sum().reset_index() # Sort the df based on Year, Month, Name, Account, then Amount # We need this for the next rank step, and will then join # the two results together. ps.sort_values(['Name', 'Amount'], inplace=True, ascending=False) # create the ranks for each month/name combination. Record number # 1 should (but isn't) the department where the employee made the # most money that month ranks = ps.groupby(by=['Name'])['Amount'].rank(method='first') ranks = ranks.astype('int32') ranks.name = 'Rank' #print(ranks.head(20)) # Join the pr dataframe and the ranks dataframe back together wbd = pd.merge(ps, ranks, left_index=True, right_index=True) # create a composite join key for wbd wbd['cjk'] = wbd['Name'] + wbd['Rank'].astype('str') # the rank that corresponds to the employee's highest earning department for that month max_ranks = wbd.groupby(['Name'])['Rank'].max().reset_index() # create a composite join key for max_ranks max_ranks['cjk'] = max_ranks['Name'] + \ max_ranks['Rank'].astype('str') # join the wbd and max_ranks table on their composite keys res = pd.merge( max_ranks, wbd, how='left', on='cjk', suffixes=('_mr', '') )[['Name', 'Account']] #print(res) res = res.set_index('Name') # fetch the user requested information from the res dataframe #vals = res[ (res['Year'] == year) & (res['Month'] == month) & (res['Name'] == employees) ].values # out_dict = {} # for i, j in zip(vals[0], ['year', 'month', 'name', 'dept', 'amount']): # out_dict[j] = i # out_df = pd.DataFrame(out_dict, index=[1]) #res_dict = res.set_index('Name').to_dict() return res def get_employees_by_dept(ps, dr): depts = get_tax_dept(ps) depts = depts.reset_index() depts = depts.groupby(['Account'])['Name'] ebd = {} for d, n in depts: ebd[d] = [] #print(f'd: {d}\ntype of d: {type(d)}\n') #print(f'n: {n}\ntype of n: {type(n)}') for v in n: ebd[d].append(v) return ebd def pieces_of_me(account_sums, depts): ''' Takes dict that looks like dis. ratio of days in months within our one week paycheck range, sum of taxes by account, sum of salary and wages by dept. {'fractmo': {9: 1.0}, 'txs_by_emp': {'Adams, L': 46.32, 'Avery, B': 25.77, 'Bingo, Nolan': 39.650000000000006, 'Conde, Barb': 23.59, 'Clyde-Owens, L': 48.42, 'Chorse, MD': 33.42, 'Fray-Chase, Jay': 27.94, 'Gunn, Jim': 46.88, 'Graybranch, Linne': 57.209999999999994, 'Hedrovin, Zed': 15.509999999999998, 'Heart, Ray': 48.14, 'LaRay, Jane': 43.42, 'Lentifold, Eddie': 22.65, 'Mattison, Ronnie G.': 38.1, 'Peace, Jesse B.'': 31.34, 'Peet, Angela L': 61.23, 'Pino, Kola': 29.37, 'Picken, James': 42.79, 'Rich, Chiccie SR.': 35.74, 'Ryan, Noam': 31.37, 'Stark, Nancy B': 3.35, 'Teddy, Aimee': 31.02, 'Van Wilson, Len P.': 61.56, 'Wavering, Lindsay': 41.96}, 'wgs': {'61101 · Salary & Wages-Packaging': 444.38, '61104 · Salary & Wages-Bakery': 2602.4799999999996, '61107 · Salary & Wages-Deli': 774.28, '61109 · Salary & Wages-Produce': 643.31, '61141 · Salary & Wages-Admin': 4110.31, '61142 · Salary & Wages-Store': 2804.06}} Returns dict that looks like dis {9: {'txs_by_emp': {'Adams, L': 46.32, 'Avery, B': 25.77, 'Bingo, Nolan': 39.650000000000006, 'Conde, Barb': 23.59, 'Clyde-Owens, L': 48.42, 'Chorse, MD': 33.42, 'Fray-Chase, Jay': 27.94, 'Gunn, Jim': 46.88, 'Graybranch, Linne': 57.209999999999994, 'Hedrovin, Zed': 15.509999999999998, 'Heart, Ray': 48.14, 'LaRay, Jane': 43.42, 'Lentifold, Eddie': 2222.65, 'Mattison, Ronnie G.': 38.1, 'Peace, Jesse B.': 31.34, 'Peet, Angela L': 61.23, 'Pino, Kola': 29.37, 'Picken, James': 42.79, 'Rich, Chiccie SR.': 35.74, 'Ryan, Noam': 31.37, 'Stark, Nancy B': 3.35, 'Teddy, Aimee': 31.02, 'Van Wilson, Len P.': 61.56, 'Wavering, Lindsay': 41.96}, 'wgs': {'61101 · Salary & Wages-Packaging': 444.38, '61104 · Salary & Wages-Bakery': 2602.4799999999996, '61107 · Salary & Wages-Deli': 774.28, '61109 · Salary & Wages-Produce': 643.31, '61141 · Salary & Wages-Admin': 4110.31, '61142 · Salary & Wages-Store': 2804.06}}} ''' #iterate thru each of the account dicts #mult'ing by the ratio of days in first month (from fractmo_dict) #populate a dcit or df with # {key = month: # {key = account: value = sum as ratio of number of days within key month}. # {key = month: # {key = account: value = sum as ratio of number of days within key month}. piece_dict = {} for k, v in account_sums['fractmo'].items(): piece_dict[k] = {} piece_dict[k]['wgs'] = {} for i, j in account_sums['wgs'].items(): # This is how we get weekly fractional wages piece_dict[k]['wgs'][i] = j * v piece_dict[k]['txs_for_depts_emps'] = {} for m, n in account_sums['txs_for_depts_emps'].items(): # This is how we get weekly sums of taxes according to depts emps are assigned piece_dict[k]['txs_for_depts_emps'][m] = n * v # tbe = {} # for m, n in account_sums['txs_by_emp'].items(): # # This is how we get weekly fractional taxes by employee # tbe[m] = n * v # This adds emps listed by dept to piece_dict for later use in sum_and_separate_by_dept #piece_dict[k]['depts'] = depts tbebd = {} for d, l in depts.items(): tbebd[d] = {} for n in l: tbebd[d][n] = round(account_sums['txs_by_emp'][n] * v, 2) piece_dict[k]['depts'] = tbebd # print(f'tbebd') # pprint(tbebd) cn = {} for d, t in account_sums['txs_for_depts_emps'].items(): cn[d] = (t + account_sums['wgs'][d]) * v piece_dict[k]['cn'] = cn #one col be the dept names --- one col be wages plus txs_for_depts_emps return piece_dict def make_lists_for_laterframes(generic_dict): ''' Returns mini dfs out of series fed 'wages','taxes','employees' indexed by dept ''' # print(f'generic_dict') # pprint(generic_dict) list_of_depts = [] list_of_things = [] for d, t in generic_dict.items(): list_of_depts.append(d) list_of_things.append(t) return list_of_depts, list_of_things def sum_and_separate_by_dept(piece_dict): ''' Takes a dict that looks like dis {9: {'txs_by_emp': {'Adams, L': 46.32, 'Avery, B': 25.77, 'Bingo, Nolan': 39.650000000000006, 'Conde, Barb': 23.59, 'Clyde-Owens, L': 48.42, 'Chorse, MD': 33.42, 'Fray-Chase, Jay': 27.94, 'Gunn, Jim': 46.88, 'Graybranch, Linne': 57.209999999999994, 'Hedrovin, Zed': 15.509999999999998, 'Heart, Ray': 48.14, 'LaRay, Jane': 43.42, 'Lentifold, Eddie': 2222.65, 'Mattison, Ronnie G.': 38.1, 'Peace, Jesse B.': 31.34, 'Peet, Angela L': 61.23, 'Pino, Kola': 29.37, 'Picken, James': 42.79, 'Rich, Chiccie SR.': 35.74, 'Ryan, Noam': 31.37, 'Stark, Nancy B': 3.35, 'Teddy, Aimee': 31.02, 'Van Wilson, Len P.': 61.56, 'Wavering, Lindsay': 41.96}, 'wgs': {'61101 · Salary & Wages-Packaging': 444.38, '61104 · Salary & Wages-Bakery': 2602.4799999999996, '61107 · Salary & Wages-Deli': 774.28, '61109 · Salary & Wages-Produce': 643.31, '61141 · Salary & Wages-Admin': 4110.31, '61142 · Salary & Wages-Store': 2804.06}}} Returns a list of dicts that looks like dis list_of_wgs_by_dept [{'61101 · Salary & Wages-Packaging': 89.43714285714285, '61104 · Salary & Wages-Bakery': 632.0857142857143, '61107 · Salary & Wages-Deli': 239.61714285714282, '61109 · Salary & Wages-Produce': 178.0971428571428, '61141 · Salary & Wages-Admin': 1342.802857142857, '61142 · Salary & Wages-Store': 566.3571428571428}] list_of_wgs_by_dept [{'61101 · Salary & Wages-Packaging': 89.43714285714285, '61104 · Salary & Wages-Bakery': 632.0857142857143, '61107 · Salary & Wages-Deli': 239.61714285714282, '61109 · Salary & Wages-Produce': 178.0971428571428, '61141 · Salary & Wages-Admin': 1342.802857142857, '61142 · Salary & Wages-Store': 566.3571428571428}, {'61101 · Salary & Wages-Packaging': 223.59285714285713, '61104 · Salary & Wages-Bakery': 1580.2142857142858, '61107 · Salary & Wages-Deli': 599.0428571428571, '61109 · Salary & Wages-Produce': 445.2428571428571, '61141 · Salary & Wages-Admin': 3357.0071428571428, '61142 · Salary & Wages-Store': 1415.892857142857}] ''' # print(f'piece_dict') # pprint(piece_dict) dfs = [] for m in piece_dict: # Create wage dataframe depts, wages = make_lists_for_laterframes(piece_dict[m]['wgs']) df = pd.DataFrame(([0] * len(depts)), columns=['Wages'], index=[depts]) df['Wages'] = wages df['Month'] = [m] * df.shape[0] dfs.append(df) # Create tax dataframe depts, taxes = make_lists_for_laterframes(piece_dict[m]['txs_for_depts_emps']) tax_df = pd.DataFrame(([0] * len(depts)), columns=['Taxes'], index=[depts]) tax_df.columns = ['Taxes'] tax_df['Taxes'] = taxes dfs.append(tax_df) # Create employee dataframe depts, emps = make_lists_for_laterframes(piece_dict[m]['depts']) emp_df = pd.DataFrame(([0] * len(depts)), columns=['Employees'], index=[depts]) emp_df['Employees'] = emps dfs.append(emp_df) depts, credit_new = make_lists_for_laterframes(piece_dict[m]['cn']) cn_df = pd.DataFrame(([0] * len(depts)), columns=['Totals_WnT'], index=[depts]) cn_df['Totals_WnT'] = credit_new dfs.append(cn_df) return dfs def merge_dfs(dfs): # This is a trial way to loop through dfs indices and build dfs_x dataframe # group_df = [] # x = [] # for i, df in enumerate(dfs): # print(i) # if i % 2 == 0 and i != 0: # x.append(df) # print(x) # group_df.append(x) # x = [] # else: # x.append(df) dfs_x = [] dfs_a = dfs[0].merge(dfs[1], left_index=True, right_index=True)\ .merge(dfs[2], left_index=True, right_index=True)\ .merge(dfs[3], left_index=True, right_index=True) dfs_x.append(dfs_a) if len(dfs) > 4: dfs_b = dfs[4].merge(dfs[5], left_index=True, right_index=True)\ .merge(dfs[6], left_index=True, right_index=True)\ .merge(dfs[7], left_index=True, right_index=True) dfs_x.append(dfs_b) #dfs_x = pd.concat([dfs_a, dfs_b]) dfs_x = pd.concat(dfs_x) return dfs_x
18,868
a47ab129f47af8b27e26fbb6d34395a909036a58
import numpy as np def LDA_to_1dim(data,label): #calculate distance between mean in new coordinates # calculate within class scatter matrices. #data is assumend to be in num_exam x dim format # label is assumed to contain 1 and 0 data = np.asarray(data) label = np.asarray(label) c1data_index = np.where(label == 0) c2data_index=np.where(label == 1) c1data = data[c1data_index] c2data = data[c2data_index] mean_c1 = np.matrix(np.mean(c1data,axis=0)) print("shape of mean_c1 is",mean_c1.shape) mean_c2 = np.matrix(np.mean(c2data,axis=0)) c1_cov = np.matmul((c1data-mean_c1).T, c1data-mean_c1) c2_cov = np.matmul((c2data-mean_c2).T,c2data-mean_c2) sw_inverse = np.linalg.inv(c1_cov + c2_cov) sb = np.matmul((mean_c1-mean_c2).T,mean_c1-mean_c2) # print(sb) print("shape of sb is",sb.shape) eig_val,eig_vec = np.linalg.eig(np.matmul(sw_inverse,sb)) index = np.argsort(eig_val) reqd_vec = eig_vec[:,index[len(index)-1]] return np.matmul(data,reqd_vec),reqd_vec #data=[[1,2,2],[1,1,1],[1,2,3]] #label=[0,1,1] #data = np.asarray(data) #label = np.asarray(label) #c1data_index = np.where(label == 0) #c2data_index=np.where(label == 1) # #c1data = data[c1data_index] #c2data = data[c2data_index]
18,869
edae1b6db7c865ebd4f8b5306c6431a60f0017c1
f = open("./7/data.txt", "r") all_rules = f.read().split("\n") target_color = "shiny gold" count = 0 good_rules = [] def find_color(rules, target): for rule in rules: if target in rule and rule[:len(target)] != target: #global count #count += 1 if rule not in good_rules: good_rules.append(rule) new_target = rule.split(" ")[0] + " " + rule.split(" ")[1] #all_rules.remove(rule) find_color(all_rules, new_target) find_color(all_rules, target_color) print(len(good_rules)) rules_dict = {} for rule in all_rules: new_key = rule.split(" ")[0] + " " + rule.split(" ")[1] content = rule.split(" bags contain ")[1] single_content = content.split(", ") content_dict = {el.split(" ")[1] + " " + el.split(" ")[2] : el.split(" ")[0] for el in single_content} rules_dict[new_key] = content_dict #print(rules_dict["posh salmon"]) def count_bags(target): if "other bags." in rules_dict[target]: return 0 else: total = 0 for k in rules_dict[target].keys(): total += (count_bags(k) + 1) * int(rules_dict[target][k]) return total print(count_bags("shiny gold"))
18,870
d580bbdfb3de6226fb9c2a17d1854eebef25e5e3
class Solution: def minRemoveToMakeValid(self, s: str) -> str: _list = list(s) stack = [] for i in range(len(_list)): if _list[i]=='(': stack.append(i) elif _list[i]==')': if stack: stack.pop() else: _list[i]='' if stack: for i in stack: _list[i]='0' return re.sub('[0]','',''.join(_list))
18,871
22e1c0c3d86ab7b6188d4decc41dfeca8c74e9d3
################### print "run : --- Match a pattern with a genetic algorithm" ################### from optparse import OptionParser parser = OptionParser() parser.add_option("-W", "--width", help="width", action="store", type=int, dest="width", default=32) parser.add_option("-H", "--height", help="height", action="store", type=int, dest="height", default=32) parser.add_option("-p", "--pattern", help="pattern to draw", action="store", type=str, dest="pattern", default="square") parser.add_option("-g", "--genotypes", help="the number of genotypes", action="store", type=int, dest="genotypes", default=10) parser.add_option("-i", "--iteration_limit", help="limit the number of generations", action="store", type=int, dest="max_generations", default=10) parser.add_option("-m", "--mutation_chance", help="the mutation probability", action="store", type=float, dest="mutation_chance", default=0.1) parser.add_option("-a", "--always_best", help="the fittest always breed", action="store_true", dest="always_best", default=False) parser.add_option("-l", "--parents_live", help="the fittest always survive", action="store_true", dest="parents_live", default=False) parser.add_option("-v", "--verbose", help="turn on verbose mode", action="store_true", dest="verbose", default=False) (options, args) = parser.parse_args() if options.verbose: print "run : --- Options" print "run : width: ",options.width print "run : height: ",options.height print "run : pattern: ",options.pattern print "run : n genotypes: ",options.genotypes print "run : maximum generations: ",options.max_generations print "run : mutation probability: ",options.mutation_chance print "run : fittest always survives: ",options.always_best print "run : verbose: ",options.verbose ################### import Canvas import FitnessMeasures import Line import Population import Tools import time ################### print "run : generating an empty canvas" canvas = Canvas.Canvas(options.width,options.height) if options.pattern == "square": print "run : Drawing a square on the board" canvas.add_line(Line.Line(10,10, options.width-10,10)) canvas.add_line(Line.Line(options.width-10,10, options.width-10,options.height-10)) canvas.add_line(Line.Line(options.width-10,options.height-10, 10,options.height-10)) canvas.add_line(Line.Line(10,options.height-10, 10,10)) n_lines = 4 else: assert False, "Invalid pattern requested: %s"%options.pattern file_name = "/zinc/web/copernicium/04/images/ideal.bmp" canvas.save(file_name) print "run : Saved target canvas as: %s"%file_name print "run : Generating fitness measure" fitness = FitnessMeasures.CanvasFitnessMeasure(canvas) bases = Tools.MinBases(max(options.width,options.height)) print "run : max dimension: %i, bases: %i (2^%i = %i)"%(max(options.width,options.height),bases,bases,2**bases) print "run : --- Generate a population" population = \ Population.Population(fitness, n_genotypes=options.genotypes, n_genes=4*n_lines, n_bases=bases, mutation_chance=options.mutation_chance, always_best=options.always_best, verbose=options.verbose) generation = 0 evolution = [] ################### print "run : --- Running" ga_start = time.time() while(True): generation +=1 if (options.max_generations != -1) and (generation > options.max_generations): break if options.verbose or (generation%100 == 0): best_result = max(population.fitness) print "run : generation[%i], best result: %.1f"%(generation,best_result) # print population if options.verbose: print "run : selecting fittest" fittest = population.select_fittest(force_always_best=True)[0] best_canvas = population.generate_canvas(fittest) # evolution.append((fittest, # max(population.fitness), # best_canvas, # fittest.genes)) # if (best_result > threshold): break if options.verbose: print "run : fittest: %s"%(fittest.name) population.breed_next_generation() population.eval() ga_end = time.time() print population best_result = max(population.fitness) fittest = population.select_fittest(force_always_best=True)[0] best_canvas = population.generate_canvas(fittest) coding_used = fittest.genes print "run : final generation[%i], best result: %f"%(generation, best_result) print "run : solution: %s"%repr(fittest) print "run : ",coding_used print "run : ",best_canvas print "run : time taken: %.2f s"%(ga_end-ga_start) # # ################### # # print "run : --- Brute force problem solving" # # brute_start = time.time() # # best_circle = Tools.SolveBoard(board,path,verbose=False) # # brute_end = time.time() # # print "run : solution: %s"%repr(best_circle) # # print "run : time taken: %.2f s"%(brute_end-brute_start) ################### print "test : --- Best canvas to file" file_name = "/zinc/web/copernicium/04/images/test.bmp" best_canvas.save(file_name) # print "run : --- Write path to file" # file_name = "path.csv" # Tools.WritePathToFile(best_path,points,file_name) # print "run : --- Write scores to file" # file_name = "evolution.json" # Tools.WriteEvolutionToJSON(evolution,points,fitness,file_name) # print "run : --- Write genotype to file" # file_name = "genotype.json" # Tools.WriteGenotypeToJSON(fittest[0],file_name,coding=coding_used) # print "run : --- Write evolution of path to file" # file_name = "evolution.csv" # Tools.WriteCirclesToCSV(best_path,file_name,scores=scores) # print "run : --- Write parameters to file" # file_name = "parameters.csv" # Tools.WriteParametersToFile(options,file_name) # print "run : --- Write results to files" # results = { # "GA result":repr(fittest[0].eval())[:-4], # "GA time" :"%.2f s"%(ga_end-ga_start), # "GA score" :"%.2f"%sqrt(best_result), # "Brute force circle":repr(best_circle)[:-4], # "Brute force Time" :"%.2f s"%(brute_end-brute_start), # "Brute force score" :"%.2f"%best_circle.r # } # file_name = "results.json" # import json # with open(file_name, 'wb') as fp: json.dump(results, fp) ################### print "run : --- done\n"
18,872
fefa3002b02285bd9449da0bf12a2bd72aeee763
# -*- coding: utf-8 -*- """Iris_DTC_task4.py Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1I2p5hWK_rpMjAUiyCxqx8soodObqbrjV """ import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns df=pd.read_csv("Iris.csv") df df.info() df.describe() df.isnull().sum() from sklearn.preprocessing import LabelEncoder lab=LabelEncoder() df.iloc[:,-1]=lab.fit_transform(df.iloc[:,-1]) df X=df.iloc[:,1:5].values y=df.iloc[:,-1].values print("Dependent Variables:", df.columns[1:5]) print("Target Variable:", df.columns[-1]) sns.pairplot(df,hue='Species') plt.show() plt.figure(figsize=(12,12)) plt.subplot(2,2,1) sns.boxplot(x='Species',y='SepalLengthCm',data=df) plt.subplot(2,2,2) sns.boxplot(x="Species",y="SepalWidthCm",data=df) plt.subplot(2,2,3) sns.boxplot(x="Species",y="PetalLengthCm",data=df) plt.subplot(2,2,4) sns.boxplot(x="Species",y="PetalWidthCm",data=df) from sklearn.model_selection import train_test_split X_train,X_test,y_train,y_test=train_test_split(X,y,test_size=0.2,random_state=0) print("X_train :",X_train.shape) print("X_test :",X_test.shape) print("y_train :",y_train.shape) print("y_test :",y_test.shape) from sklearn.tree import DecisionTreeClassifier dct=DecisionTreeClassifier() dct.fit(X_train,y_train) dct.score(X_test,y_test) y_pred=dct.predict(X_test) y_pred from sklearn.metrics import confusion_matrix cm=confusion_matrix(y_test,y_pred) cm from sklearn import metrics from sklearn.metrics import accuracy_score print('Accuracy Score:', accuracy_score(y_test, y_pred)) from sklearn.tree import export_graphviz export_graphviz(dct,out_file="tree.dot") import graphviz with open("tree.dot") as f: dot_graph = f.read() graphviz.Source(dot_graph) from sklearn.externals.six import StringIO from IPython.display import Image import pydotplus dot_data = StringIO() export_graphviz(dct, out_file=dot_data, feature_names=df.columns[1:5], filled=True, rounded=True ) graph = pydotplus.graph_from_dot_data(dot_data.getvalue()) Image(graph.create_png())
18,873
8dd2d267fd23c07545f68d01e24613624b24c500
#!/usr/bin/env python3.7 import os import json import copy import datetime from smbus2 import SMBus from cereal import log from common.basedir import BASEDIR from common.params import Params from common.realtime import sec_since_boot, DT_TRML from common.numpy_fast import clip from common.filter_simple import FirstOrderFilter from selfdrive.version import terms_version, training_version from selfdrive.swaglog import cloudlog import selfdrive.messaging as messaging from selfdrive.services import service_list from selfdrive.loggerd.config import get_available_percent ThermalStatus = log.ThermalData.ThermalStatus CURRENT_TAU = 15. # 15s time constant DAYS_NO_CONNECTIVITY_MAX = 7 # do not allow to engage after a week without internet DAYS_NO_CONNECTIVITY_PROMPT = 4 # send an offroad prompt after 4 days with no internet with open(BASEDIR + "/selfdrive/controls/lib/alerts_offroad.json") as json_file: OFFROAD_ALERTS = json.load(json_file) def read_tz(x): with open("/sys/devices/virtual/thermal/thermal_zone%d/temp" % x) as f: ret = max(0, int(f.read())) return ret def read_thermal(): dat = messaging.new_message() dat.init('thermal') dat.thermal.cpu0 = read_tz(5) dat.thermal.cpu1 = read_tz(7) dat.thermal.cpu2 = read_tz(10) dat.thermal.cpu3 = read_tz(12) dat.thermal.mem = read_tz(2) dat.thermal.gpu = read_tz(16) dat.thermal.bat = read_tz(29) return dat LEON = False def setup_eon_fan(): global LEON os.system("echo 2 > /sys/module/dwc3_msm/parameters/otg_switch") bus = SMBus(7, force=True) try: bus.write_byte_data(0x21, 0x10, 0xf) # mask all interrupts bus.write_byte_data(0x21, 0x03, 0x1) # set drive current and global interrupt disable bus.write_byte_data(0x21, 0x02, 0x2) # needed? bus.write_byte_data(0x21, 0x04, 0x4) # manual override source except IOError: print("LEON detected") #os.system("echo 1 > /sys/devices/soc/6a00000.ssusb/power_supply/usb/usb_otg") LEON = True bus.close() last_eon_fan_val = None def set_eon_fan(val): global LEON, last_eon_fan_val if last_eon_fan_val is None or last_eon_fan_val != val: bus = SMBus(7, force=True) if LEON: try: i = [0x1, 0x3 | 0, 0x3 | 0x08, 0x3 | 0x10][val] bus.write_i2c_block_data(0x3d, 0, [i]) except IOError: # tusb320 if val == 0: bus.write_i2c_block_data(0x67, 0xa, [0]) else: bus.write_i2c_block_data(0x67, 0xa, [0x20]) bus.write_i2c_block_data(0x67, 0x8, [(val-1)<<6]) else: bus.write_byte_data(0x21, 0x04, 0x2) bus.write_byte_data(0x21, 0x03, (val*2)+1) bus.write_byte_data(0x21, 0x04, 0x4) bus.close() last_eon_fan_val = val # temp thresholds to control fan speed - high hysteresis _TEMP_THRS_H = [50., 65., 80., 10000] # temp thresholds to control fan speed - low hysteresis _TEMP_THRS_L = [42.5, 57.5, 72.5, 10000] # fan speed options _FAN_SPEEDS = [0, 16384, 32768, 65535] # max fan speed only allowed if battery is hot _BAT_TEMP_THERSHOLD = 45. def handle_fan(max_cpu_temp, bat_temp, fan_speed): new_speed_h = next(speed for speed, temp_h in zip(_FAN_SPEEDS, _TEMP_THRS_H) if temp_h > max_cpu_temp) new_speed_l = next(speed for speed, temp_l in zip(_FAN_SPEEDS, _TEMP_THRS_L) if temp_l > max_cpu_temp) if new_speed_h > fan_speed: # update speed if using the high thresholds results in fan speed increment fan_speed = new_speed_h elif new_speed_l < fan_speed: # update speed if using the low thresholds results in fan speed decrement fan_speed = new_speed_l if bat_temp < _BAT_TEMP_THERSHOLD: # no max fan speed unless battery is hot fan_speed = min(fan_speed, _FAN_SPEEDS[-2]) set_eon_fan(fan_speed//16384) return fan_speed def thermald_thread(): setup_eon_fan() # prevent LEECO from undervoltage BATT_PERC_OFF = 10 if LEON else 3 # now loop thermal_sock = messaging.pub_sock(service_list['thermal'].port) health_sock = messaging.sub_sock(service_list['health'].port) location_sock = messaging.sub_sock(service_list['gpsLocation'].port) fan_speed = 0 count = 0 off_ts = None started_ts = None started_seen = False thermal_status = ThermalStatus.green thermal_status_prev = ThermalStatus.green usb_power = True usb_power_prev = True health_sock.RCVTIMEO = int(1000 * 2 * DT_TRML) # 2x the expected health frequency current_filter = FirstOrderFilter(0., CURRENT_TAU, DT_TRML) health_prev = None current_connectivity_alert = None params = Params() while 1: health = messaging.recv_sock(health_sock, wait=True) location = messaging.recv_sock(location_sock) location = location.gpsLocation if location else None msg = read_thermal() # clear car params when panda gets disconnected if health is None and health_prev is not None: params.panda_disconnect() health_prev = health if health is not None: usb_power = health.health.usbPowerMode != log.HealthData.UsbPowerMode.client # loggerd is gated based on free space avail = get_available_percent() / 100.0 # thermal message now also includes free space msg.thermal.freeSpace = avail with open("/sys/class/power_supply/battery/capacity") as f: msg.thermal.batteryPercent = int(f.read()) with open("/sys/class/power_supply/battery/status") as f: msg.thermal.batteryStatus = f.read().strip() with open("/sys/class/power_supply/battery/current_now") as f: msg.thermal.batteryCurrent = int(f.read()) with open("/sys/class/power_supply/battery/voltage_now") as f: msg.thermal.batteryVoltage = int(f.read()) with open("/sys/class/power_supply/usb/present") as f: msg.thermal.usbOnline = bool(int(f.read())) current_filter.update(msg.thermal.batteryCurrent / 1e6) # TODO: add car battery voltage check max_cpu_temp = max(msg.thermal.cpu0, msg.thermal.cpu1, msg.thermal.cpu2, msg.thermal.cpu3) / 10.0 max_comp_temp = max(max_cpu_temp, msg.thermal.mem / 10., msg.thermal.gpu / 10.) bat_temp = msg.thermal.bat/1000. fan_speed = handle_fan(max_cpu_temp, bat_temp, fan_speed) msg.thermal.fanSpeed = fan_speed # thermal logic with hysterisis if max_cpu_temp > 107. or bat_temp >= 63.: # onroad not allowed thermal_status = ThermalStatus.danger elif max_comp_temp > 92.5 or bat_temp > 60.: # CPU throttling starts around ~90C # hysteresis between onroad not allowed and engage not allowed thermal_status = clip(thermal_status, ThermalStatus.red, ThermalStatus.danger) elif max_cpu_temp > 87.5: # hysteresis between engage not allowed and uploader not allowed thermal_status = clip(thermal_status, ThermalStatus.yellow, ThermalStatus.red) elif max_cpu_temp > 80.0: # uploader not allowed thermal_status = ThermalStatus.yellow elif max_cpu_temp > 75.0: # hysteresis between uploader not allowed and all good thermal_status = clip(thermal_status, ThermalStatus.green, ThermalStatus.yellow) else: # all good thermal_status = ThermalStatus.green # **** starting logic **** # Check for last update time and display alerts if needed now = datetime.datetime.now() try: last_update = datetime.datetime.fromisoformat(params.get("LastUpdateTime", encoding='utf8')) except (TypeError, ValueError): last_update = now dt = now - last_update if dt.days > DAYS_NO_CONNECTIVITY_MAX: if current_connectivity_alert != "expired": current_connectivity_alert = "expired" params.delete("Offroad_ConnectivityNeededPrompt") params.put("Offroad_ConnectivityNeeded", json.dumps(OFFROAD_ALERTS["Offroad_ConnectivityNeeded"])) elif dt.days > DAYS_NO_CONNECTIVITY_PROMPT: remaining_time = str(DAYS_NO_CONNECTIVITY_MAX - dt.days) if current_connectivity_alert != "prompt" + remaining_time: current_connectivity_alert = "prompt" + remaining_time alert_connectivity_prompt = copy.copy(OFFROAD_ALERTS["Offroad_ConnectivityNeededPrompt"]) alert_connectivity_prompt["text"] += remaining_time + " days." params.delete("Offroad_ConnectivityNeeded") params.put("Offroad_ConnectivityNeededPrompt", json.dumps(alert_connectivity_prompt)) elif current_connectivity_alert is not None: current_connectivity_alert = None params.delete("Offroad_ConnectivityNeeded") params.delete("Offroad_ConnectivityNeededPrompt") # start constellation of processes when the car starts ignition = health is not None and health.health.started do_uninstall = params.get("DoUninstall") == b"1" accepted_terms = params.get("HasAcceptedTerms") == terms_version completed_training = params.get("CompletedTrainingVersion") == training_version should_start = ignition # have we seen a panda? passive = (params.get("Passive") == "1") # with 2% left, we killall, otherwise the phone will take a long time to boot should_start = should_start and msg.thermal.freeSpace > 0.02 # confirm we have completed training and aren't uninstalling should_start = should_start and accepted_terms and (passive or completed_training) and (not do_uninstall) # if any CPU gets above 107 or the battery gets above 63, kill all processes # controls will warn with CPU above 95 or battery above 60 if thermal_status >= ThermalStatus.danger: should_start = False if thermal_status_prev < ThermalStatus.danger: params.put("Offroad_TemperatureTooHigh", json.dumps(OFFROAD_ALERTS["Offroad_TemperatureTooHigh"])) else: if thermal_status_prev >= ThermalStatus.danger: params.delete("Offroad_TemperatureTooHigh") if should_start: off_ts = None if started_ts is None: started_ts = sec_since_boot() started_seen = True os.system('echo performance > /sys/class/devfreq/soc:qcom,cpubw/governor') else: started_ts = None if off_ts is None: off_ts = sec_since_boot() os.system('echo powersave > /sys/class/devfreq/soc:qcom,cpubw/governor') # shutdown if the battery gets lower than 3%, it's discharging, we aren't running for # more than a minute but we were running if msg.thermal.batteryPercent < BATT_PERC_OFF and msg.thermal.batteryStatus == "Discharging" and \ started_seen and (sec_since_boot() - off_ts) > 60: os.system('LD_LIBRARY_PATH="" svc power shutdown') msg.thermal.chargingError = current_filter.x > 0. and msg.thermal.batteryPercent < 90 # if current is positive, then battery is being discharged msg.thermal.started = started_ts is not None msg.thermal.startedTs = int(1e9*(started_ts or 0)) msg.thermal.thermalStatus = thermal_status thermal_sock.send(msg.to_bytes()) if usb_power_prev and not usb_power: params.put("Offroad_ChargeDisabled", json.dumps(OFFROAD_ALERTS["Offroad_ChargeDisabled"])) elif usb_power and not usb_power_prev: params.delete("Offroad_ChargeDisabled") thermal_status_prev = thermal_status usb_power_prev = usb_power print(msg) # report to server once per minute if (count % int(60. / DT_TRML)) == 0: cloudlog.event("STATUS_PACKET", count=count, health=(health.to_dict() if health else None), location=(location.to_dict() if location else None), thermal=msg.to_dict()) count += 1 def main(gctx=None): thermald_thread() if __name__ == "__main__": main()
18,874
924a6da759ae32f5a2a883ed3239cf847dff4a9b
""" 问题描述: 牛牛与妞妞闲来无聊,便拿出扑克牌来进行游戏。游戏的规则很简单,两个人随机 抽取四张牌,四张牌的数字和最大的取胜(该扑克牌总张数为52张,没有大小王,A=1,J=11, Q=12,K=13,每种数字有四张牌),现在两人已经分别亮出了自己的前三张牌,牛牛想要知 道自己要赢得游戏的概率有多大。 输入包含两行,第一行输入三个整数a1,b1,c1(1≤a1,b1,c1≤13),表示牛牛亮出的扑克牌。 第二行输入三个整数a2,b2,c2(1≤a2,b2,c2≤13),表示妞妞所亮出的扑克牌。 示例: 3 5 7 2 6 8 输出: 0.3995 """ class Solution: def get_properties(self, a1, a2, a3, b1, b2, b3): a = [0 for _ in range(60)] vis = [0 for _ in range(15)] vis[a1] += 1 vis[a2] += 1 vis[a3] += 1 vis[b1] += 1 vis[b2] += 1 vis[b3] += 1 sum1 = a1 + a2 + a3 sum2 = b1 + b2 + b3 cnt = 0 l, r = 0, 0 for i in range(1, 14): for j in range(0, 4-vis[i]): a[cnt] = i cnt += 1 for i in range(cnt): sum1 += a[i] for j in range(cnt): if i == j: continue sum2 += a[j] r += 1 if sum1 > sum2: l += 1 sum2 -= a[j] sum1 -= a[i] print('%.4f' % (l / r)) if __name__ == '__main__': s = Solution() a, b, c = list(map(int, input().split())) d, e, f = list(map(int, input().split())) s.get_properties(a, b, c, d, e, f)
18,875
45dc38155b0cbd7bd1b4f0d14a2f17ec78bb44e8
#!/usr/bin/env python # -*- coding: utf-8 -*- # ============================================================================== # \file gen-records.py # \author chenghuige # \date 2019-07-27 22:33:36.314010 # \Description # ============================================================================== from __future__ import absolute_import from __future__ import division from __future__ import print_function import sys import os from absl import app as absl_app from absl import flags FLAGS = flags.FLAGS import glob from tqdm import tqdm import multiprocessing from multiprocessing import Value import gezi import melt from config import * import pandas as pd import tensorflow as tf flags.DEFINE_string('input', None, '') flags.DEFINE_string('out_dir', None, '') flags.DEFINE_bool('over_write', True, '') counter = Value('i', 0) def get_out_file(infile): infile_ = os.path.basename(infile) ofile_ = infile_.replace('.csv', '.record') ofile = os.path.join(FLAGS.out_dir, ofile_) return ofile def build_features(infile): ofile = get_out_file(infile) if not FLAGS.over_write: if os.path.exists(ofile): print('-----exists', ofile) return df = pd.read_csv(infile) with melt.tfrecords.Writer(ofile) as writer: for _, row in tqdm(df.iterrows(), total=len(df), ascii=True): id = row['id_code'] label = 0 if 'diagnosis' in row: label = row['diagnosis'] image_file = f'{FLAGS.out_dir}_images/{id}.png' image = melt.read_image(image_file) feature = {'id': melt.bytes_feature(id), 'label': melt.int64_feature(label), 'image': melt.bytes_feature(image)} record = tf.train.Example(features=tf.train.Features(feature=feature)) writer.write(record) global counter with counter.get_lock(): counter.value += 1 def main(_): input = f'{FLAGS.dir}/{FLAGS.input}' files = glob.glob(input) gezi.sprint(input) FLAGS.out_dir = f'{FLAGS.dir}/tfrecords/{FLAGS.out_dir}' out_dir = FLAGS.out_dir if not os.path.exists(out_dir): print('make new dir: [%s]' % out_dir, file=sys.stderr) os.makedirs(out_dir) gezi.sprint(out_dir) pool = multiprocessing.Pool() pool.map(build_features, files) pool.close() pool.join() print('num_records:', counter.value) out_file = '{}/num_records.txt'.format(out_dir) gezi.write_to_txt(counter.value, out_file) if __name__ == '__main__': absl_app.run(main)
18,876
43d92d891add165e77066bcc14b60507cd09ee57
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('gallery', '0002_exhibition'), ] operations = [ migrations.AlterField( model_name='exhibition', name='end', field=models.DateField(default=None, null=True, blank=True), preserve_default=True, ), ]
18,877
0dad65680aaa9c12f13b0fa8904635b8e6d9918c
#!/usr/bin/env python import sys import rospy from srv_example.srv import * # Service call handler def add_two_ints_client(x, y): # Wait for service to become available rospy.wait_for_service('add_two_ints') try: # The service proxy handles the service call, like a temporary node! # add_two_ints is the service name # AddTwoInts is the service type/file add_two_ints = rospy.ServiceProxy('add_two_ints', AddTwoInts) resp1 = add_two_ints(x, y) return resp1.Sum except rospy.ServiceException, e: print("Service call failed: %s" % e) # Invalid call reminder def usage(): return "Usage: %s [x y]" % sys.argv[0] if __name__ == "__main__": # If the service call was properly formatted, proceed if len(sys.argv) == 3: x = int(sys.argv[1]) y = int(sys.argv[2]) # Else, remind the user of the proper usage else: print(usage()) sys.exit(1) # Terminate the script print("Requesting %s+%s" % (x, y)) print("%s + %s = %s" % (x, y, add_two_ints_client(x, y)))
18,878
6f9a24fa9c1cdf0b9f9cccb1366f76aeb40d9e3b
#Initializing a 2D list list = [[10,2,34,56],[122,34,45,67],[23,2232,12]] #Prints all the lists present inside a list print(list) #prints the second element in the first list print(list[0][1]) #Prints the fourth element in the second list print(list[1][3]) #prints the last element in the third list print(list[2][2]) #Appends data in the third list list[2].append(100) #Modifying the value in the third list list[2][0] = 500 #Prints the modified list after appending and modify the contents in the list print("Modified list:",list) #List iteration for 2D lists print() #Method 1 def method1_2D(list): for i in range(len(list)): for j in range(len(list[i])): print(list[i][j],end=" ") #Ends with a space instead of a newline print() #Method 2 def method2_2D(list): for inner in list: for item in inner: print(item,end=" ") print() print("2D List iteration using method 1:") method1_2D(list) print("\n2D List iteration using method 2") method2_2D(list) #Sorting 2D lists listSort=[[23,34,341,213],[10,11,4,'bye','hi'],[12]] print("The 2D list before sorting:",listSort) print("The 2D list after sorting:") print(sorted(listSort)) #Different ways to sort a 2D list listScores=[[6,4,2,1],[6,6,1,2],[2,5,4,3,4,1],[6,1,6,2,6,6,6,6,3]] print(sorted(listScores,key=sum)) #Sort based on the sum of each list def avg(listScores): return sum(listScores) / len(listScores) print(sorted(listScores,key=avg)) #Sort based on the average of each list
18,879
35fb8b65466652335b4b9b1ed86ea5bea8b08df8
import json from six.moves.urllib.parse import parse_qsl, urlparse import pytest import workos from workos.sso import SSO from workos.utils.connection_types import ConnectionType from workos.utils.request import RESPONSE_TYPE_CODE class TestSSO(object): @pytest.fixture(autouse=True) def setup(self, set_api_key_and_project_id): self.provider = ConnectionType.GoogleOAuth self.customer_domain = "workos.com" self.redirect_uri = "https://localhost/auth/callback" self.state = json.dumps({"things": "with_stuff",}) self.sso = SSO() @pytest.fixture def mock_profile(self): return { "id": "prof_01DWAS7ZQWM70PV93BFV1V78QV", "email": "demo@workos-okta.com", "first_name": "WorkOS", "last_name": "Demo", "connection_id": "conn_01EMH8WAK20T42N2NBMNBCYHAG", "connection_type": "OktaSAML", "idp_id": "00u1klkowm8EGah2H357", "raw_attributes": { "email": "demo@workos-okta.com", "first_name": "WorkOS", "last_name": "Demo", }, } @pytest.fixture def mock_connection(self): return { "object": "connection", "id": "conn_id", "status": "linked", "name": "Google OAuth 2.0", "connection_type": "GoogleOAuth", "oauth_uid": "oauth-uid.apps.googleusercontent.com", "oauth_secret": "oauth-secret", "oauth_redirect_uri": "https://auth.workos.com/sso/oauth/google/chicken/callback", "saml_entity_id": None, "saml_idp_url": None, "saml_relying_party_trust_cert": None, "saml_x509_certs": None, "domains": [ { "object": "connection_domain", "id": "domain_id", "domain": "terrace-house.com", }, ], } def test_authorization_url_throws_value_error_with_missing_domain_and_provider( self, ): with pytest.raises(ValueError, match=r"Incomplete arguments.*"): self.sso.get_authorization_url( redirect_uri=self.redirect_uri, state=self.state ) def test_authorization_url_throws_value_error_with_incorrect_provider_type(self): with pytest.raises( ValueError, match="'provider' must be of type ConnectionType" ): self.sso.get_authorization_url( provider="foo", redirect_uri=self.redirect_uri, state=self.state ) def test_authorization_url_has_expected_query_params_with_provider(self): authorization_url = self.sso.get_authorization_url( provider=self.provider, redirect_uri=self.redirect_uri, state=self.state ) parsed_url = urlparse(authorization_url) assert dict(parse_qsl(parsed_url.query)) == { "provider": str(self.provider.value), "client_id": workos.project_id, "redirect_uri": self.redirect_uri, "response_type": RESPONSE_TYPE_CODE, "state": self.state, } def test_authorization_url_has_expected_query_params_with_domain(self): authorization_url = self.sso.get_authorization_url( domain=self.customer_domain, redirect_uri=self.redirect_uri, state=self.state, ) parsed_url = urlparse(authorization_url) assert dict(parse_qsl(parsed_url.query)) == { "domain": self.customer_domain, "client_id": workos.project_id, "redirect_uri": self.redirect_uri, "response_type": RESPONSE_TYPE_CODE, "state": self.state, } def test_authorization_url_has_expected_query_params_with_domain_and_provider(self): authorization_url = self.sso.get_authorization_url( domain=self.customer_domain, provider=self.provider, redirect_uri=self.redirect_uri, state=self.state, ) parsed_url = urlparse(authorization_url) assert dict(parse_qsl(parsed_url.query)) == { "domain": self.customer_domain, "provider": str(self.provider.value), "client_id": workos.project_id, "redirect_uri": self.redirect_uri, "response_type": RESPONSE_TYPE_CODE, "state": self.state, } def test_get_profile_returns_expected_workosprofile_object( self, mock_profile, mock_request_method ): response_dict = { "profile": { "object": "profile", "id": mock_profile["id"], "email": mock_profile["email"], "first_name": mock_profile["first_name"], "connection_id": mock_profile["connection_id"], "connection_type": mock_profile["connection_type"], "last_name": mock_profile["last_name"], "idp_id": mock_profile["idp_id"], "raw_attributes": { "email": mock_profile["raw_attributes"]["email"], "first_name": mock_profile["raw_attributes"]["first_name"], "last_name": mock_profile["raw_attributes"]["last_name"], }, }, "access_token": "01DY34ACQTM3B1CSX1YSZ8Z00D", } mock_request_method("post", response_dict, 200) profile = self.sso.get_profile(123) assert profile.to_dict() == mock_profile def test_create_connection(self, mock_request_method, mock_connection): response_dict = { "object": "connection", "id": mock_connection["id"], "name": mock_connection["name"], "status": mock_connection["status"], "connection_type": mock_connection["connection_type"], "oauth_uid": mock_connection["oauth_uid"], "oauth_secret": mock_connection["oauth_secret"], "oauth_redirect_uri": mock_connection["oauth_redirect_uri"], "saml_entity_id": mock_connection["saml_entity_id"], "saml_idp_url": mock_connection["saml_idp_url"], "saml_relying_party_trust_cert": mock_connection[ "saml_relying_party_trust_cert" ], "saml_x509_certs": mock_connection["saml_x509_certs"], "domains": mock_connection["domains"], } mock_request_method("post", mock_connection, 201) connection = self.sso.create_connection("draft_conn_id") assert connection == response_dict
18,880
d08d03887b6b47369ddff95ddc570626ea309462
import cherrypy import core.config as s_config import core.models.tablet import core.api.gameapi import core.api.viewerapi import core.api.scoutingapi import core.api.teamapi import core.api.eventapi import core.api.tabletapi import core.api.matchapi if __name__ == '__main__': cherrypy.config.update( {'server.socket_host': '0.0.0.0', 'server.socket_port': 8080}) conf = {"/": {'tools.staticdir.on': True, 'tools.staticdir.dir': s_config.web_base(), 'tools.response_headers.on': True, 'tools.response_headers.headers': [('Access-Control-Allow-Origin', '*')]}} def secure_headers(): cherrypy.response.headers["Access-Control-Allow-Origin"] = "*" cherrypy.tools.secure_headers = cherrypy.Tool( 'before_handler', secure_headers, None, priority=30) cherrypy.tree.mount(core.api.viewerapi.ViewerApi(False), '/view', config=conf) cherrypy.tree.mount(core.api.gameapi.GameApi(), '/game', config=conf) cherrypy.tree.mount(core.api.teamapi.TeamApi(), '/team', config=conf) cherrypy.tree.mount(core.api.tabletapi.TabletApi(), '/tablet', config=conf) cherrypy.tree.mount(core.api.eventapi.EventApi(), '/event', config=conf) cherrypy.tree.mount(core.api.matchapi.MatchApi(), '/match', config=conf) cherrypy.tree.mount(core.api.scoutingapi.ScoutingApi(), '/', config=conf) cherrypy.engine.signals.subscribe() cherrypy.engine.start() cherrypy.engine.block()
18,881
ecd1a49319674ffa9f7370e2a5e83bfff42ea5af
uri="mongodb://admin:admin1@ds053300.mlab.com:53300/c4e25" #1.connect to mlab server from pymongo import MongoClient client=MongoClient(uri) #2.get a database db= client.get_database() # #3. get a CONNECTION # collection = db.test_collection # #4.CREATE A DOCUMENT # import datetime # post={ # "author": "Mike", # "text": "My first blog post!", # "tags": ["mongodb", "python", "pymongo"], # "date": datetime.datetime.utcnow() # } # #5.inseert document # posts = db.posts # post_id = posts.insert_one(post).inserted_id # post_id #3. get a CONNECTION post_collection = db["post"] #4.CREATE A DOCUMENT new_post={ "title":"sunny day", #field title "content":"hello", } #5.inseert document post_collection.insert_one(new_post) # for post in post_collection.find(): # print(post_collection) # # close connection # client.close() # # lazyloading # post_list=post_collection.find() # # first_post=post_list[0] # # print(first_post) # for p in post_list: # print(p)
18,882
5094f06c9a6f31bcce066454ea982aed0f087d1a
import numpy as np a = np.array([1,2,3]) print(a) # Multi-dimension b = np.array([[10,12,13,14],[21,22,23,24]]) #3d c = np.array([ [[1,2],[3,4],[9,10]],[[5,6],[7,8],[11,12]] ]) print(b) print(c) #Get dimension print(a.ndim) print(b.ndim) print(c.ndim) # Get Shape print(a.shape) # The outermost dimension will have 2 arrays, each with 4 elements: print(b.shape) # The outermost dimension will have 2 arrays that contains 3 arrays, each with 2 elements: print(c.shape) # Get Size (count num of elements in whole) print(a.size) print(b.size)
18,883
373a6bdb981a3a030d14ace02ff53e9c1a3ef10d
# testsplitter.py import splitter import doctest nfail, ntests = doctest.testmod(splitter) print(nfail, ntests)
18,884
07098c3bd38a5aa4ca99411e2fcb0fb69740e8ec
#!/usr/bin/env python # -*- coding:utf-8 -*- # Time: 2019/10/15 11:14 # Author: Hou hailun class ListNode(object): def __init__(self, x): self.val = x self.next = None class Solution(object): def middleNode(self, head): """ :type head: ListNode :rtype: ListNode """ # 快慢指针,快指针每次走2步,慢指针每次走1步 if head is None and head.next is None: return head slow = head fast = head while fast and fast.next: fast = fast.next.next slow = slow.next return slow
18,885
07cdc6c5bf6d25fa9b4c97dc9f59034565aa6748
# -*- coding: utf-8 -*- import scrapy import json from ..items import BookItem class Z51zhySpider(scrapy.Spider): name = 'z51zhy' allowed_domains = ['51zhy.cn'] custom_settings = { 'DOWNLOADER_MIDDLEWARES': { 'book.middlewares.Z51ZHYBookDownloaderMiddleware': 543, }, 'ITEM_PIPELINES': { 'book.pipelines.Z51ZHYBookPDFPipeline': 300 }, 'FILES_STORE': 'z51zhy/', 'DOWNLOAD_DELAY': 3, } def start_requests(self): headers = { 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'Accept-Encoding': 'gzip, deflate', 'Accept-Language': 'zh-HK,zh;q=0.9,en-US;q=0.8,en;q=0.7,zh-TW;q=0.6', 'Cache-Control': 'max-age=0', 'Connection': 'keep-alive', 'Host': 'yd.51zhy.cn', 'Upgrade-Insecure-Requests': '1', 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', } url = 'http://yd.51zhy.cn/ebook/web/search/search4HomePage' total = 20600 # total = 15 size = 15 max_page = int(total / size) + 1 for i in range(1, max_page): yield scrapy.Request(url='{}?currentPage={}'.format(url, i), headers=headers, callback=self.parse) def parse(self, response): url = 'https://bridge.51zhy.cn/transfer/content/authorize' ids = response.css('ul li.ebook-item input.search_Input::attr(value)').getall() meta = response.meta for id in ids: meta['id'] = id form = { 'id': id, 'BridgePlatformName': 'phei_yd_web', 'DeviceToken': 'ebookE0415F559DF90E6D52123BBB653436B2', 'AppId': '3', 'type': 'aes' } yield scrapy.FormRequest(url=url, meta=meta, formdata=form, callback=self.parse_authorize) def parse_authorize(self, response): data = json.loads(response.text) o = data['Data'] meta = response.meta meta['url'] = o['Url'] meta['key'] = o['Key'] url = 'https://bridge.51zhy.cn/transfer/Content/Detail?AppId=3&BridgePlatformName=phei_yd_web&id={}'.format(response.meta['id']) form = { 'id': meta['id'], 'BridgePlatformName': 'phei_yd_web', 'DeviceToken': 'ebookE0415F559DF90E6D52123BBB653436B2', 'AppId': '3' } yield scrapy.FormRequest(url=url, meta=meta, formdata=form, callback=self.parse_detail) def parse_detail(self, response): data = json.loads(response.text) o = data['Data'] book = BookItem() book['img'] = o['CoverUrl'] book['price'] = o['CurrentPrice'] book['name'] = o['Title'] book['publishdate'] = o['PublishDate'] book['id'] = response.meta['id'] book['writer'] = o['Author'] book['file_urls'] = [response.meta['url']] book['files'] = [] book['key'] = response.meta['key'] yield book
18,886
2ca34b75f0a72be52613aaa52c4d474b76bfcafc
import numpy as np import scr.FigureSupport as Fig class Game(object): def __init__(self, id, prob_head): self._id = id self._rnd = np.random self._rnd.seed(id) self._probHead = prob_head # probability of flipping a head self._countWins = 0 # number of wins, set to 0 to begin self._reward = 0 def simulate(self, n_of_flips): count_tails = 0 # number of consecutive tails so far, set to 0 to begin # flip the coin 20 times for i in range(n_of_flips): # in the case of flipping a heads if self._rnd.random_sample() < self._probHead: if count_tails >= 2: # if the series is ..., T, T, H self._countWins += 1 # increase the number of wins by 1 count_tails = 0 # the tails counter needs to be reset to 0 because a heads was flipped # in the case of flipping a tails else: count_tails += 1 # increase tails count by one def get_reward(self): # calculate the reward from playing a single game self._reward = 100*self._countWins - 250 return self._reward class SetOfGames: def __init__(self, prob_head, n_games): self._gameRewards = [] # create an empty list where rewards will be stored # simulate the games for n in range(n_games): # create a new game game = Game(id=n, prob_head=prob_head) # simulate the game with 20 flips game.simulate(20) # store the reward self._gameRewards.append(game.get_reward()) def get_all_reward(self): return self._gameRewards def get_ave_reward(self): """ returns the average reward from all games""" return sum(self._gameRewards) / len(self._gameRewards) def prob_lose(self): tlr = 0 # the times that you lose money for everyreward in self._gameRewards: if everyreward < 0: tlr += 1 return tlr/len(self._gameRewards) # run trail of 1000 games to calculate expected reward games = SetOfGames(prob_head=0.5, n_games=1000) # print all rewards print('All reward:', games.get_all_reward()) # print the average reward print('Expected reward when the probability of head is 0.5:', games.get_ave_reward()) #Problem 1:Draw the histogram of rewards in 1000 games with a fair coin Fig.graph_histogram( observations=games.get_all_reward(), title='Histogram of Game Reward', x_label='Reward($)', y_label='Count') # Answer for problem 1: #the minimum and maximum reward that I expect to see is $-250 and $250 # Problem 2:Estimate the probability of losing money in this game print('The probability of losing money in this game:',games.prob_lose())
18,887
953ce684746ee979795a6a347242ac157b9dd7f8
"""utils.py""" # -*- coding: utf-8 -*- import uuid import hashlib import json from django.db import IntegrityError, transaction from django.core.exceptions import ObjectDoesNotExist from django.db.models import Q, Exists, OuterRef, Count from notifications.signals import notify from papersfeed import constants from papersfeed.utils.base_utils import is_parameter_exists, get_results_from_queryset, ApiError from papersfeed.utils.collections.utils import __get_collection_user_count from papersfeed.models.users.user import User from papersfeed.models.users.user_follow import UserFollow from papersfeed.models.collections.collection import Collection from papersfeed.models.collections.collection_user import CollectionUser, COLLECTION_USER_TYPE def select_session(args): """Sign In""" is_parameter_exists([ constants.EMAIL, constants.PASSWORD ], args) # Email email = args[constants.EMAIL] # Password password = args[constants.PASSWORD] # Request request = args[constants.REQUEST] try: user = User.objects.get(email=email) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) else: if not __is_correct_password(password, user): raise ApiError(constants.AUTH_ERROR) # Set Session Id request.session[constants.ID] = user.id users, _, _ = __get_users(Q(id=user.id), user, None) if not users: raise ApiError(constants.NOT_EXIST_OBJECT) return users[0] def delete_session(args): """Sign Out""" # Request request = args[constants.REQUEST] try: del request.session[constants.ID] except KeyError: pass def select_me(args): """Get Current User""" # Request User- request_user = args[constants.USER] if constants.USER in args else None # User ID user_id = request_user.id users, _, _ = __get_users(Q(id=user_id), request_user, None) if not users: raise ApiError(constants.NOT_EXIST_OBJECT) return users[0] def insert_user(args): """Insert New User""" is_parameter_exists([ constants.EMAIL, constants.USERNAME, constants.PASSWORD ], args) # # Request User # request_user = args[constants.USER] # Email email = args[constants.EMAIL] # User Name username = args[constants.USERNAME] # Password password = args[constants.PASSWORD] # Check parameters are valid if not email or not username or not password: raise ApiError(constants.PARAMETER_ERROR) # Check username if User.objects.filter(username=username).exists(): raise ApiError(constants.USERNAME_ALREADY_EXISTS) # Check email if User.objects.filter(email=email).exists(): raise ApiError(constants.EMAIL_ALREADY_EXISTS) hashed, salt = __hash_password(password) try: user = User.objects.create_user( description=None, email=email, username=username, password=hashed, salt=salt ) except IntegrityError: raise ApiError(constants.USERNAME_ALREADY_EXISTS) users, _, _ = __get_users(Q(id=user.id), user, None) if not users: raise ApiError(constants.NOT_EXIST_OBJECT) return users[0] def update_user(args): """Update User""" # User user = args[constants.USER] # Descrpition description = args[constants.DESCRIPTION] if constants.DESCRIPTION in args else None # Email email = args[constants.EMAIL] if constants.EMAIL in args else None # User Name username = args[constants.USERNAME] if constants.USERNAME in args else None # Password password = args[constants.PASSWORD] if constants.PASSWORD in args else None # User Photo Index photo_index = args[constants.PHOTO_INDEX] if constants.PHOTO_INDEX in args else None # Update Descrpition if description is not None: #deleting description also should be supported # Change Description user.description = description # Update Email if email: # Check email if User.objects.filter(email=email).exists(): raise ApiError(constants.EMAIL_ALREADY_EXISTS) # Change Email user.email = email # Update User Name if username: # Check username if User.objects.filter(username=username).exists(): raise ApiError(constants.USERNAME_ALREADY_EXISTS) # Change User Name user.username = username # Update Password if password: hashed, salt = __hash_password(password) # Change Password user.password = hashed user.salt = salt if photo_index is not None: user.photoIndex = photo_index user.save() users, _, _ = __get_users(Q(id=user.id), user, None) if not users: raise ApiError(constants.NOT_EXIST_OBJECT) return users[0] def remove_user(args): """Resign""" # Request User request_user = args[constants.USER] # Request request = args[constants.REQUEST] # Delete Session try: del request.session[constants.ID] except KeyError: pass # Delete User request_user.delete() def select_user(args): """Get Single User""" is_parameter_exists([ constants.ID ], args) # Request User request_user = args[constants.USER] if constants.USER in args else None # User ID user_id = args[constants.ID] users, _, _ = __get_users(Q(id=user_id), request_user, None) if not users: raise ApiError(constants.NOT_EXIST_OBJECT) return users[0] def select_user_search(args): """Select User Search""" is_parameter_exists([ constants.TEXT ], args) # Request User request_user = args[constants.USER] # Search Keyword keyword = args[constants.TEXT] # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # User Queryset queryset = User.objects.filter(Q(username__icontains=keyword)).values_list('id', flat=True) total_count = queryset.count() # count whole users # User Ids user_ids = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not user_ids.has_next() # Users users, _, _ = __get_users(Q(id__in=user_ids), request_user, 10) return users, page_number, is_finished, total_count def select_user_following(args): """Select Users User is Following""" is_parameter_exists([ constants.ID ], args) # Request User request_user = args[constants.USER] # Requested User ID requested_user_id = args[constants.ID] # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # Check User Id if not User.objects.filter(id=requested_user_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # Following QuerySet queryset = UserFollow.objects.filter(following_user=requested_user_id).values_list('followed_user', flat=True) # User Ids user_ids = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not user_ids.has_next() # Filter Query filter_query = Q(id__in=user_ids) # Users users, _, _ = __get_users(filter_query, request_user, 10) return users, page_number, is_finished def select_user_followed(args): """Select User’s Followers""" is_parameter_exists([ constants.ID ], args) # Request User request_user = args[constants.USER] # Requested User ID requested_user_id = args[constants.ID] # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # Check User Id if not User.objects.filter(id=requested_user_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # Follower QuerySet queryset = UserFollow.objects.filter(followed_user=requested_user_id).values_list('following_user', flat=True) # User Ids user_ids = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not user_ids.has_next() # Filter Query filter_query = Q(id__in=user_ids) # Users users, _, _ = __get_users(filter_query, request_user, 10) return users, page_number, is_finished def get_users(filter_query, request_user, count): """Public Get Users""" return __get_users(filter_query, request_user, count) def insert_follow(args): """Insert Follow""" is_parameter_exists([ constants.ID ], args) # Followed User Id followed_user_id = int(args[constants.ID]) # Following User request_user = args[constants.USER] following_user_id = request_user.id # Self Follow if followed_user_id == following_user_id: raise ApiError(constants.UNPROCESSABLE_ENTITY) # If Not Already Following, Create One if not UserFollow.objects.filter(following_user_id=following_user_id, followed_user_id=followed_user_id).exists(): userfollow = UserFollow(following_user_id=following_user_id, followed_user_id=followed_user_id) userfollow.save() followed_user = User.objects.get(id=followed_user_id) notify.send( request_user, recipient=[followed_user], verb='started following you', action_object=userfollow, target=followed_user ) follow_counts = __get_follower_count([followed_user_id], 'followed_user_id') return {constants.FOLLOWER: follow_counts[followed_user_id] if followed_user_id in follow_counts else 0} def remove_follow(args): """Remove Follow""" is_parameter_exists([ constants.ID ], args) # Followed User Id followed_user_id = int(args[constants.ID]) # Following User following_user_id = args[constants.USER].id # Delete Existing Follow UserFollow.objects.filter(following_user_id=following_user_id, followed_user_id=followed_user_id).delete() follow_counts = __get_follower_count([followed_user_id], 'followed_user_id') return {constants.FOLLOWER: follow_counts[followed_user_id] if followed_user_id in follow_counts else 0} def select_user_collection(args): """Get Users of the given Collection""" is_parameter_exists([ constants.ID ], args) collection_id = args[constants.ID] request_user = args[constants.USER] # Decide if results include request_user if she or he is one of members includes_me = True if constants.INCLUDES_ME not in args else json.loads(args[constants.INCLUDES_ME]) # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # Check Collection Id if not Collection.objects.filter(id=collection_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # Members QuerySet (except 'pending') if includes_me: query = Q(collection_id=collection_id) & ~Q(type=COLLECTION_USER_TYPE[2]) else: query = Q(collection_id=collection_id) & ~Q(user_id=request_user.id) & ~Q(type=COLLECTION_USER_TYPE[2]) queryset = CollectionUser.objects.filter(query) # Members(including owner) Of Collections collection_members = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not collection_members.has_next() # Member Ids member_ids = [collection_member.user_id for collection_member in collection_members] member_ids = list(set(member_ids)) # Get Members params = { constants.COLLECTION_ID: collection_id } members, _, _ = __get_users(Q(id__in=member_ids), request_user, 10, params=params) return members, page_number, is_finished def insert_user_collection(args): """Add Users(members) of the given Collection""" is_parameter_exists([ constants.ID, constants.USER_IDS ], args) collection_id = int(args[constants.ID]) user_ids = args[constants.USER_IDS] request_user = args[constants.USER] # Check Collection Id try: collection = Collection.objects.get(id=collection_id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) # Self Add if request_user.id in user_ids: raise ApiError(constants.UNPROCESSABLE_ENTITY) # Add Users to Collection for user_id in user_ids: CollectionUser.objects.update_or_create( collection_id=collection_id, user_id=user_id, type=COLLECTION_USER_TYPE[2], # pending until invitees accept ) invited_users = User.objects.filter(Q(id__in=user_ids)) notify.send( request_user, recipient=invited_users, verb='invited you to', target=collection ) # Get the number of Members(including owner) Of Collections user_counts = __get_collection_user_count([collection_id], 'collection_id') return {constants.USERS: user_counts[collection_id] if collection_id in user_counts else 0} @transaction.atomic def update_user_collection(args): """Transfer ownership of the Collection to the User""" is_parameter_exists([ constants.ID, constants.USER_ID ], args) collection_id = int(args[constants.ID]) user_id = args[constants.USER_ID] request_user = args[constants.USER] # Revoke ownership from request_user try: collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=request_user.id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) # if request_user is not owner, then raise AUTH_ERROR if collection_user.type != COLLECTION_USER_TYPE[0]: raise ApiError(constants.AUTH_ERROR) collection_user.type = COLLECTION_USER_TYPE[1] # change to member collection_user.save() # Grant ownership to the user whose id is user_id try: collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=user_id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) collection_user.type = COLLECTION_USER_TYPE[0] # change to owner collection_user.save() def remove_user_collection(args): """Remove the Users from the Collection""" is_parameter_exists([ constants.ID, constants.USER_IDS ], args) collection_id = int(args[constants.ID]) user_ids = json.loads(args[constants.USER_IDS]) request_user = args[constants.USER] # Check Collection Id if not Collection.objects.filter(id=collection_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # if request_user is not owner, then raise AUTH_ERROR collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=request_user.id) if collection_user.type != COLLECTION_USER_TYPE[0]: raise ApiError(constants.AUTH_ERROR) # the owner cannot delete himself or herself # if the owner want to leave a collection, he or she must transfer it to other user # or deleting the collection would be a solution if request_user.id in user_ids: raise ApiError(constants.UNPROCESSABLE_ENTITY) CollectionUser.objects.filter(user_id__in=user_ids, collection_id=collection_id).delete() # Get the number of Members(including owner) Of Collections user_counts = __get_collection_user_count([collection_id], 'collection_id') return {constants.USERS: user_counts[collection_id] if collection_id in user_counts else 0} def remove_user_collection_self(args): """Leave the collection (member)""" is_parameter_exists([ constants.ID ], args) collection_id = int(args[constants.ID]) request_user = args[constants.USER] # Check Collection Id if not Collection.objects.filter(id=collection_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) try: collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=request_user.id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) # if request_user is not member, then raise AUTH_ERROR # the owner cannot delete himself or herself # if the owner want to leave a collection, he or she must transfer it to other user # or deleting the collection would be a solution if collection_user.type != COLLECTION_USER_TYPE[1]: raise ApiError(constants.AUTH_ERROR) collection_user.delete() # Get the number of Members(including owner) Of Collections user_counts = __get_collection_user_count([collection_id], 'collection_id') return {constants.USERS: user_counts[collection_id] if collection_id in user_counts else 0} def update_user_collection_pending(args): """'pending' user accepts invitation""" is_parameter_exists([ constants.ID ], args) collection_id = int(args[constants.ID]) request_user = args[constants.USER] # Check CollectionUser try: collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=request_user.id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) # Check Collection Id if not Collection.objects.filter(id=collection_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # if request_user is not 'pending', then raise AUTH_ERROR if collection_user.type != COLLECTION_USER_TYPE[2]: raise ApiError(constants.AUTH_ERROR) collection_user.type = COLLECTION_USER_TYPE[1] # change to member collection_user.save() # Get the number of Members(including owner) Of Collections user_counts = __get_collection_user_count([collection_id], 'collection_id') return {constants.USERS: user_counts[collection_id] if collection_id in user_counts else 0} def remove_user_collection_pending(args): """'pending' user dismisses invitation""" is_parameter_exists([ constants.ID ], args) collection_id = int(args[constants.ID]) request_user = args[constants.USER] # Check Collection Id if not Collection.objects.filter(id=collection_id).exists(): raise ApiError(constants.NOT_EXIST_OBJECT) # Check CollectionUser try: collection_user = CollectionUser.objects.get(collection_id=collection_id, user_id=request_user.id) except ObjectDoesNotExist: raise ApiError(constants.NOT_EXIST_OBJECT) # if request_user is not 'pending', then raise AUTH_ERROR if collection_user.type != COLLECTION_USER_TYPE[2]: raise ApiError(constants.AUTH_ERROR) collection_user.delete() def select_user_following_collection(args): """Get Following Users Not in Collection""" is_parameter_exists([ constants.COLLECTION_ID ], args) # Collection ID collection_id = args[constants.COLLECTION_ID] # Request User request_user = args[constants.USER] # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # QuerySet queryset = UserFollow.objects.annotate( is_in_collection=__is_in_collection('followed_user', collection_id) ).filter( following_user=request_user.id, is_in_collection=False ).values_list('followed_user', flat=True) # User Ids user_ids = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not user_ids.has_next() # Filter Query filter_query = Q(id__in=user_ids) # Users users, _, _ = __get_users(filter_query, request_user, 10) return users, page_number, is_finished def select_user_search_collection(args): """Search Users Not in Collection""" is_parameter_exists([ constants.TEXT, constants.COLLECTION_ID ], args) # Collection ID collection_id = args[constants.COLLECTION_ID] # Request User request_user = args[constants.USER] # Search Keyword keyword = args[constants.TEXT] # Page Number page_number = 1 if constants.PAGE_NUMBER not in args else int(args[constants.PAGE_NUMBER]) # User Queryset queryset = User.objects.annotate( is_in_collection=__is_in_collection('id', collection_id) ).filter( username__icontains=keyword, is_in_collection=False ).values_list('id', flat=True) # User Ids user_ids = get_results_from_queryset(queryset, 10, page_number) # is_finished is_finished = not user_ids.has_next() # Users users, _, _ = __get_users(Q(id__in=user_ids), request_user, 10) return users, page_number, is_finished def __get_users(filter_query, request_user, count, params=None): """Get Users By Query""" params = {} if params is None else params collection_id = None if constants.COLLECTION_ID not in params else params[constants.COLLECTION_ID] queryset = User.objects.filter( filter_query ).annotate( is_following=__is_following('id', request_user), is_followed=__is_followed('id', request_user) ) # FIXME: This function needs refactoring so that it works like that of collections/utils or reviews/utils total_count = queryset.count() if constants.TOTAL_COUNT in params else None users = get_results_from_queryset(queryset, count) pagination_value = users[len(users) - 1].id if users else 0 users = __pack_users(users, request_user, collection_id=collection_id) return users, pagination_value, total_count def __pack_users(users, request_user, collection_id=None): """Pack User Info""" packed = [] user_ids = [user.id for user in users] # Follower Count follower_counts = __get_follower_count(user_ids, 'followed_user_id') # Following Count following_counts = __get_following_count(user_ids, 'following_user_id') for user in users: user_id = user.id packed_user = { constants.ID: user_id, constants.USERNAME: user.username, constants.EMAIL: user.email, constants.DESCRIPTION: user.description if user.description else '', constants.PHOTO_INDEX: user.photoIndex, constants.COUNT: { constants.FOLLOWER: follower_counts[user_id] if user_id in follower_counts else 0, constants.FOLLOWING: following_counts[user_id] if user_id in following_counts else 0 } } if request_user and user.id != request_user.id: # 내 정보가 아니면 follow 관계 여부 추가 packed_user[constants.IS_FOLLOWED] = user.is_followed packed_user[constants.IS_FOLLOWING] = user.is_following if collection_id: packed_user[constants.COLLECTION_USER_TYPE] = CollectionUser.objects.get( user_id=user_id, collection_id=collection_id ).type packed.append(packed_user) return packed def __is_in_collection(outer_ref, collection_id): """Check User in Collection""" # NOTE: This function assume 'pending' users are members of the collection. # So, 'pending' users don't appear on InviteToCollectionModal return Exists( CollectionUser.objects.filter( user_id=OuterRef(outer_ref), collection_id=collection_id ) ) def __is_following(outer_ref, request_user): """Check User Following""" return Exists( UserFollow.objects.filter( followed_user_id=OuterRef(outer_ref), following_user_id=request_user.id if request_user else None ) ) def __is_followed(outer_ref, request_user): """Check User Followed""" return Exists( UserFollow.objects.filter( followed_user_id=request_user.id if request_user else None, following_user_id=OuterRef(outer_ref) ) ) def __get_follower_count(user_ids, group_by_field): """User Follower Count""" followers = UserFollow.objects.filter( Q(followed_user_id__in=user_ids) ).values( group_by_field ).annotate( follower_count=Count(group_by_field) ).order_by( group_by_field ) return {follower[group_by_field]: follower['follower_count'] for follower in followers} def __get_following_count(user_ids, group_by_field): """User Following Count""" followings = UserFollow.objects.filter( Q(following_user_id__in=user_ids) ).values( group_by_field ).annotate( following_count=Count(group_by_field) ).order_by( group_by_field ) return {following[group_by_field]: following['following_count'] for following in followings} def __hash_password(password): """Hash Password""" salt = str(uuid.uuid4()) hashed_password = hashlib.sha256(salt.encode() + password.encode()).hexdigest() return hashed_password, salt # 비밀번호 확인 def __is_correct_password(password, user): if user.salt is None: raise ApiError(constants.AUTH_ERROR) hashed_password = hashlib.sha256(user.salt.encode() + password.encode()).hexdigest() return hashed_password == user.password
18,888
068ad64ba4426fec9b60e08eb582ae824a419b68
"""Example of the usage of EmotionsList""" from examples.adt_realization.emotions_list import EmotionsList print("File to train model:") EMOTIONS_LIST = EmotionsList('NRC-Emotion-Intensity-Lexicon-v1.txt') print(EMOTIONS_LIST.database) print("\nTweet:") TWEET = "I am very sad during the quarantine period" EMOTIONS_LIST.set_tweet(TWEET) print(EMOTIONS_LIST.tweet) print("\nMain EMOTION of the TWEET:") EMOTIONS_LIST.get_tweet_emotion() print(EMOTIONS_LIST.emotions) print("\nEmotions and their probabilities:") EMOTIONS_LIST.get_emotions_probability() print(EMOTIONS_LIST.probabilities)
18,889
682aecc21348feb99f04dcef433e1540bb18b0bd
from django.shortcuts import render, redirect, get_object_or_404 from django.contrib.auth import authenticate, login, logout from django.contrib.auth.decorators import login_required from .forms import signUpForm, EventForm, AddMemberForm, AddLocation import requests from datetime import datetime, date from django.http import HttpResponse, HttpResponseRedirect, JsonResponse, Http404 from django.views import generic from django.utils.safestring import mark_safe from datetime import timedelta, date import calendar from django.contrib.auth.mixins import LoginRequiredMixin from django.urls import reverse_lazy from django.core.files.storage import FileSystemStorage from django.contrib import messages from .models import * from .utils import Calendar from django.forms.models import model_to_dict from django.contrib.auth.forms import UserCreationForm #the tag @login_required make it so that only logged user can access the view @login_required def indexView(request): # the view collects infromation from multiple table, event and returns them to the user user = CustomUser.objects.get(username= request.user) today = datetime.today() start_time = today.replace(hour=23, minute=59) end_time = today.replace(hour=00, minute=1) events = Event.objects.filter(user = user) notes = Notes.objects.filter(user=user) events_today = [] for event in events: #filtering events to see which are active on the day if event.start_time <= start_time and event.end_time >= end_time: #adding event infromation in a dictionary event_today = { 'event_id' : event.id, 'start_time': event.start_time, 'end_time' : event.end_time, 'content' : event.description, 'title': event.title } #appending created dictionary events_today.append(event_today) context = { 'events_today' : events_today, 'notes' : notes } return render(request, "index.html", context) #homepage view def homeView(request): #check if user is authenticated if request.user.is_authenticated: #if true render index return redirect("manCal:index") #else render homepage return render(request, 'home.html') #login view def loginView(request): # Get username and password from request username = request.POST['username'] password = request.POST['password'] # Authenticate the user, if it exist returns a user object, otherwise an None user = authenticate(request, username=username, password=password) # If user is authenticated if user is not None: # Save username and password to the session, plus loggedin variable set to True request.session['username'] = username request.session['password'] = password context = { 'username': username, 'password': password, 'loggedin': True } response = render(request, 'index.html', context) # Remember last login in cookie now = D.datetime.utcnow() max_age = 365 * 24 * 60 * 60 #one year delta = now + D.timedelta(seconds=max_age) format = "%a, %d-%b-%Y %H:%M:%S GMT" expires = D.datetime.strftime(delta, format) response.set_cookie('last_login',now,expires=expires) #return response return redirect("/index") else: Http404('Wrong credentials') # If logged in, session variables are cleaned up and user logged out. Otherwise redirected to login page @login_required def logoutView(request): logout(request) #registration def signUpView(request): #checking if methos is POST if request.method == "POST": #getting from from request form = signUpForm(request.POST) #validateing from if form.is_valid(): #if valid save and redirect to login with messege form.save() messages.success(request,"Registration Successful!") return redirect("/login") else: #error print('failed after falidation') else: #clean up form form = signUpForm() return render(request, "signup.html", {"form": form}) #view to updated account info @login_required def profileView(request): #checking request methos if request.method == 'POST': #extracting form infromation form request and storing them in local variable user = CustomUser.objects.get(username= request.user) first_name = request.POST.get('first_name') last_name = request.POST.get('last_name') email = request.POST.get('email') #updateding existing value with updated one user.first_name= first_name user.last_name = last_name user.email=email #save and redirect to same page user.save() return redirect("manCal:profile") context = { } return render(request, "profile.html", context) # start calendar render views #get date for starting calendar date def get_date(req_day): if req_day: year, month = (int(x) for x in req_day.split('-')) return date(year, month, day=1) return datetime.today() #action to go prev month def prev_month(d): #changeing the day with which the calendar is started first = d.replace(day=1) prev_month = first - timedelta(days=1) #coverting and formatting data for html month = 'month=' + str(prev_month.year) + '-' + str(prev_month.month) return month ##same as prev_month def next_month(d): days_in_month = calendar.monthrange(d.year, d.month)[1] last = d.replace(day=days_in_month) next_month = last + timedelta(days=1) month = 'month=' + str(next_month.year) + '-' + str(next_month.month) return month #calendar genric list view class CalendarView(LoginRequiredMixin, generic.ListView): model = Event #template to render template_name = 'calendar.html' #setting up context data def get_context_data(self, **kwargs): #supercalss call context = super().get_context_data(**kwargs) #getting date for calendar start d = get_date(self.request.GET.get('month', None)) user = CustomUser.objects.get(username= self.request.user) #pasing initializing variable for calendar cal = Calendar(d.year, d.month, user) html_cal = cal.formatmonth(withyear=True) #getting user notes notes = Notes.objects.filter(user=user) #defining new context data context['calendar'] = mark_safe(html_cal) context['prev_month'] = prev_month(d) context['next_month'] = next_month(d) context['notes'] = notes context['user']= user return context #create events @login_required def create_event(request): form = EventForm(request.POST or None) #checking if the request type is post and if the form is valid if request.POST and form.is_valid(): #getting specific inputs from Django form and storing them in separated variable title = form.cleaned_data['title'] description = form.cleaned_data['description'] start_time = form.cleaned_data['start_time'] end_time = form.cleaned_data['end_time'] location = form.cleaned_data['location'] #creating new event object Event.objects.get_or_create( user=request.user, title=title, description=description, start_time=start_time, end_time=end_time, location= location ) return HttpResponseRedirect(reverse('manCal:calendar')) return render(request, 'event.html', {'form': form}) #generic update view for event edit class EventEdit(LoginRequiredMixin, generic.UpdateView): #In which model the data are stored model = Event #fields to update fields = ['title', 'description', 'start_time', 'end_time', 'location'] #template to use to get data template_name = 'event.html' #generic delete vie for event delete class EventDelete(LoginRequiredMixin, generic.DeleteView): model = Event template_name = 'event_delete.html' success_url = reverse_lazy('manCal:calendar') #overriding data in confermation form to provide cancel button def post(self, request, *args, **kwargs): if "cancel" in request.POST: return redirect('manCal:calendar') else: return super(EventDelete, self).post(request, *args, **kwargs) #event details view @login_required def event_details(request, event_id): #locating event in database useing the event_id given in the url event = Event.objects.get(id=event_id) #getting members and files attached to the event eventmember = EventMember.objects.filter(event=event) eventfiles = EventFiles.objects.filter(event=event) #defining variables for API call API_KEY = 'AIzaSyDio4Zj99JOhP8SBQBM3CydIsc91ld-Jbs' address = event.location params = { 'key' : API_KEY, 'address': address } lat = 51.509865 lon = -0.118092 base_url = 'https://maps.googleapis.com/maps/api/geocode/json?' #API response conteining geo-cordinates response = requests.get(base_url, params=params).json() #checking if the request was succesful if response['status'] == 'OK': geometry = response['results'][0]['geometry'] #obtaing latiture and longitude lat = geometry['location']['lat'] lon = geometry['location']['lng'] context = { #pasing retrived data to the template 'event': event, 'eventmember': eventmember, 'eventfiles': eventfiles, 'lat' : lat, 'lon' : lon, } return render(request, 'event-details.html', context) #weather view @login_required def weatherView(request): #API variable for weather API url = 'http://api.openweathermap.org/data/2.5/onecall?lat={lat}&exclude=hourly,minutely&lon={lon}&units=metric&appid=dbd607d4b59f61a34125bf4f2a185f8d' user = CustomUser.objects.get(username= request.user) #API variable for google API API_KEY = 'AIzaSyDio4Zj99JOhP8SBQBM3CydIsc91ld-Jbs' base_url = 'https://maps.googleapis.com/maps/api/geocode/json?' #chekc if the search form was submitted or the page was reloaded if request.method == 'POST': #if form submitted, get input from request location = request.POST.get('location') #check if location already exist cityCount = Locations.objects.filter(user=user).filter(location = location).count() form = AddLocation(request.POST) #validateing from if form.is_valid(): if cityCount == 0: #if city does not exist in database params = { 'key' : API_KEY, 'address': location } #check if the location exist useing google API response_test = requests.get(base_url, params=params).json() if response_test['status'] == 'OK': #if exist save city in database obj= form.save(commit=False) obj.user = user obj.save() #should be simple params not weather becasue we are useing Google API paramsWeather = { 'key' : API_KEY, 'address': obj.location } #getting location cord response = requests.get(base_url, params=paramsWeather).json() if response['status'] == 'OK': #if infomation available geometry = response['results'][0]['geometry'] lat = geometry['location']['lat'] lon = geometry['location']['lng'] #send request for weather information r = requests.get(url.format(lat=lat, lon=lon)).json() #adding info in dictionary city_weather = { 'location_id' : obj.id, 'city' : obj.location, 'temperature' : round(r['current']['temp']), 'main' : r['daily'][0]['weather'][0]['main'], 'icon' : r['daily'][0]['weather'][0]['icon'], 'tempMax' : round(r['daily'][0]['temp']['max']), 'tempMin' : round(r['daily'][0]['temp']['min']), } #return dictionary to Ajax reqeust with JsonResponse return JsonResponse({'city_weather' : city_weather, 'errorCode' : "200"}, status= 200) else: return JsonResponse({'error' : "Location not found", 'errorCode' : "500"}, status= 200) elif cityCount > 0: return JsonResponse({'error' : "Location already added", 'errorCode' : "500"}, status= 200) return JsonResponse({'error' : "Invalid input", 'errorCode' : "500"}, status= 200) form = AddLocation() #if the page was loaded without from submittion #get all weather location saved by the user cities = Locations.objects.filter(user=user) #create empty arrasy to store all weather data about each city weather_data = [] #do the same thing as we did when a city was added for each city in the database for city in cities: params = { 'key' : API_KEY, 'address': city.location } response = requests.get(base_url, params=params).json() if response['status'] == 'OK': geometry = response['results'][0]['geometry'] #check if lat and lgn are obtained correctly lat = geometry['location']['lat'] lon = geometry['location']['lng'] r = requests.get(url.format(lat=lat, lon=lon)).json() city_weather = { 'location_id' : city.id, 'city' : city.location, 'temperature' : round(r['current']['temp']), 'main' : r['daily'][0]['weather'][0]['main'], 'icon' : r['daily'][0]['weather'][0]['icon'], 'tempMax' : round(r['daily'][0]['temp']['max']), 'tempMin' : round(r['daily'][0]['temp']['min']), } #append the data for the city to weather_data before passing to the next city weather_data.append(city_weather) context = { 'form' : form, 'weather_data' : weather_data, } return render(request, 'weather.html', context) #add a member for an event @login_required def add_eventmember(request, event_id): forms = AddMemberForm() #check request method if request.method == 'POST': #if POST validate and sabe forms = AddMemberForm(request.POST) if forms.is_valid(): member = EventMember.objects.filter(event=event_id) event = Event.objects.get(id=event_id) #maximum 9 member for event if member.count() <= 9: #save meber user = forms.cleaned_data['user'] EventMember.objects.create( event=event, user=user ) return redirect('manCal:event-detail', event_id = event.id,) else: print('--------------User limit exceed!-----------------') context = { 'form': forms } return render(request, 'add_member.html', context) #delete member @login_required def member_delete(request, member_id): #get member useing the member_id in the url member = EventMember.objects.get(id= member_id) #delete form database member.delete() #return succesfful response to Ajax request return JsonResponse({'result' : 'ok'}, status=200) #delete file, same process as delete member @login_required def file_delete(request, file_id): file = EventFiles.objects.get(id = file_id) file.delete() return JsonResponse({'result' : 'ok'}, status=200) #delete location, same process as delete member @login_required def location_delete(request, location_id): location = Locations.objects.get(id = location_id) location.delete() return JsonResponse({'result' : 'ok'}, status=200) #note delte same process as delete member @login_required def note_delete(request, note_id): note= Notes.objects.get(id= note_id) note.delete() return JsonResponse({'result' : 'ok'}, status=200) #add file for event view @login_required def add_files(request): #getting the event to which we want to add file event_id = request.POST.get('event_id') event = Event.objects.get(id=event_id) #list of the file to upload, this is a list becasue in the HTML form we allowed the user to select multiple files files = request.FILES.getlist('files') #looping throw all seleted files for file in files: fs= FileSystemStorage() #saveing the file and getting the path to it file_path = fs.save(file.name, file) #creating new EventFiles object sfile= EventFiles(event = event, files = file_path) #saveing the object sfile.save() return redirect('manCal:event-detail', event_id = event_id,) #create note @login_required def add_note(request): #getting the user and the content of the note if request.method == 'POST': user = CustomUser.objects.get(username= request.user) note = request.POST.get('note') #createing new note new_note = Notes.objects.create( user = user, note = note ) #returning created object to Ajax request converting the model data to dictionary return JsonResponse({'note' : model_to_dict(new_note)}, status=200) #update note status @login_required def note_complited(request, note_id): #getting note from note id note = Notes.objects.get(id=note_id) #changeing note staus if note.complited == True: note.complited = False elif note.complited == False: note.complited = True #saveing new status note.save() #returning to ajax like in crete note return JsonResponse({'note' : model_to_dict(note)}, status=200) #exercise detail view @login_required def healthView(request): user = CustomUser.objects.get(username= request.user) #get exercise details if already created if Exercise.objects.filter(user= user).exists(): exercise = Exercise.objects.get(user= user) context = { 'exercise' : exercise } #passing data to template return render(request, 'health.html', context) #if not exist render without exercise data return render(request, 'health.html') #update exercise @login_required def addExercise(request): if request.method == 'POST': #get variable from post request user = CustomUser.objects.get(username= request.user) lunges_set = int(request.POST.get('Lunges_set')) lunges_rep = int(request.POST.get('Lunges_rep')) pushups_set = int(request.POST.get('Pushups_set')) pushups_rep = int(request.POST.get('Pushups_rep')) squats_set = int(request.POST.get('Squats_set')) squats_rep = int(request.POST.get('Squats_rep')) burpees_set = int(request.POST.get('Burpees_set')) burpees_rep = int(request.POST.get('Burpees_rep')) planks_set = int(request.POST.get('Planks_set')) planks_rep = int(request.POST.get('Planks_rep')) #if no previews data exsist, create new one if not Exercise.objects.filter(user= user).exists(): Exercise.objects.create( user= user, Lunges_set = lunges_set, Lunges_rep = lunges_rep, Pushups_set = pushups_set, Pushups_rep = pushups_rep, Squats_set = squats_set, Squats_rep = squats_rep, Burpees_set = burpees_set, Burpees_rep = burpees_rep, Planks_set = planks_set, Planks_rep = planks_rep ) return redirect("manCal:health") # if exist update existing dat else: exercise = Exercise.objects.get(user= user) exercise.Lunges_set = lunges_set exercise.Lunges_rep = lunges_rep exercise.Pushups_set = pushups_set exercise.Pushups_rep = pushups_rep exercise.Squats_set = squats_set exercise.Squats_rep = squats_rep exercise.Burpees_set = burpees_set exercise.Burpees_rep = burpees_rep exercise.Planks_set = planks_set exercise.Planks_rep = planks_rep exercise.save() return redirect("manCal:health")
18,890
5271467e75f99de6ae3732dfe4dbef82daf4892b
import logging def medical_issue(): med = str(input("Do you had a medical condition?(Enter Y fro yes and N for no) : ")) print(med) if med == 'y' or med =='Y': print("You are allowed to give exams") else: print("You are not allowed to give exams") def cal_attendancepercentage(): try: totalDays = int(input("Please enter total number of days of classes : ")) daysAttended =int(input("Please enter number of days you atteneded classes : ")) percentage = daysAttended/float(totalDays) * 100 if percentage > 75: print("Attandance percentage is {} .You are allowed to give exams".format(percentage)) else: medical_issue() except ValueError: logging.error("Error") print("Please enter a proper value") cal_attendancepercentage()
18,891
351485deeec0ada458d9808ae3da2b7d8aec5321
""" @author: Heerozh (Zhang Jianhao) @copyright: Copyright 2019, Heerozh. All rights reserved. @license: Apache 2.0 @email: heeroz@gmail.com """ import torch import math from .factor import CustomFactor, CrossSectionFactor from .engine import OHLCV from ..parallel import (linear_regression_1d, quantile, pearsonr, masked_mean, masked_sum, nanmean, nanstd) class StandardDeviation(CustomFactor): inputs = [OHLCV.close] _min_win = 2 def compute(self, data): return data.nanstd() class RollingHigh(CustomFactor): inputs = (OHLCV.close,) win = 5 _min_win = 2 def compute(self, data): return data.nanmax() class RollingLow(CustomFactor): inputs = (OHLCV.close,) win = 5 _min_win = 2 def compute(self, data): return data.nanmin() class RollingLinearRegression(CustomFactor): _min_win = 2 def __init__(self, win, x, y): super().__init__(win=win, inputs=[x, y]) def compute(self, x, y): def lin_reg(_y, _x=None): if _x is None: _x = torch.arange(_y.shape[2], device=_y.device, dtype=_y.dtype) _x = _x.repeat(_y.shape[0], _y.shape[1], 1) m, b = linear_regression_1d(_x, _y, dim=2) return torch.cat([m.unsqueeze(-1), b.unsqueeze(-1)], dim=-1) if x is None: return y.agg(lin_reg) else: return y.agg(lin_reg, y) @property def coef(self): return self[0] @property def intercept(self): return self[1] class RollingMomentum(CustomFactor): inputs = (OHLCV.close,) win = 20 _min_win = 2 def compute(self, prices): def polynomial_reg(_y): x = torch.arange(_y.shape[2], device=_y.device, dtype=_y.dtype) ones = torch.ones(x.shape[0], device=_y.device, dtype=_y.dtype) x = torch.stack([ones, x, x ** 2]).T.repeat(_y.shape[0], _y.shape[1], 1, 1) xt = x.transpose(-2, -1) ret = (xt @ x).inverse() @ xt @ _y.unsqueeze(-1) return ret.squeeze(-1) return prices.agg(polynomial_reg) @property def gain(self): """gain>0 means stock gaining, otherwise is losing.""" return self[1] @property def accelerate(self): """accelerate>0 means stock accelerating, otherwise is decelerating.""" return self[2] @property def intercept(self): return self[0] class RollingQuantile(CustomFactor): inputs = (OHLCV.close, 5) _min_win = 2 def compute(self, data, bins): def _quantile(_data): return quantile(_data, bins, dim=2)[:, :, -1] return data.agg(_quantile) class HalfLifeMeanReversion(CustomFactor): _min_win = 2 def __init__(self, win, data, mean, mask=None): lag = data.shift(1) - mean diff = data - data.shift(1) lag.set_mask(mask) diff.set_mask(mask) super().__init__(win=win, inputs=[lag, diff, math.log(2)]) def compute(self, lag, diff, ln2): def calc_h(_x, _y): _lambda, _ = linear_regression_1d(_x, _y, dim=2) return -ln2 / _lambda return lag.agg(calc_h, diff) class RollingCorrelation(CustomFactor): _min_win = 2 def compute(self, x, y): def _corr(_x, _y): return pearsonr(_x, _y, dim=2, ddof=1) return x.agg(_corr, y) class InformationCoefficient(CrossSectionFactor): def __init__(self, x, y, mask=None): super().__init__(win=1, inputs=[x, y], mask=mask) def compute(self, x, y): ic = pearsonr(x, y, dim=1, ddof=1) return ic.unsqueeze(-1).repeat(1, y.shape[1]) def to_ir(self, win): class RollingIC2IR(CustomFactor): def compute(self, ic): def _to_ir(_ic): # Fundamental Law of Active Management: ir = ic * sqrt(b), 1/sqrt(b) = std(ic) return nanmean(_ic, dim=2) / nanstd(_ic, dim=2, ddof=1) return ic.agg(_to_ir) return RollingIC2IR(win=win, inputs=[self]) class CrossSectionR2(CrossSectionFactor): def __init__(self, y_hat, y, mask=None): super().__init__(win=1, inputs=[y_hat, y], mask=mask) def compute(self, y_hat, y): mask = torch.isnan(y_hat) | torch.isnan(y) y_bar = masked_mean(y, mask, dim=1).unsqueeze(-1) ss_tot = masked_sum((y - y_bar) ** 2, mask, dim=1) ss_reg = masked_sum((y_hat - y_bar) ** 2, mask, dim=1) return (ss_reg / ss_tot).unsqueeze(-1).repeat(1, y.shape[1]) STDDEV = StandardDeviation MAX = RollingHigh MIN = RollingLow
18,892
be31a2955d76bedccc372b7c6dcbe981fe597210
import numpy as np import scipy.integrate as integrate from math import sin, cos class LTI: def __init__(self, state_0): """ pos = [x,y,z] attitude = [rool,pitch,yaw] """ self.state = state_0 self.s_dot = 0 self.hist = [] self.time = 0.0 control_frequency = 200 # Hz for attitude control loop self.dt = 1.0 / control_frequency self.desired_state = 0 def reset(self): self.state = np.random.rand() - 0.5 self.desired_state = np.random.rand()*2 - 1 self.hist = [] return self.state def state_dot(self, state, t, u, time): x1 = state b = 1 a = 1 self.s_dot = 0.0 #d =0.014*sin(time*5) self.s_dot = -a*x1 + b*u return self.s_dot def reward(self,desired_state,u): return -10*(self.state - desired_state)**2 - 0.5*u**2 def update(self, u): #saturate u u = np.clip(u,-10,10) out = integrate.odeint(self.state_dot, self.state, [0,self.dt], args = (u,self.time)) self.time += self.dt #print out self.state = out[1] self.hist.append(np.array(self.state[0])) def step(self, action): done = False #action = agent.do_action(env.state) self.update(self.desired_state - action) reward = self.reward(self.desired_state, action) if abs(self.state) > 3 or abs(self.s_dot)>50: done = True return self.state[0], reward, done, {}
18,893
e0fdd7d60b1682e544a5656971fcba236cc7f5e4
from django.db import models # Create your models here. class intro(models.Model): name=models.CharField(max_length=50,blank=True, null=True) img=models.ImageField(blank=True, null=True) twitter=models.URLField(max_length=200,blank=True, null=True) facebook=models.URLField(max_length=200,blank=True, null=True) instagram=models.URLField(max_length=200,blank=True, null=True) telegram=models.URLField(max_length=200,blank=True, null=True) git=models.URLField(max_length=200,blank=True, null=True) linkedin=models.URLField(max_length=200,blank=True, null=True) class basic(models.Model): name = models.CharField(max_length=50, blank=True, null=True) title = models.CharField(max_length=200, blank=True, null=True) address = models.CharField(max_length=100, blank=True, null=True) mobile = models.IntegerField(blank=True, null=True) email = models.EmailField(max_length=254, blank=True, null=True) def __str__(self): return self.name class education(models.Model): edutitle = models.CharField(max_length=100, blank=True, null=True) eduDateTo = models.DateField(blank=True, null=True) eduDateFrom = models.DateField(blank=True, null=True) eduFrom = models.CharField(max_length=100, blank=True, null=True) eduDis = models.CharField(max_length=250, blank=True, null=True) def __str__(self): return self.edutitle class experiance(models.Model): title = models.CharField(max_length=100, blank=True, null=True) date = models.DateField(blank=True, null=True) state = models.CharField(max_length=50, blank=True, null=True) country = models.CharField(max_length=50, blank=True, null=True) dis1 = models.CharField(max_length=200, blank=True, null=True) dis2 = models.CharField(max_length=200, blank=True, null=True) dis3 = models.CharField(max_length=200, blank=True, null=True) dis4 = models.CharField(max_length=200, blank=True, null=True) def __str__(self): return self.title class category(models.Model): name = models.CharField(max_length=50, blank=True, null=True) def __str__(self): return self.name class product(models.Model): cat=models.ForeignKey(category, on_delete=models.CASCADE) img=models.ImageField(blank=True, null=True) title=models.CharField(max_length=50,blank=True, null=True) subtitle=models.CharField(max_length=50,blank=True, null=True) link=models.URLField(max_length=200,blank=True, null=True) def __str__(self): return self.title + '---' + str(self.cat.name) class about(models.Model): head=models.CharField(max_length=50,blank=True, null=True) img=models.ImageField(blank=True, null=True) s_Intro=models.CharField(max_length=150,blank=True, null=True) dob=models.DateField(blank=True, null=True) website=models.URLField(max_length=200,blank=True, null=True) mobile=models.IntegerField(blank=True, null=True) city=models.CharField(max_length=50,blank=True, null=True) age=models.IntegerField(blank=True, null=True) degree=models.CharField(max_length=50,blank=True, null=True) email=models.EmailField(max_length=254,blank=True, null=True) country=models.CharField(max_length=50,blank=True, null=True) introduction=models.CharField(max_length=500,blank=True, null=True) freelance=models.BooleanField(blank=True, null=True) avail=models.BooleanField(blank=True, null=True) def __str__(self): return self.head class testimonial(models.Model): img=models.ImageField(blank=True, null=True) name=models.CharField(max_length=50,blank=True, null=True) designation=models.CharField( max_length=50,blank=True, null=True) comments=models.TextField(blank=True, null=True) def __str__(self): return self.name class services(models.Model): icon=models.CharField(max_length=50,blank=True, null=True) title=models.CharField(max_length=50,blank=True, null=True) caption=models.TextField(blank=True, null=True) color=models.CharField(max_length=50,blank=True, null=True) def __str__(self): return self.title class contact(models.Model): name=models.CharField(max_length=50,blank=True, null=True) email=models.EmailField(max_length=254,blank=True, null=True) subject=models.CharField(max_length=100,blank=True, null=True) message=models.CharField(max_length=150,blank=True, null=True) def __str__(self): return self.name + '-----' + self.email
18,894
f005d7aedf6cd214ca668232e05769d8dd99e4e4
#!/usr/bin/python # -*- coding: utf-8 -*- import serial import rospy import readchar import math from sensor_msgs.msg import * from geometry_msgs.msg import Twist ser=serial.Serial( port = '/dev/vsrc', baudrate = 115200, parity = serial.PARITY_NONE, bytesize = serial.EIGHTBITS, stopbits = serial.STOPBITS_ONE, timeout = None, xonxoff = 0, rtscts = 0, # interCharTimeout = None ) #グローバル関数 L_motion_deg = 0 R_motion_deg = 0 ####初期設定################################################################################################ def first_set(): print "[First_set]" print "<pose_init>" ser.write("@00c8:T8000:T8000:T8000:T0000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000::::::T8000:T8000:T6800:T9800:T6800:T9800:T8000:T8000:T9800:T6800:T9800:T6800\n") print ser.readline(), rospy.sleep(1) print "<R>" ser.write("R\n") print ser.readline(), rospy.sleep(1) print "<get_enc>" ser.write(":Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx::::::T8000:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx:T8000:Cxxxx:Cxxxx:Cxxxx:Cxxxx:Cxxxx\n"); print ser.readline(), rospy.sleep(1) print "<gain_on>" ser.write(":P0100:P0100:P0040:P0080:P0045:P0040:P0040:P0080:P0045:P0040:P0080:P0200:P0016::::::P0001:P0001:P0001:P0001:P0001:P0001:P0001:P0001:P0001:P0001:P0001:P0001\n") print ser.readline(), rospy.sleep(1) ####cul_motion############################################################################################## def cul_wheel(vel,ang): global L_motion_deg global R_motion_deg motion = [0]*3 motion_in = 0 time = 0.1 #単位時間あたりの移動距離 print "vel:",+vel #vel:速度[m/s] print "ang:",+ang #ang:角速度[rad/s] print "time:",+time #time:単位時間[s] motion_in = vel * 10 #translate 'm' to 'cm' motion_ang = (ang * 180 /math.pi) * 0.35 #0.35は回転1度あたりの定数(要調整) print "motion_in:",+motion_in #モーションの計算 if ang == 0: #前後直進 L_motion_deg += motion_in R_motion_deg += motion_in elif ang < 0: #右回転 L_motion_deg += motion_in L_motion_deg -= motion_ang R_motion_deg += motion_in R_motion_deg += motion_ang elif ang > 0: #左回転 L_motion_deg += motion_in L_motion_deg -= motion_ang R_motion_deg += motion_in R_motion_deg += motion_ang #初期化 motion_in = 0 vel = 0 print L_motion_deg print R_motion_deg #10→16進 motion[0] = '%04x' %(time * 40) motion[1] = '%x' %(32768 + L_motion_deg * 44) motion[2] = '%x' %(32768 - R_motion_deg * 44) return motion ####callback######################################################################################################## def callback(cmd_vel): #0の時は何もしない if cmd_vel.linear.x == 0 and cmd_vel.angular.z == 0: return #速度から距離とモーションタイムを計算 motion = cul_wheel(cmd_vel.linear.x,cmd_vel.angular.z) #モーションの送信 print "[MOTION_SEND]" print motion ser.write("@"+motion[0]+":T"+motion[1]+":T"+motion[2]+":T8000:T0000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000::::::T8000:T8000:T6800:T9800:T6800:T9800:T8000:T8000:T9800:T6800:T9800:T6800\n") print ser.readline(), rospy.sleep(0.1) return ####メイン関数############################################################################################### if __name__ == '__main__': #初期設定 first_set() print "If you want to end this program, push 'ctrlC' and next 'q' key!" while True: #cmd_velの読み込み rospy.init_node('sobit_telecon', anonymous=True) sub = rospy.Subscriber('cmd_vel_mux/input/teleop', Twist, callback) rospy.spin() #キー入力(q)で終了 kb = readchar.readchar() if kb == "q": print("[exit program]") print "<pose_init>" ser.write("@00c8:T8000:T8000:T8000:T0000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000:T8000::::::T8000:T8000:T6800:T9800:T6800:T9800:T8000:T8000:T9800:T6800:T9800:T6800\n") print ser.readline(), rospy.sleep(3) print "<gain_off>" ser.write("P0000\n") print ser.readline(), break
18,895
dd6bd46a30bcb773fa9fe1b249d715190a6171ef
from puzzle import Puzzle class WordLadderPuzzle(Puzzle): """ A word-ladder puzzle that may be solved, unsolved, or even unsolvable. """ def __init__(self, from_word, to_word, ws): """ Create a new word-ladder puzzle with the aim of stepping from from_word to to_word using words in ws, changing one character at each step. @type from_word: str @type to_word: str @type ws: set[str] @rtype: None """ (self._from_word, self._to_word, self._word_set) = (from_word, to_word, ws) # set of characters to use for 1-character changes self._chars = "abcdefghijklmnopqrstuvwxyz" # implement __eq__ and __str__ # __repr__ is up to you def __str__(self): """ Return a human-readable string representation of WordLadderPuzzle self. >>> word_set = {'came', 'case', 'cast', 'cost'} >>> s = WordLadderPuzzle("same", "cost", word_set) >>> print(s) same """ return self._from_word def __eq__(self, other): """ Return whether WordLadderPuzzle self is equivalent to other @param self: WordLadderPuzzle @param other: WordLadderPuzzle | Any @rtype: bool >>> word_set = {'came', 'case', 'cast', 'cost'} >>> s = WordLadderPuzzle("same", "cost", word_set) >>> s2 = WordLadderPuzzle("same", "cost", word_set) >>> s == s2 True >>> s3 = WordLadderPuzzle("cost", "same", word_set) >>> s == s3 False """ return isinstance(other, WordLadderPuzzle) and (self._from_word == other._from_word and self._to_word == other._to_word) # override extensions # legal extensions are WordLadderPuzzles that have a from_word that can # be reached from this one by changing a single letter to one of those # in self._chars def extensions(self): """ Return list of extensions of WordLadderPuzzle self. @type self: WordLadderPuzzle @rtype: list[WordLadderPuzzle] >>> word_set = {'came', 'case', 'cast', 'cost'} >>> s = WordLadderPuzzle("same", "cost", word_set) >>> s2 = WordLadderPuzzle("came", "cost", {'case', 'cast', 'cost'}) >>> s2 in s.extensions() True >>> s3 = WordLadderPuzzle("same", "cost", set()) >>> s3.extensions() is None True """ if len(self._word_set) == 0: return None else: filtered_words = self._filter_len() usable_words = self._usable_word(filtered_words) extensions = [] for word in usable_words: new_copy = filtered_words.copy() new_copy.discard(word) extensions.append(WordLadderPuzzle(word, self._to_word, new_copy)) return extensions # override is_solved # this WordLadderPuzzle is solved when _from_word is the same as # _to_word def is_solved(self): """ Return whether WordLadderPuzzle self is solved. @type self: WordLadderPuzzle @rtype: bool >>> word_set = {'came', 'case', 'cast', 'cost'} >>> s = WordLadderPuzzle("cost", "cost", word_set) >>> s.is_solved() True >>> s2 = WordLadderPuzzle("same", "cost", word_set) >>> s2.is_solved() False """ return self._from_word == self._to_word # Helper Methods def _usable_word(self, filtered_words): """ Return a set of words that have only a 1 letter difference from self._from_word. @type filtered_words: set{str} @type self: WordLadderPuzzle @rtype: set{str} """ usable = set() for word in filtered_words: counter = 0 for x in range(0, len(self._to_word)): if word[x] == self._from_word[x]: counter += 1 if counter == len(self._to_word) - 1: usable.add(word) return usable def _filter_len(self): """ Return a set of words that have the same length as self.to_word @type self: WordLadderPuzzle @rtype: set{str} """ if max([len(x) for x in self._word_set]) == len(self._to_word): return self._word_set else: new_words = set() for word in self._word_set: if len(self._from_word) == len(word): new_words.add(word) return new_words if __name__ == '__main__': import doctest doctest.testmod() from puzzle_tools import breadth_first_solve, depth_first_solve from time import time with open("words", "r") as words: word_set = set(words.read().split()) w = WordLadderPuzzle("same", "cost", word_set) start = time() sol = breadth_first_solve(w) end = time() print("Solving word ladder from same->cost") print("...using breadth-first-search") print("Solutions: {} took {} seconds.".format(sol, end - start)) start = time() sol = depth_first_solve(w) end = time() print("Solving word ladder from same->cost") print("...using depth-first-search") print("Solutions: {} took {} seconds.".format(sol, end - start))
18,896
d8efdefcfe5697a302a68107dad48b479c51b4de
# -*- coding: utf-8 -*- # The above line is for turkish characters in comments, unless it is there a encoding error is raised in the server from .. import ManagerType, PageType from .. import logger import datetime class BaseRowScrapper: test_model = '' page_type = '' def __init__(self, html_row): self.row = html_row def get(self): model = self.page_type.model() # Jockey, owner and trainer's have their id's just like the horse's own id. We are only interested in their # ids so we don't bother to get their names model.jockey_id = self.get_manager_id(ManagerType.Jockey) model.owner_id = self.get_manager_id(ManagerType.Owner) model.trainer_id = self.get_manager_id(ManagerType.Trainer) return model def get_manager_id(self, _type): """ :param _type: The content of the column where the according type of manager is :return: id of the desired manager either Jockey, Owner or Trainer """ pass @staticmethod def get_id_from_a(a): """" The url's contain the id, after the phrase Id= :param a: The html code of a tag :return: id of the supplied a tag """ if a: # We split from that and take the rest id_ = a['href'].split("Id=")[1] # We split one more time in case of there is more after the id # We take the first part this time id_ = id_.split("&")[0] return id_ class BaseRaceDayRowScrapper(BaseRowScrapper): """ Class name used for horses' name in TJK's site, after "gunluk-GunlukYarisProgrami-" Ex: <td class="gunluk-GunlukYarisProgrami-AtAdi"> """ horse_name_class_name = '' """ Beginning of the class name used for each row in the tables, Fixture and Result tables has it differently Ex for fixture: <td class="gunluk-GunlukYarisProgrami-AtAdi"> Ex for result: <td class="gunluk-GunlukYarisSonuclari-AtAdi3"> """ td_class_base = '' def get(self): model = super(BaseRaceDayRowScrapper, self).get() # The third column in the table contains the name of the horse and a link that goes to that horse's page. # Also the link will have the id of the horse and the abbreviations that come after the name which tells # status information, for example whether the horse will run with an eye patch and etc. # More info is here: http://www.tjk.org/TR/YarisSever/Static/Page/Kisaltmalar horse_name_html = self.get_column(self.horse_name_class_name).find('a') # first element is the name it self, others are the abbreviations, so we get the first and assign it as name model.horse_name = str(horse_name_html.contents[0]).replace(" ", '') # Now get the id of the horse from that url model.horse_id = int(self.get_id_from_a(horse_name_html)) # Get the model of the horse from the fourth column model.horse_age = self.get_column_content("Yas") # Horses father and mother are combined in a single column in separate <a> So we find all the <a> in the # column and only get their id's from respected links. Father is the first, mother is the second parent_links = self.get_column("Baba").find_all('a', href=True) # Process the father model.horse_father_id = int(self.get_id_from_a(parent_links[0])) # Process the mother model.horse_mother_id = int(self.get_id_from_a(parent_links[1])) # Get the weight of the horse during the time of the race model.horse_weight = self.get_column_content("Kilo") return model def get_manager_id(self, _type): """ :param _type: The content of the column where the according type of manager is :return: id of the desired manager either Jockey, Owner or Trainer """ try: # Sometimes the info is not there, so we have to be safe return int(self.get_id_from_a(self.get_column(_type.value).find('a', href=True))) except: # Info is not there, mark it as missing return -1 def get_column(self, col_name): """ :param col_name: The value after the gunluk-GunlukYarisSonuclari-{0} :return: The content in the column(td) that has a class name starting with gunluk-GunlukYarisSonuclari- """ return self.row.find("td", class_="{0}{1}".format(self.td_class_base, col_name)) def get_column_content(self, col_name): """ Striped_strings property returns a collection containing the values. Then ve do a string join to have the actual value in the tag. The value might me missing, then we simply return -1 to indicate that it is missing. :param col_name: The value after the gunluk-GunlukYarisSonuclari-{0} :return: The content in the column(td) that has a class name starting with gunluk-GunlukYarisSonuclari- """ column = self.get_column(col_name) return "".join(column.stripped_strings if column else '-1') class FixtureRowScrapper(BaseRaceDayRowScrapper): """ Ex: <td class="gunluk-GunlukYarisProgrami-AtAdi"> """ horse_name_class_name = "AtAdi" td_class_base = 'gunluk-GunlukYarisProgrami-' page_type = PageType.Fixture def get(self): fixture = super(FixtureRowScrapper, self).get() fixture.order = int(self.get_column_content('SiraId')) return fixture class ResultRowScrapper(BaseRaceDayRowScrapper): """ Ex: <td class="gunluk-GunlukYarisProgrami-AtAdi3"> """ horse_name_class_name = "AtAdi3" td_class_base = 'gunluk-GunlukYarisSonuclari-' page_type = PageType.Result def get(self): result = super(ResultRowScrapper, self).get() # Horses name still has the order that horse started the race in the first place. # Example "KARAHİNDİBAYA (7)" horse_name_and_order = result.horse_name.split("(") result.horse_name = str(horse_name_and_order[0]) # Example after split: "7)" result.order = int(horse_name_and_order[1].replace(')', '')) # Get the result of the horse from the second column result.result = self.get_column_content("SONUCNO") # Horses sometimes may not run # Horses might not run that race or cannot finish it for various reasons. In that case what we get is an # empty string, we mark it as -1 if that happens if not result.result: result.result = -1 else: result.result = int(result.result) # Get the time that it took horse to run this race result.time = self.get_column_content("Derece") # Hc and Hk are two different handicap types that is possible result.handicap = int(self.get_column_content("Hc") or self.get_column_content("Hk")) return result class HorseRowScrapper(BaseRowScrapper): page_type = PageType.Horse def __init__(self, html_row): super(HorseRowScrapper, self).__init__(html_row) # Most of the columns do not have classes, we get all columns and assign each by hard-coding indexes self.columns = self.row.find_all("td") def get(self): model = super(HorseRowScrapper, self).get() date_and_race_id = self.columns[0] model.race_date = datetime.datetime.strptime(date_and_race_id.text, '\n%d.%m.%Y ') try: race_url = date_and_race_id.find('a', href=True)['href'] # Race id is after the only hash-tag # Ex: /TR/YarisSever/Info/Page/GunlukYarisSonuclari?QueryParameter_Tarih=04/08/2017#111471 # Split by hash-tag and get the second model.race_id = race_url.split('#')[1] except TypeError: # Some results don't have the races linked to them, so we mark it as missing model.race_id = -1 model.city = str(self.get_column(1)) model.distance = self.get_column(2) model.track_type = str(self.get_column(3)) model.result = self.get_column(4) model.time = str(self.get_column(5)) model.horse_weight = str(self.get_column(6)) model.handicap = self.get_column(14) return model def get_manager_id(self, _type): """ :param _type: The content of the column where the according type of manager is :return: id of the desired manager either Jockey, Owner or Trainer """ index = 0 if _type is ManagerType.Jockey: index = 7 elif _type is ManagerType.Trainer: index = 12 elif _type is ManagerType.Owner: index = 13 else: raise Exception("Manager type not recognized!") try: return self.get_id_from_a(self.columns[index].find('a', href=True)) except: raise Exception(self.row) def get_column(self, index): column = self.columns[index].stripped_strings for col in column: return col return -1
18,897
c3aac2690a4d31c71123cc24c6d1731aa4c9dcb2
from collections import Counter from document_stats.algorithms import preprocessingHelper doc_1 = 'Convolutional Neural Networks are very similar to ordinary Neural Networks from the previous chapter' doc_2 = 'Convolutional Neural Networks take advantage of the fact that the input consists of images and they constrain the architecture in a more sensible way.' doc_3 = 'In particular, unlike a regular Neural Network, the layers of a ConvNet have neurons arranged in 3 dimensions: width, height, depth.' doc_4 = "saf saofjıosafıjsa fkjdsjfdjlf gıosdılgkdslgkd saf saf elli altmış elli altmış elli altmış elli altmış elli altmış elli altmış elli altmış elli altmış elli elli elli" docs = [doc_1, doc_2, doc_3, doc_4] def frequency(corpus, n_most, useStopwords): list_of_frequency = [] txt = "" for i in corpus: txt += i txt += " " if useStopwords == True: txt = preprocessingHelper.preprocessing(txt) else: txt = preprocessingHelper.preprocessing(txt, False) most_occur = Counter(txt).most_common(n_most) list_of_frequency.append(most_occur) return list_of_frequency #print(frequency(docs,6, False)) def frequencySep(corpus, n_most, useStopwords): if useStopwords == True: corpus = preprocessingHelper.alldocclean_(corpus) else: corpus = preprocessingHelper.alldocclean_(corpus, False) split_list = list(map(str.split, corpus)) list_of_frequency = [] for sample in split_list: most_occur = Counter(sample).most_common(n_most) list_of_frequency.append(most_occur) return list_of_frequency #print(frequencySep(docs, 5, True))
18,898
ab75ea86edb27961288bad5764d2e2a44370d087
product = [2,] power = 1 while power < 1000: insert = False for n in range(len(product)): if n == 0 and product[n] > 4: product[n] = int(str(product[n] * 2)[1]) insert = True elif product[n] > 4: product[n] = int(str(product[n]*2)[1]) product[n-1] = product[n-1] + 1 else: product[n] = product[n]*2 if insert: product.insert(0,1) power += 1 answer = 0 for digit in product: answer += digit print answer
18,899
c99633a3202076abe0e306ce0421cbb760322706
import glob import matplotlib.pyplot as plt from statistics import median, mean colours = ['r','c','b','m','k'] number = [] orfbin = [] orf_stat = [] bins = [x*1000 for x in range(1,16)] for filename in glob.glob("??.*orf_coords"): no = filename[:2] number.append(no) orf_sub_bin = [] with open(filename, 'r') as fr: fr = fr.read().splitlines() for line in fr: if not ">" in line: line = line.split() orf_sub_bin.append(int(line[-2])) orfbin.append(orf_sub_bin) orf_sub_stat = [max(orf_sub_bin), min(orf_sub_bin), median(orf_sub_bin), round(mean(orf_sub_bin),0)] orf_stat.append(orf_sub_stat) plt.figure() for i in range(len(number)): plt.hist(orfbin[i], histtype='step', color=colours[i], label=number[i], bins=bins) plt.xlabel("Size (bp)") plt.ylabel("Count") plt.title("Distribution of Predicted ORF Size") plt.legend(loc="upper right") # plt.show() plt.savefig("ORF_Stat_fig.png") plt.savefig("ORF_Stat_fig.svg") print ("Finished.")