Repository: Quantika14/guasap-whatsapp-foresincs-tool Branch: master Commit: 68291f781a04 Files: 18 Total size: 593.3 KB Directory structure: gitextract_jhisgfz7/ ├── GuasApp_Forensic.py ├── LICENSE ├── README.md ├── Reports_Guasap_Forensic/ │ └── readme ├── check_root.py ├── hashdeep.py ├── images/ │ ├── NO-ROOT.PPM │ ├── SI-ROOT.PPM │ ├── logika14-1.PPM │ └── logika14-2.PPM ├── modules/ │ ├── __init__.py │ ├── apks_to_root.txt │ ├── config.py │ ├── dependencies.py │ └── functions.py ├── parser_db.py ├── whatsapp_db.py └── whatsapp_log_forensic.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: GuasApp_Forensic.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- ''' Copyright (C) 2018 QuantiKa14 Servicios Integrales S.L ''' #******************************************** #TEAM QUANTIKA14 #AUTHOR: JORGE CORONADO A.K.A @JORGEWEBSEC #AUTHOR: RAMON BAJONA #DESCRIPTION: APP FOR WHATSAPP FORENSIC #DATE: 10-05-2018 #VERSION: 1.1 #******************************************** import parser_db, whatsapp_log_forensic, modules.functions, whatsapp_db, check_root, hashdeep, modules.config, modules.dependencies from Tkinter import * import os, time, socket, requests from time import sleep from distutils.version import LooseVersion licencia="" rute= "" inten=False menu=True report=False list_dbs=list() info_root=list() whatsapp_log=list() label_root=False root_posibility=None popup_a=False debugging=False first_add=True if os.name == 'nt': modules.config.adb_comm=modules.config.adb_w width_w = 72 width_e = 63 else: modules.config.adb_comm=modules.config.adb_l width_w = 61 width_e = 53 def enviar_licencia(licenci, root): global licencia global inten inten = True licencia = "true" root.destroy() print "[INFO][>] Licencia GNU V.3. Recuerde que siempre podrá contribuir con la causa aportando mejoras a la aplicación desde el repositorio de GITHUB." print "[INFO][>] ----------------------------------> WWWW.QUANTIKA14.COM/GUASAP-FORENSIC" def info_root_f(root, pop_wait): global info_root global label_root global root_posibility global popup_a mensaje_deb = Label(pop_wait, text="Comprobando dispositivo...") mensaje_deb.place(x=20,y=60) pop_wait.update() info_root,roote=check_root.check_root(pop_wait) root_posibility=roote popup_a=True reloadd(root) def popup(): global info_root global label_root global root_posibility pop_root = Toplevel() imgicon = PhotoImage(file=os.path.join("images",'ico.gif')) pop_root.tk.call('wm', 'iconphoto', pop_root._w, imgicon) pop_root.title("Comprobar root") pop_root.configure(width=450, height=450) pop_root.resizable(width=False, height=False) if info_root[0]=="Root Device": imagen = PhotoImage(file="images/SI-ROOT.PPM") widget = Label(pop_root, image=imagen) widget.image = imagen widget.place(x=20,y=20) elif info_root[0]=="No root device": imagen = PhotoImage(file="images/NO-ROOT.PPM") widget = Label(pop_root, image=imagen) widget.image = imagen widget.place(x=20,y=20) elif info_root[0]=="No adb installed": mensaje = Label(pop_root, text="No se ha detectado adb por favor reintente despues de instalar") mensaje.place(x=40,y=40) mensaje.configure(foreground="red") elif info_root[0]=="No debugging actve": mensaje = Label(pop_root, text="No se han detectado permisos de depuración usb,\n por favor revise el telefono") mensaje.place(x=40,y=40) mensaje.configure(foreground="red") else: mensaje = Label(pop_root, text="Ningún dispositivo conectado") mensaje.place(x=40,y=40) mensaje.configure(foreground="red") label_root = True add_report(info_root, 0) def whatsapp_deb(root, option): if option != 2: pop_wait = Toplevel() icon = PhotoImage(file=os.path.join("images",'ico.gif')) pop_wait.tk.call('wm', 'iconphoto', pop_wait._w, icon) pop_wait.title("Información WhatsApp Forensic") pop_wait.configure(width=500, height=220) pop_wait.resizable(width=False, height=False) mensaje = Label(pop_wait, text="Espere mientras se realiza el proceso") mensaje.place(x=20,y=40) pop_wait.update() en,out,err=os.popen3(modules.config.adb_comm+" shell ls data") err = err.read() #WIN LIN if "device unauthorized" in err: os.popen(modules.config.adb_comm+" kill-server") os.popen(modules.config.adb_comm+" start-server") print "Please connect your Android device with USB Debugging enabled:" mensaje_deb = Label(pop_wait, text="Por favor, conecte el modo depuración en la pantalla de su dispositivo") mensaje_deb.place(x=20,y=60) pop_wait.update() os.popen(modules.config.adb_comm+" wait-for-device") mensaje_deb.destroy() #WIN LIN elif "error: device" in err: print "No such device, please check the conection and restart app" mensaje_deb = Label(pop_wait, text="No se encuentra ningun dispositivo, por favor,") mensaje_deb.place(x=20,y=60) mensaje_deb2 = Label(pop_wait, text="compruebe la conexion y prueba de nuevo") mensaje_deb2.place(x=20,y=80) pop_wait.update() time.sleep(1) option = 0 #LIN WIN elif "sh: 1: adb:" in err or "no se reconoce como un comando" in err: print "adb not installed, please install and restart app " mensaje_deb = Label(pop_wait, text="Adb no se encuentra en el ordenador, por favor,") mensaje_deb.place(x=20,y=60) mensaje_deb2 = Label(pop_wait, text="instala adb y prueba de nuevo") mensaje_deb2.place(x=20,y=80) pop_wait.update() time.sleep(1) option = 0 if option == 1: info_root_f(root, pop_wait) elif option == 2: whatsapp_root(root) elif option == 3: whatsapp_mm(root, pop_wait) elif option == 4: whatsapp_db_f(root, pop_wait) elif option == 5: whatsapp_db_root(root, pop_wait) elif option == 6: whatsapp_log_f(root, pop_wait) elif option == 0: reloadd(root) def whatsapp_root(root): option , version, marca = check_data() pop_roote = Toplevel() pop_roote.title("Information to Root device") pop_roote.configure(width=445, height=220) imgicon = PhotoImage(file=os.path.join("images",'ico.gif')) pop_roote.tk.call('wm', 'iconphoto', pop_roote._w, imgicon) pop_roote.resizable(width=False, height=False) mensaje = Label(pop_roote, text="Version: "+version) mensaje.place(x=20,y=40) mensaje.configure(foreground="green") mensaje_2 = Label(pop_roote, text="Mobile brand: "+marca) mensaje_2.place(x=20,y=60) mensaje_2.configure(foreground="blue") mensaje_3 = Label(pop_roote, text="App recommended to root: "+option["app"]) mensaje_3.place(x=20,y=80) mensaje_3.configure(foreground="brown") if len(option["observaciones"]) > 60 and len(option["observaciones"]) < 150: mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"][:65]) mensaje_4.place(x=20,y=100) mensaje_4.configure(foreground="red") mensaje_5 = Label(pop_roote, text=option["observaciones"][65:130]) mensaje_5.place(x=20,y=140) mensaje_5.configure(foreground="red") mensaje_6 = Label(pop_roote, text=option["observaciones"][130:]) mensaje_6.place(x=20,y=140) mensaje_6.configure(foreground="red") elif len(option["observaciones"]) > 150 and len(option["observaciones"]) < 200: mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"][:65]) mensaje_4.place(x=20,y=100) mensaje_4.configure(foreground="red") mensaje_5 = Label(pop_roote, text=option["observaciones"][65:130]) mensaje_5.place(x=20,y=140) mensaje_5.configure(foreground="red") mensaje_6 = Label(pop_roote, text=option["observaciones"][130:195]) mensaje_6.place(x=20,y=160) mensaje_6.configure(foreground="red") mensaje_6 = Label(pop_roote, text=option["observaciones"][195:]) mensaje_6.place(x=20,y=160) mensaje_6.configure(foreground="red") else: mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"]) mensaje_4.place(x=20,y=100) mensaje_4.configure(foreground="red") def check_how_root(android_v, marca): perfect_option="none" other_option="none" pvm = LooseVersion(android_v) for dicts in modules.config.dicts_root: try: if dicts["version"]=="all": pvd = LooseVersion("20.20.20") else: pvd = LooseVersion(dicts["version"]) except: pvd = LooseVersion("20.20.20") if dicts["marca"]==marca and (pvd==pvm or pvd" #Obtiene la fecha y hora command = modules.config.adb_comm+" shell date" en,time_device,err = os.popen3(command) time_device=time_device.read() if ":" not in time_device: text_final+="Device Not found \n\n" else: text_final+="

Date of device: "+ str(time_device)+"

" text_final+="

Android version: "+android_v+"

" text_final+="

Mobile brand: "+marca+"

" else: text_final+="

Device Information


" text_final+="

Android version: Not found

" if option == 0: text_final+="""

""" divo=True for i in range(len(info_root)): if i == 0: if info_root[i]=="Root Device": text_final+= "Root Device: Yes


" else: text_final+= "Root Device: No


" else: if divo: text_final+="
"+"Root files: "+info_root[i]["file"]+", "+"Directory: "+info_root[i]["directory"]+", App used to root:"+info_root[i]["App"]+"
" divo=False else: text_final+= "Root files: "+info_root[i]["file"]+", "+"Directory: "+info_root[i]["directory"]+", App used to root:"+info_root[i]["App"]+"
" text_final+="
" commandd = modules.config.adb_comm+" shell pm list packages -f" en,packages,err = os.popen3(commandd) packages=packages.read() packages = packages.split("\n") text_final+="

" text_final+="

Installed packages:

" text_final+="

"+packages[0]+"

" text_final+="

"+packages[1]+"

" text_final+="

"+packages[2]+"

" text_final+="
" for i in range(3,len(packages)): text_final+="

"+packages[i]+"

" text_final+="
" text_final+='Show all' elif option == 1: clase_list=0 if whatsapp_log!=None: for log in whatsapp_log: text_final += "


------------------------"+"
" text_final += "------- Cloned ------"+"
" text_final+="MD5 [>] "+str(log["hash_clonado"].split(" ")[0])+"
" text_final+="Path [>] "+str(log["hash_clonado"].split(" ")[2])+"
" text_final+="--------Original-------"+"
" text_final+="MD5 [>] "+str(log["hash_origen"].split(" ")[0])+"
" text_final+="Path [>] "+str(log["hash_origen"].split(" ")[2])+"
" text_final+="NAME LOG [>] "+log["log"]+"


" text_final+='Show analytics' text_final+="" text_final+="""""" clase_list+=1 else: text_final+= "WhatsApp Forensic doesn´t found WhatsApp" elif option == 2: i=0 divo=False for dbs in list_dbs: if dbs["name"]!=None and dbs["name"]!="None" and "open ls" not in dbs["name"]: if i == 3: text_final+="
" divo=True db_v = dbs["name"].split(".") db_v = db_v[len(db_v)-1] text_final += "

Encrypt DB version: "+db_v+"

" text_final += "

------------------------"+"
" text_final += "------- Cloned ------"+"
" text_final+="MD5 [>] "+str(dbs["hash_d"].split(" ")[0])+"
" text_final+="Path [>] "+str(dbs["hash_d"].split(" ")[2])+"
" text_final+="--------Original-------"+"
" text_final+="MD5 [>] "+str(dbs["hash_o"].split(" ")[0])+"
" text_final+="Path [>] "+str(dbs["hash_o"].split(" ")[2])+"
" i+=1 else: text_final += "

DataBase don´t found

" if divo: text_final+="
" text_final+='Show all' elif option == 5: i=0 divo=False for dbs in list_dbs: if dbs["name"]!=None and dbs["name"]!="None" and "open ls" not in dbs["name"]: if i == 2: text_final+="
" divo=True db_v = dbs["name"].split(".") db_v = db_v[len(db_v)-1] text_final += "

Type DataBase: "+db_v+"\n" text_final += "

------------------------"+"
" text_final += "------- Cloned ------"+"
" text_final+="MD5 [>] "+str(dbs["hash_d"].split(" ")[0])+"
" text_final+="Path [>] "+str(dbs["hash_d"].split(" ")[2])+"
" text_final+="--------Original-------"+"
" text_final+="MD5 [>] "+str(dbs["hash_o"].split(" ")[0])+"
" text_final+="Path [>] "+str(dbs["hash_o"].split(" ")[2])+"
" i+=1 else: text_final += "

DataBase don´t found

" if divo: text_final+="
" text_final+='Show all' #text_final += "

Deleted Messages

" # for row in data: # text_final += """

"""+row.replace("Numero de telefono de whatsapp borrado", "WhatsApp phone number deleted").replace("\nTimestamp","; Timestamp")+"
" # text_final+="

" # Adding message analytics: # TODO: Create a new window that can offer interaction to select or order messages by # groups, users, dates, etc. and show message analysis customized by users. text_final += "

Messages Analytics

" for elem in data: text_final+="Total messages: "+str(elem[0][0])+"
" text_final+="Messages by conversations: "+"
" for conv, msg_num in elem[1][0].items(): text_final+=conv+": "+str(msg_num)+"
" text_final+="Groups members:
" for group, members in elem[3][0].items(): text_final+=group+" Members: " for member in members: text_final+=" "+member+"
" text_final+="Deleted messages: "+str(elem[2][0])+"
" elif option == 6: md5_cloned=data[0] md5_original=data[1] text_final+= "

Number of Media files [>] "+str(len(md5_original))+"

" text_final+= "


" for i in range(len(md5_cloned)): for has in md5_original: if has[1] == md5_cloned[i][1]: text_final+="------------------------"+"
" text_final+="------- Cloned ------"+"
" text_final+="MD5 [>] "+str(md5_cloned[i][1])+"
" text_final+="Path [>] "+str(md5_cloned[i][0])+"
" text_final+="--------Original-------"+"
" text_final+="MD5 [>] "+str(has[1])+"
" text_final+="Path [>] "+str(has[0])+"
" if i == 2: text_final+="

" out=i if out>2: text_final+="

" text_final+='Show all' f = open (rute,'a') f.write(text_final) f.close() def create_report_f(t): global rute t = t.split(",")[1].replace(" ","_").replace(":","_") rute = 'Reports_Guasap_Forensic/Report_guasap_forensic'+t+'.html' f = open (rute,'w') f.write("\n") f.close() return t def reloadd(root): root.destroy() # root.update() def on_closing(root): d = Dialog_exit(root) def Dialog_exit(parent): top = Toplevel(parent) parent = parent imgicon = PhotoImage(file=os.path.join("images",'ico.gif')) top.tk.call('wm', 'iconphoto', top._w, imgicon) top.title("Salir") Label(top, text="¿Está seguro?").grid(row=0, column=0, columnspan=2) button1 = Button(top, text="Si, salir de la app", command= lambda: out(top,parent)) button2 = Button(top, text="No.", command= lambda: icon(top, parent)) button1.grid(row=1, column=0, padx=5, pady=5) button2.grid(row=1, column=1, padx=5, pady=5) def out(top,parent): global menu menu=False top.destroy() parent.destroy() def icon(top,parent): top.destroy() if __name__ == '__main__': print modules.config.banner print "*********************************************************************************" print "/////////////////////////////////////////////////////////////////////////////////" print "*********************************************************************************" print "-- APP NAME: GUASAP FORENSIC --" print "-- Description: WhatsApp Forensic App --" print "-- Created by QuantiKa14 Team --" print "-- Licencia GNU V.3 Quantika14 Servicios Integrales S.L. --" print "-- Authors: Jorge Coronado A.K.A @JorgeWebsec / Ramon Bajona --" print "-- Date: 10-05-2018 | 19/12/2018 --" print "-- Email contact: info@quantika14.com --" print "*********************************************************************************" print "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" print "*********************************************************************************" t=time.strftime('%A %B, %d %Y %H:%M:%S') create_report_f(t) #Comprobamos que las dependencias están instaladas modules.dependencies.check_dependencies() while(menu): root = Tk() root.configure(width=600, height=550) root.resizable(width=False, height=False) imgicon = PhotoImage(file=os.path.join("images",'ico.gif')) root.tk.call('wm', 'iconphoto', root._w, imgicon) imagen = PhotoImage(file="images/logika14-2.PPM") widget = Label(root, image=imagen) widget.image = imagen widget.place(x=40,y=10) imagen2 = PhotoImage(file="images/logika14-1.PPM") widget2 = Label(root, image=imagen2) widget2.image = imagen2 widget2.place(x=40,y=500) root.title("Guasap Forensic version GNU V.3") w = Label(root, text="Introduzca número de licencia:") w.place(x=40,y=80) e = Entry(root, width=width_e, state=NORMAL) e.place(x=40,y=95) button = Button(root, text='Enviar', command= lambda: enviar_licencia(e.get(), root), height=1) button.place(x=495, y=90) if root_posibility == None: button_root = Button(root, text="CHECK indicios de ROOT", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 1)) button_root.place(x=40, y=150) if licencia: button_root.config(state = NORMAL) button_roote = Button(root, text="Rootear dispositivo", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 2)) button_roote.place(x=40, y=200) button_mm = Button(root, text="Extracción de Whatsapp multimedia", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 3)) button_mm.place(x=40, y=250) button_dbc = Button(root, text="Extracción de Data Base cifrada", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 4)) button_dbc.place(x=40, y=300) button_db = Button(root, text="Extracción/Análisis de DB (root)", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 5)) button_db.place(x=40, y=350) button_log = Button(root, text="Extracción/Análisis de Whatsapp Log (root)", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 6)) button_log.place(x=40, y=400) info = Label(root, text="Informe:") info.place(x=35,y=450) rute_la = Label(root, text=rute) rute_la.place(x=90,y=450) if root_posibility == True: button_root = Button(root, text="Comprobar rooteo en el dispositivo (Dispositivo rooteado)", width=width_w, command=lambda: whatsapp_deb(root, 1)) button_root.place(x=40, y=150) button_root.config(foreground="green") button_log.config(state = NORMAL) button_db.config(state = NORMAL) elif root_posibility == False: button_root = Button(root, text="Comprobar rooteo en el dispositivo (Dispositivo no rooteado)", width=width_w, command=lambda: whatsapp_deb(root, 1)) button_root.place(x=40, y=150) button_root.config(foreground="red") button_log.config(state = DISABLED) button_db.config(state = DISABLED) if inten: if licencia: button_roote.config(state = NORMAL) button_mm.config(state = NORMAL) button_dbc.config(state = NORMAL) e.config(state = DISABLED) a = Label(root, text="Licencia validada correctamente") a.config(foreground="#75507b") a.place(x=40,y=115) else: a = Label(root, text="Licencia no valida") a.place(x=40,y=115) if popup_a: popup() popup_a=False if label_root==True: label_Root = Label(root, text="Trabajo finalizado.") label_Root.config(foreground="red") label_Root.place(x=250,y=430) label_root==False root.protocol("WM_DELETE_WINDOW", lambda:on_closing(root)) root.mainloop() ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================ # Guasap Forensic The Guasap Forensic implemented in Python under the GNU General Public License, for the extraction and analysis of files, data bases and logs for forensic WhatsApp. # What it does? 1. Check root in device 2. Extract DB and multimedia files (no root) 3. Extract and analyze (deleted messages and others) DB and logs (only root) 4. Create a report with the results # How to use? $ python Guasap_Forensic.py [![HOW TO USE GUASAP FORENSIC](https://quantika14.com/wp-content/uploads/2017/01/slider1_qk14-1400x500.jpg)](https://www.youtube.com/watch?v=AZaTOYx6ELA&t=5s) # Images ![example](/images/guasap.png) # Contact * Twitter: @QuantiKa14 * Web: www.quantika14.com * Email: info @ quantika14 . com ================================================ FILE: Reports_Guasap_Forensic/readme ================================================ ****************************************************** *** CARPETA DONDE SE GUARDA LOS INFORMES *** QUE GUASAP FORENSIC AUTOMÁTICA CREA CON *** LOS RESULTADOS. ****************************************************** *** PARA MÁS INFORMACIÓN PUEDES CONTACTAR *** CON QUANTIKA14 *** WWW.QUANTIKA14 - INFO @ QUANTIKA14.COM *** TWITTER: @QUANTIKA14 ================================================ FILE: check_root.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import modules.config, modules.functions, os from subprocess import Popen, PIPE, STDOUT from Tkinter import * root_posibility=False #A partir de esta línea comenzamos a verificar si el dispositivo está rooteado. def check_root(pop_wait): root=check_su() count=1 list_root_info=list() list_root_info.append(root) if root != "No adb installed": mensaje_deb = Label(pop_wait, text="Buscando aplicaciones que requieren de Root...") mensaje_deb.place(x=20,y=80) pop_wait.update() for directory in modules.config.directory: a = modules.config.adb_comm+" shell ls "+directory+"Download/" a = os.popen(a).read() print "Checking root... \n" if "No such file" not in a and "sh: 1: adb:" not in a: a = a.replace("\r","").split("\n") for apk in a: #A partir de esta línea, lee el archivo "apks_to_root.txt" y compara los nombre de las aplicaciones con el de los paquetes y/o aplicaciones en la carpeta de Descargas. for line in open("modules/apks_to_root.txt", "r"): line = line.split("||") for lin in line: if "|" in lin: continue else: if lin in apk: #A partir de esta línea nos indica que se ha localizado una aplicación en la carpeta de Descargas que permite realizar un rooteo. print "Find root file" print "App: "+line[0].title() +" ---> "+apk print "Directory: "+ directory+"Download/"+"\n" name_d="dict_"+str(count) name_d={"App":line[0].title(), "file":apk, "directory":directory} list_root_info.append(name_d) count+=1 #A partir de esta línea comienza a buscar en todo el dispositivo alguna aplicación que permita realizar el rooteo. for line in open("modules/apks_to_root.txt", "r"): line = line.split("||") for lin in line: if "|" in lin: lin = lin.split("|") b = modules.config.adb_comm+" shell ls "+directory b = os.popen(b).read() b = b.replace("\r","").split("\n") for bpk in b: for li in lin: if li in bpk: print "Find root file" print "App: "+line[0].title() +" ---> Evidence: "+bpk print "Directory: "+ directory+"\n" name_d="dict_"+str(count) name_d={"App":line[0].title(), "file":bpk, "directory":directory} list_root_info.append(name_d) count+=1 else: b = modules.config.adb_comm+" shell ls "+directory b = os.popen(b).read() b = b.replace("\r","").split("\n") for bpk in b: if lin in bpk: print "Find root file" print "App: "+line[0].title() +" ---> "+apk print "Directory: "+ directory+"Download/"+"\n" name_d="dict_"+str(count) name_d={"App":line[0].title(), "file":bpk, "directory":directory} list_root_info.append(name_d) count+=1 print "Change directory..." magisk=check_magisk() if magisk: list_root_info.append(magisk) # list_root_info.append(root_posibility) if len(list_root_info)<2: print "No se han encontrado evidencias de root." return list_root_info, root_posibility def check_magisk(): a = modules.config.adb_comm+" shell cd data/data/adb && ls" a = os.popen(a).read() b = modules.config.adb_comm+" shell cd data/adb && ls" b = os.popen(a).read() if "magisk" in a or "magisk" in b: print "Find root file" print "App: Magisk" print "Directory: data/adb\n" return {"directory":"data/adb","App":"Magisk","file":"magisk_debug.log"} else: return False #Aquí comprobamos a través de un comando si el dispositivo dispone de permisos de root. def check_su(): global root_posibility command = modules.config.adb_comm+" shell su 0 ls /data/data/com.whatsapp" #p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) #output = p.stdout.read() en, output, error=os.popen3(command) err = error.read() out = output.read() #Nos devolverá este error si en nuestro equipo no tenemos instalado ADB if "sh: 1: adb:" in err or "no se reconoce como un comando" in err: print "No adb installed" root_posibility=False return "No adb installed" #Nos devolverá este error si no hemos autorizado la depuración USB en nuestro dispositivo elif "device unauthorized" in err: print "No debugging actve" root_posibility=False return "No debugging actve" #Nos devolverá este error si el dispositivo no se encuentra conectado a nuestro equipo elif "error: device" in err: print "No such device..." root_posibility=False return "No such device" else: #Nos devoverá este error si nuestro dispositivo no dispone de permisos de root o no se encuentra rooteado if "su: not found" in out: print "No root device..." root_posibility=False return "No root device" #Nos devolverá este aviso en caso de que el dispositivo esté rooteado else: print "Root Device detect..." root_posibility=True return "Root Device" ================================================ FILE: hashdeep.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import os, time import os.path as osp import hashlib import modules.config, modules.functions from Tkinter import * def write(text): """ helper for writing output, as a single point for replacement """ print(text) # --- helpers --- def filehash(filepath): blocksize = 64*1024 md5 = hashlib.md5() with open(filepath, 'rb') as fp: while True: data = fp.read(blocksize) if not data: break md5.update(data) return md5.hexdigest() def check_directory(): for directory in modules.config.directory: direct = modules.config.adb_comm+" shell ls "+directory+"WhatsApp/Media/" a,b,c = os.popen3(direct) b = b.read() if "No such file or directory" in b: continue else: return directory def pull_media(directory): pull = modules.config.adb_comm+" pull "+directory+"WhatsApp/Media Whatsapp_Extracted_Media/" a = os.popen(pull) print pull print a.read() def get_subdirectoris(directory): ls_recursi = modules.config.adb_comm+" shell ls -R "+directory+"WhatsApp/Media" a, b, c = os.popen3(ls_recursi) b = b.read() return b def get_mdinfo(path, i): name =path+"/"+i if os.name == 'nt': name = name.replace(" ", "\\ ") else: name = name.replace(" ", "\\\\ ") md5 = modules.config.adb_comm+" shell md5 "+name hash_ = os.popen(md5).read() if "/sh" not in hash_: return name, hash_.split(" ")[0] else: md5 = modules.config.adb_comm+" shell md5sum "+name hash_ = os.popen(md5).read() return name, hash_.split(" ")[0] def extract_mm(pop_wait): md5_original=list() md5_cloned=list() files=list() on_rute=False on_file=False subdirectoris=list() modules.functions.create_dir_media() directory = check_directory() pull_media(directory) # --- /helpers --- # write("""\ # %%%% HASH_CHECK # %%%% size,sha256,filename # ## # ## Clone media hash check # ##""") mensaje_deb = Label(pop_wait, text="Creando hash y comparando...") mensaje_deb.place(x=20,y=80) pop_wait.update() mensaje_deb = Label(pop_wait, text="(Este proceso varia su duracion en base a los archivos multimedia)") mensaje_deb.place(x=20,y=80) pop_wait.update() PATH = 'Whatsapp_Extracted_Media/' """ Clone media data check """ for path, dirs, files in os.walk(PATH): for fpath in [osp.join(path, f) for f in files]: md5 = filehash(fpath) name = osp.relpath(fpath, PATH) # print "---------------------" # print "MD5 [>] "+str(md5) # print "Path [>] "+str(name) md5_original.append((name,md5)) print "Finish hash cloned..." # print '\n' # write("""\ # %%%% HASH_CHECK # %%%% size,sha256,filename # ## # ## Original media hash check # ##""") ls=get_subdirectoris(directory) ls=ls.replace("\r", "").split("\n") for l in ls: if "/" in l and on_rute: if on_file: files.append(path.replace(":","")) subdirectoris.append(files) on_rute=False on_file=False files=[] else: on_rute=False on_file=False files=[] path="" if "/" in l: path = l on_rute=True elif "." in l and on_rute: file_l = l on_file=True files.append(file_l) else: continue for directory in subdirectoris: path=directory[len(directory)-1] for i in range(len(directory)-1): name, md5 = get_mdinfo(path, directory[i]) md5_cloned.append((name,md5)) # print "---------------------" # print "MD5 [>] "+str(md5) # print "Path [>] "+str(name) print "Finish hash origin..." print "Comparing..." for i in range(len(md5_cloned)): for has in md5_original: if has[1] == md5_cloned[i][1]: print "-----------------------" print "------- Cloned ------" print "MD5 [>] "+str(md5_cloned[i][1]) print "Path [>] "+str(md5_cloned[i][0]) print "--------Original-------" print "MD5 [>] "+str(has[1]) print "Path [>] "+str(has[0]) # time.sleep(1) return md5_cloned, md5_original ================================================ FILE: images/NO-ROOT.PPM ================================================ P6 400 400 255 ۞juRuS΋ؗkM^ިު΋}\sRtτ}\z^٤ۡnP|X֚mL{ZrRhrN|`єόpsSnpO{ZxVфxXtWboNtTՐ֍uTvS}[؞ߥtQuStڗ~pQhۅhxYvT]ޔyxVrWՕrOsU҈qMz]qQcݡpn·y]zZ~aԈnNbrKy[pMjݥ|[sRtNhޣrP{Zn÷ާઽޭެެެܧ{^pQ~ЈtPvWrPzڛy]uS{^uU||wWuRӔ㺮ٛ҆rhfxYz[{Z{Y|Z|[zY{Zbioz҂ؔԐpN|Zԁ`yWuUuW֔ҌsOvXxWtOgz\yV{`øާӍvbvQoJoNrRsSuRxWxUvVvVvUvUuTvVsSrQrQnJnLpM~_p̀ܣۜknI}qK{[sP_ҌqPuTtYrQgݦrOxTsڻݫхguQnGrMvS{Y{Z{[yWyWxVxVwUvVvUxVyVwUwUwUxVyWzXzXzXxVvTpKuSwWy[lKؗpO}YtVb֋sLuYwWsSoxxZsWיаڝstRpIsSuY{YyVxYwWwTvSxVxVwUxVwUvVvUwUwUwUwUwUwUxVwUwUwUwUxV{YyWxVwUuUo؜ρqR{XsSiӊqSzYvU|VxW}\wMvY⩭ݖknNqQ~^xZx\w\tVuTwVxVxWwVxVwUwUxVwUxVwUwUwUwUwUwUwUwUxVxVvTwUwUxXxVxVwUyWsQoMfדy[tXvVtT~dsoMx]xUyVxZwU{W|ZoLqQxZyYuTuWvSyTxUwTwTwUxWxYwUxVxVxVxVxVwUwUvVwVxVwUxVxVxVwUxVxVxVxUxUxVxVsS{Z[uStUlݟnLxZxUuWuTqRxXvTvWyXޭvYuVwU~YyWsSuR|UvSxUxUvWuXwWwUwTwTwUwUxVxVxVyVwUxVvVwVxVxVxVxVxVwUxVxVxVxTxUxXxXvVuUsStT{ZpQpMvެovSxYyUuVvVy[uRtT{_߯ڛvZwXxVvUxVxVxVwUxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVyWyWxVxVwUxVxVxVxVwUwUxVxVwUxVwUuVvUxUwUuVxX{XoO{\ۛϙ́uXvRxVxVxVxVxVwUwXxR|]ȑxlJx\wWvUtZwVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVyWyWyWyWxVxVxVxVxVxVwUwUxVxVxVxVxVvVvUwUwUuUwTyUwWwXpM~ΈjqRvXxTxVxVxVyWyWxVxXxUwWt㵁gsQyYxW|TwRtWwUwUwUyWxVyWyWyWyWyWyWyWxVyWyWxVxVxVxVyWyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVxVvTvUwWvVwVtWvTuVu[yWwPàsRzVwVxXxVxVxVyWyWxWxUxXxVsTψߢw]y[xXtTwRtSuVxUxVxVxVyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVwUxUuUsTvVyVxVvUuYuTuSyVtTuRҏrO}\tRwWxUxVwUxVyWyWxWxSwZxVvUsTڛrRxWuVwUuUuTuUxWxVwUxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUyWxVyWxVuTvVyXvWuUyVuYyXzUvXxUxVxWxVwVwWvWxWvVޥw\vVwUvUwVwVxVxVyWyWyWyWyWxWxVwYyUrٖsRzXwUwUwUwUwUwUxVxVwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUxVxVxVxVwUwTtPwVwTrNtQwTuTuTxVxVxVxVxVxXxXxXyYwWćgvVxVwUwUxVxVxVxVyWyWyWyWyWxVxVwVwSrOٜpSyXvTwUwUwUwUwUwUwUwUvTwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVxVwUuUuQxUsRxVhgtUsQ|WwUxVxVxVwUwUxVwUwUwZxWynJ{ZwUwUwUwUxVxVxVxVyWyWyWyWxVxVvVvUuSx]zXwTwUwUwUwUwUwUxVxVxVyWwUvTxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUwUuVkڛԪԛisQwUxVxVxVwUwUxVxVwUvTxU|\ЉrSxXtTxVxVwUwUxVxVxVyWyWyWyWyWxVxVwXwVsR{etTzZuRwUwUwUwUwUwUxVuTuTvTxVyWxUxVyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVwUwUuVf}axVwUxVxVxUxUxUxUwTvUvVwWj٩z[sRwRxUxVxVxVxVxVxVxVxVxVxVyWyWxVxVyUxQxVΎovTuVwWxVxVxVwUwUvUuSyRzX|^w\|YtUvSxVwUxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxXxVwTvUz[mFޥnKwVwTxYyVxVxVxVxVwVxYuSvSӋÄhtTzXxVxVyWyWxVxVxVxVxVvVvVwVxVxVwUwUtXwUtRՏnMwXvU{UxWxVxVwUwUwUvVaט㫩֐}dsSvWxVxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWwUyWxXxVwTwV{\iFlKzZwTxWyVyWyWxVxVxWuWwU|[pJlpPvVvTxVxVyWyWxVxVxVxVxVuUvVwUwUwUwUwUvUwUuXݬuUwVwTzVxTsVyWxVvTxVvThޭ^sRyWxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwWwUwTwV}[lGkKyYwTxWyVyWyWyWxVxUwPyTyUtUcЊsSyTtTyWxVxVyWyWxVxVxVxVxVuUuUwUxVxVxVxVwUuÙϋouSyYvSyWtWwUxVwUwUwUxWכӈvUxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwWxVyVwUyZlJڠԌrSvXwSxUyUyWyWyWxVuXxUxUvTw[oMؒڡ{XxZyZuUwUxVyWyWyWxVxVxVxVxVvVvVwVxVxVxVxVvUwZ֑mI}ZsTvUvUvVyTxVwUyWtR~_۝yTwUxVwUwUwUwUxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvUwUxUvUwWuUyVܧuYwVuUwUxUxVyWyWyWxVwVwVvUwXvRzVuSǃduTyXuXvUvTxVxVyWyWxVxVxVxVxVwVwVwVwUwTyXyZvYσbuWzXvVvVxVxVwVxVwUwUuSaٙxXxVxVxVxVwUwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUxVwUwUvWwYvX|֑҈tyZuUwUwUxVxVxVyWyWyWxVxVwUwUwUwUwUrOՎtqQyXwSyWxVxVxVxVyWyWyWxVxVxVxVxVxVwVwTxRzXtWj҈mN}_tRxUyVxVvVvVxVwUxVvTz[ۣ·qRzXvTxVxVwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVwUwUxVxVxVuUvVzVsVtTwZw[sUtSyTvTxVxVxVxVyWyWyWxVxVwUwUxVvVsS|YsU͆wRvTzUyTwVxVxVxVxVyWyWyWxVxVxVwUxVxVuUxUvTtQz\濄hrTvUyQvUxUwUwVvVxVxVxVxVvV}bଂ_uRyWyWwUxVwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVvVsTtOzVzYwUyVyVxVwVwUwUxVxVxVyWyWyWxVxVxVwUxVxVvS|YoN֞ڞyTvWvUxTsTuWwUwUxVxVyWyWyWxVxVxVwUwUxVvU{YsWuXܤӑtPyWsUxVwVvVxVxVxVxVxVxVxVxUvPeӌ䮾ᬙ΃}`zWyXyWyWxVxVxVxVyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwVuVwVyVyWyWyWwWwWxVxVyWyWyWyWyWyWxVxVxVwUxVxVxVuVxWgayVvWxVxVvVyVxVxVxVyWyWyWyWxVxVxVwUwUxVvXvWwUˇЉotRyWwUxVxVxVyWyWyWxVxVwUxVxVxVvTwU}[{[rRvTxVzWxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVyWyWyWyWyWyWyWxVxVyWyWyWyWyWyWxVzWzWyVyVxVtTuSy[qNnuR|[xVxVyWyWxVxVxVyWyWyWyWyWxVvVwUzR{UtUsTrRgޥtUxVwUwUxVxVxVyWyWyWxVxVxVxVxVwUwUwUvTsSxXxVxVzWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVtTuS{[rOьЃuUySwTxVxVyWyWyWyWyWyWyWyWyWyWxVxVxRxXtWzWxZ|^фnJ{YuSwUxVxVxVyWyWyWyWxVxVwUwUwUwUxVxVvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwTvTwUwVhۜyYvSvXuRxVxVyWyWyWyWyWyWyWyWyWyWxVxVzVuSzVtQwZݢًstNzXvTxVxVxVxVyWyWyWyWyWxVxVwUxVwUvTvTvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVvVuUuUvVuUyUwTtQ|[nL|]xXwVxYvUxVyWyWyWyWyWyWyWyWyWyWyWxVxVwXvVyRwXψ|awRxVxVxVxVxVxVyWyWyWyWyWxVxVxVxVwUxVxVvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVvVuUuUuUuUyUxVuR{YkF۟qwUvUsS{UxWxVyWyWyWyWyWyWyWyWyWyWyWxVvVtUw^qRp֔oNz[xVxVwUxVxVyWyWyWyWyWxVxVxVwUxVxVxVxVxVxVxVyWyWxVxVyWyWxVxVxVxVxVyWxVxVyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVyWyWxVxVvVuUuUxVxVwUzXqMԊЉsQxVwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWxVxVxV{ZqP~avoIy^wUwUwUxVxVyWyWyWyWyWxVxVxVwUxVyWxVxVxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvVvVvVwUwUxVwUsRo٢uN{WwUvTvTxVxVxVyWyWyWyWyWyWxVxVyWyWxVxVxVxW{[ݨۍqqPyVwUxVxVxVvUwVwVxWwVyWxVxVxVxVxVxVyWyWxVxVxVxVxVxVxVyWyWxVxVxVxVxVyWxVwUxVxVxVwUxVxVwUwUxVxVxVwVwVwVwVwVxVxVxVwUwUwUxVxVxVxVxVwUvTvTwUwUwUwUvTwUuTuUvVxVxVyWzXxWhz[yWuTwUwUwUxVxVyWyWyWyWyWxVxVxVxVwVwVwUwUwVsSыˆkqRxWwUxVxVxVuUvVvVvVuUxVxVxVwUwUxVwUxVxVxVxVxVxVxVxVxVxVxVwUxVxVxVxVxVwUwUxVxVxVwUxVxVwUwUwUwUxVvVvVuUuUuUxVxVwUwUwUwUwUwUxVxVwUyWyWyWzXzX{Y{Y{YzXxWvVuUuStRrPpNoOlK݋qqTxZvVwUwUwUxVxVyWyWyWyWxVxVxVwUwUvVvVtTyYrRrcsSwUxVxVxVxVuUvVxVxVxVxVxVwUxVxVxUxUxUxUwUvUxUxUxTuRuTwWxWwVvSuTwTxTtUwUvTwSxUuTuUuUuUuSvSwUsUuXtWtWuYvXvXzZyWy[yZ}^~]zYyVzXuSrMtMqNqNnKoJjEkDiFvU}`{_ixt~א֎ԑԈqNyWvSxUuUuUuUvVwWyWyWyWyWyWxVxVwUxVyXsTwYqQbޭ|^tTyVxVxVxVxVuUvVxVxVxVxVwUwUwUxVuXtWuXuXuVvWxWxWxVwUwUwVvVxYwZvWtTtSvSvUvUuVuU{X{Y|Y{Y|\|]|[{\yXyVyVuRtPrPnNlLqLpKiDgDnLyY|\cptwԅ҉ӎ٘ܟ۠qQ{YwUwUxVuUuUuUvVvVyWyWyWyWyWyWxVwUxVvUtTzZyY٢xYvVxVxVxVxVwUwUxVwUwUwUwUwUwUwUwUuTtSvUvTtVtVwWwWxWzVyUyVxVzUzWzV~Z~\{ZyXyVwVtQtQsPpMpMnJlGlHnKtQzZ{]ilny҄ЂӋؕՖڣ|[x\wUwUxVwUwUwUwUxVxVxVyWyWyWxVxVxVwUxVwRzZuRҋڜyWxWxXvTwUwUvTwTvTvTtTuUxVxVxVxVxVyV{X{X{Xz\y[yYyYyXuSsPtRrRoNoNnMmLiHnKrRyZy^inp{рф֎ՒӖݣⰾް՗pOxVxXxXwWwWwUwUxVxVxVxVyWyWyWxVxVxVxVxV{\wQuܝyVxXvWyWxW{YzXzW{XzXxXvVxVxVvTuSuSqPpOoNoNkJoNtQxUzVagipx~̀ЇԌӓޣ੽ݰ軺᫸৷ަԊч҂mk|_w|_xWwRwWwWwWxXyVyVyVyVxVxVyWxVxVxVxVxUxVxVrRc۠yZyWsSsQqQqPqOpLoJkGlKtUwWz]fjipzxЄщҒޣܦ߰丼᰹६חьӉylgwVlHkJnKnLnMpNsQtRtRvTzVtRtjJx\sTxVxVxVwUxUxUwTxUxUwWwWyWyWyVxUzTyXvVtZڡ{Z|Yaeiqtw}΄ד۠ۧ水ݠ֑Ջ҃rjanNlKkJlJmLqKrNtRsStTwXwXwY{]{Z{Z{Z{Z{[zXxVzXxV}VyW}_ܣnKyXyWxVxVxVwUxXxXwWxXxXvVvVxVxV{VvWuUzXrRؐDZ۠آ䴾䳫՗ؖ֏xphvWnMnLlJrOrPsSsTsSuTxUyWzY{W|V|X}W}YwXyXyXzWxWwWyWxUyUuSvTvTvTvUxVxVxVxVwXwWdަmHzXxTwUwUxVxVxXyYxXwWxXuUuUwUwUyTsQ{YqNv鿳ܢӎڕчpqbpNmJmMoLpMsPtMtPuRvSvTz[y]xZxYxXzZzX{X{WzWvXxWxVyVxVxVvVxUxUxUxUyVwTyTzWzVyUyUyVzV{WzWzWxVxVxVxVuVyZyZݤmJyYwUwUwUxVxVxVxVwUwUxVvVvVwUwUvSuUxUd汬יٕۚttpsTqRpPpMrQrRtWuStUuUwUwXvVyXxXyWxWwVwWwYxWvUwVwUuTwVuTwUxVwVxVwVvUvUyWzWxWxVyWxWxVwWxVyWyWxWwWxWyVyVwVwVxVyWyWyWyWxVxVxVxVuS~]iEߤlMxZtVvUwUxVvUwTwTwTwTxUvUvUwVwTvVyWuTŵܡ֝ݡҊwzcnNqQpOrPuRuStSsRwVxZwWsSwUwWxYxXuVuWtTuTwVwTwTxUxVwVwWxVwUvTwUwUxVxVxVxVvVvVuUuUuUwUxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVtS}_iFߦrS~ZuRwUwUwUwUwUwUwUwUxVxWuXxWuSxXsOՕ{tPy`tWuWwWwVxVvUxWuXvYwUwYwY|YzUwUxVvVuUvUwUwUwVwVwUxVvSxUxUwUwUwUvTvTwUwUxVxVwUwUxVxVvTwUyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVtT|\iGݣ~wTyWxVuVrSyVxVxVxVxVxVvWqWvTyWtRt—ˀx[sSvQuUuVkמtoOyVvOzTyWyXwWwUwTuRuTxUxWxZuWtUxUxVtTuWxUxUxUwTxUuUwUxVxVxVvWvVuUuTuUuUuUuUuUwUxVxVxVxVwUwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwTzWlEԐuVxSxUuUuUwUwUwUwUxVvTwQtSvV{Z^Օ~vZvYuTxT{VuUvSvTvY~fvmPyWuUyYxYuVuVvWuTuUuXtVwUxUvXtYxVxVuUvUwWwWwWwWwWtUtUuUvUvUvXuUvUvUuUuUuUuUuUxVxVxVxVxUwUwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUyXlIԐؠsNxVyVyVvVwUwUvTwUyWzV{XvOzZяutStTwUyWwUwUxVxVxVwUuVuXؖφhK|YvUwUwUxVxVxVwVwVwVwVxVxVyWyWxVxVxVxVxVxVwUxVxVwVwVxVxVwUwUxVxVxVwUwUwUxVwUwUxVyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUz[qN׌ڠxVyZvVuSwWwVuTwT{TsVtT{YޤږzuRzVxVxVwUyWyWxVxVwUuSvUs[xYЅjI|\wUwUwUxVxVxVxVyWyWxVxVxVyWyWxVxVxVxVxVxVxVxVyWyWxVyWyWxVxVyWyWyWxVxVxVxVxVxVxVyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvTz[qMvᮃgvSwSzXxVvUxWxWvWiؚoPzX{TxUxVyWxVxVxVxVwUxVuUvXwR^΅nM{[wUwUwUxVwUxVxVyWyWxVxVxVyWyWxVxVxVxVyWxVxVyWyWyWyWyWyWxVxVxVxVyWyWyWyWyWxVxVyWyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvSyWqRxܼ୕~x\vRuQgӌ̅ktR{WwUxWxVyWyWxVxVxVxVxVvUvSwUxRޥڗtTzXxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVwTxUrUvڪmH{ZxSwTxWxVyWyWxVxVwUxVxVuTuTvYvUpܟyXxTwUwUxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxUxUrSgՑoJzYwTyVyWyWyWyWxVxVxVwUxVxUyVuTvYtPؤ{YwWwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuRyVvV|]ҎnKyZuTvVyWyWyWyWxVxVxVwUwUwUyUuRwVrL䳂bvTxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuTxUxX|\ԐmKyYvUvVyWyWyWyWxVxVxVxVxVvUyVvTwZqOisQyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVyYvTy[sQՑpKzXxUyVyWyWyWyWxVxVxVxVxVvUvTxTxXoNćmtPyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYuU|]jGڢԐqLzYxUxXyWyWyWyWyWyWyWyWyWxVyVxUzYqL֌trPyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYtTy]iFݢԐqNzYxUxXyWyWyWyWyWyWyWyWyWxWyWxUzYqL{pOyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVtSw\lIזԐqNzYxUxXyWyWyWyWyWyWyWyWyWxWyWxUzYqL|nNyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxTuQxXoGҋԐrOzYxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL΁mL{YwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxUvUzZmHԉԐrOzYxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLԉkJ{YwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwY{[oNτԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZnKΏlH|ZxVwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuYtR{WqRtԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZnK՘oO|ZwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvWtS{WqQsԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMzYxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUvWyUuUjԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMݪz[xVxVwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVyTvXxUxV|\ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMbvTwVwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUxVyUvVvVxV|^ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLLJksSwWwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUxVyVuStUzVwYԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLʇmsSwWwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUyWxVuSuT}\lL؝ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoL֍qqQuUwTxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxWvTuSz\jHٙԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLyoNxWwTxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUvTwRz^gEבԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZoLЁpO{YwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwVvUzWmMчԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZoLςnL|[wUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwVvVzWmMӅԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYoL֎lK~\wUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyVwVuU{XoOԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYoLՒlJ}\vTxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVyVwVuUzWqQvԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWxWwUyYoLԔkJ}[vTwTxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUuUyVsRqԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLڞsPzVvUwRxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuUuUyVtSkԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLzZxTuUxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvVvVzWuTfԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL|]uSvXxUxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVvVvVyVvV|]ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL羃etRvXxVwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVvVvVyVwVxYԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLΈnsS{XvUwVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWsPܣԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLՍsrR{XvUwVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUzXnJӘԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLڑyqO{XwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUzXmJӓԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLςoLzXwWxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUwUwUzXkJӋԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL̈́pJzXwVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvTzXlK̀ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLҊnMzXvSxTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUyWoKЀԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLؑlFz]wUxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWpM{ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLٗkEy_yVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUyWtSnԐqNzZxUyYyWyWyWyWyWyWyWxVxVwUyWwTyXqL١nNyZxTxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUyWsSjԏpNzZxUxXyWyWyWyWyWyWyWxVxVwUxVwTyXpMuXwVvSxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVwUwUxVtSeՏoN|ZyUxWyWyWyWyWyWyWyWxVxVwUwVwUxYoNz]xUvSyVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVxVxVxUz\޶ՏnM{YyUxWyWyWyWyWyWyWyWxVxVwUvUwTxYoN|bxVxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUvTxVxVwUzZޭՏnM{ZyUxVyWyWyWyWxVyWxVxVxVwUvUwTxYnM̆muSzWwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwUwTwUݣՏnM{ZyUxVyWyWyWxVxVxVwUwUwUwUvUvTxYnMӊsuSyVwTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWpNՒ֎pMyWxUuVyWyWyWyWxVxVxVxVwUvUwVuTxYrKڑurQ{ZwUyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVyWyWwUwU|ZiHЋՎmHzYxUvUyWyWyWxVxVxVxVxVxVvTyUxUvXnKсoN{ZxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwU{YmJъיkG{ZzTuRyWyWyWxVxVxVxVxVxVwUxTxWvWsVӊnK{\wUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUwUwUwUwUzXpK΀uT{\zVvUyWyWyWxVxVxVxVxVxVuUwRyXvUσҎnI{\vTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUwUzXpMxِumOyWuUwWyWyWxVxVxWxVwUwUvVwTwWvTؘmF{\vSxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVwUwUxXqMzrR{ZuQvQwSwUxXuVvWvUvUvSwUyWqPnڜhD|_vRxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvVvVxVwUxUzYoOyҎvSyUyWxWvVuUvTvUuUwWxYx[rS~cٟjH|^wSxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwVwVxVwUwU{[nN|ٝ̓vZtTuWxZzZzV{YxZvVxSvOcݩnL{ZwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVvUvU|YlHσٟdyYtTsTtSsOrPwWbr{ZxVwVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVvVuUyWxUٞ֬՗l`dzac̈́|^yVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYyWxWsRxZqSoăfxVwUxVxVyWyWyWyWxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWxVyWyWyWyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWxVxVzVwUuNxT{WsQיԎurQxVxVxVyWyWyWyWxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWxVyWyWyWyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWxVxVvSuVwX|[pO|ޗ~qNzXwUxVyWyWxVxVxVxVxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWxVyWyWyWyWyWyWxVyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVyWyWvVvVwWwWvVxVxVxVxVzWvSvVqL΀ڐnJyWwUxVxVxVxVxVwUwUwUwUxVxVxVxVxVxVyWxVyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVxVxVwUxVxVxVxVwUwUwUwUwUxVxVxVxVyWyWyWyWyWyWyWyWyWxVwUwUvTwUuUuUuUuUvVxVxVwUwUyVvXrPцvTvRvZuUsTwXuUzVxUtUuUxVwUxVwUwUwUwUyWyWyWyWyWyWxVxVtUuUwUtSvSxTwTuTvUuUvUvUwTxTxVwTuUwUvTuRwTyVwUwUxVxVyWyWyWyWyWxVxVwUxVwUtSwZxWzUzVxVwRuUuUvTuSuUsUw\ρ҄rQ}YzRsTwWuUuUxUwUuUxVwUxVwUxVxVxVyWyWyWyWyWyWyWxVtUuVxVuZvYwXwUvUtUuUvTwSwRvSwTxVxXxVxXuWtUtUwUwUxVxVyWyWyWyWyWxVxVwUxVxWsSuUqSpSrywٗܜכĂewZuXvSxTuUsUwUzVxVwUwUxVxVxVxVxVyWxVyWyWyWxVxVxVvVwVxUwTuTxVyWyV|VyUyXy\xZxXyYxUyVwUwUxVvUuTxVxVxVxVyWyWyWyWxVxVxVwU{YwS}ZܠyXvWxXwUwTuTtTvUxUvTvTxVxVxVxVxVyWxVyWyWyWxVxVyVvVwVxUxVxUuUvSwSsRqPpPnOnKpMqSnr|lxXxVxUwUwUxVxVyWyWyWyWxVxVxVwUyWuTw[鼆lpPyYyVzWwXwX{XyVxVwVwWwVwUxVyWxVyWyWyWxVxVxVxVwUwUzTwUuVoؕݥکדxYwVxUwUwUxVxVxVxVyWyWxVxVxVxVwUwUy[үٝnmJqMoNpNrNnHpIsTxUuUuUxVyWyVyWyWyWxVxVxVwUwUwUwWuVwWٗڝxVxVxXxVxVxVxVxVxVyWyWxVxVxVwUxVwTz\뽹ުߨ૸⬼繓vwTwVvVxVyWyVyWyWyWxVxVwUwUwUwUuVtUy[آٜwUwUwWwUwUxVxVxVxVyWyWxVxVxVwUxVvTz\ϊwVvVuUwUyWzWyWyWyWyWyWyWyWxVxVyXwU{XڜڝxVxVwWxVxVxVxVyWyWyWyWyWyWxVxVxVvS{]΃yVvVvVxVyWzWyWyWyWyWyWyWyWyWxVwYvV{YڡڝyWxVxXxVyWyWyWyWyWyWyWyWyWxVxVxVvS{]уyWvVvVwUyWzWyWyWyWyWyWyWyWyWxVxWuVzY۠ڜyXyXyWxVxVyWyWyWyWyWyWyWyWxVxVvVuT{^уyWvVvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠڜyYyXyWxVyWyWyWyWyWyWyWyWyWxVxVwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVxVwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уxVvVvVxVxVzWyWyWyWyWyWyWxVxVxVyWwWzZܠڛyYyXyWxVxVyWyWyWyWyWyWyWyWxVxVxVvT|\уxVvVvVwUxVzWyWyWyWyWyWxVxVxVxVyWwWzZܠڛyYyXyWxVxVxVxVyWyWyWyWyWxVxVxVxVvT{[ЅxVvVvVxVxVzWyWyWyWyWyWxVxVxVxVxUvU{Y۟ڝxVxVxXxVxVxVxVxVxVyWyWyWyWyWxVxVvSz[ЇxVvVvVxVxVzWyWyWyWyWxVxVxVxVwUxUvUzYڠٜxVxVxXwUxVxVxVxVxVyWyWyWyWyWxVxVvS{[ΉyXvVuUwUyWzWyWyWyWyWxVxVwUwUwUyXvV|[ٜۢxVxVxXwUxVxVxVxVxVyWyWyWxVxVxVxVwTyYҏyXvVuUwUxVyVyWyWyWyWxVxVxVwUwUvUvVyZ؟ڝxVxVxXwUxVxVxVxVxVyWyWyWxVxVwUxVvS|[߭ޥzZvUuUvTwVwUyWyWyWyWxVxVxVwUwUxWsRaۡwUvTwVwUxVxVxVxVxVyWyWyWwVxXuUxVwS|[z\tSxUxSxWvVyWyWyWyWxVxVxVwUwU{WqRqĄhtTxZwUxVxVxVyWyWyWyWyWwVxVvUxXtSdqsQyVzTzUvVyWyWyWyWxVxVxVwUwUxWiMґ{jNyYwUxVxVxVyWyWyWyWyWxUvQyTxXtUω}[wZz[xQxVyWyWyWyWxVxVwUvTxVqRh~btPwUxVxVxVyWyWyWyWyWxWuVyYvRcԐ{\wVvVxUyWyWyWyWyWyWxVwUvTw[ڤӑrRzXwUxVxVyWyWyWyWyWwWvUwWz[؜ӔqVtU}[wUtTvXwUxUuUwZwWwX՘ϏtUzZxWuTxVyXxZxWxU~]tSuQԘ"44Y#bIxXvUuUvVaF3X$!1"23Z"_EsStSuTxVbG3W$ /$5L)5M)4M)5L)!$4N)4N)5N)4J* 000@@@000000<<< <<<LLL```<<<888@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((@@@@@@@@@((( 000@@@$$$ddd``` @@@@@@@@@,,, ```lll444 $$$ddd``` @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((@@@@@@(((888@@@444hhh\\\,,,000888```lll444 @@@@@@@@@@@@@@@@@@@@@@@@@@@ HHH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@ߧ@@@TTT <<<000TTT@@@`````` ,,,TTTttthhh000``` (((@@@ @@@$$$xxx444pppppp π\\\XXX000 444```LLL$$$|||444hhhxxx@@@```000 XXXDDDHHH((( <<<(((LLL```XXX000 444```LLL```@@@PPPDDD @@@```@@@tttttt珏 PPPPPPTTTTTTLLLtttttt痗@@@```@@@ $$$000```TTTTTTLLL``````444``````@@@```,,, LLL$$$TTT(((000@@@```@@@ 444|||dddhhh\\\$$$TTT(((`````` ``````ppp|||@@@```LLLhhh $$$XXX\\\xxx@@@```@@@ <<<lll XXX\\\`````` `````` @@@```000888 ``` 888@@@```@@@ \\\TTT  ```````````````ppp @@@```TTT``` 888<<<\\\tttttt888TTT```@@@```@@@ dddxxx444 \\\ttt888```ttt  ``````@@@```DDD ۟lll|||PPPLLLlllDDD@@@```@@@ <<<,,, ||||||PPP\\\lll``` <<<``````PPP\\\ppp@@@```<<< כ@@@@@@@@@```@@@ TTT444@@@ XXX@@@DDD```@@@lll`````````$$$$$$@@@```((( ppp\\\TTT\\\ @@@```@@@  <<<ppp\\\ddd\\\``````DDD\\\``````@@@```````````````PPP@@@``` <<<000@@@```@@@ 000TTT|||LLL ,,,(((<<<000``````<<<$$$``````@@@``` @@@```@@@ <<<LLL444 DDD ````````````444`````````````````````@@@@@@```hhh@@@ ttt@@@@@@```@@@ ttt@@@@@@ ```ttt``````$$$``````DDD@@@@@@```pppLLL,,,000 <<<<<<LLL,,,000@@@```@@@ ddd(((xxx <<<<<<`````` 000``````,,,000@@@```000000LLL<<< 000ppp000LLL<<<@@@```@@@ ttt``` 000ppp000``````lllxxx``````PPPPPP۟<<<@@@ß000xxxHHHHHH (((ߓddd@@@TTT((( HHHTTT@@@```@@@ (((TTTNjTTT@@@\\\ (((ߓddd@@@TTT(((```׿```$$$TTT````````` $$$```@@@˛LLLTTT ttttttTTT@@@```@@@ LLL tttttt```(((`````````PPPTTT```@@@ DDD```DDDTTT```@@@ PPP```444 DDD```DDD<<<```TTT((( ,,,PPP```XXX@@@$$$DDD``````DDD,,,<<<``````HHH444ۿ```(((llllllHHHۏ$$$888ߋߧXXXǻ```444뛛<<<000 ppp\\\@@@pppppp @@@,,,DDD,,, 888@@@(((000xxx\\\ TTT$$$TTT@@@444ddd444糳 ˟888@@@<<<ϧhhh$$$@@@@@@ttt |||444,,,$$$@@@@@@@@@@@@@@@@@@@@@@@@(((XXX LLLXXX 000PPPppp```@@@hhhDDD(((,,,000lllXXXLLLlll888@@@\\\@@@xxx(((PPP 000888 888@@@@@@dddxxxPPP888```,,,000@@@xxx000 @@@TTTttt 000 @@@@@@ddd$$$LLL<<<````````` 000```xxxDDD@@@ ddd@@@DDDPPP000 PPPlll HHH@@@,,,lll888((( TTT@@@DDDTTTttt@@@<<<hhh888@@@```,,,LLL@@@,,,ߧppp@@@```444hhhttt```$$$$$$xxx@@@,,,(((ttt@@@PPPDDDDDDPPP\\\XXX@@@뀀444@@@ <<<TTTDDD@@@@@@``` lll XXXLLL|||```@@@ @@@TTT@@@ ppp @@@$$$ppp@@@\\\@@@hhhxxx(((llllll$$$ ppp@@@@@@XXX000,,,ddd$$$444DDD\\\|||$$$XXX@@@  @@@ $$$ddd\\\444```ǏhhhHHHppp444 矟tttLLL```xxx﫫TTTTTTTTT<<<HHHlllDDDHHHhhhHHH000HHH  DDD,,,dddHHH444``````PPP888߀ lll@@@ǧdddlll\\\ PPPppp(((<<<|||xxx<<<PPPPPPdddHHH,,,`````` TTT$$$ttt ```$$$|||TTT```LLLXXX|||@@@(((HHHxxxחlll``````\\\DDD```xxxxxxHHH 888(((Ӈ|||HHH@@@HHHϛ(((ϏHHH|||hhhddd\\\(((,,,@@@hhh lllDDD444 ppp``` (((``````@@@```σTTT444```HHH TTTPPP\\\TTTLLL DDDDDDDDDXXX```888xxxPPP444PPP```@@@,,,lll hhh``````444000888|||ppp444ttt,,,000lll888 xxx`````````@@@ttt@@@ ```hhh```PPPPPPTTT xxx`````````ttt```@@@ ```\\\  `````````$$$ddd888lllxxx,,,lllddd888XXXHHH`````````,,,hhh```@@@TTT$$$(((lllttt````````` \\\@@@888 HHH㣣PPPﯯ````````` ppp篯```@@@ ۣ$$$<<<<<<`````````<<<```||| ߯000ppp888```󃃃߳````````` ppp(((```@@@```TTT<<<`````````444 000,,, ,,,,,, ,,, ================================================ FILE: images/SI-ROOT.PPM ================================================ P6 400 400 255 ))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())))))))))))))())())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())())()())())))))()(()(()())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()+()&())((,)))))())&))%))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()+()+()'))))(,))(()'(*(()())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()+()*(*$())((-))*))())&)*#))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))+))())&)(*)(+))%)*$))))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&)*#)*!))%))*)(+)(-)(.)()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))%))%)(-)'.))%)*!))()(+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&))%)(*)(+))()())(,)(/)(-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))$))&)(-)'.))')*#)(*)(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()(+)'/)(,))'))')())(+)(-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*(-)(+))*))')*$)(*)(+)',)(+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+*(*** )*))&)(*)*$)*$)(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*(.**+((('(%()(+*3)(,'&%*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+('+))"*+"(())(,))%))&)(-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))%")&'!-.*&($')*&%0+,+--&('%)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+((-''&)))+*/)(*))'))*)(-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))),*/*+$&(#(-/6#(*(%&!))!))&))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'(*),)15$+-'&'+))())$))())())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&%(((*())BNX.7')$(('(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')'8CP^j7&)'()*)* )*#))%))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()('/&*,pR\k,*."**/(',))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))',!Sc Gm',"(),)*!)*$*)&))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('("')%%)#MIg*3))*('.))))))))))))))))))))())())())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())())()))))))))))))))))))))))))())()))))))))()())()))'+1AGR',"(*&))&)'/*'+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()%()$&("?LTPDS**'(&-()+())()(())()*))())%))%))&))'))))(*)(*)(*))*)))))))))))*))*))*)(+)(+)(+)())(*)(*)()))'))'))%))%)))))*)))))'))'))'))()))*()*()()+(),))(+'))'()+!@LVTKY')+())&)(*)'.)(+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))***)($)(%'.Z?G)**)-()+())(*'()(((,))()*$)*%))%))'))))(+)(+)(+)))))))))))))))))+))+)(+)(+)(**((*()*()*()*)'*)&*)%*)$)(+))+)))))'))'))'))()))+()*()(),')-('&,&(,(+'+h{1D[$-%%'*())(+)())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((*)($(&%%)u@LW2:(()))*))*))&))%)(+)(*))%))())')))))))))))())())'))&))))))))'))())())&))&))%)*$))%))'))))))))))))))())+))+)))))'))'))'))()))*()*()())')*+*(,(%)&)-3RJ_r*(.**,*())(*))'))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&''''&(&'))'2?SSP_&&)#))'))())')*$)())(*))')(,))*))*))())'))%))%))%))&()*())()(()(()'(*%(*%(*%))()(*()+(),(),(),(),(),))+))))))))'))'))())())))())(((*'()'))%+(#**(DQ)ST0<&*&))**())('))%))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*(&&&+),'')%*KB{@&.))%))%)(+))'))%))'((+((-)(,))*))())&))%))%))&))'((+((+())())()'()'()'()()(+)(,(),(),(),(),()*()*))*))))))))'))'))())))))()*()'()&()'*)%('#%*q@CQ#*().('()(())$))%))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()(&(%)+**)-*(-'',M\#KY>J$)*"))#*'-*',))!))&((.((,)(+)))))())'))'))'))))(+)(+)(+))*))+))+)(+)(+)(+))())())())())'()'(*'(*'))))))))))))))))))))))))()*')'()&)()*)&((%2=RL[j,'**&&-'''))&))$))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()(')&(*(((-*(-'&*,4XIrC'*''&*).*'.))"))'((.()())))))))'((')))(()('+)(-*(*)())('*)*)'()(+)(-)&,('%**&*)&'&$))'''''(())*)))**)''%)))))))))))))))()*&)'()(*()(('(+&du6GR-5')-))-))')*$))$)(,))*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()'(*&((,)(*,+*(*"cv-JW-2((+))+)(+))&)(*((,(*$))())())'))'((**).('-(',('&)(&))%('%))&)(()(*)(++**)((('&+*))'())*++,(')&&$((&((&***((()))))))))'())+*)(*)((*+,&.J@Q'+((+''('(%)*$))%)(.)(*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())'()'((+))&*)'(''4@OXDP%')*()%)(%)(+)(-())(*"))'))')))(()**+++,**+''()*)(*&)*%')#()$()%()&(((((,'',)*,(())()*(()(&('%'(#))'((&'''))))))))))))')()*+'&(**''*&=L"UHJW#***''&((&''$))$)(()(/))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()(*()'))%*(,+**&-RIu?%,(*#))$)(-)'0()'(*"))%))'))))))((&()$&' )*$'*/%(,&)(%)#'+%'+$'+$'+&%)%'+(#(#*,'')%++)((&)))*+()*&*+('''))))))))))))()*'')'&&*+'&-NFP*0('*+*'('(**())&)(,)(-))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),'+*'*(*%()'(&+*'((*!as4NW7E'*%)*%)(+)'/()'(*$))%))')))((()*%')),)-+62=.:JW+N[,MZ(M['N\(P`)N])LZ*.90917,/),'(!*+&%%#,,,))))))))))))()*)()+*&()'&1PIn|>))!)'(('%+)-***)())(.))()*$))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),'-*')(*$')+*(,+&,))$1=SIdw4&+$()*)())(+()'()(()&(*&(*#(++/V]=OX/lxAGHBVVQPOLPRAJQwGQ\(SY:(-(+)+%()'))()))))))(-)('**#(*(Wh5FM6>)')+)&+)**'/))))(+)(.))%)*$))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*'))('()(((/)(-)'*))'+/@CR&/)),''&))"'(%'()',%%-.9;J KcZQIGEB@?>==>?EIMRW_Vds8,5&,),")*))(,)(-*)$)*)#+"O9I(+''%))$))+('/))*)('))%)*%))&))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*$))')(,)(,))*()&**'&&%R^.OU>N%(())))*"(,!,4=Kew5oYJ@=<>>>>>>>>>>>>?>>>>F^]ev2=I06&)"('())&&*)4C!VE[j0()***&))&)(+)(-))*))&))&)(()(,)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*$))*)(+))&))%()$)*%((+&, R=o5'.&) *->>>>>>>>>>><>?>; K]RJB;<>?@@>>>>>>>>>>>>>>>>9;?<;?HS{>0=-= WHK).!('()&,)(,)(,))+))+))*((+((-((+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))+))&))$))()'')'+)'.)','*'5DVKfaP@:?A=?>>>>>>>>>>>>>=<=C:6<9<==>>>>>>>>>>>>>>>=>>===>?==778:<<<;;=>>>>>>>>>>>>>>><=@BA<9769C>?::AA>>>?><::=>>>>>>>>>>>>>>=;:>??<978<@>;USc*)2*-$%&$())((*()(()(())()+((+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))''***&))%(&,('.*,&)3o7I9::AA:AGEDCA><::=>>>>>>>>>>>>>>=878:<===@?;>?BPuB(1(*&'(*().%&'))%))$))))(,)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()$**(('#+,&)*&)2MN@B;:;>@>@>>===<<<>>>>>>>>>>>>>>>=:89;>@A?A=:::<>TU+5(."&'++,0))$))"*)$*(*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('("(((+(-&'/6KR@?B@77>C><=<;;<=??>>>>>>>>>>>>>>>>?=:<>@@?A;<>=<;@MN6@&*#''.)()))$*(&*'+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))())'))))(,))*))())''(#('++*-+1}>K><@A?77?A@<>=;;<>@A>>>>>>>>>>>>>>>>B@=<=>><@:=CA=9=>JE)3'())(/*((*()*',))*)))))'))())*))*)))))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()-(*&)*$)(,*&4('-'(%(*%''&')*-4JH9<>@?;77;??>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=;>A?>>BB=AI(0'(-***''')'+((,()'(*%(*'()-)(/)(*)*%))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()'))$)(++'2))*()#'))((*(-fv2TC<<=??;:;>@?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>99=A@?==??:Qev3&-&')**)(()()'((+()'(*%()+)(,)()))'))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()+))*))(*()+)-'(#*+&$%*),%\j.QEHE<<>==>?@A><>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>99=?A>;7=Xgt;&) %'$))()*$)(,)(+))%))%))'))()(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+*(+*)&)(#'($&)&-0*;G^B>CD?>;8;>?@>;:>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>??<;<=<::B@=A\BO(.%&('()&))')(,)(*))$)*#))))(-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(+*(+*)%*+#('++.+,6TJ=::>@A<9<>?>><;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>DE=89=??<9>B?AO-9'+)((,)*")(*)'0))%)*#)))((,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))+*()*()))$'("'(-"(t9A?D85:@A>=>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>CD=9;?@@;:9CC=DE%.((,)* *()*&3*(*)*$))*()+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()'()''**)((+(+&HU#Y;=?<9<>=@BC@?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;;;=@B@<:::>@?@ZHZ)- ()#))-)&/*',))())(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())%+*,(''))+(*+-7YD<>@@>=<<=>A?:99@?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>859>>@<;=A79BA@GT3=')%*)0*),*(,)))))%(),)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*"((+++-#&$#*t?C?>@CA><<<;>@=<658;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>89=?>;::AC78@@;>GM#*%'*()%)(*))())$()-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*%''*(),).!JW&\;@>@D@<<=>99CIA976:>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><=>>=>A>ER\XN?>=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=N^_VF;<>;<8<:==>??IWt@Yl*gz5cY@?>>>>>>>>>>>>>>>>>>>>>>>>=>>?>==>>>C>TPZ/#' $"%;@0]A?>>>>>>>>>>>>>>>>>>>>>>>=<>?@>;>@Z=C+"'$%(FO+[E<>>>>>>>=B@C)2(+)&(()))((*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))*()+()'(*$))'*'+*(&+)))))HU$Q9@A<9;@>;:DLr>!%(),&&,***"# NZ0W<>>>>>>>>>>>>>>>>>>>>>>>=<>B?9:AQ[g3"#'')('/)(/!#iy:O>>>>>>>>>>ATVe)$)#()'++)'''))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))+)))()((*)())))))('))$()$-2"YI;=>><=@<=<;_9C(*%*+.'',)((*+&%.W=>>>>>>>>>>>>>>>>>>>>>>>><>D>78A\*2*+%***'&-+*2)))0=X>>>>>>>><:?NU+3)+&((%**())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))+))())&())()-)))))%))$(.!JW*QD:8>?==@:=<9])0'''))+)(')($)*##(xG@>>>>>>>>>>>>>>>>>>>>>>>><>D;76EX',**''(#+**(&+***'/^C>>>>>>><6?AMRa&'+!)*%)(&)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))%()*((-)))))%()(#-V=>97>?>>B:==>>>>>>>>>>>>>>>>>>>>>>>=>>>>>><89@EF'-&'#*()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()))))'))()))()'()(()+=L"T=<:7>?>;B;=B>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;<8@NHT$()&)'+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')))))*))'()$(*&'(+%(&k=:>??9@<=E>Y1:)+%()+(&/*(+((%#)X=>>>>>>>>>>>>>>>>>>>>>>>>@:>8?D?`&+***)),)'.*)(() ,3b=>>>>>>>>>8<@Ay;'+('-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())()(,))&(*)+(&'(+3XA>>@><=EBPP].$)#$(&()()*'))'+5[:>>>>>>>>>>>>>>>>>>>>>>>>@:=:AI=X6>#$(%'+)*'&'"'(#DP!R9>>>>>>>>@:@CDM-7&(*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&)(,)())+!&(((+>$QA<@:><=E@FR)3%*$%((%&#',k{;R>>>>>>>>>>>>>>>>>>>>>>>>>>;<:?D=GM&-#('%)$&'",1WG8>>>>>>>>A<=DCIP_#(+')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(*)*$)(,)(*)*#'(,$*w7BC89BB;<>;<<=B>>>>>>>>>>>>>>>>>>>>>>>>===?>=ATtG.7 (/9@(RUA@>>>>>>>>A<:B@DA$*()())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(+)*"*(+*','($))2,4O>?67?B=<>><;><9?FY[GPYC3D>>>>>>>>>>>>>>>>>>>>>>>><>??=9=?GWUOTUA8;>>>>>>>>A77>A;T.7()&))()))))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*()*))&*(,*(+))(&)(KY(J=<9:>@><>?<>>>>>>>>>>>>>>>>>>>>>>><>>><9>=??ENE>=;<>>>>>>>>>89=>>>>?>>?>>?>>>??>==>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=>>>>>?>>>==>>>>>>>>>==>>>>>>????????>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>??><>=EK+3(*#'%))($)))(*)))'*(+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*%))%*(,*())+"?I%]@>>>>>>>>>>>>>>>>>>>>=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?><:;=RAM#')$)',*)')))())))'*(+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*%)*$*(+)('(+cp>>>>>>>>>>>>>>>>>>>=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=97>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=;>?>;;8BD%*))++)+))'()+))())*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())')(+))&'.U?=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><:=??><<>R+3'('(&())'()+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(-(*%*4SB8<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><8>?@O1=*+()'())'()-))*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*(+)(,)(+(*$FR'KA:<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><8>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=;=?>>?AABj{<)+!)(%))'((-(),))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*()*()))+&+#OD?>=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>==?<<=>@Cv>',('"))()(-(),))&))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))'())&+!FC>========>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;99<>BY&+**$*(()(-((,)*%))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()'&('&,AE?::<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<:9:<=@L)/)()*(()(,((-)*$))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*'(,&(&*,+6=(YA;9:<<<<<<<=================================================================<<<<;;====Q@I0&'+*(&*())(-))&))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'')(()'('9A$M?<:=>>>>>>>??????????????????????????????????????????????????????????????????>>>>>????????????????????>>>>>>>>>>>>>>>>>>>>>>>????????????????????>>>>>>>>>>>>>>>>>????>>>>>>>>===================================================================>>>>>>?HK[$%*$))&))%)(+)(-))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))''(")'+**%q}D>;DD>>>>>>>==<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>?ExO&)&)(+))'))()(,))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'(*&)(,(*!M;7A><<<<<<<<<:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::<<<<<<<<:<======><<<;;;;;;;;;;;::::::::::::::::;;;;;;;;;;<<<<<<;;;;;;;;;;:::::::::<<<<<<<<=:CJ%()(,))*))%()%))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))%(+')*(,~NLBE@CCCCCCCCCCCCBBBBBBBBBBAAAAAAAAAAAAAAABBBBBBBBBBBCCCCCCBBBBBBBBBBBAAAAAAAABBBBCCCCCALI)-))')(+))'(*%)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)*.()(%)etklhhhhhhhhhhggggggggggfffffffffffffffffffffggggggggggggggggggggggfffffffffffffffghhhhfu](+))$)(-))*(*&)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*%&(**&)*"<@'FS%FU GT"FTFTFTFTFTFTFTFTFTEUETETETETETETEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUETETETETETETETETETETETETETETEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUEUFTFTFTFTFTFTFTFTHV GS%>F#'("*)$)(-((,(*&))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')))))))))))*)))))'))())))))()((*&(*%()&()(()(()'))')))))))))))))))))*+*$*(&))#'+&-',!'+'+'+'+'+'+'+'+'+)* )*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)* )* )* )* )*!)*)*!)*!)*!)*!)*!)*!)*")*!)*!)*!)*!)*!)*!)* )* )*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)*!)* )* )* )* '+'+'+'+'+'+'+'+%+'+ )+ )'**)%)(.(),(*%))'))))))))))))())()((*%(*%()&()'()'))'))()))))))())))))*)))))'))))))))'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))'))%)(+)((*(,)&,(&&**%))&)(*'')&+%(/(0$,&+%*/+#(!,.)((*))+))'((()))&')++$(&(('*()(')*()((*%))')(()(()(()(()(()(()((*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*('))%)(()(*)()((&(('(()('+(())(&)(&*'&*('*('))%))$*('*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*()*())(()(()(()(()(()(()(()(((*)()!*+'&'")*!)(,()*()(*)%)(&(&))))&(' $%") &0$.%.',%%*#&("'(%('()'(+())(+)'.((*(*"()((),))%)(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))'))')(+))&'%)+(0+*+('$((#),=F$P`(q>iyEm}BuDfv??L")0)+&)(+*(++()*(()(,((+(*#()*()-))%)(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))()(,))')*'+*.'&,)(+))'&-Ub0WDJGFIMA5?#&,#&(%)(0**+(('&'')*#+),&'#',%+&,)+ '+'+'+'+'+'+'+(+(+(+(+'+'+'+'+'+'+'+'+'+',(,',',',&,&,&,&,&,&,&,&+',"',"'+"'+$'+#'+!','-&, ', ',(,),(+!(+#'+$&+&+&+&+&+&+&+&+&+'+'+'+'+'+'+'+'+&+&,&,&,&,&,&,&,&,&,&,&+&+'+'+'+'* (,('*)'1)(,)(,))&))%''()(++-$4=x>MHDDIQXgu;+1'()*)-(&'*)%)((((*(*&((,()-))%)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))()(/))&((%&&&''++,+&.\n3bE@>66DHD\'3(,*)*.'''))+,,.()$*((,0?L&)",,/)),)(-((%)($r{OndaefffffffffffffffffffffgggffffffffhjigeddghdhlkfefigffffffffffffffffffffffffffffffffdhzR')!)))))')((((,#')/8bG8:ADA<<>@Tn~<(0'))))&)*"()'()+((-)(-))%))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')())(.((*'* &+"DO%N6?<5;?B<:>G(,))%*)$)(+((-&/!zEH8?94?AA>=@AQM]$&+$)(*)*$))'))))(+)(+))())())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))'))&)'0())&)&.ZG=BE@99?B?>?CLQa,/+'')(((((&(*!JD79><;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9778:<<=958?D<69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<>?A(-((&(($'&+()&?RQ:9@<8=?>9;@B=R'4&'*)+*&'$''%))()))))+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*))&))')'/()(%*Zi1TA?BDA:7>DD=:E>J&,***((%((&(*!JD:=C?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>??;:=CB:5=;79>A@=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?BDC(,))*))&)),+0>E<>????B?;;;7@Phz8(+')*-+,***'))&))')(+))*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))))(+'(%(.L@==>?>=;<@G=3A=OJU,(+'()$(('(*!HE>@D@???????????????????????????????@C?>CHF?4>CFD?<>C@???????????????????????????????@EEC(,((*++**-*@?DB?<24GEH'-().&(&)*%))())')(+))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()(()*)(+))')+%3=R<==>??A@;9B>:9>Gbt((*)(('((((*!FD===<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<;==>>?CCHQ[d^PCC?=;;;;<<<<<<<<<<<<<<<<<<<<<<<<<<<<>B@(,'')(*('* gw3I@>9;>@:;>@?<@DFV:E&),'((*+')(*))'))()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()&((,)(*))&(*#bq6L=>=>>?@?<9;?@9B>M)0!')'((+(*!GF?=:<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<;6>A<6;YaXco=OZ1Ye:yL]T?<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<?<:=><9=?=?CB=Hn};&))()*))')'/)('))&))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()%((,)()))((+ MCA?>==>>>><8>B=C;Q4?')&((+(*"HGA?<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><6AG=1P]@N%),$&%'$#%&%)!8DXVA@>>>@>>>>>>>>>>>>>>>>>>>>>>>>>>>=BC(+!'&.((+4=X>>??9;>@<>><=B@97Q&*"'())()*'/)(()*%))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()'()()(()))$-J@<>>>>>>>>><:>>>9M;K'*%((((* GE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=?LACd'-%()())(()'))'1()*&("&*YTD>8;B?>>>>>>>>>>>>>>>>>>>>>>>>>>=BE(+)(,(();HV>>>><=>>>>>>>??;>>>>>>>>>:>>=:MWh%'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><7CD[;E+$&%((())%**#()$'(+((+**+%&#*-VL>>;A=?>>>>>>>>>>>>>>>>>>>>>>>>>=BF(+)'))**>LR>>>>>>>>>>>>>>?==R'/)),*(,()*()'))'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())()')(()))#-X9<=>>>>>>>>>:>>=:IvC'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>7>QgvB#'&&(&))+&( ),!%(*")++))**+$((*-9h;><@;?@>>>>>>>>>>>>>>>>>>>>>>>>=BF(+*(*(((Zi.J>>>>>>>>>>>>=>>>=^*3('()',()*()'))'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()')(()))&0X=;=>>>>>>>>>:===;Jr='*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;:Bb0:%&)'(()'&)*..6='OY95? '-"'(+&'"&%+$XI><@;=?>>>>>>>>>>>>>>>>>>>>>>>>=CF(+)()()'^n0F>>>>>>>>>>>>==>>=Z,6+*+)'*()*()'))'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()')(()))#-V<=>>>>>>>>>>:='*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?FKY#()+$))*-/ yZceZvN%,'(%))+**,==>>>>>>>>>>>>>>>>>>>>>>>>=DF(+*(')*&`p0F>>>>>>>>>>>>=>>>=X.8)('(')())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()')(()))&0X<;>>>>>>>>>><>=?7Dr:'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@I`CL0%)'(##[c>9E]^!'(#))(o@<@B;:>>>>>>>>>>>>>>>>>>>>>>>>>DF(,)(&&'$br1C<>>>>>>>>>>>>>>>;V-7))%)(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()')(())'%.W<<>>>>>>>>>><>>>7Cr:'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=J`&)()#')$B;:>>>>>>>>>>>>>>>>>>>>>>>>?CF(,)(&)*'^n-B<>>>>>>>>>>>>>>>;W,6))%)()()(()'))'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*()')(())'%.W=<>>>>>>>>>><>>>9Cr:'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><8Kan;&()(/$%#o|JO@97B>>>>>>>>>>>>>>>>>>>>>>>?CF(+*)')*&^m,D<>>>>>>>>>>>>>>>;W,6))%)()()(()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W=<>>>>>>>>>><>>>:Cs;'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><6]-3)*#+(5&+ a?>m)(&,-'DP-\:;=<=>>>>>>>>>>>>>>>>>>>>>>>>?CF(+*(')*&^m,D>>>>>>>>>>>>>>>>>>>>>>>>>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>=B<>A>f"%)(*')#0;^::;=>>>>>>>>>>>>>>>>>>>>>>>>>?CF(+*((()'^m.D>>>>>>>>>>>>>>>>>>>>>>>>>'*$((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?[@K-&)))'+$%VI99B@8@B\+0***%&)/8"W<::>?>>>>>>>>>>>>>>>>>>>>>>>>?CF(+*()()(^m/F>>>>>>>>>>>>>>>>=X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()))(())'%.W==>>>>>>>>>>A?>>>>>>>>>>>>>>>>>>>>>>>>>=>??=<=?Gh#'$()+()'27fA<6BB7==m"+,'))2;;@?>>>>>>>>>>>>>>>>>>>>>>>>?CE(+*()()&^m.G>>>>>>>>>>>>>>>>=X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>==><>>Ds9'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>==A@=<;AUck?('+'&,$'m|FMA@7DA;>Aj!)*%#%(iw@LA:;@?>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*()(*"]n+I>>>>>>>>>>>>>>>?=X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=>?ORY8''$'(( "gGD7:@>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;:?@=??DB&) &&(')(IS,RB@?9>:A@^ $'%('(-&h=D69>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;:>?>>AH;"()1!XLI>==@7BL}W#$*'.'(.Ye8L>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<>?>==C^We4 4= ZDI69BC9>^8@'()")',!nJ@>>8>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>><:>DGezExDKC@7:CC>Af"&((''2=aA9;B:>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>?>=;:=?@COSD?<>@@??M\fD%'#**'!#|MECA;C?=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>@>=;:;;::=CA9B>@B>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>?>=<=>???C=A6=A;:?M{S!%)*-#%+dn=Q9=@>>B?=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>><<>BDCCDK?>Hc?E0'*!%&)!&$hI;>?>=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>><::=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<;::=;=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=;;?j28"-/,/#.2(+/"-.#/."-/,.-+/ ,/!..()+#-/'%&"+++))(((&&'!@C3h@>>:<<>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=><@a-,'(((&('')&)'))&0((%()'(*$)(-*(*++****)))))))))((&*+&^B=@:=<>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=>@AX&)$*)((()()((+%*(.*'3*)'((&')&('.)'+(('((()))(()))*((())'$%!OD=@;=>=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=>BG_!"*(+)(,(*)(*&)(/*'0*)&*),)+)**++),))('''***((*((*(((((($%"|FF@@<>>=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=?CLe"#'*(-*).'(*''0('-)&+)'('',&($'(!)($((&***'''))+))+'')((*%&%xCGA><>>=>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>><=BMc'',*(-((*(*('(+)(,*)())'&()#"()%))')))((((()))+((*('+&&'wEG@><=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;;@K^%%**(+*)*()%)+&)))**$(*$!'U_BYb@#'))'((()))((())+))+(',&&(wHI>=<@><=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;:>J]&%**(+*(*))'*+/**-))"$' jvMqleqG%&!((()))***)))))+(',&&(vGH=<>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;;?I\&%(*(+*(*))'()(+++(('+1 gDDg/2&)))((&))())')))((+&&(uFG;:;B@<=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<@I[&&(*(+*(+))''(#((&('-@G.T7D[GK:((())'((&))')))((*&&(wHG;9;C@<<>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>?@H\&%(*(+*(,))+*),()$)(-3:)X>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>AC9G_&%+)')*).)*))*''*+'(.%(hIOe&'(('))%(('((+'&*))*%&%vJF7?><>;;>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>BC7E`(',)'&*).(*%()#&)-'(+'&HP/V`EK,&%#))(()$))')(-(',(()$%%xLC9D@8=;;>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>?@;F]'&,)($'')''()'+')&(+$*(&',\^).(((**)(('))'(()))*&&&%&&zKB:D?9=<<>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<:IZ$#))(#''('')+'-()$)*#,')03'^[37%()*()+((())'(($()%''($%$|HC9D?:>==>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;89I`#)($((((((,)))(+()%+''@E4Z[<@.'(*'(*((*((()*$()%))+"#"TC8D?<>>=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>><7;Ai))((((()&)(#('/()-)(#FN3WY=D-(*)()+)(-(((()#((')(.$&#h?8@?<>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>><<>k('+%%')*$))$&(0'(,'(T^=UWLW7&($)**(',))*)(#(')&%,,/&h<9>?=>?>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>??<>])1*)-,+0'(#()&%(-&*)%(iuLNMftG"%(*()(,*),+*&+*0**005]<;>?>?>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>?A<@PLX,(('*)-))&())%*,&*)$'tOCC|S #()%)(,*(,*(''&,&(&NY+R=<>???>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>?@;?GY(* ((*)))((*&*)'),&&iNN` !()#*(**(,)(&**.%)RF==>>?>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>===@Bc#())(+*/)()%)'))-*&%]bIekbfJ%%$((#*()*(,))&)**&/g>>=<>?>==>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>><:?B>PmvK%'('.*))')$)(+,'*&%&5?)2:))(&)(-)($)')+)-))%#&htHN8>>=>?><=>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>><:>C@Ft%+(&0)*&)+%()$*)&))*'*%%'%()))*(''$,*+,(+))%$*u@9>>>=>>==>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<>A@?PZ!&'''%%")*%))&))))),(*)()&')')))(&+('+#&VZ=<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>A>8Cb^l8!"*+*)))'')((,('+))())&)++'(,))/"$Wb5dE?>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>>A>;7Be[e6! #%&)(0*)+)*%)*'**+#%#()-!\i4fJ@<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>=>@?98<=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>=<>?>>>@LTYXT^D9A18@'^h?\^VD;77>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>=;;=@EA>@DKVnc`iSLB;:<;8<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>><98=C@<=>A>9<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>>>=759?>78=?>;9=B:<=?BB>=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>=<56;>?=<>?B><=?@>@>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(),()')(())'%.W==>>>>>>>>>=>><>?Ds8'*#((((*FE>?>>>>>>>>>>>>>>>>>>>>>>>>>;:B@:==>><@?><;;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?AE(+*(*(*"]n*J>>>>>>>>>>>>>>>?>X,6)(')(*())()())'))*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()+()'))%()'%.W==>>>>>>>>>=<><@?Cs9'*#((((*FE>?>>>>>>>>>>>>>>>>=>>>>==>>;9AB>@D@=C><;<><<;>@=89;>>==>>>>>>><=>==><>>>>>>>>>>>>>>>>?AG(+))'(*"]n+I>>>>>>>>>>>>>>>?>Y,6)(')()())()*))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())%)*"(*&%.V@>=>>>>>>>?>:=;FA?r<'*$((((*FE>?>>>>>>>>>>><=>A<:;<@@<;BA::>@:?B>?=<:><9:>=>?=;>B=B<;>=D??A=8=@;<>:>>>>>>>>>>>>>>>>>DJ(,)+(+"]n/C>>>>>>>>>>>>>>>>>Y+6(()*)%)(*)(/))%))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))'))#(*&&.W@==>>>>>>>?>:==D>As<'*$((((*FE>?>>>>>>>>>>><<=A=<::AE?;??=@=>?;9<=?==A>9<==;=@9;@=?A>>>>>>>>>>>>>>>>>>DI(,'( (+%[k+F>>>>>>>>>>>>>>>>>X+7('+*(')(()(-))&))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))(()(&.W?==>>>>>>>?>8>@?:Fs9'*#((((*FE>?>>>>>>>>>>><<=>>>=;=BA<:<@D>A>=;<;9975A?D;9<>?@::?>AE?>>>>>>>>>>>>>>>>>CD&,)(-))(_o,H>>>>>>>>>>>>>>>>>U+8(',*',)(%)()))())*))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,)(-())&.V><>>>>>>>>?>8>C<7Ht6'*#((((*FE>?>>>>>>>>>==>>>==@EB::@>9:@B=7<=9=<=??6>??69?<9=97@5>B><;8<=;>>>>>>>>>>>>>>>>?BA&,*'4''(^n+I>>>>>>>>>?>>>>>=>T,7(&-*'0))#))$)())(,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(-)(,())&.V;<>>>>>>>>?>:>A;6Jt9'*#((((*FE>?>>>>>>>>=::>@?8=AA@<:<>?=;C?7>>>>>>>>>>>>>>>>?B?&,+(4'()_n.H<>>>>>>>>?>>>>>==U,7 (&-)'.)*#(*#)(*)(-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,)(-)()))'(,V8=?>>>>>>>>><@?:7JvB'*$((((*FE>?>>>>>>>>>;;>??;NZXZZ[^YK@><:AEKW`fdgVH@?@D==IZaWXi]P:6CP^]WX^b^[dU<>>>>>>>>>>>>>>>>?A@&, (%,**+GTC<>>>>>>>>??>>>>==Y,6(',)(+(*#(*")())(-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,)(*))$))%(*&F8=>>>>>>>>>=>B;?=MER')%((((*FE>?>>>>>>>>>E?>9?G}LNW:OY=OZ;PX7PW5OU6ksM\\C:9??RwJIO346'14#DI6tN`E>;ACEWkzH8B%/5#.0)=A1jyA_P?FUGR1KS5DL/EM.DK1KR=CL/FQ/EO4qDN>>>>>>>>>>>>>>>>ACC'+!)($**):EL;>>>>>>>>??>=>=>=K&-)(+)('()%(*$)(()(-)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,)(()*")*$((-I9>>>>>>>>>=?>>>>>>>>>C?=9=NZi1"'$'$#%#''%&&&$%"'("-1]h6c9@?[Tc'%+%%"$"'#!#"$),$GP+`B>>>>>>>>>>>>>>>@CE',!))((&:B$Y<>>>>>>>>>>>>>>>DY'),++**$()((*&)(')(-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((,))'))$)(&++3ds2E;>>>>>>>>=?>>>>>>>>>><=<@Idr:&( ''%#$"&"&&+#'))+ [A;K}N (*'!"$'-1%''%.""`k=L@FO\m9!(-'#%$&#&#&')%%#O[*U>>>>>>>>>>>>>>>>CD',!)*+*'*/Z?=>>>>>>===>>>@>>>>>>>>=<>B:>HI(,"')(((((*FE>?>>>>>>>>>>:=<>Ibo<&'%*+%f][^]j9$'$#&an:I>[,4%&," cnKY_vE/2$)((!%RJ=Y%-'(.(+[c:XRcq<&)---PIWYTY=@1))/).![L}IL?>>>>>>>>>>>>>>>>>CD'+"+*!)((')$t?F=>>>>>><<=>>>A@XNZ*(()'&$*)'(),()')(')()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())()))',*',('*(/I?=>>>>>>>=<<@>?>>>>>>>>>>8=<>J_l:)(+05#qNPWm3<$'&-HR+YHJ#%"",`jEdOOU}J('$$$#_k6XIr}B#$&&(QY.^SYY|Q##$&+%]n9QKTTdOV6$&.-6nSOMA>>>>>>>>>>>>>>>>LN<=>>>>><;<=??@CS.7)))+)('&((),()%)(()('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')(+)'/)'+)))&*#]p'E@=<<>>>>>?>>>?Z2>(*,')(((((*FE>?>>>>>>>>>>:=B0(()7?#\TKQ/+*(&'#]@=J?l!%)%&0Z:9;PLW,&(./9^;:D@>>>>>>>>>>>>>>>>;C@&+!(('*(+))-+4WB@=<==<::=?=>@Fy:&+%%$,+)))+()+()%))())'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*'-)'-))$()'((.0:V@=::>>@?>AC::Ihz,).((/')(((((*FE>?>>>>>>>>>?<<>>G`n:'''58$_>@En=E.&'%@N WU9=$('/*3UN=F+$&$ !e7:;RNW0(%+07]>>>>>>>>>>>>>>>;CA'+ ))'*(*)(+(*"WiZH:8<=<9;=C=:@W7D ))&))))))))))))))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))$)(*)(+))#)+'((0',o9O=A9;??<:::?:b2<(*()).')(((((*FE>?>>>>>>>>>?><>9>>>>>>>>>>>>>>>>;DB(+ ))'*()))*()&,6QG;6=>>@A;:88K{F'-))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"))())+))$(*&&'-'+&'1 TOC:8>?;99?>>>>>>>>>?><>&'&(')>A2@I+BM*g "()*amMG9>>>>>>>>>>>>>>>>;DB(+ ))'*()))*))(')$-9 [;:?C>?@;9;LV,5()+))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))$))))(,))'&(#(**')*),#=H#JR>=IK[Rb&&.'(')),((%')(((((*FE>?>>>>>>>>>?><>TNW0)%*07];@>9>>>>>>>>>>>>>>>>;DB(+ ))'*()))*))))).)/ O^$^DADBB?No^k:&/$'"'&-*(,()$')(((((*FE>?>>>>>>>>>?><>>I_n9()(##58%#("#!('*78+zNDA]"*+*_jBE<>C1>Y%%%$'[U'' #%Ze>F4>E?>yQ$'!"SD?;RNW0)%*07];@@:>>>>>>>>>>>>>>>>;DB(+ ))'*()))*)))**-)*().Wf.gK=A=7DXY?>>>>>>>>>?><>=I]l7'('.0%zi`iC"#+-!WS<@W).((*KT4B=:>9B}O"" $'ZU*+$'(&OV@DcnD%( !S@=:RNW1)%*07];@@:>>>>>>>>>>>>>>>>;DB(+ ))'*()))*))(('%***+++#)4Ar2XXOYMN^!)3&*#(*#++)*(+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*)(())()(+)(+))())&))')),)(()) *- -2LU.KV+FP+=F,)/%%,(,(+")*$))%*)$)()')(((((*FE>?>>>>>>>>>?><>=I`o:'('16"lJ`29"()*,3 lB=T0;().37%[9;9>>>>>>>>>>>>>>>;DC(+ ))'*()))*))(*)$)('((-((-&*$&-LV3FQ*HT*KU2+2%*#'*&()))',*('))$))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))%))$))#))()(,)(+)))))')((+&/+%/)'*+*&'(!),!), &)"')('*&)+%(',))*)*$)(+)'.')(((((*FE>?>>>>>>>>>?><>>Gap;&'&28gFOtL" #*`qAW7QUa7&')tJA9Ig+0'(!9A$^VHP-(*! '_H<:;j"&*+0(/YC>@WKT.+',/5_;@@:>>>>>>>>>>>>>>>>;DC(+ ))'*()))*))(*('*(*)(,(('&)#'*&$( (,).%(!(*+'))(*&()()'-*(())%))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))$)*")*$))&)(+)(,)(,)((*('+&-+&3*&.)'))(''(&+*.('.'()()*((+'&-)(-))&)(*)(-')(((((*FE>?>>>>>>>>>?><>>>>>>>>>>>>>>>>;DC(+ ))'*()))*))))(,)(,)))))$+-'&(%)+)(*''('))-&'*()()*%)())(+)(())%))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))$))&))())())')(*)(,)()*())()*)+*(.))*)*$**)'%1(%5((.()&)(+)(-)(-)(+)*$)))')(((((*FE>?>>>>>>>>>?><>>Hbq;&'&28#`@@QjxC!$"#&tNMDf$-('"%&Zf=WMsL*1)(- #_DAU(0%(,#)Q]/UMgrB&*())!NLE@>>>>>>>>>>>>>>>;DC(+ ))'*()))*))))(-)))))%))()))*+(((&'&,'')('-*).**(()%)(*)(,))())'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())((/)'2)(,))%))&)(**())('(*%()$(*$(*'*+-%%'+++)),)(+)*!()$)(.)(/))'))%))'')(((((*FE=?>>>>>>>>>?><>?Het?%&%06`D;e7S]" !+*($# $ '(, dlAW8AUn}D!%''(($' )*(!Xa2K?E@4ONW1(%*06_>>>>>>>>>>>>>>>;DC(+ ))')()))*))((*&(*')))))+)(-&$)-+.'&"++"*)((%/&#'*+")*"()+((.(),))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*((-)'0)(+))&))%)(()()))(()&')$')#()&(),()*))%))&))))*$((#''+)(,))'))'))&(*%((,'*~IC:B>>>>>>>>>??<:=Ncs9"-6aA:8Y]hD!# SA@aPZ6&+%& !#("#!&IQ-hH76B>2LJV( !!,6[9@@:>>>>>>>>>>>>>>>=:D?'+()*())))))((()%()')))))**)-+).('))(%++"))&*(.*(,))#)*#()*((-()+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*)))))())()))))))))))())())())())))))))())())())())())))))))))))))%+,%)(/(+ ~KA8E>>>>>>>>>A?<8I(/7#3:'?E/fyCaF56@?7CxCU_Bhy?P6@A;>>>>>>>>>>>>>>><:E:), (),()())))()))())))))))))))))))))))())'))())))))))())()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'**')(,(*#}KD:D==>>>>>>=;;?<:;RgbA;B?=LiaTC>?EUaZ[aXF<;>?:AHZ[OS\`P=6>EE>>>>>>>>>>>>>>>>?ED'*()+(*))(+*(())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((*(()'(#xHG>A;<>>>>>>=7:AB?;9?A>=A>:?=9;AC<77AEG@;86;?BA>;?CIKJ@:?ACCB@=;>=?@?=<>>>>>>>>>>>>>>>>BGE(,()*(*()(-*(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*'&,***(*%JX"IA>:<>>>>>>=9=BE@=@BCBA@<;@=>:>@977>D@:9;9<>AD@<9<>BD8:ADB=<==<;?B@=<=>>>>>>>>>>>>>>>>DGS',(*'(*')(-*(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*+*/''(*,%EO'LA89<>>>>>>>>?@?=;>D?;=;>E>AC=:9>=@DE@?@=>==>><9:=>>:;@EE;66;=<@B?::=>>>>>>>>>>>>>>>>==GYe2(* )*%(*%)(-*(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())()(,()#6=$LA8<>>>>>>>>=>>><99?8:<:@C;:<:9=?ABA>??@??=<=><>?@@;7?@C>869?89?=9:==>>>>>>>>>>>>>>==<7PFO+()&))%(*#)(,*(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')*%)(-)($). H?8>>>>>>>>=:<>>=:886<@>??><:<<>?CB=8>?<:9;?D;:<98=@<:>>>>>>>>>>>>>>=;4S5:%*).))&(+")()*(()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'()#*(,)'((*!JH=@>>>>>>>=::=>@A?>>CD=?C:9?ABC@=<<=>>@@>=;:888;::>AB@BC@>>?>;;>>>>>>>>>>>>=>>;=K'**'/))'(*")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(()%*(*)'*(*%Sb0WAA>>>>>>>>==<;>?>=;<>ACB>=<=@C@<>@?>>=<<=>>>>>>>>>>>>>>>=O]l1)+%)'-))&(*%))*))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((**)(*(*)*)&1MFB>>>>>>>>@?<:;<<:8:<:>:7779:<==?EC>>>???>>>>A?>::<<<<<=>>>>>>>>>>>>>>>>=BO)3')$)'*))%())))*))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*((.)(')(%)),%-_r0IC>=>>>>>>?>>>?A>;;>=;:<>??>><<<=>?AA??>>>?@>;<;;;8:<=>===>>>><>>=>>>>>==>=>>Mi}7%+!)*&+*'))%()-)(+))')))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(-)(())$()*%)(-7KL8:???>?B>>???@@==>>=<=>>>>>>===>?A@?==:=8<>><==>===>>>>==>@=;===:<>>>?;;=:9EO1<(*(((&*)'))&()+)))))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*(+*()))%))(().')%A>?@@<>B>=>>>=>>>>>>>>>>>>=C9>@=8>=>;@:>?=>>>>>>>>>>>>>>>>=;=?9<@?>A=:?8;^AS(*#())))())())())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*)&))'))'))&&'*())'0`o1RKE=789;;;99;:<;=>>>>>>>>>>>>>>>>C?E;=88<>>>>>>>>>>>>>>><>A@?>B@;7Zfw8'-()'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))$)))))*))'')'*+,&*",3Ym.d@36@>9<===>=>?=>>>>>>>>>>>>>>><7>=>A?<@=><@=<89=>>>>>>>>>>>>>>>97@A<<@>:>C9@]rC-3)*))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))&)(,)(-))')+&&'('(,'*+$.JZ NOJNKAEGIIKF?==>>>>>>>>>>>>>>=;>>>>>>>>>>>>>>>>7:KICDEDBOISXQ_$)-*)&++))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+)(/)(.)(*()%)+''(*'(.&*'',!:C&dq@aQQQOQSOPE>8;>>>>>>>>>>>>>>=@BNNJPQOQOPLNMOJ@>>>>>>>>>>>>>>>>>BMQMOOOKM\Yi1@L!',('-)'-*) ))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*)(-)(-)(+)(*))'()&(('()*()&()')*'(+!5<$3>4@4@3?4>4= 4?3@`v$L<:>>>>>>>>>>>>>>=GGX3@4@3@4>4>4?4?3@4>4>4>3>@PV@>>>>>>>>>>>>>>>>Ki~12?4@5@4>4>4>3@4@1;%-',(*#)'/)'0)(*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*))&))&))*)(+)()))&))&*(%*(')(())'()%(*$'*%()'(*&()(((-()&&+$Xg+P::>>>>>>>>>>>>>>=K9C&+%'**(*$()'()+()(()'(*$()(((-((-(*%'1U==>>>>>>>>>>>>>>>Rbs;&,"(*$)*&((*((+((.()%(*$()$()%))%))%()'((+((,))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))&)*)* ))))(.)(,))())&*',,'*+($**!)* )*#()&()()*$))%)'-)('(*)[i1O9;>>>>>>>>>>>>>>=K;C()%)),)*$))')(+)()))'))%)(*)(-)(+'(&5> V6;>>>>>>>>>>>>>>>Mdt4'+#))$*)')(+)(+)'.))'))%))$)())(+))&(* (+"(*'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')*)+)(*)(0)(,))()()*'+*'**(&))&))))(+))*))()*")*")'*))#)**\h4Q>>>>>>>>>>>>>>>>>L>>>>>>>>>>>>>>>>Keu2'+'))(*()+',*')*'.))()(,))(*((*'-)',()&(*%()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*((,))#)*#)(+)(.))())&*(+)(+)(())&()(((,((-((,()&()&)(%)(+)*!()(Yg/O??>>>>>>>>>>>>>>>K;C()()(/))%)(')(,)()))'((+)(,+'++($((%9A,\A>>>>>>>>>>>>>>>>Jdu2'**((**()+',)(&)(,()&((,()))()*'-*',)())(()(*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))*((0)()))')(,)(+))$*)$)(*((,()((*%(*%()(()+())(*'()-((.)(-)*")*&Wg)J=>>>>>>>>>>>>>>>>K;D(*')(.))%))&)(+)))))'()))))*(())#)*%9B)Y:>>>>>>>>>>>>>>>>Hct1&)+'())()*()))$)))(*"(*'(*')))*(+*')*('*(')()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((+)()))))(+)()))&))&)()((*()(()&()&()(())())()(()+((-)()))%')'Wg(J=>>>>>>>>>>>>>>>>L:A)*')()))'))())()))))(())))()('))&((':A&W<>>>>>>>>>>>>>=>>Ieu3(*))())(*)('))&))*(*$()(()())))())())(()(()()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(())Xf(J=>>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())'))))(';@$V>??>>>>>>>>>>>=>>Jeu4(*()())(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(())Xf(J>>>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())'))))(';@$V>??>>>>>>>>>>>=>=Jeu4(*()())(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(())Wf'J>>>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())'))))(';@$V>??>>>>>>>>>>>>>=Jeu4(*()())(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(())We'I>>>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())'))))(';@$V>??>>>>>>>>>>>>>=Jeu4(*()())(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+We'I??>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())'))))(';@$V>??>>>>>>>>>>>>>=Jeu4(*()())(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+We'J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+We'J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+We'J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+We'J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')(+)('))(()+We'J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')(,)('))(()+Ve)J@?>>>>>>>>>>>>>>?N;A)*'))')))))+))'))*)))))*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Ve)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J@?>>>>>>>>>>>>>>?N;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J??>>>>>>>>>>>>>>?M;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J??>>>>>>>>>>>>>>?M;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J??>>>>>>>>>>>>>>?M;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J??>>>>>>>>>>>>>>?M;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'))*))'))(()+Vf)J??>>>>>>>>>>>>>>?M;A)*'))'))))(+))')))))())*))())')))*(';@#W=??>>>>>>>>>>>>>=Jeu4()(((()(*()'())))+*('))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()'))*))'))(()*Ve)I=>>>>>>>>====>>>?K:A)+#((())+)(+))'))()))()+()&()%)(+*(';@&X9>?>===>>=;>?=;>>>>>>>=<<<>?>>K:A)+((()(.)(+))'))')))(),(*%(+!)(/))$;@(Y3>@><<<>?;:?B=9<;Gcu2&*&((')',*',))%)(-)(+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((*%()*)()))*(*%Vf%Q><>>>>>>>==;=BA:>M;@)+(())(.)(+))'))')))((-(*%(*#)(.**$=A,X;>?>=<=>><=?===<;Jcs3'+&)*(*(,*',)($)(-)())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))((*%((,)())(,')"[j,VB>>>>>>>>>><>D;;BMAF**,"(()'&+)))))'))()(+)'-()&()%)(+('",0U@>>>>>>>>>A@9;?=>Pkz@$(#')&'%(*(*))"))*))())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*(((-)(')(+')#MY%TA@>>>>>>>>?@@@7<=>>>>=@B>9;>>?VTa.'+%(*&(((*(())"))'))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*((-))%))'')&)2L>>>>>>>>>?W-7 +,)++*(((*(()*"))&))'))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*((,)('))$))+&,Q:>===>>>>;>?>>==>>>>==>?6>=KVf)()'))*)))))'))'))'))*)(,,()*(+))*)))((&&((Q_,A:><@?>><>97@@:9?M&*)*,((*))+))())&)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))())%)(-)(-*(%))&'()R^-G8?>>?=8;<>@Y0:())))+)))))'))'))())+)(*,(')(+))*))*))'((+4=W<=?@=>>=<99>A;:O_o+)*!))+&%*('+))*))())*))*)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*$)(-)(-*(&((#()*-4W;<=>=>>>?=4:BFHL'.((,)))))())'))')))))*)))*)'))*()+))*((&+*-+0 \GD@<==>>;;<=A;AZ5A++)((*&%)**+))))))))+)(+)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))()*$)(+)(-*((*)&''%%*!ML<>>>>>>?>7;<>?>=<>>>>>>=?G9a'1 $$))+)))))')))))+))+)))))'*()()%()+()(('%)''))'&-PFE=<;>@C=A=8><=KZBT&*$)+)))*)))))')))))*))*)))))')()()'()*()())'*)((('()(9HbE:;A?Yfv<'.'()))')))))))))))))))))))))))))))))))))))))))))))))()((*!Ze/U=@D@:<>7;PH+5)*)('/)))))))))))())()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))')$,4WPT`q8%+#%$..0*)-))))))))))))))))))))))))))))))))))))))))))))))))*))+/!Ye2Y> Guasap Forensic Report """ ##COMANDOS WINDOWS adb_w="c:\\adb\\adb" ##COMANDOS LINUX adb_l="adb" ##GLOBAL adb_comm="" ================================================ FILE: modules/dependencies.py ================================================ import os def check_dependencies(): try: from Tkinter import * except: print "[MODULES][>] Para instalar Tkinter en Linux" print "puedes usar el siguiente comando:" print "sudo apt-get install python-tk" os.system('sudo apt-get install python-tk') ================================================ FILE: modules/functions.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import os import config import gzip, time, datetime, modules.config, sqlite3 from Tkinter import * #FORENSIC FUNCTIONS def extract_deleted_messages(): try: log_list=list() print config.analyze_logs for log in config.analyze_logs: texts=list() count = 0 count_n = 0 count_dict = 0 con_list=list() times=list() list_groups=list() f = open("WhatsappLOG/"+log, "r") lines = f.readlines() for line in lines: users=list() c_messages = 0 if "msgstore/deletemessages" in line: message_delete = line.split(" ") l = len(message_delete) date = message_delete[0] hour = message_delete[1] c_messages = int(message_delete[l-1].replace("\n", "")) tel_list = [lines[count -1],lines[count -2],lines[count -3],lines[count -4],lines[count -5],lines[count -6],lines [count -7],lines[count -8],lines[count -9],lines[count -10]] for tel in tel_list: if "getMediaMessagesTailCursor" in tel: num=True count_n=0 tel = tel.split("getMediaMessagesTailCursor:")[1].split("@")[0] for n in tel: if n.isdigit(): if count_n == 10 and num != False: tel_d = tel count_n+=1 continue else: num=False if tel_d and num: text = "Found " + str(c_messages) + " deleted messages [" + str(date) + "] [" + str(hour) + "]" + "-> " + str(tel_d) + " of file ->" + log if text not in texts: texts.append(text) elif "stanzaKey" in tel: num=True count_n=0 tel = tel.split("StanzaKey")[1].split("@")[0].split("=")[1] for n in tel: if n.isdigit(): if count_n == 10 and num != False: tel_d = tel count_n+=1 continue else: num=False if tel_d and num: text = "Found " + str(c_messages) + " deleted messages [" + str(date) + "] [" + str(hour) + "]" + "-> " + str(tel_d) + " of file ->" + log print text if text not in texts: texts.append(text) else: if line not in texts: texts.append(line) # num=True # count_n=0 # tel = tel.split(" ") # l_tel = len(tel) # tel = tel[l_tel-2].split("@")[0] # print tel # for n in tel: # if n.isdigit(): # if count_n == 10 and num != False: # tel_d = tel # count_n+=1 # continue # else: # num=False # if tel_d and num: # text = "Found " + str(c_messages) + " deleted messages [" + str(date) + "] [" + str(hour) + "]" + "-> " + str(tel_d) + " of file ->" + log # print text # texts.append(text) if "msgstore/backupdb\n" in line: time_backup = line.split(" ") time_backup = time_backup[0]+" "+time_backup[1] print "Backup DBs on time [>] "+time_backup times.append(time_backup) if "onGroupInfoFromList/gjid" in line: group_info = line.split(" ") group_info = group_info.split("/") num_creator = group_info[3].split(":")[1].split("@")[0] date_creation = group_info[4].split(":")[1] if len(date_creation)>10: date_creation = date_creation[:len(date_creation)-3] date_creation=datetime.datetime.fromtimestamp(int(date_creation)).strftime('%Y-%m-%d %H:%M:%S') #1521624826948 subject_owner = group_info[5].split(":")[1].split("@")[0] subject = group_info[6].split(":")[1] subject_time = group_info[7].split(":")[1] if len(subject_time)>10: subject_time = subject_time[:len(subject_time)-3] subject_time=datetime.datetime.fromtimestamp(int(subject_time)).strftime('%Y-%m-%d %H:%M:%S') line_users=lines[count -1] if "onGroupInfoFromList/{" in line_users: line_users=line_users.split("{")[1][:len(line_users)-1].split(",") for user in line_users: user_num = user.split("@")[0] users.append(user_num) group = {"creator":num_creator,"date_creation":date_creation,"subject_owner":subject_owner,"subject":subject,"subject_time":subject_time,"users":users} print "Group [>] "+subject+"\nNum creator [>] "+num_creator+" | Date creation [>] "+str(date_creation)+"\n Subject [>] "+subject+"| Subject owner num [>] "+subject_owner+" Subject time [>] "+str(subject_time)+"\n Users [>] "+str(users) list_groups.append(group) if "network/info" in line: con = [lines[count +1],lines[count +2]] time_con = line.split(" ") time_con = time_con[0]+" "+time_con[1] pri_con = con[0].split(",") sec_con = con[1].split(",") type_pri = pri_con[0].split(":")[1] state_pri = pri_con[1].split(":")[1] extra_pri = pri_con[3].split(":")[1] type_sec = sec_con[0].split(":")[1] state_sec = sec_con[1].split(":")[1] extra_sec = sec_con[3].split(":")[1] print "Time of change network [>] "+time_con print "Tipo: "+type_pri+", Estado: "+state_pri+", Nombre: "+extra_pri print "Tipo: "+type_sec+", Estado: "+state_sec+", Nombre: "+extra_sec con_dict={"time":time_con,"first_change":{"state":state_pri, "name":extra_pri},"second_change":{"state":state_sec, "name":extra_sec}} if con_dict not in con_list: con_list.append(con_dict) count += 1 if int(c_messages)>=0 or len(times)>0 or len(con_list)>0 or len(list_groups)>0: if log[len(log)-4:]==".txt": log=log[:len(log)-4] for directory in config.directory: hash_origen_c=config.adb_comm+" shell su 0 md5 /data/data/com.whatsapp/files/Logs/"+log hash_clonado_c=config.adb_comm+" shell su 0 md5 "+directory+log hash_origen=os.popen(hash_origen_c).read() hash_clonado=os.popen(hash_clonado_c).read() if "directory" in hash_origen or "directory" in hash_clonado: continue else: dict_final={"deleted_msg":texts,"dates_backup":times, "group_w":list_groups, "cons":con_list,"hash_origen":hash_origen, "hash_clonado":hash_clonado, "log":log} if dict_final not in log_list: log_list.append(dict_final) count_dict+=1 break return log_list except: print config.error_alert[0] def decompress(filename): comprimido=gzip.open(filename, "r"); descomprimido=comprimido.read(); txt = open(filename+".txt", "w") txt.write(descomprimido) txt.close() def get_whatsappLog(log): try: for directory in config.directory: a = config.adb_comm+" shell su 0 dd if='/data/data/com.whatsapp/files/Logs/"+log+"' of='"+directory+log+"' bs=1000" Extract = config.adb_comm+" pull "+directory+log+" WhatsappLOG/"+log command = os.popen(a).read() if "directory" not in command: os.system(a) print 'USB debbuging active...' os.system(Extract) print'Extract whatsapp log...' return log print 'Change directory...' except : print config.error_alert[0] def get_whatsappDB(db): try: for directory in config.directory: a = config.adb_comm+" shell dd if='"+directory+"WhatsApp/Databases/"+db+"' of='"+directory+db+"' bs=1000" Extract = config.adb_comm+" pull "+directory+db+" WhatsappDB/"+db command = os.popen(a) command=command.read().replace("\r","").replace("\n","") if "file or directory" != command[len(command)-17:len(command)] and "unknown operand" not in command: # os.system(a) print 'USB debbuging active...' os.system(Extract) print'Extract whatsapp db...' return db print 'Change directory...' except : print config.error_alert[0] def get_whatsappDB_root(db): try: for directory in config.directory: a = config.adb_comm+" shell su 0 dd if='/data/data/com.whatsapp/databases/"+db+"' of='"+directory+db+"' bs=1000" Extract = config.adb_comm+" pull "+directory+db+" WhatsappDB/"+db command = os.popen(a) command=command.read().replace("\r","").replace("\n","") if "file or directory" != command[len(command)-17:len(command)]: # os.system(a) print 'USB debbuging active...' os.system(Extract) print'Extract whatsapp db...' return db print 'Change directory...' except : print config.error_alert[0] def set_permission_log(filename): print filename command = "chmod 777 WhatsappLOG/"+filename os.system(command) def set_permission_db(filename): print filename command = "chmod 777 WhatsappDB/"+filename os.system(command) def count_logs(): command = config.adb_comm+" shell su 0 ls /data/data/com.whatsapp/files/Logs/" logs = os.popen(command).read() logs = logs.replace("\r","").split("\n") return logs def count_dbs_root(): command = config.adb_comm+" shell su 0 ls /data/data/com.whatsapp/databases" dbs = os.popen(command).read() dbs = dbs.replace("\r","").split("\n") return dbs def count_dbs(): dbs_=list() for directory in config.directory: command = config.adb_comm+" shell ls "+directory+"WhatsApp/Databases/" dbs = os.popen(command).read() if "No such file or directory" in dbs: continue else: dbs = dbs.replace("\r","").split("\n") for db in dbs: if " " in db: db = db.split(" ") for d in db: dbs_.append(d) else: dbs_.append(db) return dbs_ def create_dir_log(): try: os.mkdir("WhatsappLOG") print 'The directory was created correctly' except: print 'Verify that the WhatsappLOG directory is created' def create_dir_db(): try: os.mkdir("WhatsappDB") print 'The directory was created correctly' except: print 'Verify that the WhatsappDB directory is created' def create_dir_report(): try: os.mkdir("Reports_Whatsapp_Forensic") print 'The directory was created correctly' except: print 'Verify that the Reports directory is created' def create_dir_media(): try: os.mkdir("Whatsapp_Extracted_Media") print 'The directory was created correctly' except: print 'Verify that the Media directory is created' def get_hash_root(data, option): if option == "origin": command = config.adb_comm+" shell su 0 md5 /data/data/com.whatsapp/databases/"+data hash_ = os.popen(command).read() if "/sh" in hash_: md5 = modules.config.adb_comm+" shell su 0 md5sum /data/data/com.whatsapp/databases/"+data hash_ = os.popen(md5).read() elif option == "clone": for directory in config.directory: command = config.adb_comm+" shell md5 "+directory+data hash_ = os.popen(command).read() md5 = config.adb_comm+" shell md5sum "+directory+data hash_2 = os.popen(md5).read() if "No such file" in hash_: pass else: if "not found" in hash_: pass else: break if "No such file" in hash_2: continue else: if "not found" in hash_2: continue else: return hash_2 return hash_ def get_hash(data, option): if option == "origin": for directory in config.directory: command = config.adb_comm+" shell md5 "+directory+"WhatsApp/Databases/"+data md5 = modules.config.adb_comm+" shell md5sum "+directory+"WhatsApp/Databases/"+data hash_ = os.popen(command).read() hash_2 = os.popen(md5).read() if "No such file" in hash_: pass else: if "not found" in hash_: pass else: break if "No such file" in hash_2: continue else: if "not found" in hash_2: continue else: return hash_2 elif option == "clone": for directory in config.directory: command = config.adb_comm+" shell md5 "+directory+data hash_ = os.popen(command).read() md5 = modules.config.adb_comm+" shell md5sum "+directory+data hash_2 = os.popen(md5).read() if "No such file" in hash_: pass else: if "not found" in hash_: pass else: break if "No such file" in hash_2: continue else: if "not found" in hash_2: continue else: return hash_2 return hash_ # To know the members that belong to a group, this function receives the identified "gjid" of the group def get_members(group): conn = sqlite3.connect('WhatsappDB/msgstore.db') group_members_raw = [member[0] for member in conn.execute('SELECT jid FROM group_participants WHERE gjid=?', (group[0],))] conn.close() # Once retrieved all group members in raw format "34697XXXXXX@s.whatsapp.net" each one must be cleaned group_members = [clean_user(member) for member in group_members_raw] return group_members # A simple function for remove preffix and suffix added by Whatsapp to the user "jid" def clean_user(peer): user = str(peer[2:]).replace("@s.whatsapp.net","") return user # Parsing important data from msgstore.db structure header (first 100 bytes of *.db file) to try restore deleted messages def db_head_parser(db): # In the SQLite official site the are stored the specifications doc # with the offset in the header of sqlite file about the data stored and lenght (offset - n bytes) db_info = [] db_dump = open(db, "rb") db_dump.seek(16) page_size_raw = db_dump.read(2) db_dump.seek(28) number_pages_raw = db_dump.read(4) db_dump.seek(32) first_trunk_page_raw = db_dump.read(4) db_dump.seek(96) db_ver_raw = db_dump.read(4) # Converting hex to decimal first_trunk_page = int(first_trunk_page_raw.encode("hex"), 16) db_ver = int(db_ver_raw.encode("hex"), 16) page_size = int(page_size_raw.encode("hex"), 16) number_pages = int(number_pages_raw.encode("hex"), 16) db_info.extend((page_size, number_pages, first_trunk_page, db_ver)) print db_info def create_report(t, list_dbs, info_root, whatsapp_log): text_final="Date of system: "+ str(t)+"\n" command = config.adb_comm+" shell date" time_device = os.popen(command).read() text_final+="Date of device: "+ str(time_device)+"\n\n" command = config.adb_comm+" shell getprop ro.build.versio.release" android_v = os.popen(command).read() text_final+="-----Device Information-----\n\n" text_final+="Android version: "+android_v #command = "adb shell " #TO/DO extract whatsapp version #whatsapp_v = os.popen(command).read() #text_final+="WhatsApp version: "+whatsapp_v for dbs in list_dbs: db_v = dbs["name"].split(".") db_v = db_v[len(db_v)-1] text_final += "DataBase version: "+db_v+"\n" text_final += "Database hashs--> Origin hash: "+dbs["hash_origen"]+ ", Clone hash: "+dbs["hash_clonado"] for i in range(len(info_root)): if i == 0: text_final+= "Root: "+info_root[i]+"\n" else: text_final+= "Root files: "+info_root[i]["file"]+", "+"Directory: "+info_root[i]["directory"]+", App used to root: "+info_root[i]["App"]+"\n" if whatsapp_log!=None: for log in whatsapp_log: msg_deleted=log["deleted_msg"] for msg in msg_deleted: text_final+=msg+"\n" text_final+="Log hash--> Origin hash: "+log["hash_origen"]+ ", Clone hash: "+log["hash_clonado"] t = t.split(",")[1].replace(" ","_") f = open (t+'_report_whatsapp_forensic.txt','w') f.write(text_final) f.close() print text_final def banner(): print config.banner print "------------------------------------------------------------------------------" print "[AUTHORS]: Jorge Coronado (aka @JorgeWebsec) | Ramon Bajona" print "[Email]: info@quantika14.com | [Twitter]: @QuantiKa14" print "[Version]: 1.0 | [Date]: 10-10-2017" print "------------------------------------------------------------------------------" print "" ================================================ FILE: parser_db.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import sqlite3, datetime def analyze_db(): conn = sqlite3.connect('WhatsappDB/msgstore.db') cursor = conn.cursor() rows=list() print 'Module Version ',sqlite3.version print 'Library Version ',sqlite3.sqlite_version print "" for row in cursor.execute('SELECT * FROM messages where edit_version=7 and key_from_me = 1 ORDER BY _id'): row_date=str(row[7]) if len(row_date)>10: row_date = row_date[:len(row_date)-3] row_date=datetime.datetime.fromtimestamp(int(row_date)).strftime('%Y-%m-%d %H:%M:%S') text = "Numero de telefono de whatsapp borrado [>] "+ str(str(row[1]).split("@")[0]) + "\nTimestamp [>] "+row_date print text rows.append(text) cursor.close() conn.close() return rows ================================================ FILE: whatsapp_db.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import modules.config, modules.functions, parser_db, sqlite3 from Tkinter import * def extract_db(pop_wait): count=1 #List with dicts with DBS and their hash dbs_list=list() #Create directory to db modules.functions.create_dir_db() #Extract dbs names dbs = modules.functions.count_dbs() mensaje_deb = Label(pop_wait, text="Encontradas bases de datos, extrayendo...") mensaje_deb.place(x=20,y=80) pop_wait.update() for db in dbs: print "-------*-------" if db=="": pass else: #Extract db hash_origen = modules.functions.get_hash(db, "origin") db = modules.functions.get_whatsappDB(db) hash_clonado = modules.functions.get_hash(db, "clone") #Save data in dict name_d="dict_"+str(count) name_d={"name":db,"hash_o":hash_origen,"hash_d":hash_clonado} dbs_list.append(name_d) print "DB extract sucesfully [>] "+str(db) print "Original hash file[>] "+str(hash_origen) print "Cloned file hash [>] "+str(hash_clonado) count+=1 return dbs_list def extract_db_root(pop_wait): count=1 #List with dicts with DBS and their hash dbs_list=list() #Create directory to db modules.functions.create_dir_db() #Extract dbs names dbs = modules.functions.count_dbs_root() mensaje_deb = Label(pop_wait, text="Encontradas bases de datos, extrayendo...") mensaje_deb.place(x=20,y=80) pop_wait.update() for db in dbs: print "-------*-------" if db=="": pass else: #Extract db hash_origen = modules.functions.get_hash_root(db, "origin") db = modules.functions.get_whatsappDB_root(db) hash_clonado = modules.functions.get_hash_root(db, "clone") #Save data in dict name_d="dict_"+str(count) name_d={"name":db,"hash_o":hash_origen,"hash_d":hash_clonado} dbs_list.append(name_d) print "DB extract sucesfully [>] "+str(db) print "Original hash file[>] "+str(hash_origen) print "Cloned file hash [>] "+str(hash_clonado) count+=1 rows=parser_db.analyze_db() return dbs_list, rows def count_messages(pop_wait): mensaje_num = Label(pop_wait, text="Calculando...") mensaje_num.place(x=20,y=120) pop_wait.update() conn = sqlite3.connect('WhatsappDB/msgstore.db') total_msg = 0 byConversation_messages = {} groups_members = {} # Check the total of messages for jid_msg in conn.execute('SELECT key_remote_jid FROM messages'): if jid_msg[0] == "-1": continue total_msg += 1 # Check if the "key_remote_jid" belongs to a group for group in conn.execute('SELECT subject FROM chat_list WHERE key_remote_jid=?', jid_msg): # If is a group if group[0] != None: peer = "Group " + group[0] # Check if the members belonging a target group have been retrieved yet if group[0] not in groups_members: groups_members[group[0]] = modules.functions.get_members(jid_msg) # If is a single user we clean garbage chars else: peer = "User " + modules.functions.clean_user(jid_msg[0]) # Dict with number of messages with peers removing unnecessary chars # i.e: {'phone_number' : 3 , 'phone_number': 50, 'phone_number': 24} if peer in byConversation_messages: byConversation_messages[peer] += 1 else: byConversation_messages[peer] = 1 conn.close() modules.functions.db_head_parser('WhatsappDB/msgstore.db') return total_msg, byConversation_messages, groups_members def detect_breakID(total_msg): conn = sqlite3.connect('WhatsappDB/msgstore.db') cursor = conn.cursor() # Once retrieved the first id in whatsapp db, build a list filled with contiguous IDs for later compare between them. # i.e: # first_id = 14 # adjacents_id_list will be: [ 14, 15, 16, 17, ...] adjacents_id_list = [] first_id = cursor.execute('SELECT _id FROM messages').fetchone()[0] adjacents_id_list.append(first_id) last_added = first_id removed_id = [] for id in range(total_msg): last_added += 1 adjacents_id_list.append(last_added) # msg_id_list is a list with the message _id stored in whatsapp db msg_id_list = [id[0] for id in cursor.execute('SELECT _id FROM messages')] conn.close() # a list with the removed _id message in whatsapp database removed_id = [id for id in adjacents_id_list if id not in msg_id_list] return removed_id ================================================ FILE: whatsapp_log_forensic.py ================================================ #!/usr/bin/env python #-*- coding:utf-8 -*- import modules.config, modules.functions from Tkinter import * def extract_log(pop_wait): #Create directory modules.functions.create_dir_log() #Extract logs names logs = modules.functions.count_logs() for log in logs: print "-------*-------" if log=="": pass else: #Extract logs mensaje_deb = Label(pop_wait, text="Logs extraidos, analizando...") mensaje_deb.place(x=20,y=80) pop_wait.update() log = modules.functions.get_whatsappLog(log) #Decompress gz if ".gz" in log: modules.functions.set_permission_log(log) modules.functions.decompress("WhatsappLOG/"+log) log_name = log+".txt" else: log_name = log #add name of logs for extract deleted messages modules.config.analyze_logs.append(log_name) #Extract deleted messages log_list=modules.functions.extract_deleted_messages() return log_list